diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..43c7da0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +*.pyc +activity_overview_for_users_3.1_cut-off.xlsx +correspondence_file_eiv3.3_to_eiv3.4_20170921_final.xlsx +correspondence_file_eiv3.4_to_eiv3.5_20181008.xlsx +correspondence_file_eiv3.5_to_eiv3.6_2.xlsx +correspondence_file_eiv3.6_to_eiv3.7.xlsx +correspondence_file_intermediate-exchangesv2.2_to_v3.0_20130904.xlsx +ecoinvent_correspondence_file_eiv3.2_to_eiv3.3_final.xlsx +ecoinvent_correspondence_file_eiv3_1_to_eiv3_2_updated20151214_2.xlsx diff --git a/BWimport.ipynb b/BWimport.ipynb new file mode 100644 index 0000000..a5a9b3f --- /dev/null +++ b/BWimport.ipynb @@ -0,0 +1,145 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 1. Import databases from the data folder to brightway \n", + "\n", + "Depending on the accessibility to the ecoinvent database, this notebook offers two ways of reproducing the environmental profiles in the paper.\n", + "\n", + " * Option 1: Evaluation of the agggregated processes\n", + " * Option 2: Evaluation of the complete LCA system models" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Option 1: Import aggregated processes based on the LCIs calculated for the reference flows\n", + "\n", + "This option uses the backup file in the folder `/data/results`. This file was created based on the LCIs generated for the combinations of reference flows and versions of the ecoinvent database detailed in the accompanying paper. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "from pathlib import Path\n", + "import brightway2 as bw\n", + "\n", + "filepath = Path.cwd()/(\n", + " 'data/results/'\n", + " 'brightway2-project-REM_aggregatedLCIs-backup.02-February-2022-07-01AM.tar.gz')\n", + "bw.restore_project_directory(filepath)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The project `REM_aggregatedLCIs` should now appear in the list of brightway projects when running the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "sorted(bw.projects)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The `aggregated` database can also be imported by using the [Database Import Wizard](https://www.youtube.com/watch?v=qWzaQjAf8ZU) from the Activity Browser by selecting 'Import local data'>'Local Excel file'. The file to import is `LCIsAsAggregatedProcesses.xlsx`, which is located at `/data/bw-harmonised`.\n", + "\n", + "The advantage of using the script in the first code cell of this notebook is that it already contains a setup with the CML-IA method baseline. Therefore, the LCIA methods don't have to be selected from a list. The caveat is that the GZ file to be loaded could have compatibility issues with some packages. The correct functioning of the Jupyter notebooks and related scripts was tested with the versions detailed in the next table.\n", + "\n", + "| Package | Version |\n", + "| :-: | :-: |\n", + "| python | 3.7.10 |\n", + "| bw2io | 0.7.12|\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Option 2: Link the foreground of the LCA system models to versions of the ecoinvent database.\n", + "\n", + "Select or create the brightway project in which the database will be loaded. The project should have the **biosphere3** database and the target **ecoinvent databases preloaded** before running the cell below. In the accompanying paper, the target versions are ecoinvent 2.2 and the cut-off alternatives from versions 3.1 to 3.6. The next table shows the strings used to name each version of the ecoinvent database.\n", + "\n", + "| ecoinvent version | String |\n", + "| :-: | :-: |\n", + "| 2.2 | ei22 |\n", + "| 3.1 cut-off | cutoff31|\n", + "| 3.2 cut-off | cutoff32|\n", + "| 3.3 cut-off | cutoff33|\n", + "| 3.4 cut-off | cutoff34|\n", + "| 3.5 cut-off | cutoff35|\n", + "| 3.6 cut-off | cutoff36|\n", + "\n", + "This option uses the files at `/data/bw-harmonised` generated according to the [Harmonise Conventions notebook](harmoniseConventions.ipynb)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "from IO_XLtoBw import import_from_ExcelFile\n", + "project = 'REM_interoperable' #Should be an existing project with the biosphere3 database and the target ecoinvent databases.\n", + "\n", + "def get_data(variable):\n", + " return 'REM'+ variable + '.xlsx'\n", + "\n", + "variables = [\n", + " ('_replicated_2_2', 'ei22'),\n", + " ('_unlinked_2_2', 'ei22'),\n", + " ('2_2', 'ei22'),\n", + " ('3_1', 'cutoff31'),\n", + " ('3_2', 'cutoff32'),\n", + " ('3_3', 'cutoff33'),\n", + " ('3_4', 'cutoff34'),\n", + " ('3_5', 'cutoff35'),\n", + " ('3_6', 'cutoff36')]\n", + "\n", + "for v in variables:\n", + " import_from_ExcelFile(project, v[1], get_data(v[0]), save=True, newXL=True)\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/CMLCAtoBw.py b/CMLCAtoBw.py new file mode 100644 index 0000000..040b3c8 --- /dev/null +++ b/CMLCAtoBw.py @@ -0,0 +1,348 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Sep 23 14:04:53 2019 +Major editions on Tue Feb 4 12:47:28 2020 + +@author: xicotencatlbm + +""" + +#%%Import modules + +from pathlib import Path +import pandas as pd +import numpy as np + +import idFunctions as fx + +#%% +def convertFromCMLCAeiV2_2(project, target, replace2ndNi, disconnect): + + databaseName = project + target + bw2File = databaseName + '.xlsx' + sourceFile = 'processDataCMLCA.xlsx' + + #%% Fetch the file with the unit processes + + file = Path.cwd()/'data'/sourceFile + + pd_import = pd.read_excel(file, + sheet_name = 'processData').dropna( + subset=['Label_or_metadata']) + pd_import = pd_import[pd_import['Label_or_metadata'] !='Label'] + + #%% Overwrite automatic matching of secondary Ni if replace2ndNi is True. + + if replace2ndNi == True: + secondaryNi = ('nickel, secondary, from electronic and electric scrap ' + 'recycling, at refinery[SE]') + primaryNi = 'nickel, 99.5%, at plant[GLO]' + pd_import.replace(secondaryNi, primaryNi, inplace = True) + print ('The economic flow "', secondaryNi, '" was replaced by "', + primaryNi, '".') + + #%% Fetch allocation data + + allocDF = pd.read_excel(file, sheet_name = 'allocFactors', + index_col=[0,1], usecols='B,C,D,G,H') + + #%% From fx, apply the function that identifies the type of flow (G/W/E) + pd_import['type'] = pd_import['Label_or_metadata'].apply(fx.typer) + + #%% + ########################### waste convention ################################# + #%% Filter for strings corresponding to waste treatment flows. + if target == '2_2': + pd_import['amount'] = pd_import['Value'] + else: + # Change sign to signal waste according to bw-ecoinvent v3.x conventions. + pd_import.loc[ + (pd_import['type']=='technosphere')&( + pd_import['Name'].str.startswith('disposal,')), + 'amount' ] = (-pd_import['Value']) + + pd_import.loc[ # Record amount as it is. + (~pd_import['Name'].str.startswith('disposal,', na=False)), + 'amount' ] = pd_import['Value'] + + # df.loc[df['dollars_spent'] > 0, 'purchase'] = 1 + + ############################################################################## + + ########################Read markers########################################## + #%% Iterate each row and assign a process identificator + for row in pd_import.index: + processID = pd_import.at[row,'ID'] + if processID != 0: + newID = 'P' + str(processID) + pd_import.at[row,'newID'] = newID + + pd_import.reset_index(drop = True, inplace = True) + + #%% Iterate each row and identify the economic outputs + + for row in pd_import.index: + IOmarker = pd_import.at[row, 'IO_ID'] + try: + IOantmarker = pd_import.at[row - 1, 'IO_ID'] + except: + IOantmarker = 0 + if IOantmarker == 1: + if IOmarker != 2: + pd_import.at[row,'type'] = 'production' + pd_import.at[row,'IO_ID'] = 1 + + pd_import.set_index('newID', inplace= True) + + # ^^^The content above doesn't need modifications at this stage^^^^^^^^^^^^^^ + ############################################################################## + ################strip activity name, biosphere code and reference product##### + #%% Initialise flowdata. + + # Create a newcolumn in pd_import with the 'name', 'location' and + # 'reference product' ready for brightway. + + pd_import['name'] = np.vectorize(fx.findName)(pd_import['Name'], + pd_import['Unit'], + pd_import['type'], + target, + disconnect) + pd_import['location'] = np.vectorize(fx.findLocation)(pd_import['Name'], + pd_import['Unit'], + pd_import['type'], + target) + pd_import['reference product'] = np.vectorize(fx.findRP)(pd_import['Name'], # result modified at idFunctions. Maybe later: also add the reference product of the technospshere or use the whole column as "(activity) name" and + pd_import['Unit'], + pd_import['type'], + target) + pd_import['code'] = np.vectorize(fx.findUUID)(pd_import['Name'], + pd_import['type']) + + # Extract flow data + flowdata = pd_import[['name', 'amount', 'Unit', 'type', 'code', 'location', # Replaced from 'Value' to 'amount' for waste conventions. + 'reference product','Name']].rename( # Name contains primary technoMatcher key + columns ={'Unit':'unit'}).dropna( + subset = ['name']) + # Convert amount to float. + flowdata['amount'] = flowdata['amount'].astype('float64') + + ############################################################################## + # newbit + # Identify functionality of processes and create a dictionary for + # monofunctional processes with production codes. + + # Count the functions associated to each process. + functionality = pd_import[pd_import['type'] == 'production'].groupby( + 'newID').count() + + # Identify the monofunctional and multifunctional processes. + multifunctionals = functionality[functionality['type']> 1].index.tolist() + monofunctionals = functionality[functionality['type']== 1].index.tolist() + + productCodesMonofunctional = pd_import.loc[ + (pd_import['type'] == 'production'), 'Name' + ].loc[monofunctionals + ].reset_index().set_index('Name').to_dict()['newID'] + + # With Unit + # productCodesMonofunctional = pd_import.loc[ + # (pd_import['type'] == 'production'), ('Name', 'Unit') + # ].loc[monofunctionals + # ].reset_index().set_index(['Name','Unit']).to_dict()['newID'] + + + productCodesPartitioned = {} + + for process, partition in allocDF.index: + key = allocDF.loc[(process, partition), 'name'] + activityCode = process + '.' + str(partition +1) + productCodesPartitioned.update({key : activityCode}) + + #################### Find CUT_OFFS, originally used the prefix 'not34'######## + #%% Identify cut-off names + + # technosphere = list(flowdata.loc[(flowdata['type'] =='technosphere'), + # ('name', 'reference product','unit') + # ].drop_duplicates( + # ).itertuples(index=False, name = None)) + + technosphere = list(flowdata.loc[(flowdata['type'] =='technosphere'), + ('Name','unit') + ].drop_duplicates( + ).itertuples(index=False, name = None)) + + flowdata.drop(columns='Name', inplace=True) # Drop imported name column. + + # cut_offsList = fx.findCut_offs(technosphere, + # [productCodesMonofunctional, + # productCodesPartitioned]) + + cut_offsDf= pd.DataFrame(fx.findCut_offs(technosphere, + [productCodesMonofunctional, + productCodesPartitioned])) + cut_offsList = cut_offsDf[0] + + # Return a dataframe with the product name and unit of the cut-offs. + CUT_OFFS = flowdata.loc[(flowdata['name']).isin(cut_offsList), + ['name','unit']].drop_duplicates().reset_index( + drop = True).rename( + columns = {'name' : 'reference product'})# name might change to reference product at an earlier stage + + CUT_OFFS['Activity'] = 'Production of ' + CUT_OFFS['reference product'] + CUT_OFFS['code'] = 'cut-off_' + CUT_OFFS['reference product'] + CUT_OFFS['categories'] = 'cut-off' + CUT_OFFS['production amount'] = 1 + + productCodesCut_offs = CUT_OFFS[['reference product', 'code']].set_index( + 'reference product').to_dict()['code'] + + productCodesForeground = {} + productCodesForeground.update(productCodesMonofunctional) + productCodesForeground.update(productCodesPartitioned) + productCodesForeground.update(productCodesCut_offs) + + cut_offs = CUT_OFFS.T + + #############################shifted code command############################ + #%% Add code field for the technosphere and production exchanges to flowdata + flowdata['code'] = np.vectorize(fx.findCode)(flowdata['code'], flowdata['name'], #might change to reference product + flowdata['type'], + productCodesForeground) + + #%% Create a dataframe from the metadata and the exchange flows by + # slicing columns from pd_import. + + # Extract the metadata + pd_import['metadata'] = pd_import['Label_or_metadata'].apply(fx.metaExtract) + pd_import['label'] = pd_import['Label_or_metadata'].apply(fx.labelExtract) + + # Declare the metadata + metadata = pd_import[['label', 'metadata']].dropna(subset = ['label']) + + + #%% Export the database to Excel + + # Create a Pandas Excel writer using XlsxWriter as the engine. + # [See https://xlsxwriter.readthedocs.io/example_pandas_positioning.html] + + writer = pd.ExcelWriter((Path.cwd()/'data/bw-harmonised'/bw2File), engine='xlsxwriter') + + layout_mono = ['Activity', 'code', 'Description', + 'Author', 'Date', 'Exchanges'] + layout_unAlloc = ['code','Activity', 'Description', 'Author', #change/corrected for waste + 'Date','Exchanges'] + layout_multi = ['Activity', 'categories', 'code', + 'Description', 'Author', 'Date', #'production amount', 'unit', #new bit + 'allocation factor', 'Exchanges'] + layout_cutOffs = ['Activity', 'categories','code','reference product', + 'production amount', 'unit'] + + # Sheet with monofunctional processes. + pd.DataFrame([['Database', databaseName]], + columns = ['label', 'metadata']).to_excel( + writer, sheet_name='monofunctional', + header=False, index=False) + + starter = 2 + + for process in monofunctionals: + metadataSection = metadata.loc[process].append( + pd.DataFrame([['code',str(process)],['Exchanges','']], + columns=['label','metadata'])).set_index( + 'label').reindex(layout_mono) + + flowSection = flowdata.loc[process] + + metadataSection.to_excel(writer, sheet_name='monofunctional', + header=False, startrow=starter) + flowSection.to_excel(writer, sheet_name='monofunctional', index=False, + startrow= starter + len(metadataSection.index)) + + space = len(metadataSection.index) + len(flowSection.index) + 2 + starter = starter + space + + # Sheet with cut-offs + + starter = 0 + + for process in list(cut_offs): + cut_offs[process].reindex(layout_cutOffs).to_excel(writer, sheet_name='cut_offs', header=False, + startrow=starter) + + space = len(cut_offs.index) + 1 + starter = starter + space + + # Sheet with partitioned processes based on parsed allocation factors. + starter = 0 + + for process, partition in allocDF.index: + + referenceProduct = allocDF.loc[(process, partition), 'name'] #should be reference product + allocFactor = allocDF.loc[(process, partition), 'preset_alloc'] + + activityCode = productCodesPartitioned.get(referenceProduct) + metadataSection = metadata[metadata['label'] != 'Activity'].loc[ + process].append(pd.DataFrame([[ + 'code', activityCode],['Exchanges','']], + columns=['label','metadata'])).set_index('label').reindex( + layout_multi) + + activity = (metadata[metadata['label']=='Activity'].loc[process, + 'metadata'] + + '_' + str(partition + 1)) + metadataSection.at['Activity', 'metadata'] = activity + + tempName = referenceProduct + productionAmount = flowdata.loc[(flowdata['type']== 'production') & ( + flowdata['name']== tempName), 'amount'].loc[process] + activityUnit = flowdata.loc[(flowdata['type']== 'production') & ( + flowdata['name']== tempName), 'unit'].loc[process] + + metadataSection.at['allocation factor', 'metadata'] = allocFactor + metadataSection.at['categories', 'metadata'] = 'partitioned' + + preFlowSection = flowdata[flowdata['type'] !='production'].loc[process] + preFlowSection['amount'] = allocFactor*preFlowSection[['amount']] + + columnsFS = ['name', 'amount', 'unit', 'type', 'code', 'location', + 'reference product'] + preflowSection = preFlowSection[columnsFS] + + refProduct = allocDF.loc[(process, partition), 'name'] + productionLine = pd.DataFrame([ + [refProduct, productionAmount, activityUnit, 'production', + activityCode, '', '']], columns = columnsFS) + flowSection = preflowSection.append(productionLine) + + + metadataSection.to_excel(writer, sheet_name='partitioned', header=False, + startrow=starter) + flowSection.to_excel(writer, sheet_name='partitioned', index=False, + startrow= starter + len(metadataSection.index)) + + space = len(metadataSection.index) + len(flowSection.index) + 2 + starter = starter + space + + pd.DataFrame([['skip']], columns = ['placeholder']).to_excel( + writer, sheet_name='multifunctional', header=False, index=False) + + starter = 2 + + for process in multifunctionals: + metadataSection = metadata.loc[ + process].append(pd.DataFrame([['code', str(process)], + ['Exchanges','']], columns=[ + 'label','metadata'])).set_index( + 'label').reindex(layout_unAlloc) + flowSection = flowdata.loc[process] + + metadataSection.to_excel(writer, sheet_name='multifunctional', + header=False, startrow=starter) + flowSection.to_excel(writer, sheet_name='multifunctional', index=False, + startrow= starter + len(metadataSection.index)) + + space = len(metadataSection.index) + len(flowSection.index) + 2 + starter = starter + space + + + writer.save() diff --git a/IO_XLtoBw.py b/IO_XLtoBw.py new file mode 100644 index 0000000..2c2a01d --- /dev/null +++ b/IO_XLtoBw.py @@ -0,0 +1,63 @@ +# -*- coding: utf-8 -*- +""" +From IO_20190923, created on Tue Sep 17 10:32:54 2019 +Modified into a function that imports databases from a Excel file to a brightway project. +@author: xicotencatlbm +The selection of input variables is manual (project, file, database name[96]). +Also the selection of the ei technosphere version [60 or 65]. To overwrite[75]. +""" +#Importing some modules +from pathlib import Path +import brightway2 as bw +from bw2io.export import write_lci_excel + +#%% Function +def import_from_ExcelFile(project, background, data, save, newXL): + #%%Loading an environment for the import check + bw.projects.set_current(project) + print('The databases in the selected project, before importing your new data are:') + print (bw.databases) + + #%%#%%Import the excel file + + datapath = Path.cwd()/'data/bw-harmonised'/data + imp = bw.ExcelImporter(datapath) + + #%% Match flows with existing and current databases after general strategies. + + imp.apply_strategies() + + # Current database + imp.match_database(fields=('code', 'location', 'unit')) + + # Match biosphere flows. + imp.match_database('biosphere3', fields=('name', 'code', 'unit'), + kind='biosphere') + + #Match technosphere flows with background. + imp.match_database(background, fields=('name', 'reference product', 'location', 'unit'), + kind='technosphere') + + imp.statistics() + + #%% + imp.write_excel() + + if save == True: + #%% Save new database + imp.write_database() + if save == False: + print('If you want to save the imported database, use save = True') + #%%Erase imp + # if 'imp' in globals(): + # del imp + + #%% Check save + print('The databases in the selected project, after importing your new data are:') + print (bw.databases) + + return imp + + #%% Generate new Excel file. + if newXL == True: + write_lci_excel(project) diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..28bfe3e --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Brenda Miranda Xicotencatl + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..138e4eb --- /dev/null +++ b/README.md @@ -0,0 +1,44 @@ +# Data and scripts for interoperable and reusable LCA system models of rare earth magnet production + +This repository contains the scripts and own generated data developed for the article entitled 'Data implementation matters: Effect of software choice and LCI database evolution on a comparative LCA study of permanent magnets'. It contains the characterized results of three alternatives for the production of rare earth magnets (REMs), calculated with several versions of the ecoinvent database (v2.2 and cut-off v3.1 to v3.6), their life cycle inventories and the foreground data to reproduce their product system models. + +**Please refer to the article and the first part of the supplementary information (SI1) for further details about the context and purpose of this repository.** + +The table below describes the organization of the own generated data for the referred article. + +|**Name of the file**|**Location**|**File format**|**Software which can read the data**| +|:----|:----|:----|:----| +|processDataCMLCA.xlsx|data/|XLSX|custom script| +|CMLCA22_REM.txt|data/|TXT|custom script| +|00_correspondenceFilesNameAndSize.jpg|data/correspondenceFiles|JPG|custom script| +|ExpectedOutputfiles.jpg|data/bw-harmonised/|JPG|custom script| +|LCIsAsAggregatedProcesses.xlsx|data/bw-harmonised/|XLSX|custom script and brightway2| +|REM_replicated_2_2.xlsx|data/bw-harmonised/|XLSX|custom script and brightway2| +|REM_unlinked_2_2.xlsx|data/bw-harmonised/|XLSX|custom script and brightway2| +|REM2_2.xlsx|data/bw-harmonised/|XLSX|custom script and brightway2| +|REM3_1.xlsx|data/bw-harmonised/|XLSX|custom script and brightway2| +|REM3_2.xlsx|data/bw-harmonised/|XLSX|custom script and brightway2| +|REM3_3.xlsx|data/bw-harmonised/|XLSX|custom script and brightway2| +|REM3_4.xlsx|data/bw-harmonised/|XLSX|custom script and brightway2| +|REM3_5.xlsx|data/bw-harmonised/|XLSX|custom script and brightway2| +|REM3_6.xlsx|data/bw-harmonised/|XLSX|custom script and brightway2| +|brightway2-project-REM_aggregatedLCIs-backup.02-February-2022-07-01AM.tar.gz|data/results/|GZ|custom script and brightway2| +|software_bw_LCIA-results.csv|data/results/|CSV|text editor| +|software_editedCMLCA_LCIA-results.csv|data/results/|CSV|text editor| +|versions_CML_LCIA-results.csv|data/results/|CSV|text editor| +|Inventory_software_bw.csv|data/results/LCIs|CSV|text editor| +|Inventory_versions_CML.csv|data/results/LCIs|CSV|text editor| + +## Notes on the software which can read the data + +* Custom script or Activity Browser: To use the file as intended, please start by opening the file "SI1_BWimport". This document guides the user through the interaction with the custom scripts and it is available as a PDF and as an interactive Jupyter notebook (IPYNB). +* The XLSX, CSV and TXT files can also be browsed in productivity software such as the open-source suite LibreOffice. +* The JPG files in the data folder are used by the interactive Jupyter notebook. Standard processing software is capable to render the JPG files. + +## Note on foreground data + +[Sprecher et al. (2014)](dx.doi.org/10.1021/es404596q) made their foreground data partially available in a human-readable format under a CC BY-NC 4.0 license. The file `processDataCMLCA.xlsx` is based on their complete product system model and consists of an annotated human- and machine-readable version. This modified version also includes the allocation factors that were not reported in their original publication. + +# License + +The data listed in the table above is based on the work by [Sprecher et al. (2014)](dx.doi.org/10.1021/es404596q) and licensed under a [Creative Commons Attribution-NonCommercial 4.0 International License](https://creativecommons.org/licenses/by-nc/4.0/) by Brenda Miranda Xicotencatl. The underlying source code is licensed under the [MIT license](LICENSE) diff --git a/SI1_BWimport.pdf b/SI1_BWimport.pdf new file mode 100644 index 0000000..f360acb Binary files /dev/null and b/SI1_BWimport.pdf differ diff --git a/SI1_harmoniseConventions.pdf b/SI1_harmoniseConventions.pdf new file mode 100644 index 0000000..be40d81 Binary files /dev/null and b/SI1_harmoniseConventions.pdf differ diff --git a/bioMatcher.py b/bioMatcher.py new file mode 100644 index 0000000..9c10385 --- /dev/null +++ b/bioMatcher.py @@ -0,0 +1,257 @@ +# -*- coding: utf-8 -*- +""" +biomatcher +Automating the matching of biosphere flows between ecoinvent v2.2 and v3.x were x<7. +(Auxiliary to the generation of bw input from CMLCA and to the comparison of +life cycle inventories) + +Created on Tue Mar 3 14:37:05 2020 + +@author: xicotencatlbm +""" +#%% Import modules + +import os # Line 22 +import pandas as pd # Line 22 +import numpy as np + +#%% Import ecoinvent's matching file and create a 2.2 - 3.x dictionary +# with automatic matches + +# From the ei file with all the biosphere correspondances: +PATH = os.getcwd() +FILE = r'data\correspondenceFiles\correspondence_file_elementary-exchanges_v2.2-v3.0_20130904.xls' + +df = pd.read_excel(os.path.join(PATH, FILE)).dropna( + subset=['Elementary Flow Name v3']) + +# From the CMLCA implementation of ei22: +# FILE = 'CMLCA22_bare.txt' + +# Or from the project implementation of ei22 and additional processing. +FILE = r'data\correspondenceFiles\CMLCA22_REM.txt' +cmlca22 = pd.read_csv(FILE, sep = '\t') + +# Strip units from tag. +cmlca22['Unit'] = cmlca22['Unit'].str.split(pat = '] ', expand = True)[1] + +#%% Functions used in this script. + +def CMLCA22s (df): + '''Deduct the CMLCA ei22 string for environmental flows in ei22.''' + return (df['Elementary Name v2.2'] + + '[' + + df['Category v2.2'] + + '_' + + df['SubCategory v2.2'] + + ']') + +def stringer (string22): + '''Get the harmonized string corresponding to a CMLCA ei22 string.''' + try: + return biomatcher.get(string22).get('CMLCAstring') + except AttributeError: + pass + +def main_uuid(CMLCAstring, Unit): + '''Get the UUID characterized by an harmonized string and a unit. ''' + return uuidDict.get((CMLCAstring, Unit)) + +def slice_to_iterate(): + '''Identify which CMLCA ei22 flows haven't been matched to ei3.x''' + return cmlca22[~cmlca22['CMLCAstring'].isin(CMLCAstring34)][['Full name', + 'Unit']] +def generalize(target): + '''Remove a level of detail and substitute rail with road (to match with + the flow containing rail/road). + ''' + keywords = ['forest, intensive', 'industrial area'] + for term in keywords: + if term in target: + prefix = target.split(term)[0] + sufix = target.split('[')[1] + return prefix+term+'['+sufix + elif 'rail' in target: + return target.replace('rail', 'road') + +#%% Functions imported by other scripts. + +# To debug: should also consider unit, otherwise there might be duplicates. +def uuid (string22): + '''Get the UUID corresponding to a CMLCA ei22 string.''' + try: + return biomatcher.get(string22).get('UUID') + except AttributeError: + pass + +#%% List with the subkeys of the biomatcher dictionary. + +dictKeys = ['Full name', 'CMLCAstring', 'Matching type', 'Unit', 'UUID'] + +#%% First iteration of the dictionary; uses the ei correspondence data and +# tags the matching type of the existing correspondences as automatic. + +# Deduct CMLCAstring for flows with unspecified subcompartment. +df.loc[(df['Subcompartment v3'] == 'unspecified'),'CMLCAstring'] = ( + df['Elementary Flow Name v3'] + + '[(\'' + + df['Compartment v3'] + + '\',)]') + +# Deduct CMLCAstring for flows with specified compartment. +df.loc[(df['Subcompartment v3'] != 'unspecified'),'CMLCAstring'] = ( + df['Elementary Flow Name v3'] + + '[(\'' + + df['Compartment v3'] + + '\', \'' + + df['Subcompartment v3'] + +'\')]') + +# Create a dictionary matching the CMLCAstring to the corresponding UUID. + +# 3847 unique uuid's. Ther are 11 duplicates of CMLCAstring differing by unit. +uuidDict= df[['CMLCAstring', 'Unit', 'UUID Elementary Flow v3']].dropna( + ).set_index(['CMLCAstring','Unit']).to_dict()['UUID Elementary Flow v3'] + +# Deduct CMLCA22 string +df['CMLCA22'] = CMLCA22s(df) + +# Drop all the lines with empty CMLCA22. +df.dropna(subset=['CMLCA22'], inplace= True) + +df['Matching type'] = 'automatic' + +# First iteration +biomatcher = df[['CMLCA22', 'CMLCAstring', 'Matching type', + 'UUID Elementary Flow v3', 'Unit']].rename( + columns={'UUID Elementary Flow v3':'UUID'}).set_index( + 'CMLCA22').T.to_dict('dict') + +cmlca22['CMLCAstring'] = np.vectorize(stringer)(cmlca22['Full name']) + +#%% Iteration check + +# There are 3615 environmental flows listed by ecoinvent in the version 3.X. +CMLCAstring34 = df['CMLCAstring'].tolist() + +df_sa = slice_to_iterate() + +#%% Second iteration + +# Algorithm specific to the project file, which contains more environmental +# flows than the bare ei22 CMLCA implementation. + +df_sa.loc[(df_sa['Full name'].str.contains( + '[air]', regex=False)),'Search'] = df_sa['Full name'].str.replace( + 'air', 'air_unspecified') + +df_sa['CMLCAstring'] = np.vectorize(stringer)(df_sa['Search']) +df_sa.dropna(subset=['CMLCAstring'], inplace=True) +df_sa['Matching type'] = 'semiautomatic' + +df_sa['UUID'] = np.vectorize(main_uuid)(df_sa['CMLCAstring'], df_sa['Unit']) + +# Dictionary specific to the project file. +sa = df_sa[dictKeys].set_index('Full name').T.to_dict('dict') + +# Update dictionary. +biomatcher.update(sa) + +# Iterate +cmlca22['CMLCAstring'] = np.vectorize(stringer)(cmlca22['Full name']) + +# Iteration check + +# Input slice for the third iteration, containing 587 unmatched elements. +df_aw = slice_to_iterate() + +#%% Third iteration + +water = [('water_fossil-', '(\'water\', \'ground-\')'), + ('water_lake', '(\'water\', \'surface water\')'), + ('water_river','(\'water\', \'surface water\')'), + ('water_river, long-term', '(\'water\', \'surface water\')')] + +for old, new in water: + df_aw.loc[(df_aw['Full name'].str.contains(old, regex=False)), + 'CMLCAstring'] = df_aw['Full name'].str.replace(old, new) + +df_aw.dropna(subset=['CMLCAstring'], inplace=True) + +# Check if all the deduced CMLCAstrings for the ei3.4 version exist. +aw_check = df_aw.loc[df_aw['CMLCAstring'].isin(CMLCAstring34)] + +df_aw['Matching type'] = 'water compartments by C. Mutel' + +df_aw['UUID'] = np.vectorize(main_uuid)(df_aw['CMLCAstring'], df_aw['Unit']) + +aw = df_aw[dictKeys].set_index('Full name').T.to_dict('dict') + +biomatcher.update(aw) + +# Iterate +cmlca22['CMLCAstring'] = np.vectorize(stringer)(cmlca22['Full name']) + +# Input slice for the fourth iteration, containing 30 unmatched elements. +df_mutel = slice_to_iterate() + +#%%Fourth iteration + +df_mutel['Matching type'] = 'Manual by Mutel' + +# Remove a level of detail and substitute rail with road (to match with the +# flow containing rail/road). + +df_mutel['Search'] = np.vectorize(generalize)(df_mutel['Full name']) +df_mutel['CMLCAstring'] = np.vectorize(stringer)(df_mutel['Search']) + +df_mutel['UUID'] = np.vectorize(main_uuid)(df_mutel['CMLCAstring'], + df_mutel['Unit']) + +mutel = df_mutel[dictKeys].dropna().set_index('Full name').T.to_dict('dict') + +biomatcher.update(mutel) + +# Iterate +cmlca22['CMLCAstring'] = np.vectorize(stringer)(cmlca22['Full name']) + +# Input slice for the fifth iteration, containing 9 unmatched elements. + +df_manual = slice_to_iterate() + +#%% Fifth iteration + +df_manual['Matching type'] = 'Manual by BMX' + +manual = [('Carbon dioxide\[air\]', + 'Carbon dioxide, fossil[air_unspecified]'), + ('Carbon monoxide\[air\]', + 'Carbon monoxide, fossil[air_unspecified]'), + ('2,3,7,8-tetrachlorodibenzo-p-dioxin\[air\]', + ('Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin' + '[air_unspecified]')), + ('Particulates\[air\]', + 'Particulates, > 2.5 um, and < 10um[air_unspecified]'), + ('Water\[resources\]', + 'Water, unspecified natural origin[resource_in water]') + ] + +for old, new in manual: + df_manual.loc[(df_manual['Full name'].str.contains(old, regex=True)), + 'Search'] = df_manual['Full name'].str.replace(old, new) + # df_manual['Search'] = df_manual['Full name'].str.replace(old, new) + +df_manual['CMLCAstring'] = np.vectorize(stringer)(df_manual['Search']) + +df_manual['UUID'] = np.vectorize(main_uuid)(df_manual['CMLCAstring'], + df_manual['Unit']) + +manual= df_manual[dictKeys].dropna().set_index('Full name').T.to_dict('dict') + +biomatcher.update(manual) + +# Iterate +cmlca22['CMLCAstring'] = np.vectorize(stringer)(cmlca22['Full name']) + +#%% Last check, leaving 4 unmatched elements. +df_unlinked= slice_to_iterate() diff --git a/data/CMLCA22_REM.txt b/data/CMLCA22_REM.txt new file mode 100644 index 0000000..83e801d --- /dev/null +++ b/data/CMLCA22_REM.txt @@ -0,0 +1,3779 @@ +Label Full name Kind Compartment Unit +[E1] Occupation, industrial area, built up[resource_land] environmental [M2] resource_land [U5] m2a +[E2] Occupation, construction site[resource_land] environmental [M2] resource_land [U5] m2a +[E3] Transformation, from unknown[resource_land] environmental [M2] resource_land [U6] m2 +[E4] Transformation, to industrial area, built up[resource_land] environmental [M2] resource_land [U6] m2 +[E5] Occupation, urban, discontinuously built[resource_land] environmental [M2] resource_land [U5] m2a +[E6] Transformation, from pasture and meadow[resource_land] environmental [M2] resource_land [U6] m2 +[E7] Transformation, to urban, discontinuously built[resource_land] environmental [M2] resource_land [U6] m2 +[E8] Heat, waste[air_low population density] environmental [M3] air_low population density [U9] MJ +[E9] Energy, solar, converted[resource_in air] environmental [M4] resource_in air [U9] MJ +[E10] Heat, waste[air_high population density] environmental [M5] air_high population density [U9] MJ +[E11] NMVOC, non-methane volatile organic compounds, unspecified origin[air_high population density] environmental [M5] air_high population density [U3] kg +[E12] Ammonia[air_high population density] environmental [M5] air_high population density [U3] kg +[E13] Particulates, < 2.5 um[air_high population density] environmental [M5] air_high population density [U3] kg +[E14] Particulates, > 10 um[air_high population density] environmental [M5] air_high population density [U3] kg +[E15] Particulates, > 2.5 um, and < 10um[air_high population density] environmental [M5] air_high population density [U3] kg +[E16] Zinc, ion[water_river] environmental [M6] water_river [U3] kg +[E17] Lead[water_river] environmental [M6] water_river [U3] kg +[E18] Nickel, ion[water_river] environmental [M6] water_river [U3] kg +[E19] Mercury[water_river] environmental [M6] water_river [U3] kg +[E20] Copper, ion[water_river] environmental [M6] water_river [U3] kg +[E21] Chromium, ion[water_river] environmental [M6] water_river [U3] kg +[E22] Cadmium, ion[water_river] environmental [M6] water_river [U3] kg +[E23] Arsenic, ion[water_river] environmental [M6] water_river [U3] kg +[E24] Phosphate[water_river] environmental [M6] water_river [U3] kg +[E25] Ammonium, ion[water_river] environmental [M6] water_river [U3] kg +[E26] Nitrate[water_river] environmental [M6] water_river [U3] kg +[E27] Nitrate[air_high population density] environmental [M5] air_high population density [U3] kg +[E28] Calcite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E29] Sylvite, 25 % in sylvinite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E30] Water, cooling, unspecified natural origin[resource_in water] environmental [M8] resource_in water [U2] m3 +[E31] Water, river[resource_in water] environmental [M8] resource_in water [U2] m3 +[E32] Sodium, ion[water_river] environmental [M6] water_river [U3] kg +[E33] Potassium, ion[water_river] environmental [M6] water_river [U3] kg +[E34] Chloride[water_river] environmental [M6] water_river [U3] kg +[E35] Calcium, ion[water_river] environmental [M6] water_river [U3] kg +[E36] Magnesium[water_river] environmental [M6] water_river [U3] kg +[E37] Sulfur[water_river] environmental [M6] water_river [U3] kg +[E38] Hydrogen chloride[air_high population density] environmental [M5] air_high population density [U3] kg +[E39] Methane, biogenic[air_high population density] environmental [M5] air_high population density [U3] kg +[E40] Carbon monoxide, fossil[air_high population density] environmental [M5] air_high population density [U3] kg +[E41] Carbon dioxide, biogenic[air_high population density] environmental [M5] air_high population density [U3] kg +[E42] Carbon dioxide, fossil[air_high population density] environmental [M5] air_high population density [U3] kg +[E43] Dinitrogen monoxide[air_high population density] environmental [M5] air_high population density [U3] kg +[E44] Hydrogen sulfide[air_high population density] environmental [M5] air_high population density [U3] kg +[E45] Occupation, industrial area[resource_land] environmental [M2] resource_land [U5] m2a +[E46] Transformation, to industrial area[resource_land] environmental [M2] resource_land [U6] m2 +[E47] Acetic acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E48] Chlorine[air_high population density] environmental [M5] air_high population density [U3] kg +[E49] Chloroacetic acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E50] Chlorosulfonic acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E51] Cyanoacetic acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E52] Benzene, dichloro[air_high population density] environmental [M5] air_high population density [U3] kg +[E53] Dimethyl malonate[air_high population density] environmental [M5] air_high population density [U3] kg +[E54] Ethanol[air_high population density] environmental [M5] air_high population density [U3] kg +[E55] Hydrogen[air_high population density] environmental [M5] air_high population density [U3] kg +[E56] Methane, fossil[air_high population density] environmental [M5] air_high population density [U3] kg +[E57] Methanesulfonic acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E58] Methanol[air_high population density] environmental [M5] air_high population density [U3] kg +[E59] Methane, dichloro-, HCC-30[air_high population density] environmental [M5] air_high population density [U3] kg +[E60] Methyl amine[air_high population density] environmental [M5] air_high population density [U3] kg +[E61] Propanol[air_high population density] environmental [M5] air_high population density [U3] kg +[E62] Propene[air_high population density] environmental [M5] air_high population density [U3] kg +[E63] Sulphur trioxide[air_high population density] environmental [M5] air_high population density [U3] kg +[E64] t-Butylamine[air_high population density] environmental [M5] air_high population density [U3] kg +[E65] Toluene[air_high population density] environmental [M5] air_high population density [U3] kg +[E66] Acetic acid[water_river] environmental [M6] water_river [U3] kg +[E67] Acetonitrile[water_river] environmental [M6] water_river [U3] kg +[E68] Carbonate[water_river] environmental [M6] water_river [U3] kg +[E69] Chloroacetic acid[water_river] environmental [M6] water_river [U3] kg +[E70] Chlorosulfonic acid[water_river] environmental [M6] water_river [U3] kg +[E71] o-Dichlorobenzene[water_river] environmental [M6] water_river [U3] kg +[E72] Dimethylamine[water_river] environmental [M6] water_river [U3] kg +[E73] Ethanol[water_river] environmental [M6] water_river [U3] kg +[E74] Fluoride[water_river] environmental [M6] water_river [U3] kg +[E75] Formate[water_river] environmental [M6] water_river [U3] kg +[E76] Methanol[water_river] environmental [M6] water_river [U3] kg +[E77] Methyl amine[water_river] environmental [M6] water_river [U3] kg +[E78] Methane, dichloro-, HCC-30[water_river] environmental [M6] water_river [U3] kg +[E79] Propanol[water_river] environmental [M6] water_river [U3] kg +[E80] Propene[water_river] environmental [M6] water_river [U3] kg +[E81] Sulfate[water_river] environmental [M6] water_river [U3] kg +[E82] t-Butylamine[water_river] environmental [M6] water_river [U3] kg +[E83] Toluene[water_river] environmental [M6] water_river [U3] kg +[E84] Water, salt, sole[resource_in water] environmental [M8] resource_in water [U2] m3 +[E85] Bromine, 0.0023% in water[resource_in water] environmental [M8] resource_in water [U3] kg +[E86] Iodine, 0.03% in water[resource_in water] environmental [M8] resource_in water [U3] kg +[E87] Toluene, 2-chloro[air_high population density] environmental [M5] air_high population density [U3] kg +[E88] Acetaldehyde[air_high population density] environmental [M5] air_high population density [U3] kg +[E89] Aniline[air_high population density] environmental [M5] air_high population density [U3] kg +[E90] Diethylamine[air_high population density] environmental [M5] air_high population density [U3] kg +[E91] Dipropylamine[air_high population density] environmental [M5] air_high population density [U3] kg +[E92] Ethyl acetate[air_high population density] environmental [M5] air_high population density [U3] kg +[E93] Lactic acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E94] Methyl lactate[air_high population density] environmental [M5] air_high population density [U3] kg +[E95] Propanal[air_high population density] environmental [M5] air_high population density [U3] kg +[E96] Toluene, 2-chloro[water_river] environmental [M6] water_river [U3] kg +[E97] Acetaldehyde[water_river] environmental [M6] water_river [U3] kg +[E98] Aniline[water_river] environmental [M6] water_river [U3] kg +[E99] Bromide[water_river] environmental [M6] water_river [U3] kg +[E100] Diethylamine[water_river] environmental [M6] water_river [U3] kg +[E101] Dipropylamine[water_river] environmental [M6] water_river [U3] kg +[E102] Ethyl acetate[water_river] environmental [M6] water_river [U3] kg +[E103] Iodide[water_river] environmental [M6] water_river [U3] kg +[E104] Lactic acid[water_river] environmental [M6] water_river [U3] kg +[E105] Sulfide[water_river] environmental [M6] water_river [U3] kg +[E106] Phenol, 2,4-dichloro[air_high population density] environmental [M5] air_high population density [U3] kg +[E107] Butanol[air_high population density] environmental [M5] air_high population density [U3] kg +[E108] Ethylene oxide[air_high population density] environmental [M5] air_high population density [U3] kg +[E109] Phenol[air_high population density] environmental [M5] air_high population density [U3] kg +[E110] Propane[air_high population density] environmental [M5] air_high population density [U3] kg +[E111] Propionic acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E112] Butanol[water_river] environmental [M6] water_river [U3] kg +[E113] Ethylene oxide[water_river] environmental [M6] water_river [U3] kg +[E114] Phenol[water_river] environmental [M6] water_river [U3] kg +[E115] Propionic acid[water_river] environmental [M6] water_river [U3] kg +[E116] 2-Aminopropanol[air_high population density] environmental [M5] air_high population density [U3] kg +[E117] Acetone[air_high population density] environmental [M5] air_high population density [U3] kg +[E118] Chloramine[air_high population density] environmental [M5] air_high population density [U3] kg +[E119] Ethene[air_high population density] environmental [M5] air_high population density [U3] kg +[E120] Formaldehyde[air_high population density] environmental [M5] air_high population density [U3] kg +[E121] Propylene oxide[air_high population density] environmental [M5] air_high population density [U3] kg +[E122] 2-Aminopropanol[water_river] environmental [M6] water_river [U3] kg +[E123] Acetone[water_river] environmental [M6] water_river [U3] kg +[E124] Chloroacetyl chloride[water_river] environmental [M6] water_river [U3] kg +[E125] Chloramine[water_river] environmental [M6] water_river [U3] kg +[E126] Formaldehyde[water_river] environmental [M6] water_river [U3] kg +[E127] Propylene oxide[water_river] environmental [M6] water_river [U3] kg +[E128] o-Nitrotoluene[air_high population density] environmental [M5] air_high population density [U3] kg +[E129] 2-Nitrobenzoic acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E130] Methyl acetate[air_high population density] environmental [M5] air_high population density [U3] kg +[E131] Isopropylamine[air_high population density] environmental [M5] air_high population density [U3] kg +[E132] 2-Propanol[air_high population density] environmental [M5] air_high population density [U3] kg +[E133] 2-Methyl-1-propanol[air_high population density] environmental [M5] air_high population density [U3] kg +[E134] Ethylamine[air_high population density] environmental [M5] air_high population density [U3] kg +[E135] Chloroform[air_high population density] environmental [M5] air_high population density [U3] kg +[E136] Butene[air_high population density] environmental [M5] air_high population density [U3] kg +[E137] Anthranilic acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E138] Ethyne[air_high population density] environmental [M5] air_high population density [U3] kg +[E139] Borate[water_river] environmental [M6] water_river [U3] kg +[E140] Boron[water_river] environmental [M6] water_river [U3] kg +[E141] Butene[water_river] environmental [M6] water_river [U3] kg +[E142] Benzene, chloro-[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E143] Chloroform[water_river] environmental [M6] water_river [U3] kg +[E144] Ethylamine[water_river] environmental [M6] water_river [U3] kg +[E145] 2-Methyl-1-propanol[water_river] environmental [M6] water_river [U3] kg +[E146] 2-Propanol[water_river] environmental [M6] water_river [U3] kg +[E147] Isopropylamine[water_river] environmental [M6] water_river [U3] kg +[E148] Methyl acetate[water_river] environmental [M6] water_river [U3] kg +[E149] Phosphorus[water_river] environmental [M6] water_river [U3] kg +[E150] 1-Pentanol[air_high population density] environmental [M5] air_high population density [U3] kg +[E151] Benzene[air_high population density] environmental [M5] air_high population density [U3] kg +[E152] Formamide[air_high population density] environmental [M5] air_high population density [U3] kg +[E153] Formic acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E154] 1-Pentene[air_high population density] environmental [M5] air_high population density [U3] kg +[E155] 1-Pentanol[water_river] environmental [M6] water_river [U3] kg +[E156] Acetyl chloride[water_river] environmental [M6] water_river [U3] kg +[E157] Benzene[water_river] environmental [M6] water_river [U3] kg +[E158] Formamide[water_river] environmental [M6] water_river [U3] kg +[E159] Formic acid[water_river] environmental [M6] water_river [U3] kg +[E160] Lithium, ion[water_river] environmental [M6] water_river [U3] kg +[E161] 1-Pentene[water_river] environmental [M6] water_river [U3] kg +[E162] Propanal[water_river] environmental [M6] water_river [U3] kg +[E163] Silicon[water_river] environmental [M6] water_river [U3] kg +[E164] Ethane, 1,2-dichloro-[air_high population density] environmental [M5] air_high population density [U3] kg +[E165] Trimethylamine[air_high population density] environmental [M5] air_high population density [U3] kg +[E166] Ethane, 1,2-dichloro-[water_river] environmental [M6] water_river [U3] kg +[E167] Trimethylamine[water_river] environmental [M6] water_river [U3] kg +[E168] Carbon disulfide[air_high population density] environmental [M5] air_high population density [U3] kg +[E169] Ethylene diamine[air_high population density] environmental [M5] air_high population density [U3] kg +[E170] Carbon disulfide[water_river] environmental [M6] water_river [U3] kg +[E171] Ethylene diamine[water_river] environmental [M6] water_river [U3] kg +[E172] Manganese[water_river] environmental [M6] water_river [U3] kg +[E173] m-Xylene[air_high population density] environmental [M5] air_high population density [U3] kg +[E174] m-Xylene[water_river] environmental [M6] water_river [U3] kg +[E175] Aluminium[water_river] environmental [M6] water_river [U3] kg +[E176] Propylamine[air_high population density] environmental [M5] air_high population density [U3] kg +[E177] Butadiene[air_high population density] environmental [M5] air_high population density [U3] kg +[E178] Ethene[water_river] environmental [M6] water_river [U3] kg +[E179] Propylamine[water_river] environmental [M6] water_river [U3] kg +[E180] Urea[water_river] environmental [M6] water_river [U3] kg +[E181] Occupation, arable, non-irrigated[resource_land] environmental [M2] resource_land [U5] m2a +[E182] Transformation, from arable, non-irrigated[resource_land] environmental [M2] resource_land [U6] m2 +[E183] Transformation, to arable, non-irrigated[resource_land] environmental [M2] resource_land [U6] m2 +[E184] Asulam[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E185] Dinitrogen monoxide[air_low population density] environmental [M3] air_low population density [U3] kg +[E186] Nitrate[water_ground-] environmental [M11] water_ground- [U3] kg +[E187] Phosphate[water_ground-] environmental [M11] water_ground- [U3] kg +[E188] Nitrogen oxides[air_low population density] environmental [M3] air_low population density [U3] kg +[E189] Cadmium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E190] Chromium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E191] Copper[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E192] Lead[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E193] Mercury[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E194] Nickel[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E195] Zinc[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E196] Cadmium, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E197] Chromium, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E198] Copper, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E199] Lead[water_ground-] environmental [M11] water_ground- [U3] kg +[E200] Mercury[water_ground-] environmental [M11] water_ground- [U3] kg +[E201] Zinc, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E202] Carbon dioxide, in air[resource_in air] environmental [M4] resource_in air [U3] kg +[E203] Energy, gross calorific value, in biomass[resource_biotic] environmental [M12] resource_biotic [U9] MJ +[E204] Ethofumesate[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E205] Ammonia[air_low population density] environmental [M3] air_low population density [U3] kg +[E206] Atrazine[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E207] Metolachlor[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E208] Glyphosate[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E209] Chlorothalonil[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E210] Fenpiclonil[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E211] Mancozeb[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E212] Metribuzin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E213] Orbencarb[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E214] Teflubenzuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E215] NMVOC, non-methane volatile organic compounds, unspecified origin[air_low population density] environmental [M3] air_low population density [U3] kg +[E216] Sulfur dioxide[air_low population density] environmental [M3] air_low population density [U3] kg +[E217] Methane, fossil[air_low population density] environmental [M3] air_low population density [U3] kg +[E218] Benzene[air_low population density] environmental [M3] air_low population density [U3] kg +[E219] Particulates, < 2.5 um[air_low population density] environmental [M3] air_low population density [U3] kg +[E220] Cadmium[air_low population density] environmental [M3] air_low population density [U3] kg +[E221] Chromium[air_low population density] environmental [M3] air_low population density [U3] kg +[E222] Copper[air_low population density] environmental [M3] air_low population density [U3] kg +[E223] Zinc[air_low population density] environmental [M3] air_low population density [U3] kg +[E224] Benzo(a)pyrene[air_low population density] environmental [M3] air_low population density [U3] kg +[E225] PAH, polycyclic aromatic hydrocarbons[air_low population density] environmental [M3] air_low population density [U3] kg +[E226] Selenium[air_low population density] environmental [M3] air_low population density [U3] kg +[E227] Lead[air_low population density] environmental [M3] air_low population density [U3] kg +[E228] Transformation, from pasture and meadow, intensive[resource_land] environmental [M2] resource_land [U6] m2 +[E229] Cyproconazole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E230] Cyprodinil[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E231] Metaldehyde[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E232] Chlorotoluron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E233] Isoproturon[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E234] Pendimethalin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E235] Fenpropimorph[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E236] Ethephon[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E237] Bentazone[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E238] Fluazifop-P-butyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E239] Metamitron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E240] Phenmedipham[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E241] Terbufos[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E242] Carbon, in organic matter, in soil[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E243] Transformation, from forest, intensive, clear-cutting[resource_land] environmental [M2] resource_land [U6] m2 +[E244] Transformation, to forest, intensive, short-cycle[resource_land] environmental [M2] resource_land [U6] m2 +[E245] Occupation, forest, intensive, short-cycle[resource_land] environmental [M2] resource_land [U5] m2a +[E246] Carbon dioxide, land transformation[air_low population density] environmental [M3] air_low population density [U3] kg +[E247] Phosphorus[water_ground-] environmental [M11] water_ground- [U3] kg +[E248] 2,4-D[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E249] Carbofuran[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E250] Cypermethrin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E251] Thiram[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E252] Benomyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E253] Occupation, pasture and meadow, extensive[resource_land] environmental [M2] resource_land [U5] m2a +[E254] Transformation, from pasture and meadow, extensive[resource_land] environmental [M2] resource_land [U6] m2 +[E255] Transformation, to pasture and meadow, extensive[resource_land] environmental [M2] resource_land [U6] m2 +[E256] Occupation, pasture and meadow, intensive[resource_land] environmental [M2] resource_land [U5] m2a +[E257] Transformation, to pasture and meadow, intensive[resource_land] environmental [M2] resource_land [U6] m2 +[E258] Transformation, from forest, extensive[resource_land] environmental [M2] resource_land [U6] m2 +[E259] Transformation, to permanent crop, fruit, intensive[resource_land] environmental [M2] resource_land [U6] m2 +[E260] Occupation, permanent crop, fruit, intensive[resource_land] environmental [M2] resource_land [U5] m2a +[E261] Aclonifen[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E262] Carbetamide[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E263] Pirimicarb[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E264] Tebutam[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E265] Trifluralin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E266] Napropamide[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E267] Difenoconazole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E268] Linuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E269] Metalaxil[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E270] Ioxynil[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E271] Mecoprop-P[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E272] Tebuconazole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E273] Chlormequat[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E274] Water, unspecified natural origin[resource_in water] environmental [M8] resource_in water [U2] m3 +[E275] COD, Chemical Oxygen Demand[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E276] Heat, waste[air_unspecified] environmental [M14] air_unspecified [U9] MJ +[E277] Sodium, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E278] Suspended solids, unspecified[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E279] BOD5, Biological Oxygen Demand[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E280] DOC, Dissolved Organic Carbon[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E281] TOC, Total Organic Carbon[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E282] Nitrogen[water_river] environmental [M6] water_river [U3] kg +[E283] Benzo(a)pyrene[air_high population density] environmental [M5] air_high population density [U3] kg +[E284] Calcium[air_high population density] environmental [M5] air_high population density [U3] kg +[E285] Cadmium[air_high population density] environmental [M5] air_high population density [U3] kg +[E286] Chromium[air_high population density] environmental [M5] air_high population density [U3] kg +[E287] Chromium VI[air_high population density] environmental [M5] air_high population density [U3] kg +[E288] Cobalt[air_high population density] environmental [M5] air_high population density [U3] kg +[E289] Copper[air_high population density] environmental [M5] air_high population density [U3] kg +[E290] Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin[air_high population density] environmental [M5] air_high population density [U3] kg +[E291] Hydrocarbons, aliphatic, alkanes, unspecified[air_high population density] environmental [M5] air_high population density [U3] kg +[E292] Hydrocarbons, aliphatic, unsaturated[air_high population density] environmental [M5] air_high population density [U3] kg +[E293] Hydrocarbons, aromatic[air_high population density] environmental [M5] air_high population density [U3] kg +[E294] Iron[air_high population density] environmental [M5] air_high population density [U3] kg +[E295] Lead[air_high population density] environmental [M5] air_high population density [U3] kg +[E296] Mercury[air_high population density] environmental [M5] air_high population density [U3] kg +[E297] Molybdenum[air_high population density] environmental [M5] air_high population density [U3] kg +[E298] PAH, polycyclic aromatic hydrocarbons[air_high population density] environmental [M5] air_high population density [U3] kg +[E299] Selenium[air_high population density] environmental [M5] air_high population density [U3] kg +[E300] Sodium[air_high population density] environmental [M5] air_high population density [U3] kg +[E301] Vanadium[air_high population density] environmental [M5] air_high population density [U3] kg +[E302] Zinc[air_high population density] environmental [M5] air_high population density [U3] kg +[E303] Butane[air_high population density] environmental [M5] air_high population density [U3] kg +[E304] Pentane[air_high population density] environmental [M5] air_high population density [U3] kg +[E305] Barite, 15% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E306] Particulates, > 10 um[air_low population density] environmental [M3] air_low population density [U3] kg +[E307] Sulfate[air_high population density] environmental [M5] air_high population density [U3] kg +[E308] Water, well, in ground[resource_in water] environmental [M8] resource_in water [U2] m3 +[E309] Colemanite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E310] Occupation, mineral extraction site[resource_land] environmental [M2] resource_land [U5] m2a +[E311] Transformation, to mineral extraction site[resource_land] environmental [M2] resource_land [U6] m2 +[E312] Transformation, from forest[resource_land] environmental [M2] resource_land [U6] m2 +[E313] Solids, inorganic[water_river] environmental [M6] water_river [U3] kg +[E314] Monoethanolamine[air_high population density] environmental [M5] air_high population density [U3] kg +[E315] Sodium chlorate[air_high population density] environmental [M5] air_high population density [U3] kg +[E316] Cyanide[water_river] environmental [M6] water_river [U3] kg +[E317] Chlorate[water_river] environmental [M6] water_river [U3] kg +[E318] Bromate[water_river] environmental [M6] water_river [U3] kg +[E319] Chlorinated solvents, unspecified[water_river] environmental [M6] water_river [U3] kg +[E320] Methane, tetrachloro-, R-10[air_high population density] environmental [M5] air_high population density [U3] kg +[E321] Sodium dichromate[air_high population density] environmental [M5] air_high population density [U3] kg +[E322] Dichromate[water_river] environmental [M6] water_river [U3] kg +[E323] DOC, Dissolved Organic Carbon[water_river] environmental [M6] water_river [U3] kg +[E324] TOC, Total Organic Carbon[water_river] environmental [M6] water_river [U3] kg +[E325] Ammonium carbonate[air_high population density] environmental [M5] air_high population density [U3] kg +[E326] Hydrogen fluoride[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E327] Fluorspar, 92%, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E328] Particulates, < 2.5 um[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E329] Particulates, > 2.5 um, and < 10um[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E330] Particulates, > 10 um[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E331] Hydrogen fluoride[air_low population density] environmental [M3] air_low population density [U3] kg +[E332] Particulates, > 2.5 um, and < 10um[air_low population density] environmental [M3] air_low population density [U3] kg +[E333] Uranium-238[air_low population density] environmental [M3] air_low population density [U15] kBq +[E334] Thorium-228[air_low population density] environmental [M3] air_low population density [U15] kBq +[E335] Radium-226[air_low population density] environmental [M3] air_low population density [U15] kBq +[E336] Radon-222[air_low population density] environmental [M3] air_low population density [U15] kBq +[E337] Lead-210[air_low population density] environmental [M3] air_low population density [U15] kBq +[E338] Polonium-210[air_low population density] environmental [M3] air_low population density [U15] kBq +[E339] Potassium-40[air_low population density] environmental [M3] air_low population density [U15] kBq +[E340] Fluoride[water_ocean] environmental [M15] water_ocean [U3] kg +[E341] Calcium, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E342] Sulfate[water_ocean] environmental [M15] water_ocean [U3] kg +[E343] Phosphate[water_ocean] environmental [M15] water_ocean [U3] kg +[E344] Cadmium, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E345] Lead[water_ocean] environmental [M15] water_ocean [U3] kg +[E346] Arsenic, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E347] Chromium, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E348] Copper, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E349] Manganese[water_ocean] environmental [M15] water_ocean [U3] kg +[E350] Nickel, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E351] Zinc, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E352] Uranium-238[water_ocean] environmental [M15] water_ocean [U15] kBq +[E353] Thorium-228[water_ocean] environmental [M15] water_ocean [U15] kBq +[E354] Radium-226[water_ocean] environmental [M15] water_ocean [U15] kBq +[E355] Lead-210[water_ocean] environmental [M15] water_ocean [U15] kBq +[E356] Polonium-210[water_ocean] environmental [M15] water_ocean [U15] kBq +[E357] Potassium-40[water_ocean] environmental [M15] water_ocean [U15] kBq +[E358] Occupation, industrial area, vegetation[resource_land] environmental [M2] resource_land [U5] m2a +[E359] Transformation, to industrial area, vegetation[resource_land] environmental [M2] resource_land [U6] m2 +[E360] Transformation, from industrial area, built up[resource_land] environmental [M2] resource_land [U6] m2 +[E361] Transformation, from industrial area, vegetation[resource_land] environmental [M2] resource_land [U6] m2 +[E362] Transformation, to pasture and meadow[resource_land] environmental [M2] resource_land [U6] m2 +[E363] Transformation, to unknown[resource_land] environmental [M2] resource_land [U6] m2 +[E364] Silicon tetrafluoride[air_low population density] environmental [M3] air_low population density [U3] kg +[E365] Fluoride[water_ground-] environmental [M11] water_ground- [U3] kg +[E366] Calcium, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E367] Sulfate[water_ground-] environmental [M11] water_ground- [U3] kg +[E368] Arsenic, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E369] Manganese[water_ground-] environmental [M11] water_ground- [U3] kg +[E370] Nickel, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E371] Uranium-238[water_ground-] environmental [M11] water_ground- [U15] kBq +[E372] Thorium-228[water_ground-] environmental [M11] water_ground- [U15] kBq +[E373] Radium-226[water_ground-] environmental [M11] water_ground- [U15] kBq +[E374] Lead-210[water_ground-] environmental [M11] water_ground- [U15] kBq +[E375] Polonium-210[water_ground-] environmental [M11] water_ground- [U15] kBq +[E376] Potassium-40[water_ground-] environmental [M11] water_ground- [U15] kBq +[E377] Metamorphous rock, graphite containing, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E378] Sulfur dioxide[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E379] BOD5, Biological Oxygen Demand[water_river] environmental [M6] water_river [U3] kg +[E380] COD, Chemical Oxygen Demand[water_river] environmental [M6] water_river [U3] kg +[E381] Hydrocarbons, aromatic[water_river] environmental [M6] water_river [U3] kg +[E382] Suspended solids, unspecified[water_river] environmental [M6] water_river [U3] kg +[E383] Hydrogen peroxide[water_river] environmental [M6] water_river [U3] kg +[E384] Oil, crude, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E385] Gas, natural, in ground[resource_in ground] environmental [M7] resource_in ground [U12] Nm3 +[E386] Coal, hard, unspecified, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E387] Coal, brown, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E388] Peat, in ground[resource_biotic] environmental [M12] resource_biotic [U3] kg +[E389] Wood, unspecified, standing[resource_biotic] environmental [M12] resource_biotic [U2] m3 +[E390] Energy, potential (in hydropower reservoir), converted[resource_in water] environmental [M8] resource_in water [U9] MJ +[E391] Uranium, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E392] Aluminium, 24% in bauxite, 11% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E393] Clay, bentonite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E394] Anhydrite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E395] Clay, unspecified, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E396] Chromium, 25.5% in chromite, 11.6% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E397] Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E398] Dolomite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E399] Iron, 46% in ore, 25% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E400] Feldspar, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E401] Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E402] Granite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E403] Gravel, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E404] Cinnabar, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E405] Magnesite, 60% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E406] Nickel, 1.98% in silicates, 1.04% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E407] Olivine, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E408] Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E409] Phosphorus, 18% in apatite, 12% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E410] TiO2, 95% in rutile, 0.40% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E411] Sulfur, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E412] Sand, unspecified, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E413] Shale, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E414] Sodium chloride, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E415] Sodium nitrate, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E416] Talc, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E417] Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E418] Water, salt, ocean[resource_in water] environmental [M8] resource_in water [U2] m3 +[E419] Carbon monoxide, biogenic[air_high population density] environmental [M5] air_high population density [U3] kg +[E420] Fluorine[air_high population density] environmental [M5] air_high population density [U3] kg +[E421] Aldehydes, unspecified[air_high population density] environmental [M5] air_high population density [U3] kg +[E422] Ethene, chloro-[air_high population density] environmental [M5] air_high population density [U3] kg +[E423] Hydrocarbons, chlorinated[air_high population density] environmental [M5] air_high population density [U3] kg +[E424] Cyanide[air_high population density] environmental [M5] air_high population density [U3] kg +[E425] Hydrocarbons, aliphatic, alkanes, cyclic[air_high population density] environmental [M5] air_high population density [U3] kg +[E426] Silver[air_high population density] environmental [M5] air_high population density [U3] kg +[E427] Antimony[air_high population density] environmental [M5] air_high population density [U3] kg +[E428] Xylene[air_high population density] environmental [M5] air_high population density [U3] kg +[E429] Benzene, ethyl-[air_high population density] environmental [M5] air_high population density [U3] kg +[E430] Styrene[air_high population density] environmental [M5] air_high population density [U3] kg +[E431] Iron, ion[water_river] environmental [M6] water_river [U3] kg +[E432] Acidity, unspecified[water_river] environmental [M6] water_river [U3] kg +[E433] Hydrocarbons, unspecified[water_river] environmental [M6] water_river [U3] kg +[E434] Oils, unspecified[water_river] environmental [M6] water_river [U3] kg +[E435] Chlorine[water_river] environmental [M6] water_river [U3] kg +[E436] Dissolved solids[water_river] environmental [M6] water_river [U3] kg +[E437] Ethene, chloro-[water_river] environmental [M6] water_river [U3] kg +[E438] AOX, Adsorbable Organic Halogen as Cl[water_river] environmental [M6] water_river [U3] kg +[E439] Tin, ion[water_river] environmental [M6] water_river [U3] kg +[E440] Strontium[water_river] environmental [M6] water_river [U3] kg +[E441] Pyrite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E442] Kaolinite, 24% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E443] Krypton, in air[resource_in air] environmental [M4] resource_in air [U3] kg +[E444] Chromium VI[water_river] environmental [M6] water_river [U3] kg +[E445] Kieserite, 25% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E446] Ozone[air_high population density] environmental [M5] air_high population density [U3] kg +[E447] Fluorine, 4.5% in apatite, 3% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E448] Transformation, from mineral extraction site[resource_land] environmental [M2] resource_land [U6] m2 +[E449] Uranium-234[air_low population density] environmental [M3] air_low population density [U15] kBq +[E450] Thorium-230[air_low population density] environmental [M3] air_low population density [U15] kBq +[E451] Thorium-232[air_low population density] environmental [M3] air_low population density [U15] kBq +[E452] Radioactive species, alpha emitters[water_river] environmental [M6] water_river [U15] kBq +[E453] Oils, unspecified[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E454] Phosphorus, 18% in apatite, 4% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E455] Fluorine, 4.5% in apatite, 1% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E456] Transformation, to forest[resource_land] environmental [M2] resource_land [U6] m2 +[E457] Fluoride[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E458] Phosphorus[air_high population density] environmental [M5] air_high population density [U3] kg +[E459] Barium[water_river] environmental [M6] water_river [U3] kg +[E460] Molybdenum[water_river] environmental [M6] water_river [U3] kg +[E461] Selenium[water_river] environmental [M6] water_river [U3] kg +[E462] Silver, ion[water_river] environmental [M6] water_river [U3] kg +[E463] Xylene[water_river] environmental [M6] water_river [U3] kg +[E464] Aluminium[water_ocean] environmental [M15] water_ocean [U3] kg +[E465] Barium[water_ocean] environmental [M15] water_ocean [U3] kg +[E466] Boron[water_ocean] environmental [M15] water_ocean [U3] kg +[E467] Chloride[water_ocean] environmental [M15] water_ocean [U3] kg +[E468] Cyanide[water_ocean] environmental [M15] water_ocean [U3] kg +[E469] Hydrocarbons, aromatic[water_ocean] environmental [M15] water_ocean [U3] kg +[E470] Iron, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E471] Magnesium[water_ocean] environmental [M15] water_ocean [U3] kg +[E472] Mercury[water_ocean] environmental [M15] water_ocean [U3] kg +[E473] Molybdenum[water_ocean] environmental [M15] water_ocean [U3] kg +[E474] Nitrate[water_ocean] environmental [M15] water_ocean [U3] kg +[E475] Phosphorus[water_ocean] environmental [M15] water_ocean [U3] kg +[E476] Potassium, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E477] Selenium[water_ocean] environmental [M15] water_ocean [U3] kg +[E478] Sodium, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E479] Strontium[water_ocean] environmental [M15] water_ocean [U3] kg +[E480] Suspended solids, unspecified[water_ocean] environmental [M15] water_ocean [U3] kg +[E481] t-Butyl methyl ether[water_ocean] environmental [M15] water_ocean [U3] kg +[E482] Vanadium, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E483] Vanadium, ion[water_river] environmental [M6] water_river [U3] kg +[E484] Xylene[water_ocean] environmental [M15] water_ocean [U3] kg +[E485] Ammonium, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E486] PAH, polycyclic aromatic hydrocarbons[water_river] environmental [M6] water_river [U3] kg +[E487] AOX, Adsorbable Organic Halogen as Cl[water_ocean] environmental [M15] water_ocean [U3] kg +[E488] Benzene[water_ocean] environmental [M15] water_ocean [U3] kg +[E489] PAH, polycyclic aromatic hydrocarbons[water_ocean] environmental [M15] water_ocean [U3] kg +[E490] Sulfide[water_ocean] environmental [M15] water_ocean [U3] kg +[E491] Benzene, ethyl-[water_river] environmental [M6] water_river [U3] kg +[E492] Benzene, ethyl-[water_ocean] environmental [M15] water_ocean [U3] kg +[E493] BOD5, Biological Oxygen Demand[water_ocean] environmental [M15] water_ocean [U3] kg +[E494] DOC, Dissolved Organic Carbon[water_ocean] environmental [M15] water_ocean [U3] kg +[E495] Toluene[water_ocean] environmental [M15] water_ocean [U3] kg +[E496] COD, Chemical Oxygen Demand[water_ocean] environmental [M15] water_ocean [U3] kg +[E497] Nitrogen, organic bound[water_river] environmental [M6] water_river [U3] kg +[E498] Hydrocarbons, unspecified[water_ocean] environmental [M15] water_ocean [U3] kg +[E499] Nitrogen, organic bound[water_ocean] environmental [M15] water_ocean [U3] kg +[E500] Oils, unspecified[water_ocean] environmental [M15] water_ocean [U3] kg +[E501] Phenol[water_ocean] environmental [M15] water_ocean [U3] kg +[E502] Occupation, traffic area, road network[resource_land] environmental [M2] resource_land [U5] m2a +[E503] Occupation, dump site[resource_land] environmental [M2] resource_land [U5] m2a +[E504] Transformation, to traffic area, road network[resource_land] environmental [M2] resource_land [U6] m2 +[E505] Transformation, to dump site, residual material landfill[resource_land] environmental [M2] resource_land [U6] m2 +[E506] Silicon[air_high population density] environmental [M5] air_high population density [U3] kg +[E507] Borax, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E508] Sodium formate[air_high population density] environmental [M5] air_high population density [U3] kg +[E509] Sodium formate[water_river] environmental [M6] water_river [U3] kg +[E510] Spodumene, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E511] Heat, waste[water_river] environmental [M6] water_river [U9] MJ +[E512] Sulfur hexafluoride[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E513] Ethane, 1,1,1,2-tetrafluoro-, HFC-134a[air_high population density] environmental [M5] air_high population density [U3] kg +[E514] Methane, chlorodifluoro-, HCFC-22[air_high population density] environmental [M5] air_high population density [U3] kg +[E515] Methane, trichlorofluoro-, CFC-11[air_high population density] environmental [M5] air_high population density [U3] kg +[E516] Methane, dichlorodifluoro-, CFC-12[air_high population density] environmental [M5] air_high population density [U3] kg +[E517] 1,4-Butanediol[air_high population density] environmental [M5] air_high population density [U3] kg +[E518] Acenaphthene[air_low population density] environmental [M3] air_low population density [U3] kg +[E519] Acenaphthene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E520] Acetaldehyde[air_low population density] environmental [M3] air_low population density [U3] kg +[E521] Acetaldehyde[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E522] Acetic acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E523] Acetic acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E524] Acetone[air_low population density] environmental [M3] air_low population density [U3] kg +[E525] Acetonitrile[air_low population density] environmental [M3] air_low population density [U3] kg +[E526] Acrolein[air_high population density] environmental [M5] air_high population density [U3] kg +[E527] Acrolein[air_low population density] environmental [M3] air_low population density [U3] kg +[E528] Acrolein[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E529] Acrylic acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E530] Actinides, radioactive, unspecified[air_low population density] environmental [M3] air_low population density [U15] kBq +[E531] Aerosols, radioactive, unspecified[air_low population density] environmental [M3] air_low population density [U15] kBq +[E532] Aldehydes, unspecified[air_low population density] environmental [M3] air_low population density [U3] kg +[E533] Aldehydes, unspecified[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E534] Aluminium[air_high population density] environmental [M5] air_high population density [U3] kg +[E535] Aluminium[air_low population density] environmental [M3] air_low population density [U3] kg +[E536] Aluminium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E537] Aluminium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E538] Ammonia[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E539] Antimony[air_low population density] environmental [M3] air_low population density [U3] kg +[E540] Antimony[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E541] Antimony[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E542] Antimony-124[air_low population density] environmental [M3] air_low population density [U15] kBq +[E543] Antimony-125[air_low population density] environmental [M3] air_low population density [U15] kBq +[E544] Argon-41[air_low population density] environmental [M3] air_low population density [U15] kBq +[E545] Arsenic[air_low population density] environmental [M3] air_low population density [U3] kg +[E546] Arsenic[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E547] Arsenic[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E548] Arsine[air_high population density] environmental [M5] air_high population density [U3] kg +[E549] Barium[air_high population density] environmental [M5] air_high population density [U3] kg +[E550] Barium[air_low population density] environmental [M3] air_low population density [U3] kg +[E551] Barium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E552] Barium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E553] Barium-140[air_low population density] environmental [M3] air_low population density [U15] kBq +[E554] Benzal chloride[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E555] Benzaldehyde[air_high population density] environmental [M5] air_high population density [U3] kg +[E556] Benzene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E557] Benzene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E558] Benzene, ethyl-[air_low population density] environmental [M3] air_low population density [U3] kg +[E559] Benzene, hexachloro-[air_high population density] environmental [M5] air_high population density [U3] kg +[E560] Benzene, hexachloro-[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E561] Benzene, pentachloro-[air_high population density] environmental [M5] air_high population density [U3] kg +[E562] Benzo(a)pyrene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E563] Beryllium[air_high population density] environmental [M5] air_high population density [U3] kg +[E564] Beryllium[air_low population density] environmental [M3] air_low population density [U3] kg +[E565] Beryllium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E566] Beryllium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E567] Boron[air_high population density] environmental [M5] air_high population density [U3] kg +[E568] Boron[air_low population density] environmental [M3] air_low population density [U3] kg +[E569] Boron[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E570] Boron[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E571] Boron trifluoride[air_high population density] environmental [M5] air_high population density [U3] kg +[E572] Bromine[air_high population density] environmental [M5] air_high population density [U3] kg +[E573] Bromine[air_low population density] environmental [M3] air_low population density [U3] kg +[E574] Bromine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E575] Butadiene[air_low population density] environmental [M3] air_low population density [U3] kg +[E576] Butadiene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E577] Butadiene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E578] Butane[air_low population density] environmental [M3] air_low population density [U3] kg +[E579] Butane[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E580] Butyrolactone[air_high population density] environmental [M5] air_high population density [U3] kg +[E581] Cadmium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E582] Cadmium[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E583] Cadmium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E584] Calcium[air_low population density] environmental [M3] air_low population density [U3] kg +[E585] Calcium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E586] Carbon dioxide, biogenic[air_low population density] environmental [M3] air_low population density [U3] kg +[E587] Carbon dioxide, biogenic[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E588] Carbon dioxide, fossil[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E589] Carbon disulfide[air_low population density] environmental [M3] air_low population density [U3] kg +[E590] Carbon disulfide[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E591] Carbon monoxide, biogenic[air_low population density] environmental [M3] air_low population density [U3] kg +[E592] Carbon monoxide, fossil[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E593] Carbon monoxide, fossil[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E594] Carbon-14[air_low population density] environmental [M3] air_low population density [U15] kBq +[E595] Cerium-141[air_low population density] environmental [M3] air_low population density [U15] kBq +[E596] Cesium-134[air_low population density] environmental [M3] air_low population density [U15] kBq +[E597] Cesium-137[air_low population density] environmental [M3] air_low population density [U15] kBq +[E598] Chlorine[air_low population density] environmental [M3] air_low population density [U3] kg +[E599] Chlorine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E600] Chlorine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E601] Chloroform[air_low population density] environmental [M3] air_low population density [U3] kg +[E602] Chloroform[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E603] Chlorosilane, trimethyl-[air_high population density] environmental [M5] air_high population density [U3] kg +[E604] Chromium[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E605] Chromium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E606] Chromium VI[air_low population density] environmental [M3] air_low population density [U3] kg +[E607] Chromium VI[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E608] Chromium VI[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E609] Chromium-51[air_low population density] environmental [M3] air_low population density [U15] kBq +[E610] Cobalt[air_low population density] environmental [M3] air_low population density [U3] kg +[E611] Cobalt[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E612] Cobalt[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E613] Cobalt-58[air_low population density] environmental [M3] air_low population density [U15] kBq +[E614] Cobalt-60[air_low population density] environmental [M3] air_low population density [U15] kBq +[E615] Copper[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E616] Copper[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E617] Copper[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E618] Cumene[air_high population density] environmental [M5] air_high population density [U3] kg +[E619] Cumene[air_low population density] environmental [M3] air_low population density [U3] kg +[E620] Cumene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E621] Cyanide[air_low population density] environmental [M3] air_low population density [U3] kg +[E622] Cyanide[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E623] Dinitrogen monoxide[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E624] Dinitrogen monoxide[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E625] Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin[air_low population density] environmental [M3] air_low population density [U3] kg +[E626] Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E627] Ethane[air_high population density] environmental [M5] air_high population density [U3] kg +[E628] Ethane[air_low population density] environmental [M3] air_low population density [U3] kg +[E629] Ethane[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E630] Ethane, 1,1,1,2-tetrafluoro-, HFC-134a[air_low population density] environmental [M3] air_low population density [U3] kg +[E631] Ethane, 1,1,1,2-tetrafluoro-, HFC-134a[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E632] Ethane, 1,1,1-trichloro-, HCFC-140[air_low population density] environmental [M3] air_low population density [U3] kg +[E633] Ethane, 1,1,1-trichloro-, HCFC-140[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E634] Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113[air_high population density] environmental [M5] air_high population density [U3] kg +[E635] Ethane, 1,1-difluoro-, HFC-152a[air_high population density] environmental [M5] air_high population density [U3] kg +[E636] Ethane, 1,2-dichloro-[air_low population density] environmental [M3] air_low population density [U3] kg +[E637] Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114[air_low population density] environmental [M3] air_low population density [U3] kg +[E638] Ethane, hexafluoro-, HFC-116[air_high population density] environmental [M5] air_high population density [U3] kg +[E639] Ethane, hexafluoro-, HFC-116[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E640] Ethanol[air_low population density] environmental [M3] air_low population density [U3] kg +[E641] Ethene[air_low population density] environmental [M3] air_low population density [U3] kg +[E642] Ethene, chloro-[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E643] Ethene, tetrachloro-[air_high population density] environmental [M5] air_high population density [U3] kg +[E644] Ethene, tetrachloro-[air_low population density] environmental [M3] air_low population density [U3] kg +[E645] Ethene, tetrachloro-[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E646] Ethyl cellulose[air_high population density] environmental [M5] air_high population density [U3] kg +[E647] Ethylene oxide[air_low population density] environmental [M3] air_low population density [U3] kg +[E648] Ethylene oxide[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E649] Ethylene oxide[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E650] Ethyne[air_low population density] environmental [M3] air_low population density [U3] kg +[E651] Ethyne[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E652] Fluorine[air_low population density] environmental [M3] air_low population density [U3] kg +[E653] Fluorine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E654] Fluorine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E655] Fluosilicic acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E656] Formaldehyde[air_low population density] environmental [M3] air_low population density [U3] kg +[E657] Formaldehyde[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E658] Formaldehyde[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E659] Formic acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E660] Furan[air_low population density] environmental [M3] air_low population density [U3] kg +[E661] Furan[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E662] Heat, waste[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U9] MJ +[E663] Helium[air_low population density] environmental [M3] air_low population density [U3] kg +[E664] Helium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E665] Heptane[air_high population density] environmental [M5] air_high population density [U3] kg +[E666] Hexane[air_high population density] environmental [M5] air_high population density [U3] kg +[E667] Hexane[air_low population density] environmental [M3] air_low population density [U3] kg +[E668] Hexane[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E669] Hydrocarbons, aliphatic, alkanes, cyclic[air_low population density] environmental [M3] air_low population density [U3] kg +[E670] Hydrocarbons, aliphatic, alkanes, unspecified[air_low population density] environmental [M3] air_low population density [U3] kg +[E671] Hydrocarbons, aliphatic, alkanes, unspecified[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E672] Hydrocarbons, aliphatic, unsaturated[air_low population density] environmental [M3] air_low population density [U3] kg +[E673] Hydrocarbons, aliphatic, unsaturated[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E674] Hydrocarbons, aromatic[air_low population density] environmental [M3] air_low population density [U3] kg +[E675] Hydrocarbons, aromatic[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E676] Hydrocarbons, chlorinated[air_low population density] environmental [M3] air_low population density [U3] kg +[E677] Hydrocarbons, chlorinated[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E678] Hydrogen[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E679] Hydrogen chloride[air_low population density] environmental [M3] air_low population density [U3] kg +[E680] Hydrogen chloride[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E681] Hydrogen chloride[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E682] Hydrogen peroxide[air_high population density] environmental [M5] air_high population density [U3] kg +[E683] Hydrogen sulfide[air_low population density] environmental [M3] air_low population density [U3] kg +[E684] Hydrogen sulfide[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E685] Hydrogen-3, Tritium[air_low population density] environmental [M3] air_low population density [U15] kBq +[E686] Iodine[air_high population density] environmental [M5] air_high population density [U3] kg +[E687] Iodine[air_low population density] environmental [M3] air_low population density [U3] kg +[E688] Iodine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E689] Iodine-129[air_low population density] environmental [M3] air_low population density [U15] kBq +[E690] Iodine-131[air_low population density] environmental [M3] air_low population density [U15] kBq +[E691] Iodine-133[air_low population density] environmental [M3] air_low population density [U15] kBq +[E692] Iodine-135[air_low population density] environmental [M3] air_low population density [U15] kBq +[E693] Iron[air_low population density] environmental [M3] air_low population density [U3] kg +[E694] Iron[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E695] Iron[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E696] Isocyanic acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E697] Isoprene[air_low population density] environmental [M3] air_low population density [U3] kg +[E698] Isoprene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E699] Krypton-85[air_low population density] environmental [M3] air_low population density [U15] kBq +[E700] Krypton-85m[air_low population density] environmental [M3] air_low population density [U15] kBq +[E701] Krypton-87[air_low population density] environmental [M3] air_low population density [U15] kBq +[E702] Krypton-88[air_low population density] environmental [M3] air_low population density [U15] kBq +[E703] Krypton-89[air_low population density] environmental [M3] air_low population density [U15] kBq +[E704] Lanthanum-140[air_low population density] environmental [M3] air_low population density [U15] kBq +[E705] Lead[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E706] Lead[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E707] Lead[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E708] Lead-210[air_high population density] environmental [M5] air_high population density [U15] kBq +[E709] Lead-210[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E710] Magnesium[air_high population density] environmental [M5] air_high population density [U3] kg +[E711] Magnesium[air_low population density] environmental [M3] air_low population density [U3] kg +[E712] Magnesium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E713] Magnesium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E714] Manganese[air_high population density] environmental [M5] air_high population density [U3] kg +[E715] Manganese[air_low population density] environmental [M3] air_low population density [U3] kg +[E716] Manganese[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E717] Manganese[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E718] Manganese-54[air_low population density] environmental [M3] air_low population density [U15] kBq +[E719] Mercury[air_low population density] environmental [M3] air_low population density [U3] kg +[E720] Mercury[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E721] Mercury[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E722] Mercury[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E723] Methane, biogenic[air_low population density] environmental [M3] air_low population density [U3] kg +[E724] Methane, biogenic[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E725] Methane, bromo-, Halon 1001[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E726] Methane, bromochlorodifluoro-, Halon 1211[air_low population density] environmental [M3] air_low population density [U3] kg +[E727] Methane, bromotrifluoro-, Halon 1301[air_high population density] environmental [M5] air_high population density [U3] kg +[E728] Methane, bromotrifluoro-, Halon 1301[air_low population density] environmental [M3] air_low population density [U3] kg +[E729] Methane, chlorodifluoro-, HCFC-22[air_low population density] environmental [M3] air_low population density [U3] kg +[E730] Methane, dichloro-, HCC-30[air_low population density] environmental [M3] air_low population density [U3] kg +[E731] Methane, dichlorodifluoro-, CFC-12[air_low population density] environmental [M3] air_low population density [U3] kg +[E732] Methane, dichlorodifluoro-, CFC-12[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E733] Methane, dichlorofluoro-, HCFC-21[air_high population density] environmental [M5] air_high population density [U3] kg +[E734] Methane, fossil[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E735] Methane, fossil[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E736] Methane, monochloro-, R-40[air_high population density] environmental [M5] air_high population density [U3] kg +[E737] Methane, monochloro-, R-40[air_low population density] environmental [M3] air_low population density [U3] kg +[E738] Methane, tetrachloro-, R-10[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E739] Methane, tetrafluoro-, R-14[air_high population density] environmental [M5] air_high population density [U3] kg +[E740] Methane, tetrafluoro-, R-14[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E741] Methane, trifluoro-, HFC-23[air_high population density] environmental [M5] air_high population density [U3] kg +[E742] Methanol[air_low population density] environmental [M3] air_low population density [U3] kg +[E743] Methanol[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E744] Methyl acrylate[air_high population density] environmental [M5] air_high population density [U3] kg +[E745] Methyl borate[air_high population density] environmental [M5] air_high population density [U3] kg +[E746] Methyl ethyl ketone[air_high population density] environmental [M5] air_high population density [U3] kg +[E747] Methyl formate[air_high population density] environmental [M5] air_high population density [U3] kg +[E748] Molybdenum[air_low population density] environmental [M3] air_low population density [U3] kg +[E749] Molybdenum[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E750] Molybdenum[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E751] NMVOC, non-methane volatile organic compounds, unspecified origin[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E752] NMVOC, non-methane volatile organic compounds, unspecified origin[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E753] Nickel[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E754] Nickel[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E755] Nickel[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E756] Niobium-95[air_low population density] environmental [M3] air_low population density [U15] kBq +[E757] Nitrate[air_low population density] environmental [M3] air_low population density [U3] kg +[E758] Nitrate[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E759] Nitrobenzene[air_high population density] environmental [M5] air_high population density [U3] kg +[E760] Nitrogen oxides[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E761] Noble gases, radioactive, unspecified[air_low population density] environmental [M3] air_low population density [U15] kBq +[E762] Ozone[air_low population density] environmental [M3] air_low population density [U3] kg +[E763] Ozone[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E764] PAH, polycyclic aromatic hydrocarbons[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E765] Particulates, < 2.5 um[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E766] Particulates, < 2.5 um[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E767] Particulates, > 10 um[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E768] Particulates, > 2.5 um, and < 10um[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E769] Pentane[air_low population density] environmental [M3] air_low population density [U3] kg +[E770] Pentane[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E771] Phenol[air_low population density] environmental [M3] air_low population density [U3] kg +[E772] Phenol[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E773] Phenol, pentachloro-[air_high population density] environmental [M5] air_high population density [U3] kg +[E774] Phenol, pentachloro-[air_low population density] environmental [M3] air_low population density [U3] kg +[E775] Phosphine[air_high population density] environmental [M5] air_high population density [U3] kg +[E776] Phosphorus[air_low population density] environmental [M3] air_low population density [U3] kg +[E777] Phosphorus[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E778] Phosphorus[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E779] Platinum[air_high population density] environmental [M5] air_high population density [U3] kg +[E780] Platinum[air_low population density] environmental [M3] air_low population density [U3] kg +[E781] Plutonium-238[air_low population density] environmental [M3] air_low population density [U15] kBq +[E782] Plutonium-alpha[air_low population density] environmental [M3] air_low population density [U15] kBq +[E783] Polonium-210[air_high population density] environmental [M5] air_high population density [U15] kBq +[E784] Polonium-210[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E785] Polychlorinated biphenyls[air_high population density] environmental [M5] air_high population density [U3] kg +[E786] Polychlorinated biphenyls[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E787] Potassium[air_high population density] environmental [M5] air_high population density [U3] kg +[E788] Potassium[air_low population density] environmental [M3] air_low population density [U3] kg +[E789] Potassium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E790] Potassium-40[air_high population density] environmental [M5] air_high population density [U15] kBq +[E791] Potassium-40[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E792] Propanal[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E793] Propane[air_low population density] environmental [M3] air_low population density [U3] kg +[E794] Propane[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E795] Propene[air_low population density] environmental [M3] air_low population density [U3] kg +[E796] Propene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E797] Propionic acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E798] Protactinium-234[air_low population density] environmental [M3] air_low population density [U15] kBq +[E799] Radioactive species, other beta emitters[air_high population density] environmental [M5] air_high population density [U15] kBq +[E800] Radioactive species, other beta emitters[air_low population density] environmental [M3] air_low population density [U15] kBq +[E801] Radium-226[air_high population density] environmental [M5] air_high population density [U15] kBq +[E802] Radium-226[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E803] Radium-228[air_high population density] environmental [M5] air_high population density [U15] kBq +[E804] Radium-228[air_low population density] environmental [M3] air_low population density [U15] kBq +[E805] Radium-228[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E806] Radon-220[air_high population density] environmental [M5] air_high population density [U15] kBq +[E807] Radon-220[air_low population density] environmental [M3] air_low population density [U15] kBq +[E808] Radon-220[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E809] Radon-222[air_high population density] environmental [M5] air_high population density [U15] kBq +[E810] Radon-222[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E811] Radon-222[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E812] Ruthenium-103[air_low population density] environmental [M3] air_low population density [U15] kBq +[E813] Scandium[air_high population density] environmental [M5] air_high population density [U3] kg +[E814] Scandium[air_low population density] environmental [M3] air_low population density [U3] kg +[E815] Scandium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E816] Selenium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E817] Selenium[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E818] Selenium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E819] Silicon[air_low population density] environmental [M3] air_low population density [U3] kg +[E820] Silicon[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E821] Silicon[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E822] Silver[air_low population density] environmental [M3] air_low population density [U3] kg +[E823] Silver[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E824] Silver-110[air_low population density] environmental [M3] air_low population density [U15] kBq +[E825] Sodium[air_low population density] environmental [M3] air_low population density [U3] kg +[E826] Sodium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E827] Sodium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E828] Sodium hydroxide[air_high population density] environmental [M5] air_high population density [U3] kg +[E829] Strontium[air_high population density] environmental [M5] air_high population density [U3] kg +[E830] Strontium[air_low population density] environmental [M3] air_low population density [U3] kg +[E831] Strontium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E832] Strontium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E833] Styrene[air_low population density] environmental [M3] air_low population density [U3] kg +[E834] Styrene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E835] Sulfate[air_low population density] environmental [M3] air_low population density [U3] kg +[E836] Sulfate[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E837] Sulfate[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E838] Sulfur dioxide[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E839] Sulfur hexafluoride[air_low population density] environmental [M3] air_low population density [U3] kg +[E840] Sulfuric acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E841] Sulfuric acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E842] Terpenes[air_low population density] environmental [M3] air_low population density [U3] kg +[E843] Thallium[air_high population density] environmental [M5] air_high population density [U3] kg +[E844] Thallium[air_low population density] environmental [M3] air_low population density [U3] kg +[E845] Thallium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E846] Thorium[air_high population density] environmental [M5] air_high population density [U3] kg +[E847] Thorium[air_low population density] environmental [M3] air_low population density [U3] kg +[E848] Thorium-228[air_high population density] environmental [M5] air_high population density [U15] kBq +[E849] Thorium-228[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E850] Thorium-232[air_high population density] environmental [M5] air_high population density [U15] kBq +[E851] Thorium-232[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E852] Thorium-234[air_low population density] environmental [M3] air_low population density [U15] kBq +[E853] Tin[air_high population density] environmental [M5] air_high population density [U3] kg +[E854] Tin[air_low population density] environmental [M3] air_low population density [U3] kg +[E855] Tin[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E856] Tin[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E857] Titanium[air_high population density] environmental [M5] air_high population density [U3] kg +[E858] Titanium[air_low population density] environmental [M3] air_low population density [U3] kg +[E859] Titanium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E860] Titanium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E861] Toluene[air_low population density] environmental [M3] air_low population density [U3] kg +[E862] Toluene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E863] Tungsten[air_low population density] environmental [M3] air_low population density [U3] kg +[E864] Tungsten[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E865] Uranium[air_high population density] environmental [M5] air_high population density [U3] kg +[E866] Uranium[air_low population density] environmental [M3] air_low population density [U3] kg +[E867] Uranium alpha[air_low population density] environmental [M3] air_low population density [U15] kBq +[E868] Uranium-235[air_low population density] environmental [M3] air_low population density [U15] kBq +[E869] Uranium-238[air_high population density] environmental [M5] air_high population density [U15] kBq +[E870] Uranium-238[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E871] Vanadium[air_low population density] environmental [M3] air_low population density [U3] kg +[E872] Vanadium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E873] Vanadium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E874] Water[air_high population density] environmental [M5] air_high population density [U3] kg +[E875] Water[air_low population density] environmental [M3] air_low population density [U3] kg +[E876] Water[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E877] Water[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E878] Xenon-131m[air_low population density] environmental [M3] air_low population density [U15] kBq +[E879] Xenon-133[air_low population density] environmental [M3] air_low population density [U15] kBq +[E880] Xenon-133m[air_low population density] environmental [M3] air_low population density [U15] kBq +[E881] Xenon-135[air_low population density] environmental [M3] air_low population density [U15] kBq +[E882] Xenon-135m[air_low population density] environmental [M3] air_low population density [U15] kBq +[E883] Xenon-137[air_low population density] environmental [M3] air_low population density [U15] kBq +[E884] Xenon-138[air_low population density] environmental [M3] air_low population density [U15] kBq +[E885] Xylene[air_low population density] environmental [M3] air_low population density [U3] kg +[E886] Xylene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E887] Zinc[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E888] Zinc[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E889] Zinc[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E890] Zirconium[air_low population density] environmental [M3] air_low population density [U3] kg +[E891] Zirconium-95[air_low population density] environmental [M3] air_low population density [U15] kBq +[E892] t-Butyl methyl ether[air_high population density] environmental [M5] air_high population density [U3] kg +[E893] Basalt, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E894] Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E895] Chrysotile, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E896] Cobalt, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E897] Diatomite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E898] Energy, gross calorific value, in biomass, primary forest[resource_biotic] environmental [M12] resource_biotic [U9] MJ +[E899] Energy, kinetic (in wind), converted[resource_in air] environmental [M4] resource_in air [U9] MJ +[E900] Gallium, 0.014% in bauxite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E901] Gas, mine, off-gas, process, coal mining[resource_in ground] environmental [M7] resource_in ground [U12] Nm3 +[E902] Gold, Au 9.7E-4%, Ag 9.7E-4%, Zn 0.63%, Cu 0.38%, Pb 0.014%, in ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E903] Gypsum, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E904] Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E905] 2-Methyl-2-butene[air_high population density] environmental [M5] air_high population density [U3] kg +[E906] Lithium, 0.15% in brine, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E907] Magnesium, 0.13% in water[resource_in water] environmental [M8] resource_in water [U3] kg +[E908] Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E909] Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E910] Occupation, dump site, benthos[resource_land] environmental [M2] resource_land [U5] m2a +[E911] Occupation, forest, intensive[resource_land] environmental [M2] resource_land [U5] m2a +[E912] Occupation, forest, intensive, normal[resource_land] environmental [M2] resource_land [U5] m2a +[E913] Occupation, industrial area, benthos[resource_land] environmental [M2] resource_land [U5] m2a +[E914] Occupation, shrub land, sclerophyllous[resource_land] environmental [M2] resource_land [U5] m2a +[E915] Occupation, traffic area, rail embankment[resource_land] environmental [M2] resource_land [U5] m2a +[E916] Occupation, traffic area, rail network[resource_land] environmental [M2] resource_land [U5] m2a +[E917] Occupation, traffic area, road embankment[resource_land] environmental [M2] resource_land [U5] m2a +[E918] Occupation, water bodies, artificial[resource_land] environmental [M2] resource_land [U5] m2a +[E919] Occupation, water courses, artificial[resource_land] environmental [M2] resource_land [U5] m2a +[E920] Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E921] Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E922] Rhenium, in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E923] Silver, Ag 9.7E-4%, Au 9.7E-4%, Zn 0.63%, Cu 0.38%, Pb 0.014%, in ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E924] Sodium sulphate, various forms, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E925] Stibnite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E926] Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E927] Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E928] TiO2, 54% in ilmenite, 2.6% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E929] Tin, 79% in cassiterite, 0.1% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E930] Transformation, from arable[resource_land] environmental [M2] resource_land [U6] m2 +[E931] Transformation, from arable, non-irrigated, fallow[resource_land] environmental [M2] resource_land [U6] m2 +[E932] Transformation, from dump site, inert material landfill[resource_land] environmental [M2] resource_land [U6] m2 +[E933] Transformation, from dump site, residual material landfill[resource_land] environmental [M2] resource_land [U6] m2 +[E934] Transformation, from dump site, sanitary landfill[resource_land] environmental [M2] resource_land [U6] m2 +[E935] Transformation, from dump site, slag compartment[resource_land] environmental [M2] resource_land [U6] m2 +[E936] Transformation, from industrial area[resource_land] environmental [M2] resource_land [U6] m2 +[E937] Transformation, from industrial area, benthos[resource_land] environmental [M2] resource_land [U6] m2 +[E938] Transformation, from sea and ocean[resource_land] environmental [M2] resource_land [U6] m2 +[E939] Transformation, from shrub land, sclerophyllous[resource_land] environmental [M2] resource_land [U6] m2 +[E940] Transformation, from tropical rain forest[resource_land] environmental [M2] resource_land [U6] m2 +[E941] Transformation, to arable[resource_land] environmental [M2] resource_land [U6] m2 +[E942] Transformation, to arable, non-irrigated, fallow[resource_land] environmental [M2] resource_land [U6] m2 +[E943] Transformation, to dump site[resource_land] environmental [M2] resource_land [U6] m2 +[E944] Transformation, to dump site, benthos[resource_land] environmental [M2] resource_land [U6] m2 +[E945] Transformation, to dump site, inert material landfill[resource_land] environmental [M2] resource_land [U6] m2 +[E946] Transformation, to dump site, sanitary landfill[resource_land] environmental [M2] resource_land [U6] m2 +[E947] Transformation, to dump site, slag compartment[resource_land] environmental [M2] resource_land [U6] m2 +[E948] Transformation, to forest, intensive[resource_land] environmental [M2] resource_land [U6] m2 +[E949] Transformation, to forest, intensive, clear-cutting[resource_land] environmental [M2] resource_land [U6] m2 +[E950] Transformation, to forest, intensive, normal[resource_land] environmental [M2] resource_land [U6] m2 +[E951] Transformation, to heterogeneous, agricultural[resource_land] environmental [M2] resource_land [U6] m2 +[E952] Transformation, to industrial area, benthos[resource_land] environmental [M2] resource_land [U6] m2 +[E953] Transformation, to sea and ocean[resource_land] environmental [M2] resource_land [U6] m2 +[E954] Transformation, to shrub land, sclerophyllous[resource_land] environmental [M2] resource_land [U6] m2 +[E955] Transformation, to traffic area, rail embankment[resource_land] environmental [M2] resource_land [U6] m2 +[E956] Transformation, to traffic area, rail network[resource_land] environmental [M2] resource_land [U6] m2 +[E957] Transformation, to traffic area, road embankment[resource_land] environmental [M2] resource_land [U6] m2 +[E958] Transformation, to water bodies, artificial[resource_land] environmental [M2] resource_land [U6] m2 +[E959] Transformation, to water courses, artificial[resource_land] environmental [M2] resource_land [U6] m2 +[E960] Ulexite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E961] Vermiculite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E962] Volume occupied, final repository for low-active radioactive waste[resource_in ground] environmental [M7] resource_in ground [U2] m3 +[E963] Volume occupied, final repository for radioactive waste[resource_in ground] environmental [M7] resource_in ground [U2] m3 +[E964] Volume occupied, reservoir[resource_in water] environmental [M8] resource_in water [U18] m3a +[E965] Volume occupied, underground deposit[resource_in ground] environmental [M7] resource_in ground [U2] m3 +[E966] Water, lake[resource_in water] environmental [M8] resource_in water [U2] m3 +[E967] Water, turbine use, unspecified natural origin[resource_in water] environmental [M8] resource_in water [U2] m3 +[E968] Wood, hard, standing[resource_biotic] environmental [M12] resource_biotic [U2] m3 +[E969] Wood, primary forest, standing[resource_biotic] environmental [M12] resource_biotic [U2] m3 +[E970] Wood, soft, standing[resource_biotic] environmental [M12] resource_biotic [U2] m3 +[E971] Zirconium, 50% in zircon, 0.39% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E972] Aldrin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E973] Aluminium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E974] Aluminium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E975] Antimony[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E976] Arsenic[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E977] Arsenic[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E978] Barium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E979] Barium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E980] Boron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E981] Boron[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E982] Boron[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E983] Cadmium[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E984] Calcium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E985] Calcium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E986] Carbon[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E987] Carbon[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E988] Chloride[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E989] Chloride[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E990] Chloride[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E991] Chromium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E992] Chromium[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E993] Chromium VI[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E994] Cobalt[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E995] Copper[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E996] Copper[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E997] Fluoride[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E998] Fluoride[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E999] Glyphosate[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1000] Heat, waste[soil_industrial] environmental [M16] soil_industrial [U9] MJ +[E1001] Heat, waste[soil_unspecified] environmental [M19] soil_unspecified [U9] MJ +[E1002] Iron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1003] Iron[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1004] Iron[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1005] Lead[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1006] Magnesium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1007] Magnesium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1008] Manganese[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1009] Manganese[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1010] Molybdenum[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1011] Nickel[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1012] Oils, biogenic[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1013] Oils, biogenic[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1014] Oils, unspecified[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1015] Oils, unspecified[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1016] Phosphorus[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1017] Phosphorus[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1018] Potassium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1019] Potassium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1020] Silicon[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1021] Silicon[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1022] Sodium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1023] Sodium[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1024] Strontium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1025] Strontium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1026] Sulfur[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1027] Sulfur[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1028] Sulfuric acid[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1029] Tin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1030] Titanium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1031] Vanadium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1032] Zinc[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1033] Zinc[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1034] 1,4-Butanediol[water_river] environmental [M6] water_river [U3] kg +[E1035] 2-Methyl-2-butene[water_river] environmental [M6] water_river [U3] kg +[E1036] 4-Methyl-2-pentanone[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1037] AOX, Adsorbable Organic Halogen as Cl[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1038] Acenaphthene[water_ocean] environmental [M15] water_ocean [U3] kg +[E1039] Acenaphthene[water_river] environmental [M6] water_river [U3] kg +[E1040] Acenaphthylene[water_ocean] environmental [M15] water_ocean [U3] kg +[E1041] Acenaphthylene[water_river] environmental [M6] water_river [U3] kg +[E1042] Acetone[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1043] Acidity, unspecified[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1044] Acrylate, ion[water_river] environmental [M6] water_river [U3] kg +[E1045] Actinides, radioactive, unspecified[water_ocean] environmental [M15] water_ocean [U15] kBq +[E1046] Aluminium[water_ground-] environmental [M11] water_ground- [U3] kg +[E1047] Aluminium[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1048] Aluminium[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1049] Ammonium, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E1050] Ammonium, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1051] Ammonium, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1052] Antimony[water_ground-] environmental [M11] water_ground- [U3] kg +[E1053] Antimony[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1054] Antimony[water_river] environmental [M6] water_river [U3] kg +[E1055] Antimony[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1056] Antimony-122[water_river] environmental [M6] water_river [U15] kBq +[E1057] Antimony-124[water_river] environmental [M6] water_river [U15] kBq +[E1058] Antimony-125[water_river] environmental [M6] water_river [U15] kBq +[E1059] Arsenic, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1060] Arsenic, ion[water_lake] environmental [M22] water_lake [U3] kg +[E1061] Arsenic, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1062] BOD5, Biological Oxygen Demand[water_ground-] environmental [M11] water_ground- [U3] kg +[E1063] BOD5, Biological Oxygen Demand[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1064] Barite[water_ocean] environmental [M15] water_ocean [U3] kg +[E1065] Barium[water_ground-] environmental [M11] water_ground- [U3] kg +[E1066] Barium[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1067] Barium[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1068] Barium-140[water_river] environmental [M6] water_river [U15] kBq +[E1069] Benzene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1070] Benzene, chloro-[water_river] environmental [M6] water_river [U3] kg +[E1071] Benzene, ethyl-[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1072] Beryllium[water_ground-] environmental [M11] water_ground- [U3] kg +[E1073] Beryllium[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1074] Beryllium[water_river] environmental [M6] water_river [U3] kg +[E1075] Beryllium[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1076] Boron[water_ground-] environmental [M11] water_ground- [U3] kg +[E1077] Boron[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1078] Boron[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1079] Bromine[water_ground-] environmental [M11] water_ground- [U3] kg +[E1080] Bromine[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1081] Bromine[water_ocean] environmental [M15] water_ocean [U3] kg +[E1082] Bromine[water_river] environmental [M6] water_river [U3] kg +[E1083] Bromine[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1084] Butyl acetate[water_river] environmental [M6] water_river [U3] kg +[E1085] Butyrolactone[water_river] environmental [M6] water_river [U3] kg +[E1086] COD, Chemical Oxygen Demand[water_ground-] environmental [M11] water_ground- [U3] kg +[E1087] COD, Chemical Oxygen Demand[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1088] Cadmium, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1089] Cadmium, ion[water_lake] environmental [M22] water_lake [U3] kg +[E1090] Cadmium, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1091] Calcium, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1092] Calcium, ion[water_lake] environmental [M22] water_lake [U3] kg +[E1093] Calcium, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1094] Carboxylic acids, unspecified[water_ocean] environmental [M15] water_ocean [U3] kg +[E1095] Carboxylic acids, unspecified[water_river] environmental [M6] water_river [U3] kg +[E1096] Cerium-141[water_river] environmental [M6] water_river [U15] kBq +[E1097] Cerium-144[water_river] environmental [M6] water_river [U15] kBq +[E1098] Cesium[water_ocean] environmental [M15] water_ocean [U3] kg +[E1099] Cesium[water_river] environmental [M6] water_river [U3] kg +[E1100] Cesium-134[water_river] environmental [M6] water_river [U15] kBq +[E1101] Cesium-136[water_river] environmental [M6] water_river [U15] kBq +[E1102] Cesium-137[water_ocean] environmental [M15] water_ocean [U15] kBq +[E1103] Cesium-137[water_river] environmental [M6] water_river [U15] kBq +[E1104] Chloride[water_ground-] environmental [M11] water_ground- [U3] kg +[E1105] Chloride[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1106] Chloride[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E1107] Chloride[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1108] Chlorinated solvents, unspecified[water_ocean] environmental [M15] water_ocean [U3] kg +[E1109] Chromium VI[water_ground-] environmental [M11] water_ground- [U3] kg +[E1110] Chromium VI[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1111] Chromium VI[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1112] Chromium, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1113] Chromium-51[water_river] environmental [M6] water_river [U15] kBq +[E1114] Cobalt[water_ground-] environmental [M11] water_ground- [U3] kg +[E1115] Cobalt[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1116] Cobalt[water_ocean] environmental [M15] water_ocean [U3] kg +[E1117] Cobalt[water_river] environmental [M6] water_river [U3] kg +[E1118] Cobalt[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1119] Cobalt-57[water_river] environmental [M6] water_river [U15] kBq +[E1120] Cobalt-58[water_river] environmental [M6] water_river [U15] kBq +[E1121] Cobalt-60[water_river] environmental [M6] water_river [U15] kBq +[E1122] Acenaphthene[air_high population density] environmental [M5] air_high population density [U3] kg +[E1123] Copper, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1124] Copper, ion[water_lake] environmental [M22] water_lake [U3] kg +[E1125] Copper, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1126] Cumene[water_river] environmental [M6] water_river [U3] kg +[E1127] Cyanide[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1128] DOC, Dissolved Organic Carbon[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1129] DOC, Dissolved Organic Carbon[water_lake] environmental [M22] water_lake [U3] kg +[E1130] Dissolved solids[water_ground-] environmental [M11] water_ground- [U3] kg +[E1131] Dissolved solids[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1132] Fluoride[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1133] Fluosilicic acid[water_river] environmental [M6] water_river [U3] kg +[E1134] Formaldehyde[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1135] Glutaraldehyde[water_ocean] environmental [M15] water_ocean [U3] kg +[E1136] Heat, waste[water_ground-, long-term] environmental [M21] water_ground-, long-term [U9] MJ +[E1137] Heat, waste[water_ocean] environmental [M15] water_ocean [U9] MJ +[E1138] Heat, waste[water_unspecified] environmental [M13] water_unspecified [U9] MJ +[E1139] Hydrocarbons, aliphatic, alkanes, unspecified[water_ocean] environmental [M15] water_ocean [U3] kg +[E1140] Hydrocarbons, aliphatic, alkanes, unspecified[water_river] environmental [M6] water_river [U3] kg +[E1141] Hydrocarbons, aliphatic, unsaturated[water_ocean] environmental [M15] water_ocean [U3] kg +[E1142] Hydrocarbons, aliphatic, unsaturated[water_river] environmental [M6] water_river [U3] kg +[E1143] Hydrocarbons, unspecified[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1144] Hydrogen sulfide[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1145] Hydrogen sulfide[water_river] environmental [M6] water_river [U3] kg +[E1146] Hydrogen-3, Tritium[water_ocean] environmental [M15] water_ocean [U15] kBq +[E1147] Hydrogen-3, Tritium[water_river] environmental [M6] water_river [U15] kBq +[E1148] Hydroxide[water_river] environmental [M6] water_river [U3] kg +[E1149] Hypochlorite[water_ocean] environmental [M15] water_ocean [U3] kg +[E1150] Hypochlorite[water_river] environmental [M6] water_river [U3] kg +[E1151] Iodide[water_ground-] environmental [M11] water_ground- [U3] kg +[E1152] Iodide[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1153] Iodide[water_ocean] environmental [M15] water_ocean [U3] kg +[E1154] Iodine-131[water_river] environmental [M6] water_river [U15] kBq +[E1155] Iodine-133[water_river] environmental [M6] water_river [U15] kBq +[E1156] Iron, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E1157] Iron, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1158] Iron, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1159] Iron-59[water_river] environmental [M6] water_river [U15] kBq +[E1160] Lanthanum-140[water_river] environmental [M6] water_river [U15] kBq +[E1161] Lead[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1162] Lead[water_lake] environmental [M22] water_lake [U3] kg +[E1163] Lead[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1164] Lead-210[water_river] environmental [M6] water_river [U15] kBq +[E1165] Lead-210[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E1166] Lithium, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1167] Magnesium[water_ground-] environmental [M11] water_ground- [U3] kg +[E1168] Magnesium[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1169] Magnesium[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1170] Manganese[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1171] Manganese[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1172] Manganese-54[water_river] environmental [M6] water_river [U15] kBq +[E1173] Mercury[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1174] Mercury[water_lake] environmental [M22] water_lake [U3] kg +[E1175] Mercury[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1176] Methanol[water_ocean] environmental [M15] water_ocean [U3] kg +[E1177] Methanol[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1178] Methyl acrylate[water_river] environmental [M6] water_river [U3] kg +[E1179] Methyl formate[water_river] environmental [M6] water_river [U3] kg +[E1180] Molybdenum[water_ground-] environmental [M11] water_ground- [U3] kg +[E1181] Molybdenum[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1182] Molybdenum[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1183] Molybdenum-99[water_river] environmental [M6] water_river [U15] kBq +[E1184] Nickel, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1185] Nickel, ion[water_lake] environmental [M22] water_lake [U3] kg +[E1186] Niobium-95[water_river] environmental [M6] water_river [U15] kBq +[E1187] Nitrate[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1188] Nitrite[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1189] Nitrite[water_ocean] environmental [M15] water_ocean [U3] kg +[E1190] Nitrite[water_river] environmental [M6] water_river [U3] kg +[E1191] Nitrobenzene[water_river] environmental [M6] water_river [U3] kg +[E1192] Nitrogen[water_ocean] environmental [M15] water_ocean [U3] kg +[E1193] Nitrogen, organic bound[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1194] Oils, unspecified[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1195] Phenol[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1196] Phosphate[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1197] Phosphorus[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1198] Polonium-210[water_river] environmental [M6] water_river [U15] kBq +[E1199] Potassium, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E1200] Potassium, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1201] Potassium-40[water_river] environmental [M6] water_river [U15] kBq +[E1202] Protactinium-234[water_river] environmental [M6] water_river [U15] kBq +[E1203] Radioactive species, Nuclides, unspecified[water_ocean] environmental [M15] water_ocean [U15] kBq +[E1204] Radioactive species, Nuclides, unspecified[water_river] environmental [M6] water_river [U15] kBq +[E1205] Radium-224[water_ocean] environmental [M15] water_ocean [U15] kBq +[E1206] Radium-224[water_river] environmental [M6] water_river [U15] kBq +[E1207] Radium-226[water_river] environmental [M6] water_river [U15] kBq +[E1208] Radium-226[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E1209] Radium-228[water_ocean] environmental [M15] water_ocean [U15] kBq +[E1210] Radium-228[water_river] environmental [M6] water_river [U15] kBq +[E1211] Radium-228[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E1212] Rubidium[water_ocean] environmental [M15] water_ocean [U3] kg +[E1213] Rubidium[water_river] environmental [M6] water_river [U3] kg +[E1214] Ruthenium-103[water_river] environmental [M6] water_river [U15] kBq +[E1215] Scandium[water_ground-] environmental [M11] water_ground- [U3] kg +[E1216] Scandium[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1217] Scandium[water_river] environmental [M6] water_river [U3] kg +[E1218] Selenium[water_ground-] environmental [M11] water_ground- [U3] kg +[E1219] Selenium[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1220] Selenium[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1221] Silicon[water_ground-] environmental [M11] water_ground- [U3] kg +[E1222] Silicon[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1223] Silicon[water_ocean] environmental [M15] water_ocean [U3] kg +[E1224] Silver, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E1225] Silver, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1226] Silver, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E1227] Silver, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1228] Silver-110[water_river] environmental [M6] water_river [U15] kBq +[E1229] Sodium, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E1230] Sodium, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1231] Sodium-24[water_river] environmental [M6] water_river [U15] kBq +[E1232] Solids, inorganic[water_ground-] environmental [M11] water_ground- [U3] kg +[E1233] Strontium[water_ground-] environmental [M11] water_ground- [U3] kg +[E1234] Strontium[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1235] Strontium[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1236] Strontium-89[water_river] environmental [M6] water_river [U15] kBq +[E1237] Strontium-90[water_ocean] environmental [M15] water_ocean [U15] kBq +[E1238] Strontium-90[water_river] environmental [M6] water_river [U15] kBq +[E1239] Sulfate[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1240] Sulfate[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1241] Sulfite[water_river] environmental [M6] water_river [U3] kg +[E1242] Sulfur[water_ocean] environmental [M15] water_ocean [U3] kg +[E1243] Sulfur[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1244] TOC, Total Organic Carbon[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1245] TOC, Total Organic Carbon[water_ocean] environmental [M15] water_ocean [U3] kg +[E1246] Technetium-99m[water_river] environmental [M6] water_river [U15] kBq +[E1247] Tellurium-123m[water_river] environmental [M6] water_river [U15] kBq +[E1248] Tellurium-132[water_river] environmental [M6] water_river [U15] kBq +[E1249] Thallium[water_ground-] environmental [M11] water_ground- [U3] kg +[E1250] Thallium[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1251] Thallium[water_river] environmental [M6] water_river [U3] kg +[E1252] Thallium[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1253] Thorium-228[water_river] environmental [M6] water_river [U15] kBq +[E1254] Thorium-230[water_river] environmental [M6] water_river [U15] kBq +[E1255] Thorium-232[water_river] environmental [M6] water_river [U15] kBq +[E1256] Thorium-234[water_river] environmental [M6] water_river [U15] kBq +[E1257] Tin, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E1258] Tin, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1259] Tin, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1260] Titanium, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E1261] Titanium, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1262] Titanium, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E1263] Titanium, ion[water_river] environmental [M6] water_river [U3] kg +[E1264] Titanium, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1265] Toluene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1266] Tributyltin compounds[water_ocean] environmental [M15] water_ocean [U3] kg +[E1267] Triethylene glycol[water_ocean] environmental [M15] water_ocean [U3] kg +[E1268] Tungsten[water_ground-] environmental [M11] water_ground- [U3] kg +[E1269] Tungsten[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1270] Tungsten[water_river] environmental [M6] water_river [U3] kg +[E1271] Uranium alpha[water_river] environmental [M6] water_river [U15] kBq +[E1272] Uranium-234[water_river] environmental [M6] water_river [U15] kBq +[E1273] Uranium-235[water_river] environmental [M6] water_river [U15] kBq +[E1274] Uranium-238[water_river] environmental [M6] water_river [U15] kBq +[E1275] VOC, volatile organic compounds, unspecified origin[water_ocean] environmental [M15] water_ocean [U3] kg +[E1276] VOC, volatile organic compounds, unspecified origin[water_river] environmental [M6] water_river [U3] kg +[E1277] Vanadium, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E1278] Vanadium, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1279] Vanadium, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1280] Xylene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1281] Zinc, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E1282] Zinc, ion[water_lake] environmental [M22] water_lake [U3] kg +[E1283] Zinc, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1284] Zinc-65[water_river] environmental [M6] water_river [U15] kBq +[E1285] Zirconium-95[water_river] environmental [M6] water_river [U15] kBq +[E1286] m-Xylene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1287] o-Xylene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1288] t-Butyl methyl ether[water_river] environmental [M6] water_river [U3] kg +[E1289] Xenon, in air[resource_in air] environmental [M4] resource_in air [U3] kg +[E1290] Paraffins[air_high population density] environmental [M5] air_high population density [U3] kg +[E1291] Paraffins[water_river] environmental [M6] water_river [U3] kg +[E1292] Perlite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1293] Pumice, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1294] Energy, geothermal, converted[resource_in ground] environmental [M7] resource_in ground [U9] MJ +[E1295] Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1296] Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1297] Methane, chlorotrifluoro-, CFC-13[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1298] Nitrogen[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1299] Cadmium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1300] Cobalt[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1301] Mercury[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1302] Nickel[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1303] Lead[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1304] Silver[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1305] Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1306] Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1307] Heat, waste[air_low population density, long-term] environmental [M17] air_low population density, long-term [U9] MJ +[E1308] Oils, biogenic[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1309] Carbon monoxide, biogenic[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1310] Transformation, from heterogeneous, agricultural[resource_land] environmental [M2] resource_land [U6] m2 +[E1311] MCPB[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1312] Bromine[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1313] Fluoride[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1314] Iodide[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1315] Nitrogen[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1316] Selenium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1317] Sodium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1318] Occupation, arable[resource_land] environmental [M2] resource_land [U5] m2a +[E1319] Acetamide[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1320] Acetochlor[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1321] Alachlor[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1322] Bromoxynil[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1323] Dicamba[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1324] Diflufenzopyr-sodium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1325] Dimethenamid[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1326] Flumetsulam[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1327] Foramsulfuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1328] Glufosinate[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1329] Imazapyr[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1330] Imazethapyr[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1331] Isoxaflutole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1332] Mesotrione[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1333] Nicosulfuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1334] Paraquat[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1335] Primisulfuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1336] Prosulfuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1337] Rimsulfuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1338] Simazine[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1339] Bifenthrin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1340] Chlorpyrifos[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1341] Cyfluthrin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1342] Fipronil[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1343] Lambda-cyhalothrin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1344] Permethrin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1345] Tebupirimphos[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1346] Tefluthrin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1347] Carbendazim[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1348] Metconazole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1349] Prochloraz[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1350] Metazachlor[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1351] Clomazone[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1352] Propaquizafop[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1353] Deltamethrin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1354] Trinexapac-ethyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1355] Azoxystrobin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1356] Dithianon[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1357] Epoxiconazole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1358] Fenbuconazole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1359] Fenpropidin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1360] Fluquinconazole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1361] Flusilazole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1362] Kresoxim-methyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1363] Propiconazole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1364] Spiroxamine[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1365] Triadimenol[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1366] Amidosulfuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1367] Cinidon-ethyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1368] Dichlorprop-P[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1369] Diflufenican[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1370] Fluroxypyr[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1371] Flurtamone[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1372] Iodosulfuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1373] MCPA[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1374] Mefenpyr[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1375] Metsulfuron-methyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1376] Thifensulfuron-methyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1377] Tribenuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1378] Dimethoate[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1379] Esfenvalerate[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1380] Oxydemeton-methyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1381] Parathion[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1382] 3-Methyl-1-butanol[air_high population density] environmental [M5] air_high population density [U3] kg +[E1383] 3-Methyl-1-butanol[water_river] environmental [M6] water_river [U3] kg +[E1384] 2-Methyl pentane[air_high population density] environmental [M5] air_high population density [U3] kg +[E1385] 4-Methyl-2-pentanone[air_high population density] environmental [M5] air_high population density [U3] kg +[E1386] Diisobutyl ketone[water_river] environmental [M6] water_river [U3] kg +[E1387] Methyl pentane[water_river] environmental [M6] water_river [U3] kg +[E1388] 4-Methyl-2-pentanol[water_river] environmental [M6] water_river [U3] kg +[E1389] 4-Methyl-2-pentanone[water_river] environmental [M6] water_river [U3] kg +[E1390] Benzal chloride[air_high population density] environmental [M5] air_high population density [U3] kg +[E1391] Benzal chloride[water_river] environmental [M6] water_river [U3] kg +[E1392] Benzyl alcohol[water_river] environmental [M6] water_river [U3] kg +[E1393] Cyclohexane[air_high population density] environmental [M5] air_high population density [U3] kg +[E1394] Cyclohexane[water_river] environmental [M6] water_river [U3] kg +[E1395] Diethylene glycol[air_high population density] environmental [M5] air_high population density [U3] kg +[E1396] Diethylene glycol[water_river] environmental [M6] water_river [U3] kg +[E1397] Ethylene glycol monoethyl ether[air_high population density] environmental [M5] air_high population density [U3] kg +[E1398] Monochloroethane[air_high population density] environmental [M5] air_high population density [U3] kg +[E1399] Ethylene glycol monoethyl ether[water_river] environmental [M6] water_river [U3] kg +[E1400] Monochloroethane[water_river] environmental [M6] water_river [U3] kg +[E1401] Diethyl ether[air_high population density] environmental [M5] air_high population density [U3] kg +[E1402] Dimethyl ether[water_river] environmental [M6] water_river [U3] kg +[E1403] Hexane[water_river] environmental [M6] water_river [U3] kg +[E1404] Dimethylamine[air_high population density] environmental [M5] air_high population density [U3] kg +[E1405] Diflubenzuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1406] Endosulfan[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1407] Monocrotophos[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1408] Chlorimuron-ethyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1409] Clethodim[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1410] Cloransulam-methyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1411] Fenoxaprop[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1412] Flumioxazin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1413] Fomesafen[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1414] Imazamox[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1415] Sulfentrazone[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1416] Sulfosate[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1417] Cerium, 24% in bastnasite, 2.4% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1418] Lanthanum, 7.2% in bastnasite, 0.72% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1419] Neodymium, 4% in bastnasite, 0.4% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1420] Praseodymium, 0.42% in bastnasite, 0.042% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1421] Europium, 0.06% in bastnasite, 0.006% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1422] Samarium, 0.3% in bastnasite, 0.03% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1423] Gadolinium, 0.15% in bastnasite, 0.015% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1424] Suspended solids, unspecified[water_ground-] environmental [M11] water_ground- [U3] kg +[E1425] TOC, Total Organic Carbon[water_ground-] environmental [M11] water_ground- [U3] kg +[E1426] Thorium-232[water_ground-] environmental [M11] water_ground- [U15] kBq +[E1427] Florasulam[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1428] Flufenacet[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1429] Prothioconazol[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1430] Chloridazon[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1431] Picoxystrobin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1432] Cycloxydim[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1433] Diclofop[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1434] Fenoxaprop ethyl ester[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1435] Tralkoxydim[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1436] Tribenuron-methyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1437] Oxyfluorfen[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1438] Pronamide[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1439] Bifenox[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1440] Mepiquat chloride[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1441] Anthraquinone[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1442] Bitertanol[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1443] Carfentrazone ethyl ester[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1444] Clopyralid[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1445] Diclofop-methyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1446] Fenoxaprop-P ethyl ester[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1447] Fludioxonil[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1448] Imidacloprid[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1449] Mefenpyr-diethyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1450] Pyraclostrobin (prop)[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1451] Trifloxystrobin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1452] Dimethachlor[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1453] Iprodion[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1454] Vinclozolin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1455] Procymidone[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1456] Quizalofop ethyl ester[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1457] Clodinafop-propargyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1458] Mecoprop[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1459] Cloquintocet-mexyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1460] Bromuconazole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1461] Choline chloride[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1462] Flupyrsulfuron-methyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1463] Iodosulfuron-methyl-sodium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1464] Mesosulfuron-methyl (prop)[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1465] Metosulam[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1466] Prohexadione-calcium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1467] Propoxycarbazone-sodium (prop)[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1468] Quinoxyfen[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1469] Silthiofam[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1470] Cymoxanil[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1471] Dimethomorph[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1472] Flutolanil[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1473] Maneb[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1474] Metiram[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1475] Quintozene[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1476] Propamocarb HCl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1477] Fentin hydroxide[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1478] Diquat[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1479] EPTC[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1480] Sethoxydim[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1481] Aldicarb[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1482] Azinphos-methyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1483] Carbaryl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1484] Diazinon[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1485] Ethoprop[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1486] Malathion[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1487] Oxamyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1488] Phorate[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1489] Phosmet[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1490] Piperonyl butoxide[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1491] Propargite[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1492] Pymetrozine[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1493] Spinosad[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1494] Thiamethoxam[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1495] Trichlorfon[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1496] TCMTB[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1497] Endothall[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1498] Maleic hydrazide[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1499] Metam-sodium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1500] Ethalfluralin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1501] Quizalofop-P[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1502] Bensulfuron methyl ester[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1503] Halosulfuron-methyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1504] Molinate[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1505] Propanil[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1506] Quinclorac[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1507] Thiobencarb[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1508] Triclopyr[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1509] Heat, waste[soil_agricultural] environmental [M10] soil_agricultural [U9] MJ +[E1510] Chlorsulfuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1511] Diuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1512] Flucarbazone sodium salt[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1513] Picloram[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1514] Sulfosulfuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1515] Tri-allate[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1516] Triasulfuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1517] Occupation, pasture and meadow[resource_land] environmental [M2] resource_land [U5] m2a +[E1518] Carboxin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1519] Etridiazole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1520] Cyanazine[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1521] DSMA[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1522] Fluometuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1523] Lactofen[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1524] MSMA[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1525] Norflurazon[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1526] Prometryn[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1527] Pyrithiobac sodium salt[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1528] Abamectin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1529] Acephate[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1530] Buprofezin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1531] Dicofol[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1532] Dicrotophos[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1533] Disulfoton[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1534] Fenpropathrin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1535] Indoxacarb[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1536] Methamidophos[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1537] Methomyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1538] Naled[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1539] Oils, unspecified[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1540] Profenofos[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1541] Pyriproxyfen[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1542] Tebufenozide[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1543] Tralomethrin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1544] Cyclanilide[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1545] Dimethipin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1546] Thidiazuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1547] Tribufos[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1548] Tetramethyl ammonium hydroxide[air_high population density] environmental [M5] air_high population density [U3] kg +[E1549] Sulfur hexafluoride[air_high population density] environmental [M5] air_high population density [U3] kg +[E1550] Sodium tetrahydroborate[air_high population density] environmental [M5] air_high population density [U3] kg +[E1551] Phosphoric acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E1552] Nitrogen fluoride[air_high population density] environmental [M5] air_high population density [U3] kg +[E1553] Boric acid[air_high population density] environmental [M5] air_high population density [U3] kg +[E1554] Ethane, 1,1,1-trichloro-, HCFC-140[water_river] environmental [M6] water_river [U3] kg +[E1555] Ethane, 1,2-dichloro-[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1556] Perchlorate, ion[water_river] environmental [M6] water_river [U3] kg +[E1557] Lead, Pb 0.014%, Au 9.7E-4%, Ag 9.7E-4%, Zn 0.63%, Cu 0.38%, in ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1558] Zinc, Zn 0.63%, Au 9.7E-4%, Ag 9.7E-4%, Cu 0.38%, Pb 0.014%, in ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1559] Copper, Cu 0.38%, Au 9.7E-4%, Ag 9.7E-4%, Zn 0.63%, Pb 0.014%, in ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1560] Helium[air_high population density] environmental [M5] air_high population density [U3] kg +[E1561] Occupation, tropical rain forest[resource_land] environmental [M2] resource_land [U5] m2a +[E1562] Transformation, to tropical rain forest[resource_land] environmental [M2] resource_land [U6] m2 +[E1563] Hydrocarbons, aliphatic, unsaturated[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1564] Transformation, from forest, intensive, normal[resource_land] environmental [M2] resource_land [U6] m2 +[E1565] Transformation, from forest, intensive, short-cycle[resource_land] environmental [M2] resource_land [U6] m2 +[E1566] Ethane, 1,1-difluoro-, HFC-152a[air_low population density] environmental [M3] air_low population density [U3] kg +[E1567] Acetone[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1568] Phosphorus trichloride[air_high population density] environmental [M5] air_high population density [U3] kg +[E1569] Phosphate[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1570] Occupation, arable, non-irrigated, diverse-intensive[resource_land] environmental [M2] resource_land [U5] m2a +[E1571] Occupation, arable, non-irrigated, fallow[resource_land] environmental [M2] resource_land [U5] m2a +[E1572] Occupation, arable, non-irrigated, monotone-intensive[resource_land] environmental [M2] resource_land [U5] m2a +[E1573] Occupation, forest[resource_land] environmental [M2] resource_land [U5] m2a +[E1574] Occupation, forest, extensive[resource_land] environmental [M2] resource_land [U5] m2a +[E1575] Occupation, forest, intensive, clear-cutting[resource_land] environmental [M2] resource_land [U5] m2a +[E1576] Occupation, heterogeneous, agricultural[resource_land] environmental [M2] resource_land [U5] m2a +[E1577] Occupation, permanent crop[resource_land] environmental [M2] resource_land [U5] m2a +[E1578] Occupation, permanent crop, fruit[resource_land] environmental [M2] resource_land [U5] m2a +[E1579] Occupation, permanent crop, fruit, extensive[resource_land] environmental [M2] resource_land [U5] m2a +[E1580] Occupation, permanent crop, vine[resource_land] environmental [M2] resource_land [U5] m2a +[E1581] Occupation, permanent crop, vine, extensive[resource_land] environmental [M2] resource_land [U5] m2a +[E1582] Occupation, permanent crop, vine, intensive[resource_land] environmental [M2] resource_land [U5] m2a +[E1583] Occupation, unknown[resource_land] environmental [M2] resource_land [U5] m2a +[E1584] Occupation, urban, continuously built[resource_land] environmental [M2] resource_land [U5] m2a +[E1585] Ammonia[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1586] Nitrate[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1587] Nitrate[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1588] Phosphorus[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1589] Nitrogen[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1590] Nitrogen[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1591] Phosphorus[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1592] Phosphorus[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1593] Ammonium, ion[water_lake] environmental [M22] water_lake [U3] kg +[E1594] COD, Chemical Oxygen Demand[water_lake] environmental [M22] water_lake [U3] kg +[E1595] Nitrate[water_lake] environmental [M22] water_lake [U3] kg +[E1596] Nitrate[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1597] Nitrite[water_ground-] environmental [M11] water_ground- [U3] kg +[E1598] Nitrite[water_lake] environmental [M22] water_lake [U3] kg +[E1599] Nitrite[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1600] Nitrogen[water_ground-] environmental [M11] water_ground- [U3] kg +[E1601] Nitrogen[water_lake] environmental [M22] water_lake [U3] kg +[E1602] Nitrogen[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1603] Phosphate[water_lake] environmental [M22] water_lake [U3] kg +[E1604] Phosphorus[water_lake] environmental [M22] water_lake [U3] kg +[E1605] Phosphoric acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E1606] Phosphoric acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1607] Phosphoric acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1608] Acetaldehyde[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1609] Acetic acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1610] Acetone[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1611] Acrolein[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1612] Ethane, 1,1,1-trichloro-, HCFC-140[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1613] Ethane, 1,1,1-trichloro-, HCFC-140[air_high population density] environmental [M5] air_high population density [U3] kg +[E1614] Ethanol[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1615] Ethanol[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1616] Ethene, tetrachloro-[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1617] Ethene, trichloro-[air_low population density] environmental [M3] air_low population density [U3] kg +[E1618] Ethene, trichloro-[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1619] Ethene, trichloro-[air_high population density] environmental [M5] air_high population density [U3] kg +[E1620] Ethene, trichloro-[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1621] Hydrogen sulfide[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1622] Methane, bromo-, Halon 1001[air_low population density] environmental [M3] air_low population density [U3] kg +[E1623] Methane, bromo-, Halon 1001[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1624] Methane, bromo-, Halon 1001[air_high population density] environmental [M5] air_high population density [U3] kg +[E1625] Methane, dichloro-, HCC-30[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1626] Methane, dichloro-, HCC-30[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1627] Methanol[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1628] m-Xylene[air_low population density] environmental [M3] air_low population density [U3] kg +[E1629] m-Xylene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1630] m-Xylene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1631] o-Xylene[air_low population density] environmental [M3] air_low population density [U3] kg +[E1632] o-Xylene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1633] o-Xylene[air_high population density] environmental [M5] air_high population density [U3] kg +[E1634] o-Xylene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1635] Phenol[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1636] Propanal[air_low population density] environmental [M3] air_low population density [U3] kg +[E1637] Propanal[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1638] Propionic acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E1639] Propionic acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1640] Styrene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1641] Toluene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1642] Carbon disulfide[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1643] 4-Methyl-2-pentanone[air_low population density] environmental [M3] air_low population density [U3] kg +[E1644] 4-Methyl-2-pentanone[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1645] 4-Methyl-2-pentanone[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1646] Butanol[air_low population density] environmental [M3] air_low population density [U3] kg +[E1647] Butanol[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1648] Butanol[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1649] Dimethylamine[air_low population density] environmental [M3] air_low population density [U3] kg +[E1650] Dimethylamine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1651] Dimethylamine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1652] Ethyl acetate[air_low population density] environmental [M3] air_low population density [U3] kg +[E1653] Ethyl acetate[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1654] Ethyl acetate[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1655] 2-Methyl-1-propanol[air_low population density] environmental [M3] air_low population density [U3] kg +[E1656] 2-Methyl-1-propanol[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1657] 2-Methyl-1-propanol[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1658] Methyl ethyl ketone[air_low population density] environmental [M3] air_low population density [U3] kg +[E1659] Methyl ethyl ketone[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1660] Methyl ethyl ketone[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1661] Methyl acrylate[air_low population density] environmental [M3] air_low population density [U3] kg +[E1662] Methyl acrylate[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1663] Methyl acrylate[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1664] Ethane thiol[air_high population density] environmental [M5] air_high population density [U3] kg +[E1665] Ethane thiol[air_low population density] environmental [M3] air_low population density [U3] kg +[E1666] Ethane thiol[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1667] Ethane thiol[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1668] Cumene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1669] Diethylamine[air_low population density] environmental [M3] air_low population density [U3] kg +[E1670] Diethylamine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1671] Diethylamine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1672] Methyl acetate[air_low population density] environmental [M3] air_low population density [U3] kg +[E1673] Methyl acetate[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1674] Methyl acetate[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1675] Trimethylamine[air_low population density] environmental [M3] air_low population density [U3] kg +[E1676] Trimethylamine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1677] Trimethylamine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1678] Pyrolusite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1679] Silver, 0.01% in crude ore, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1680] Helium, 0.08% in natural gas, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1681] Zirconia, as baddeleyite, in ground[resource_in ground] environmental [M7] resource_in ground [U3] kg +[E1682] Antimony[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1683] Arsenic[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1684] Barium[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1685] Benzene, ethyl-[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1686] Benzene, ethyl-[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1687] Benzene, hexachloro-[air_low population density] environmental [M3] air_low population density [U3] kg +[E1688] Benzene, hexachloro-[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1689] Benzene, pentachloro-[air_low population density] environmental [M3] air_low population density [U3] kg +[E1690] Benzene, pentachloro-[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1691] Benzene, pentachloro-[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1692] Benzo(a)pyrene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1693] Beryllium[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1694] Chloroform[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1695] Chromium VI[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1696] Cobalt[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1697] Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1698] Ethane, 1,2-dichloro-[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1699] Ethene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1700] Ethene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1701] Ethene, chloro-[air_low population density] environmental [M3] air_low population density [U3] kg +[E1702] Ethene, chloro-[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1703] Hydrogen fluoride[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1704] Methane, tetrachloro-, R-10[air_low population density] environmental [M3] air_low population density [U3] kg +[E1705] Methane, tetrachloro-, R-10[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1706] Molybdenum[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1707] PAH, polycyclic aromatic hydrocarbons[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1708] Phenol, pentachloro-[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1709] Phenol, pentachloro-[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1710] Thallium[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1711] Tin[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1712] Vanadium[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1713] Arsenic[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1714] Arsenic[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1715] Cadmium[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1716] Captan[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1717] Chromium[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1718] Chromium VI[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1719] Chromium VI[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1720] Chromium VI[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1721] Cobalt[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1722] Cobalt[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1723] Copper[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1724] Dinoseb[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1725] DNOC[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1726] Fentin acetate[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1727] Lead[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1728] Lindane[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1729] Mercury[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1730] Mercury[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1731] Molybdenum[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1732] Molybdenum[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1733] Molybdenum[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1734] Nickel[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1735] Selenium[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1736] Selenium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1737] Selenium[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1738] Tin[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1739] Tin[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1740] Tin[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1741] Zinc[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1742] Acenaphthene[water_ground-] environmental [M11] water_ground- [U3] kg +[E1743] Acenaphthene[water_lake] environmental [M22] water_lake [U3] kg +[E1744] Acenaphthene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1745] Acenaphthylene[water_ground-] environmental [M11] water_ground- [U3] kg +[E1746] Acenaphthylene[water_lake] environmental [M22] water_lake [U3] kg +[E1747] Acenaphthylene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1748] Acrylonitrile[water_lake] environmental [M22] water_lake [U3] kg +[E1749] Acrylonitrile[water_ocean] environmental [M15] water_ocean [U3] kg +[E1750] Acrylonitrile[water_river] environmental [M6] water_river [U3] kg +[E1751] Acrylonitrile[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1752] Antimony[water_lake] environmental [M22] water_lake [U3] kg +[E1753] Antimony[water_ocean] environmental [M15] water_ocean [U3] kg +[E1754] Barite[water_ground-] environmental [M11] water_ground- [U3] kg +[E1755] Barite[water_lake] environmental [M22] water_lake [U3] kg +[E1756] Barite[water_river] environmental [M6] water_river [U3] kg +[E1757] Barite[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1758] Barium[water_lake] environmental [M22] water_lake [U3] kg +[E1759] Benzene[water_lake] environmental [M22] water_lake [U3] kg +[E1760] Benzene, chloro-[water_lake] environmental [M22] water_lake [U3] kg +[E1761] Benzene, chloro-[water_ocean] environmental [M15] water_ocean [U3] kg +[E1762] Benzene, chloro-[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1763] Benzene, ethyl-[water_lake] environmental [M22] water_lake [U3] kg +[E1764] Beryllium[water_lake] environmental [M22] water_lake [U3] kg +[E1765] Beryllium[water_ocean] environmental [M15] water_ocean [U3] kg +[E1766] Chloroform[water_lake] environmental [M22] water_lake [U3] kg +[E1767] Chloroform[water_ocean] environmental [M15] water_ocean [U3] kg +[E1768] Chloroform[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1769] Chromium VI[water_lake] environmental [M22] water_lake [U3] kg +[E1770] Chromium VI[water_ocean] environmental [M15] water_ocean [U3] kg +[E1771] Chromium, ion[water_lake] environmental [M22] water_lake [U3] kg +[E1772] Cobalt[water_lake] environmental [M22] water_lake [U3] kg +[E1773] Ethane, 1,1,1-trichloro-, HCFC-140[water_lake] environmental [M22] water_lake [U3] kg +[E1774] Ethane, 1,1,1-trichloro-, HCFC-140[water_ocean] environmental [M15] water_ocean [U3] kg +[E1775] Ethane, 1,1,1-trichloro-, HCFC-140[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1776] Ethane, 1,2-dichloro-[water_lake] environmental [M22] water_lake [U3] kg +[E1777] Ethane, 1,2-dichloro-[water_ocean] environmental [M15] water_ocean [U3] kg +[E1778] Ethane, 1,2-dichloro-[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1779] Ethene, chloro-[water_lake] environmental [M22] water_lake [U3] kg +[E1780] Ethene, chloro-[water_ocean] environmental [M15] water_ocean [U3] kg +[E1781] Ethene, chloro-[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1782] Ethene, tetrachloro-[water_lake] environmental [M22] water_lake [U3] kg +[E1783] Ethene, tetrachloro-[water_ocean] environmental [M15] water_ocean [U3] kg +[E1784] Ethene, tetrachloro-[water_river] environmental [M6] water_river [U3] kg +[E1785] Ethene, tetrachloro-[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1786] Ethene, trichloro-[water_lake] environmental [M22] water_lake [U3] kg +[E1787] Ethene, trichloro-[water_ocean] environmental [M15] water_ocean [U3] kg +[E1788] Ethene, trichloro-[water_river] environmental [M6] water_river [U3] kg +[E1789] Ethene, trichloro-[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1790] Formaldehyde[water_lake] environmental [M22] water_lake [U3] kg +[E1791] Formaldehyde[water_ocean] environmental [M15] water_ocean [U3] kg +[E1792] Methane, dichloro-, HCC-30[water_lake] environmental [M22] water_lake [U3] kg +[E1793] Methane, dichloro-, HCC-30[water_ocean] environmental [M15] water_ocean [U3] kg +[E1794] Methane, dichloro-, HCC-30[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1795] Methane, tetrachloro-, R-10[water_lake] environmental [M22] water_lake [U3] kg +[E1796] Methane, tetrachloro-, R-10[water_ocean] environmental [M15] water_ocean [U3] kg +[E1797] Methane, tetrachloro-, R-10[water_river] environmental [M6] water_river [U3] kg +[E1798] Methane, tetrachloro-, R-10[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1799] Molybdenum[water_lake] environmental [M22] water_lake [U3] kg +[E1800] m-Xylene[water_lake] environmental [M22] water_lake [U3] kg +[E1801] m-Xylene[water_ocean] environmental [M15] water_ocean [U3] kg +[E1802] o-Xylene[water_lake] environmental [M22] water_lake [U3] kg +[E1803] o-Xylene[water_ocean] environmental [M15] water_ocean [U3] kg +[E1804] o-Xylene[water_river] environmental [M6] water_river [U3] kg +[E1805] PAH, polycyclic aromatic hydrocarbons[water_lake] environmental [M22] water_lake [U3] kg +[E1806] PAH, polycyclic aromatic hydrocarbons[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1807] Phenol[water_lake] environmental [M22] water_lake [U3] kg +[E1808] Phthalate, butyl-benzyl-[water_lake] environmental [M22] water_lake [U3] kg +[E1809] Phthalate, butyl-benzyl-[water_ocean] environmental [M15] water_ocean [U3] kg +[E1810] Phthalate, butyl-benzyl-[water_river] environmental [M6] water_river [U3] kg +[E1811] Phthalate, butyl-benzyl-[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1812] Phthalate, dibutyl-[water_lake] environmental [M22] water_lake [U3] kg +[E1813] Phthalate, dibutyl-[water_ocean] environmental [M15] water_ocean [U3] kg +[E1814] Phthalate, dibutyl-[water_river] environmental [M6] water_river [U3] kg +[E1815] Phthalate, dibutyl-[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1816] Phthalate, dimethyl-[water_lake] environmental [M22] water_lake [U3] kg +[E1817] Phthalate, dimethyl-[water_ocean] environmental [M15] water_ocean [U3] kg +[E1818] Phthalate, dimethyl-[water_river] environmental [M6] water_river [U3] kg +[E1819] Phthalate, dimethyl-[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1820] Phthalate, dioctyl-[water_lake] environmental [M22] water_lake [U3] kg +[E1821] Phthalate, dioctyl-[water_ocean] environmental [M15] water_ocean [U3] kg +[E1822] Phthalate, dioctyl-[water_river] environmental [M6] water_river [U3] kg +[E1823] Phthalate, dioctyl-[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1824] Selenium[water_lake] environmental [M22] water_lake [U3] kg +[E1825] Styrene[water_lake] environmental [M22] water_lake [U3] kg +[E1826] Styrene[water_ocean] environmental [M15] water_ocean [U3] kg +[E1827] Styrene[water_river] environmental [M6] water_river [U3] kg +[E1828] Styrene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1829] Tin, ion[water_lake] environmental [M22] water_lake [U3] kg +[E1830] Tin, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E1831] Toluene[water_lake] environmental [M22] water_lake [U3] kg +[E1832] Tributyltin compounds[water_ground-] environmental [M11] water_ground- [U3] kg +[E1833] Tributyltin compounds[water_lake] environmental [M22] water_lake [U3] kg +[E1834] Tributyltin compounds[water_river] environmental [M6] water_river [U3] kg +[E1835] Tributyltin compounds[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1836] Vanadium, ion[water_lake] environmental [M22] water_lake [U3] kg +[E1837] Xylene[water_lake] environmental [M22] water_lake [U3] kg +[E1838] Thallium[water_lake] environmental [M22] water_lake [U3] kg +[E1839] Thallium[water_ocean] environmental [M15] water_ocean [U3] kg +[E1840] Thallium[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1841] Thallium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1842] Thallium[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1843] Vanadium[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1844] Vanadium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1845] Vanadium[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1846] Ethylene oxide[water_lake] environmental [M22] water_lake [U3] kg +[E1847] Ethylene oxide[water_ocean] environmental [M15] water_ocean [U3] kg +[E1848] Ethylene oxide[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1849] Propylene oxide[water_lake] environmental [M22] water_lake [U3] kg +[E1850] Propylene oxide[water_ocean] environmental [M15] water_ocean [U3] kg +[E1851] Propylene oxide[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1852] Sodium dichromate[air_low population density] environmental [M3] air_low population density [U3] kg +[E1853] Sodium dichromate[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1854] Sodium dichromate[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1855] Dichromate[water_ground-] environmental [M11] water_ground- [U3] kg +[E1856] Dichromate[water_lake] environmental [M22] water_lake [U3] kg +[E1857] Dichromate[water_ocean] environmental [M15] water_ocean [U3] kg +[E1858] Dichromate[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1859] Acenaphthene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1860] o-Dichlorobenzene[water_ground-] environmental [M11] water_ground- [U3] kg +[E1861] o-Dichlorobenzene[water_lake] environmental [M22] water_lake [U3] kg +[E1862] o-Dichlorobenzene[water_ocean] environmental [M15] water_ocean [U3] kg +[E1863] o-Dichlorobenzene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1864] Beryllium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1865] Thallium[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E1866] Propylene oxide[air_low population density] environmental [M3] air_low population density [U3] kg +[E1867] Propylene oxide[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1868] Propylene oxide[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1869] Antimony[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1870] Antimony[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1871] Antimony[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1872] Barium[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1873] Barium[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1874] Beryllium[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E1875] Beryllium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E1876] Beryllium[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E1877] Ethene[water_lake] environmental [M22] water_lake [U3] kg +[E1878] Ethene[water_ocean] environmental [M15] water_ocean [U3] kg +[E1879] Ethene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1880] Phenol, 2,4-dichloro[air_low population density] environmental [M3] air_low population density [U3] kg +[E1881] Phenol, 2,4-dichloro[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1882] Phenol, 2,4-dichloro[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1883] Benzene, dichloro[air_low population density] environmental [M3] air_low population density [U3] kg +[E1884] Benzene, dichloro[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1885] Benzene, dichloro[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1886] Carbon disulfide[water_ground-] environmental [M11] water_ground- [U3] kg +[E1887] Carbon disulfide[water_lake] environmental [M22] water_lake [U3] kg +[E1888] Carbon disulfide[water_ocean] environmental [M15] water_ocean [U3] kg +[E1889] Carbon disulfide[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1890] Hydrogen sulfide[water_lake] environmental [M22] water_lake [U3] kg +[E1891] Hydrogen sulfide[water_ocean] environmental [M15] water_ocean [U3] kg +[E1892] Hydrogen sulfide[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E1893] Sulfuric acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1894] Sulfuric acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1895] Sulphur trioxide[air_low population density] environmental [M3] air_low population density [U3] kg +[E1896] Sulphur trioxide[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1897] Sulphur trioxide[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1898] Butane[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1899] Ethane[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1900] Ethyne[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1901] Heptane[air_low population density] environmental [M3] air_low population density [U3] kg +[E1902] Heptane[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1903] Heptane[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1904] Hexane[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1905] Methane, biogenic[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1906] Pentane[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1907] Propane[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1908] Propene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1909] Isoprene[air_high population density] environmental [M5] air_high population density [U3] kg +[E1910] Isoprene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1911] 2-Methyl-2-butene[air_low population density] environmental [M3] air_low population density [U3] kg +[E1912] 2-Methyl-2-butene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1913] 2-Methyl-2-butene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1914] 2-Propanol[air_low population density] environmental [M3] air_low population density [U3] kg +[E1915] 2-Propanol[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1916] 2-Propanol[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1917] 2-Methyl pentane[air_low population density] environmental [M3] air_low population density [U3] kg +[E1918] 2-Methyl pentane[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1919] 2-Methyl pentane[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1920] 1-Pentene[air_low population density] environmental [M3] air_low population density [U3] kg +[E1921] 1-Pentene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1922] 1-Pentene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1923] Benzaldehyde[air_low population density] environmental [M3] air_low population density [U3] kg +[E1924] Benzaldehyde[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1925] Benzaldehyde[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1926] t-Butyl methyl ether[air_low population density] environmental [M3] air_low population density [U3] kg +[E1927] t-Butyl methyl ether[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1928] t-Butyl methyl ether[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1929] 3-Methyl-1-butanol[air_low population density] environmental [M3] air_low population density [U3] kg +[E1930] 3-Methyl-1-butanol[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1931] 3-Methyl-1-butanol[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1932] Cyclohexane[air_low population density] environmental [M3] air_low population density [U3] kg +[E1933] Cyclohexane[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1934] Cyclohexane[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1935] Methyl formate[air_low population density] environmental [M3] air_low population density [U3] kg +[E1936] Methyl formate[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1937] Methyl formate[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1938] Propanol[air_low population density] environmental [M3] air_low population density [U3] kg +[E1939] Propanol[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1940] Propanol[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1941] Formic acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1942] Formic acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1943] Diethyl ether[air_low population density] environmental [M3] air_low population density [U3] kg +[E1944] Diethyl ether[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1945] Diethyl ether[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1946] Ethylene glycol monoethyl ether[air_low population density] environmental [M3] air_low population density [U3] kg +[E1947] Ethylene glycol monoethyl ether[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1948] Ethylene glycol monoethyl ether[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1949] Methane, monochloro-, R-40[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1950] Methane, monochloro-, R-40[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1951] Ethane, 1,1,2-trichloro-[air_low population density] environmental [M3] air_low population density [U3] kg +[E1952] Ethane, 1,1,2-trichloro-[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1953] Ethane, 1,1,2-trichloro-[air_high population density] environmental [M5] air_high population density [U3] kg +[E1954] Ethane, 1,1,2-trichloro-[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1955] Monochloroethane[air_low population density] environmental [M3] air_low population density [U3] kg +[E1956] Monochloroethane[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1957] Monochloroethane[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1958] Nitrobenzene[air_low population density] environmental [M3] air_low population density [U3] kg +[E1959] Nitrobenzene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1960] Nitrobenzene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1961] Ethylamine[air_low population density] environmental [M3] air_low population density [U3] kg +[E1962] Ethylamine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1963] Ethylamine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1964] Furan[air_high population density] environmental [M5] air_high population density [U3] kg +[E1965] Furan[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1966] Ethane, 1,1,1,2-tetrafluoro-, HFC-134a[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1967] Ethane, 1,1,1-trifluoro-, HFC-143a[air_low population density] environmental [M3] air_low population density [U3] kg +[E1968] Ethane, 1,1,1-trifluoro-, HFC-143a[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1969] Ethane, 1,1,1-trifluoro-, HFC-143a[air_high population density] environmental [M5] air_high population density [U3] kg +[E1970] Ethane, 1,1,1-trifluoro-, HFC-143a[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1971] Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113[air_low population density] environmental [M3] air_low population density [U3] kg +[E1972] Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1973] Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b[air_low population density] environmental [M3] air_low population density [U3] kg +[E1974] Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1975] Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b[air_high population density] environmental [M5] air_high population density [U3] kg +[E1976] Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1977] Ethane, 1,1-difluoro-, HFC-152a[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1978] Ethane, 1,1-difluoro-, HFC-152a[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1979] Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1980] Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114[air_high population density] environmental [M5] air_high population density [U3] kg +[E1981] Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1982] Ethane, 1-chloro-1,1-difluoro-, HCFC-142b[air_low population density] environmental [M3] air_low population density [U3] kg +[E1983] Ethane, 1-chloro-1,1-difluoro-, HCFC-142b[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1984] Ethane, 1-chloro-1,1-difluoro-, HCFC-142b[air_high population density] environmental [M5] air_high population density [U3] kg +[E1985] Ethane, 1-chloro-1,1-difluoro-, HCFC-142b[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1986] Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123[air_low population density] environmental [M3] air_low population density [U3] kg +[E1987] Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1988] Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123[air_high population density] environmental [M5] air_high population density [U3] kg +[E1989] Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1990] Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124[air_low population density] environmental [M3] air_low population density [U3] kg +[E1991] Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1992] Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124[air_high population density] environmental [M5] air_high population density [U3] kg +[E1993] Ethane, chloropentafluoro-, CFC-115[air_low population density] environmental [M3] air_low population density [U3] kg +[E1994] Ethane, chloropentafluoro-, CFC-115[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1995] Ethane, chloropentafluoro-, CFC-115[air_high population density] environmental [M5] air_high population density [U3] kg +[E1996] Ethane, chloropentafluoro-, CFC-115[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E1997] Ethane, pentafluoro-, HFC-125[air_low population density] environmental [M3] air_low population density [U3] kg +[E1998] Ethane, pentafluoro-, HFC-125[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E1999] Ethane, pentafluoro-, HFC-125[air_high population density] environmental [M5] air_high population density [U3] kg +[E2000] Ethane, pentafluoro-, HFC-125[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2001] Methane, bromochlorodifluoro-, Halon 1211[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2002] Methane, bromochlorodifluoro-, Halon 1211[air_high population density] environmental [M5] air_high population density [U3] kg +[E2003] Methane, bromochlorodifluoro-, Halon 1211[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2004] Methane, bromotrifluoro-, Halon 1301[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2005] Methane, bromotrifluoro-, Halon 1301[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2006] Methane, chlorodifluoro-, HCFC-22[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2007] Methane, chlorodifluoro-, HCFC-22[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2008] Methane, chlorotrifluoro-, CFC-13[air_low population density] environmental [M3] air_low population density [U3] kg +[E2009] Methane, chlorotrifluoro-, CFC-13[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2010] Methane, chlorotrifluoro-, CFC-13[air_high population density] environmental [M5] air_high population density [U3] kg +[E2011] Methane, dichlorodifluoro-, CFC-12[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2012] Methane, difluoro-, HFC-32[air_low population density] environmental [M3] air_low population density [U3] kg +[E2013] Methane, difluoro-, HFC-32[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2014] Methane, difluoro-, HFC-32[air_high population density] environmental [M5] air_high population density [U3] kg +[E2015] Methane, difluoro-, HFC-32[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2016] Methane, tetrafluoro-, R-14[air_low population density] environmental [M3] air_low population density [U3] kg +[E2017] Methane, tetrafluoro-, R-14[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2018] Methane, trichlorofluoro-, CFC-11[air_low population density] environmental [M3] air_low population density [U3] kg +[E2019] Methane, trichlorofluoro-, CFC-11[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2020] Methane, trichlorofluoro-, CFC-11[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2021] Methane, trifluoro-, HFC-23[air_low population density] environmental [M3] air_low population density [U3] kg +[E2022] Methane, trifluoro-, HFC-23[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2023] Methane, trifluoro-, HFC-23[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2024] Sulfur hexafluoride[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2025] Carbon dioxide, land transformation[air_high population density] environmental [M5] air_high population density [U3] kg +[E2026] Carbon dioxide, land transformation[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2027] Carbon dioxide, land transformation[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2028] Carbon-14[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2029] Carbon-14[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2030] Carbon-14[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2031] Cesium-134[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2032] Cesium-134[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2033] Cesium-134[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2034] Cesium-137[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2035] Cesium-137[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2036] Cesium-137[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2037] Cobalt-58[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2038] Cobalt-58[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2039] Cobalt-58[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2040] Cobalt-60[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2041] Cobalt-60[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2042] Cobalt-60[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2043] Hydrogen-3, Tritium[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2044] Hydrogen-3, Tritium[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2045] Hydrogen-3, Tritium[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2046] Iodine-129[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2047] Iodine-129[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2048] Iodine-129[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2049] Iodine-131[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2050] Iodine-131[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2051] Iodine-131[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2052] Iodine-133[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2053] Iodine-133[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2054] Iodine-133[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2055] Krypton-85[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2056] Krypton-85[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2057] Krypton-85[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2058] Lead-210[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2059] Plutonium-238[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2060] Plutonium-238[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2061] Plutonium-238[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2062] Plutonium-alpha[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2063] Plutonium-alpha[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2064] Plutonium-alpha[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2065] Polonium-210[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2066] Radium-226[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2067] Radon-222[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2068] Thorium-230[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2069] Thorium-230[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2070] Thorium-230[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2071] Uranium-235[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2072] Uranium-235[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2073] Uranium-235[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2074] Uranium-238[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2075] Xenon-133[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2076] Xenon-133[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2077] Xenon-133[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2078] Xenon-133m[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2079] Xenon-133m[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2080] Xenon-133m[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2081] Americium-241[water_ocean] environmental [M15] water_ocean [U15] kBq +[E2082] Antimony-124[water_ground-] environmental [M11] water_ground- [U15] kBq +[E2083] Antimony-124[water_lake] environmental [M22] water_lake [U15] kBq +[E2084] Antimony-124[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2085] Antimony-125[water_ocean] environmental [M15] water_ocean [U15] kBq +[E2086] Carbon-14[water_ocean] environmental [M15] water_ocean [U15] kBq +[E2087] Cesium-134[water_ground-] environmental [M11] water_ground- [U15] kBq +[E2088] Cesium-134[water_lake] environmental [M22] water_lake [U15] kBq +[E2089] Cesium-134[water_ocean] environmental [M15] water_ocean [U15] kBq +[E2090] Cesium-134[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2091] Cesium-137[water_ground-] environmental [M11] water_ground- [U15] kBq +[E2092] Cesium-137[water_lake] environmental [M22] water_lake [U15] kBq +[E2093] Cesium-137[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2094] Cobalt-58[water_ground-] environmental [M11] water_ground- [U15] kBq +[E2095] Cobalt-58[water_lake] environmental [M22] water_lake [U15] kBq +[E2096] Cobalt-58[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2097] Cobalt-60[water_ground-] environmental [M11] water_ground- [U15] kBq +[E2098] Cobalt-60[water_lake] environmental [M22] water_lake [U15] kBq +[E2099] Cobalt-60[water_ocean] environmental [M15] water_ocean [U15] kBq +[E2100] Cobalt-60[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2101] Curium alpha[water_ocean] environmental [M15] water_ocean [U15] kBq +[E2102] Hydrogen-3, Tritium[water_ground-] environmental [M11] water_ground- [U15] kBq +[E2103] Hydrogen-3, Tritium[water_lake] environmental [M22] water_lake [U15] kBq +[E2104] Hydrogen-3, Tritium[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2105] Iodine-129[water_ocean] environmental [M15] water_ocean [U15] kBq +[E2106] Iodine-131[water_ground-] environmental [M11] water_ground- [U15] kBq +[E2107] Iodine-131[water_lake] environmental [M22] water_lake [U15] kBq +[E2108] Iodine-131[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2109] Manganese-54[water_ground-] environmental [M11] water_ground- [U15] kBq +[E2110] Manganese-54[water_lake] environmental [M22] water_lake [U15] kBq +[E2111] Manganese-54[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2112] Plutonium-alpha[water_ocean] environmental [M15] water_ocean [U15] kBq +[E2113] Radium-226[water_lake] environmental [M22] water_lake [U15] kBq +[E2114] Ruthenium-106[water_ocean] environmental [M15] water_ocean [U15] kBq +[E2115] Silver-110[water_ground-] environmental [M11] water_ground- [U15] kBq +[E2116] Silver-110[water_lake] environmental [M22] water_lake [U15] kBq +[E2117] Silver-110[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2118] Uranium-234[water_ground-] environmental [M11] water_ground- [U15] kBq +[E2119] Uranium-234[water_lake] environmental [M22] water_lake [U15] kBq +[E2120] Uranium-234[water_ocean] environmental [M15] water_ocean [U15] kBq +[E2121] Uranium-234[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2122] Uranium-235[water_ground-] environmental [M11] water_ground- [U15] kBq +[E2123] Uranium-235[water_lake] environmental [M22] water_lake [U15] kBq +[E2124] Uranium-235[water_ocean] environmental [M15] water_ocean [U15] kBq +[E2125] Uranium-235[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2126] Uranium-238[water_lake] environmental [M22] water_lake [U15] kBq +[E2127] Uranium-238[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2128] Particulates, > 2.5 um, and < 10um[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2129] Ammonia[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2130] Nitrogen oxides[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2131] Dinitrogen monoxide[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2132] Ammonium, ion[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2133] COD, Chemical Oxygen Demand[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2134] Nitrate[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2135] Nitrite[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2136] Nitrogen[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2137] Nitrogen[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2138] Phosphate[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2139] Phosphorus[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2140] Phosphorus[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2141] Phosphoric acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2142] Acetaldehyde[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2143] Acetic acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2144] Acetone[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2145] Acrolein[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2146] Ethane, 1,1,1-trichloro-, HCFC-140[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2147] Ethanol[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2148] Ethene, tetrachloro-[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2149] Ethene, trichloro-[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2150] Formaldehyde[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2151] Hydrogen sulfide[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2152] Methane, bromo-, Halon 1001[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2153] Methane, dichloro-, HCC-30[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2154] Methanol[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2155] m-Xylene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2156] o-Xylene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2157] Phenol[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2158] Propanal[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2159] Propionic acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2160] Styrene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2161] Toluene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2162] Carbon disulfide[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2163] 4-Methyl-2-pentanone[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2164] Butanol[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2165] Dimethylamine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2166] Ethyl acetate[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2167] 2-Methyl-1-propanol[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2168] Methyl ethyl ketone[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2169] Methyl acrylate[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2170] Ethane thiol[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2171] Cumene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2172] Diethylamine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2173] Methyl acetate[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2174] Trimethylamine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2175] Benzene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2176] Benzene, ethyl-[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2177] Benzene, hexachloro-[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2178] Benzene, pentachloro-[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2179] Benzo(a)pyrene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2180] Chloroform[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2181] Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2182] Ethane, 1,2-dichloro-[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2183] Ethene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2184] Ethene, chloro-[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2185] Ethylene oxide[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2186] Hydrogen fluoride[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2187] Methane, tetrachloro-, R-10[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2188] PAH, polycyclic aromatic hydrocarbons[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2189] Phenol, pentachloro-[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2190] Thallium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2191] Acenaphthene[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2192] Acenaphthene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2193] Acenaphthylene[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2194] Acenaphthylene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2195] Acrylonitrile[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2196] Antimony[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2197] Arsenic, ion[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2198] Barite[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2199] Barite[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2200] Barium[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2201] Benzene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2202] Benzene, ethyl-[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2203] Beryllium[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2204] Cadmium, ion[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2205] Chloroform[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2206] Chromium VI[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2207] Chromium, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2208] Chromium, ion[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2209] Cobalt[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2210] Ethane, 1,1,1-trichloro-, HCFC-140[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2211] Ethane, 1,2-dichloro-[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2212] Ethene, chloro-[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2213] Ethene, tetrachloro-[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2214] Ethene, trichloro-[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2215] Formaldehyde[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2216] Lead[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2217] Mercury[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2218] Methane, dichloro-, HCC-30[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2219] Methane, tetrachloro-, R-10[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2220] Molybdenum[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2221] m-Xylene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2222] Nickel, ion[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2223] o-Xylene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2224] PAH, polycyclic aromatic hydrocarbons[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2225] Phenol[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2226] Phthalate, butyl-benzyl-[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2227] Phthalate, dibutyl-[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2228] Phthalate, dimethyl-[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2229] Phthalate, dioctyl-[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2230] Selenium[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2231] Styrene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2232] Tin, ion[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2233] Toluene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2234] Tributyltin compounds[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2235] Tributyltin compounds[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2236] Vanadium, ion[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2237] Xylene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2238] Zinc, ion[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2239] Thallium[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2240] Butadiene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2241] Copper, ion[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2242] Ethylene oxide[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2243] Propylene oxide[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2244] Sodium dichromate[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2245] Dichromate[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2246] Dichromate[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2247] Acenaphthene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2248] o-Dichlorobenzene[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2249] o-Dichlorobenzene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2250] Propylene oxide[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2251] Ethene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2252] Phenol, 2,4-dichloro[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2253] Benzene, dichloro[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2254] Carbon disulfide[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2255] Carbon disulfide[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2256] Sulfur dioxide[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2257] Hydrogen chloride[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2258] Hydrogen sulfide[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2259] Sulfuric acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2260] Sulphur trioxide[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2261] Butane[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2262] Carbon monoxide, fossil[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2263] Ethane[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2264] Ethyne[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2265] Heptane[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2266] Hexane[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2267] Methane, biogenic[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2268] Methane, fossil[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2269] Pentane[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2270] Propane[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2271] Propene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2272] Isoprene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2273] 2-Methyl-2-butene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2274] 2-Propanol[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2275] 2-Methyl pentane[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2276] 1-Pentene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2277] Benzaldehyde[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2278] t-Butyl methyl ether[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2279] 3-Methyl-1-butanol[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2280] Cyclohexane[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2281] Methyl formate[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2282] Propanol[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2283] Formic acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2284] Diethyl ether[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2285] Ethylene glycol monoethyl ether[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2286] Methane, monochloro-, R-40[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2287] Ethane, 1,1,2-trichloro-[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2288] Monochloroethane[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2289] Nitrobenzene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2290] Ethylamine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2291] Furan[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2292] Methane, tetrafluoro-, R-14[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2293] Methane, trichlorofluoro-, CFC-11[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2294] Methane, trifluoro-, HFC-23[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2295] Sulfur hexafluoride[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2296] Carbon dioxide, land transformation[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2297] Carbon dioxide, fossil[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2298] Ethane, 1,1,1,2-tetrafluoro-, HFC-134a[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2299] Ethane, 1,1,1-trifluoro-, HFC-143a[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2300] Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2301] Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2302] Ethane, 1,1-difluoro-, HFC-152a[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2303] Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2304] Ethane, 1-chloro-1,1-difluoro-, HCFC-142b[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2305] Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2306] Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2307] Ethane, chloropentafluoro-, CFC-115[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2308] Ethane, pentafluoro-, HFC-125[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2309] Methane, bromochlorodifluoro-, Halon 1211[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2310] Methane, bromotrifluoro-, Halon 1301[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2311] Methane, chlorodifluoro-, HCFC-22[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2312] Methane, chlorotrifluoro-, CFC-13[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2313] Methane, dichlorodifluoro-, CFC-12[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2314] Methane, difluoro-, HFC-32[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2315] Carbon-14[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2316] Cesium-134[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2317] Cesium-137[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2318] Cobalt-58[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2319] Cobalt-60[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2320] Hydrogen-3, Tritium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2321] Iodine-129[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2322] Iodine-131[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2323] Iodine-133[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2324] Krypton-85[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2325] Lead-210[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2326] Plutonium-238[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2327] Plutonium-alpha[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2328] Polonium-210[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2329] Radium-226[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2330] Thorium-230[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2331] Uranium-235[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2332] Uranium-238[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2333] Xenon-133[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2334] Xenon-133m[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2335] Antimony-124[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E2336] Antimony-124[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2337] Cesium-134[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E2338] Cesium-134[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2339] Cesium-137[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E2340] Cesium-137[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2341] Cobalt-58[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E2342] Cobalt-58[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2343] Cobalt-60[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E2344] Cobalt-60[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2345] Hydrogen-3, Tritium[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E2346] Hydrogen-3, Tritium[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2347] Iodine-131[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E2348] Iodine-131[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2349] Manganese-54[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E2350] Manganese-54[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2351] Radium-226[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E2352] Radium-226[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2353] Silver-110[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E2354] Silver-110[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2355] Uranium-234[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E2356] Uranium-234[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2357] Uranium-235[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E2358] Uranium-235[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2359] Uranium-238[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E2360] Uranium-238[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2361] 1-Pentanol[air_low population density] environmental [M3] air_low population density [U3] kg +[E2362] 1-Pentanol[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2363] 1-Pentanol[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2364] Dimethyl malonate[air_low population density] environmental [M3] air_low population density [U3] kg +[E2365] Dimethyl malonate[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2366] Dimethyl malonate[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2367] Cyanide[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2368] Acrylonitrile[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2369] Acrylonitrile[water_ground-] environmental [M11] water_ground- [U3] kg +[E2370] Ammonium, ion[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2371] Cyanide[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2372] Cyanide[water_ground-] environmental [M11] water_ground- [U3] kg +[E2373] Cyanide[water_lake] environmental [M22] water_lake [U3] kg +[E2374] Ethylene diamine[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2375] Ethylene diamine[water_ground-] environmental [M11] water_ground- [U3] kg +[E2376] Ethylene diamine[water_lake] environmental [M22] water_lake [U3] kg +[E2377] Ethylene diamine[water_ocean] environmental [M15] water_ocean [U3] kg +[E2378] Ethylene diamine[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2379] Hydrazine[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2380] Hydrazine[water_ground-] environmental [M11] water_ground- [U3] kg +[E2381] Hydrazine[water_lake] environmental [M22] water_lake [U3] kg +[E2382] Hydrazine[water_ocean] environmental [M15] water_ocean [U3] kg +[E2383] Hydrazine[water_river] environmental [M6] water_river [U3] kg +[E2384] Hydrazine[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2385] Nitrate[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2386] Nitrite[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2387] Nitrobenzene[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2388] Nitrobenzene[water_ground-] environmental [M11] water_ground- [U3] kg +[E2389] Nitrobenzene[water_lake] environmental [M22] water_lake [U3] kg +[E2390] Nitrobenzene[water_ocean] environmental [M15] water_ocean [U3] kg +[E2391] Nitrobenzene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2392] Nitrogen[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2393] Nitrogen, organic bound[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2394] Nitrogen, organic bound[water_ground-] environmental [M11] water_ground- [U3] kg +[E2395] Nitrogen, organic bound[water_lake] environmental [M22] water_lake [U3] kg +[E2396] Nitrogen, organic bound[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2397] Phosphate[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2398] Phosphorus[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2399] Acrylic acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E2400] Acrylic acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2401] Acrylic acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2402] Aluminium[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2403] Carbon monoxide, biogenic[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2404] Chlorine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2405] Diethylene glycol[air_low population density] environmental [M3] air_low population density [U3] kg +[E2406] Diethylene glycol[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2407] Diethylene glycol[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2408] Epichlorohydrin[air_high population density] environmental [M5] air_high population density [U3] kg +[E2409] Epichlorohydrin[air_low population density] environmental [M3] air_low population density [U3] kg +[E2410] Epichlorohydrin[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2411] Epichlorohydrin[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2412] Iron[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2413] Manganese[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2414] Monoethanolamine[air_low population density] environmental [M3] air_low population density [U3] kg +[E2415] Monoethanolamine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2416] Monoethanolamine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2417] Ozone[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2418] Silver[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2419] Silver[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2420] Sodium hypochlorite[air_high population density] environmental [M5] air_high population density [U3] kg +[E2421] Sodium hypochlorite[air_low population density] environmental [M3] air_low population density [U3] kg +[E2422] Sodium hypochlorite[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2423] Sodium hypochlorite[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2424] Titanium[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2425] Toluene, 2-chloro[air_low population density] environmental [M3] air_low population density [U3] kg +[E2426] Toluene, 2-chloro[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2427] Toluene, 2-chloro[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2428] Xylene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2429] Benzene[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2430] Benzene[water_ground-] environmental [M11] water_ground- [U3] kg +[E2431] Benzene, chloro-[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2432] Benzene, chloro-[water_ground-] environmental [M11] water_ground- [U3] kg +[E2433] Chlorine[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2434] Chlorine[water_ground-] environmental [M11] water_ground- [U3] kg +[E2435] Chlorine[water_lake] environmental [M22] water_lake [U3] kg +[E2436] Chlorine[water_ocean] environmental [M15] water_ocean [U3] kg +[E2437] Chlorine[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2438] Chloroform[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2439] Chloroform[water_ground-] environmental [M11] water_ground- [U3] kg +[E2440] Cumene[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2441] Cumene[water_ground-] environmental [M11] water_ground- [U3] kg +[E2442] Cumene[water_lake] environmental [M22] water_lake [U3] kg +[E2443] Cumene[water_ocean] environmental [M15] water_ocean [U3] kg +[E2444] Cumene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2445] Ethane, 1,1,1-trichloro-, HCFC-140[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2446] Ethane, 1,1,1-trichloro-, HCFC-140[water_ground-] environmental [M11] water_ground- [U3] kg +[E2447] Ethene[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2448] Ethene[water_ground-] environmental [M11] water_ground- [U3] kg +[E2449] Ethene, chloro-[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2450] Ethene, chloro-[water_ground-] environmental [M11] water_ground- [U3] kg +[E2451] Ethene, tetrachloro-[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2452] Ethene, tetrachloro-[water_ground-] environmental [M11] water_ground- [U3] kg +[E2453] Ethene, trichloro-[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2454] Ethene, trichloro-[water_ground-] environmental [M11] water_ground- [U3] kg +[E2455] Hexane[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2456] Hexane[water_ground-] environmental [M11] water_ground- [U3] kg +[E2457] Hexane[water_lake] environmental [M22] water_lake [U3] kg +[E2458] Hexane[water_ocean] environmental [M15] water_ocean [U3] kg +[E2459] Hexane[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2460] Hydrogen sulfide[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2461] Hydrogen sulfide[water_ground-] environmental [M11] water_ground- [U3] kg +[E2462] Mercury[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2463] m-Xylene[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2464] m-Xylene[water_ground-] environmental [M11] water_ground- [U3] kg +[E2465] o-Dichlorobenzene[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2466] o-Xylene[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2467] o-Xylene[water_ground-] environmental [M11] water_ground- [U3] kg +[E2468] Styrene[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2469] Styrene[water_ground-] environmental [M11] water_ground- [U3] kg +[E2470] Toluene[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2471] Toluene[water_ground-] environmental [M11] water_ground- [U3] kg +[E2472] Toluene, 2-chloro[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2473] Toluene, 2-chloro[water_ground-] environmental [M11] water_ground- [U3] kg +[E2474] Toluene, 2-chloro[water_lake] environmental [M22] water_lake [U3] kg +[E2475] Toluene, 2-chloro[water_ocean] environmental [M15] water_ocean [U3] kg +[E2476] Toluene, 2-chloro[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2477] Xylene[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2478] Xylene[water_ground-] environmental [M11] water_ground- [U3] kg +[E2479] Strontium[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2480] Thorium[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2481] Thorium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2482] Aluminium[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E2483] Aluminium[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E2484] Chlormequat chloride[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2485] Desmedipham[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2486] Fluazinam[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2487] Iron[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E2488] Manganese[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E2489] Manganese[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E2490] Methabenzthiazuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2491] Prosulfocarb[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2492] Pyridate[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2493] Silver[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E2494] Silver[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E2495] Silver[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E2496] Strontium[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E2497] Strontium[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E2498] tau-Fluvalinate[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2499] Terbuthylazin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2500] Titanium[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E2501] Titanium[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E2502] Titanium[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E2503] Triflusulfuron-methyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2504] Fluoride[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E2505] 2-Methyl-1-propanol[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2506] 2-Methyl-1-propanol[water_ground-] environmental [M11] water_ground- [U3] kg +[E2507] 2-Methyl-1-propanol[water_lake] environmental [M22] water_lake [U3] kg +[E2508] 2-Methyl-1-propanol[water_ocean] environmental [M15] water_ocean [U3] kg +[E2509] 2-Methyl-1-propanol[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2510] 2-Propanol[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2511] 2-Propanol[water_ground-] environmental [M11] water_ground- [U3] kg +[E2512] 2-Propanol[water_lake] environmental [M22] water_lake [U3] kg +[E2513] 2-Propanol[water_ocean] environmental [M15] water_ocean [U3] kg +[E2514] 2-Propanol[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2515] Acetaldehyde[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2516] Acetaldehyde[water_ground-] environmental [M11] water_ground- [U3] kg +[E2517] Acetaldehyde[water_lake] environmental [M22] water_lake [U3] kg +[E2518] Acetaldehyde[water_ocean] environmental [M15] water_ocean [U3] kg +[E2519] Acetaldehyde[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2520] Acetic acid[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2521] Acetic acid[water_ground-] environmental [M11] water_ground- [U3] kg +[E2522] Acetic acid[water_lake] environmental [M22] water_lake [U3] kg +[E2523] Acetic acid[water_ocean] environmental [M15] water_ocean [U3] kg +[E2524] Acetic acid[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2525] Acetone[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2526] Acetone[water_ground-] environmental [M11] water_ground- [U3] kg +[E2527] Acetone[water_lake] environmental [M22] water_lake [U3] kg +[E2528] Acetone[water_ocean] environmental [M15] water_ocean [U3] kg +[E2529] Aluminium[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2530] Aluminium[water_lake] environmental [M22] water_lake [U3] kg +[E2531] Antimony[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2532] Arsenic, ion[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2533] Beryllium[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2534] Butanol[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2535] Butanol[water_ground-] environmental [M11] water_ground- [U3] kg +[E2536] Butanol[water_lake] environmental [M22] water_lake [U3] kg +[E2537] Butanol[water_ocean] environmental [M15] water_ocean [U3] kg +[E2538] Butanol[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2539] Cadmium, ion[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2540] Chromium VI[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2541] Cobalt[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2542] Copper, ion[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2543] Dichromate[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2544] Diethylene glycol[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2545] Diethylene glycol[water_ground-] environmental [M11] water_ground- [U3] kg +[E2546] Diethylene glycol[water_lake] environmental [M22] water_lake [U3] kg +[E2547] Diethylene glycol[water_ocean] environmental [M15] water_ocean [U3] kg +[E2548] Diethylene glycol[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2549] Ethane, 1,2-dichloro-[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2550] Ethane, 1,2-dichloro-[water_ground-] environmental [M11] water_ground- [U3] kg +[E2551] Ethanol[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2552] Ethanol[water_ground-] environmental [M11] water_ground- [U3] kg +[E2553] Ethanol[water_lake] environmental [M22] water_lake [U3] kg +[E2554] Ethanol[water_ocean] environmental [M15] water_ocean [U3] kg +[E2555] Ethanol[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2556] Ethyl acetate[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2557] Ethyl acetate[water_ground-] environmental [M11] water_ground- [U3] kg +[E2558] Ethyl acetate[water_lake] environmental [M22] water_lake [U3] kg +[E2559] Ethyl acetate[water_ocean] environmental [M15] water_ocean [U3] kg +[E2560] Ethyl acetate[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2561] Formaldehyde[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2562] Formaldehyde[water_ground-] environmental [M11] water_ground- [U3] kg +[E2563] Hypochlorite[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2564] Hypochlorite[water_ground-] environmental [M11] water_ground- [U3] kg +[E2565] Hypochlorite[water_lake] environmental [M22] water_lake [U3] kg +[E2566] Hypochlorite[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2567] Iron, ion[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2568] Iron, ion[water_lake] environmental [M22] water_lake [U3] kg +[E2569] Lead[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2570] Manganese[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2571] Manganese[water_lake] environmental [M22] water_lake [U3] kg +[E2572] Methanol[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2573] Methanol[water_ground-] environmental [M11] water_ground- [U3] kg +[E2574] Methanol[water_lake] environmental [M22] water_lake [U3] kg +[E2575] Molybdenum[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2576] Nickel, ion[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2577] Oils, unspecified[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2578] Oils, unspecified[water_ground-] environmental [M11] water_ground- [U3] kg +[E2579] Oils, unspecified[water_lake] environmental [M22] water_lake [U3] kg +[E2580] Phenol[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2581] Phenol[water_ground-] environmental [M11] water_ground- [U3] kg +[E2582] Propylene oxide[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2583] Propylene oxide[water_ground-] environmental [M11] water_ground- [U3] kg +[E2584] Selenium[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2585] Silver, ion[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2586] Silver, ion[water_lake] environmental [M22] water_lake [U3] kg +[E2587] Strontium[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2588] Strontium[water_lake] environmental [M22] water_lake [U3] kg +[E2589] Thallium[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2590] Titanium, ion[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2591] Titanium, ion[water_lake] environmental [M22] water_lake [U3] kg +[E2592] Vanadium, ion[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2593] Zinc, ion[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2594] 4-Methyl-2-pentanone[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2595] 4-Methyl-2-pentanone[water_ground-] environmental [M11] water_ground- [U3] kg +[E2596] 4-Methyl-2-pentanone[water_lake] environmental [M22] water_lake [U3] kg +[E2597] 4-Methyl-2-pentanone[water_ocean] environmental [M15] water_ocean [U3] kg +[E2598] Chromium, ion[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2599] Fluoride[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2600] Fluoride[water_lake] environmental [M22] water_lake [U3] kg +[E2601] 1,4-Butanediol[air_low population density] environmental [M3] air_low population density [U3] kg +[E2602] 1,4-Butanediol[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2603] 1,4-Butanediol[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2604] 2-Aminopropanol[air_low population density] environmental [M3] air_low population density [U3] kg +[E2605] 2-Aminopropanol[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2606] 2-Aminopropanol[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2607] 2-Nitrobenzoic acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E2608] 2-Nitrobenzoic acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2609] 2-Nitrobenzoic acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2610] Acetic acid, trifluoro-[air_high population density] environmental [M5] air_high population density [U3] kg +[E2611] Acetic acid, trifluoro-[air_low population density] environmental [M3] air_low population density [U3] kg +[E2612] Acetic acid, trifluoro-[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2613] Acetic acid, trifluoro-[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2614] Aldehydes, unspecified[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2615] Ammonium carbonate[air_low population density] environmental [M3] air_low population density [U3] kg +[E2616] Ammonium carbonate[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2617] Ammonium carbonate[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2618] Anthranilic acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E2619] Anthranilic acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2620] Anthranilic acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2621] Benzal chloride[air_low population density] environmental [M3] air_low population density [U3] kg +[E2622] Benzal chloride[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2623] Butene[air_low population density] environmental [M3] air_low population density [U3] kg +[E2624] Butene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2625] Butene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2626] Chloroacetic acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E2627] Chloroacetic acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2628] Chloroacetic acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2629] Chlorosulfonic acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E2630] Chlorosulfonic acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2631] Chlorosulfonic acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2632] Cyanoacetic acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E2633] Cyanoacetic acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2634] Cyanoacetic acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2635] Ethane, hexafluoro-, HFC-116[air_low population density] environmental [M3] air_low population density [U3] kg +[E2636] Ethane, hexafluoro-, HFC-116[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2637] Ethyl cellulose[air_low population density] environmental [M3] air_low population density [U3] kg +[E2638] Ethyl cellulose[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2639] Ethyl cellulose[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2640] Ethylene diamine[air_low population density] environmental [M3] air_low population density [U3] kg +[E2641] Ethylene diamine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2642] Ethylene diamine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2643] Hydrocarbons, aliphatic, alkanes, cyclic[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2644] Hydrocarbons, aliphatic, alkanes, cyclic[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2645] Hydrocarbons, aliphatic, alkanes, unspecified[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2646] Hydrocarbons, aliphatic, unsaturated[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2647] Hydrocarbons, aromatic[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2648] Hydrocarbons, chlorinated[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2649] Isocyanic acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E2650] Isocyanic acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2651] Isocyanic acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2652] Lactic acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E2653] Lactic acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2654] Lactic acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2655] Methane, chloro-fluoro-, HCFC-31[air_high population density] environmental [M5] air_high population density [U3] kg +[E2656] Methane, chloro-fluoro-, HCFC-31[air_low population density] environmental [M3] air_low population density [U3] kg +[E2657] Methane, chloro-fluoro-, HCFC-31[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2658] Methane, chloro-fluoro-, HCFC-31[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2659] Methane, dichlorofluoro-, HCFC-21[air_low population density] environmental [M3] air_low population density [U3] kg +[E2660] Methane, dichlorofluoro-, HCFC-21[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2661] Methane, dichlorofluoro-, HCFC-21[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2662] Methanesulfonic acid[air_low population density] environmental [M3] air_low population density [U3] kg +[E2663] Methanesulfonic acid[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2664] Methanesulfonic acid[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2665] Methyl lactate[air_low population density] environmental [M3] air_low population density [U3] kg +[E2666] Methyl lactate[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2667] Methyl lactate[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2668] Paraffins[air_low population density] environmental [M3] air_low population density [U3] kg +[E2669] Paraffins[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2670] Paraffins[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2671] Polychlorinated biphenyls[air_low population density] environmental [M3] air_low population density [U3] kg +[E2672] Polychlorinated biphenyls[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2673] Sodium formate[air_low population density] environmental [M3] air_low population density [U3] kg +[E2674] Sodium formate[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2675] Sodium formate[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2676] Terpenes[air_high population density] environmental [M5] air_high population density [U3] kg +[E2677] Terpenes[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2678] Terpenes[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2679] Cyanide[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2680] Acrylonitrile[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2681] Cyanide[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2682] Cyanide[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2683] Ethylene diamine[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2684] Ethylene diamine[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2685] Hydrazine[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2686] Hydrazine[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2687] Nitrobenzene[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2688] Nitrobenzene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2689] Nitrogen, organic bound[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2690] Acrylic acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2691] Carbon monoxide, biogenic[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2692] Chromium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2693] Diethylene glycol[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2694] Epichlorohydrin[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2695] Monoethanolamine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2696] Ozone[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2697] Sodium hypochlorite[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2698] Toluene, 2-chloro[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2699] Xylene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2700] Chlorine[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2701] Cumene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2702] Hexane[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2703] Toluene, 2-chloro[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2704] Thorium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2705] Benzene[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2706] Benzene, chloro-[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2707] Chloroform[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2708] Cumene[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2709] Ethene[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2710] Ethene, tetrachloro-[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2711] Hexane[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2712] m-Xylene[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2713] o-Xylene[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2714] Toluene[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2715] Toluene, 2-chloro[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2716] Xylene[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2717] Chlorine[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2718] Ethane, 1,1,1-trichloro-, HCFC-140[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2719] Ethene, chloro-[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2720] Ethene, trichloro-[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2721] 2-Methyl-1-propanol[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2722] 2-Propanol[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2723] Acetaldehyde[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2724] Acetic acid[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2725] Acetone[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2726] Aluminium[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2727] Butanol[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2728] Diethylene glycol[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2729] Ethanol[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2730] Ethyl acetate[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2731] Hypochlorite[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2732] Iron, ion[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2733] Manganese[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2734] Methanol[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2735] Oils, unspecified[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2736] Silver, ion[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2737] Strontium[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2738] Titanium, ion[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2739] 2-Methyl-1-propanol[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2740] 2-Propanol[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2741] Acetaldehyde[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2742] Acetic acid[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2743] Acetone[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2744] Butanol[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2745] Diethylene glycol[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2746] Ethane, 1,2-dichloro-[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2747] Ethanol[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2748] Ethyl acetate[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2749] Formaldehyde[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2750] Hypochlorite[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2751] Methanol[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2752] Oils, unspecified[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2753] Phenol[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2754] Propylene oxide[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2755] 4-Methyl-2-pentanone[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2756] 4-Methyl-2-pentanone[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2757] Fluoride[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2758] 1,4-Butanediol[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2759] 1-Pentanol[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2760] 2-Aminopropanol[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2761] 2-Nitrobenzoic acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2762] Acetic acid, trifluoro-[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2763] Aldehydes, unspecified[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2764] Ammonium carbonate[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2765] Anthranilic acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2766] Benzal chloride[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2767] Butene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2768] Chloroacetic acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2769] Chlorosulfonic acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2770] Cyanoacetic acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2771] Dimethyl malonate[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2772] Ethane, hexafluoro-, HFC-116[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2773] Ethyl cellulose[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2774] Ethylene diamine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2775] Hydrocarbons, aliphatic, alkanes, cyclic[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2776] Hydrocarbons, aliphatic, alkanes, unspecified[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2777] Hydrocarbons, aliphatic, unsaturated[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2778] Hydrocarbons, aromatic[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2779] Hydrocarbons, chlorinated[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2780] Isocyanic acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2781] Lactic acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2782] Methane, chloro-fluoro-, HCFC-31[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2783] Methane, dichlorofluoro-, HCFC-21[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2784] Methanesulfonic acid[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2785] Methyl lactate[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2786] NMVOC, non-methane volatile organic compounds, unspecified origin[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2787] Paraffins[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2788] Polychlorinated biphenyls[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2789] Sodium formate[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2790] Terpenes[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2791] Propanal[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2792] Propanal[water_ground-] environmental [M11] water_ground- [U3] kg +[E2793] Propanal[water_lake] environmental [M22] water_lake [U3] kg +[E2794] Propanal[water_ocean] environmental [M15] water_ocean [U3] kg +[E2795] Propanal[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2796] Propanal[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E2797] Propanal[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2798] BOD5, Biological Oxygen Demand[water_lake] environmental [M22] water_lake [U3] kg +[E2799] BOD5, Biological Oxygen Demand[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2800] Aniline[air_low population density] environmental [M3] air_low population density [U3] kg +[E2801] Aniline[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2802] Aniline[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2803] Aniline[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2804] Dipropylamine[air_low population density] environmental [M3] air_low population density [U3] kg +[E2805] Dipropylamine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2806] Dipropylamine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2807] Dipropylamine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2808] Formamide[air_low population density] environmental [M3] air_low population density [U3] kg +[E2809] Formamide[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2810] Formamide[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2811] Formamide[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2812] Isopropylamine[air_low population density] environmental [M3] air_low population density [U3] kg +[E2813] Isopropylamine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2814] Isopropylamine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2815] Isopropylamine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2816] o-Nitrotoluene[air_low population density] environmental [M3] air_low population density [U3] kg +[E2817] o-Nitrotoluene[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2818] o-Nitrotoluene[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2819] o-Nitrotoluene[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2820] Propylamine[air_low population density] environmental [M3] air_low population density [U3] kg +[E2821] Propylamine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2822] Propylamine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2823] Propylamine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2824] t-Butylamine[air_low population density] environmental [M3] air_low population density [U3] kg +[E2825] t-Butylamine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2826] t-Butylamine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2827] t-Butylamine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2828] Uranium[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2829] Uranium[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2830] Uranium[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2831] Uranium alpha[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2832] Uranium alpha[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2833] Uranium alpha[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2834] Uranium alpha[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2835] Uranium-234[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2836] Uranium-234[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2837] Uranium-234[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2838] Uranium-234[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2839] Acetonitrile[air_high population density] environmental [M5] air_high population density [U3] kg +[E2840] Acetonitrile[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2841] Acetonitrile[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2842] Antimony-124[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2843] Antimony-124[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2844] Antimony-124[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2845] Antimony-125[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2846] Antimony-125[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2847] Antimony-125[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2848] Barium-140[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2849] Barium-140[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2850] Barium-140[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2851] Hydrogen peroxide[air_low population density] environmental [M3] air_low population density [U3] kg +[E2852] Hydrogen peroxide[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2853] Hydrogen peroxide[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2854] Zinc-65[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2855] Zinc-65[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2856] Zinc-65[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2857] Ametryn[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2858] Imazalil[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2859] Tridemorph[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2860] Acetonitrile[water_lake] environmental [M22] water_lake [U3] kg +[E2861] Acetonitrile[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2862] Acetonitrile[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2863] Acrylate, ion[water_lake] environmental [M22] water_lake [U3] kg +[E2864] Acrylate, ion[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2865] Acrylate, ion[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2866] Aniline[water_lake] environmental [M22] water_lake [U3] kg +[E2867] Aniline[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2868] Aniline[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2869] Antimony-122[water_lake] environmental [M22] water_lake [U15] kBq +[E2870] Antimony-122[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2871] Antimony-122[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2872] Antimony-125[water_lake] environmental [M22] water_lake [U15] kBq +[E2873] Antimony-125[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2874] Antimony-125[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2875] Barium-140[water_lake] environmental [M22] water_lake [U15] kBq +[E2876] Barium-140[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2877] Barium-140[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2878] Butyl acetate[water_lake] environmental [M22] water_lake [U3] kg +[E2879] Butyl acetate[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2880] Butyl acetate[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2881] Dimethylamine[water_lake] environmental [M22] water_lake [U3] kg +[E2882] Dimethylamine[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2883] Dimethylamine[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2884] Ethane, hexachloro-[water_lake] environmental [M22] water_lake [U3] kg +[E2885] Ethane, hexachloro-[water_river] environmental [M6] water_river [U3] kg +[E2886] Ethane, hexachloro-[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2887] Ethane, hexachloro-[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2888] Ethylene glycol monoethyl ether[water_lake] environmental [M22] water_lake [U3] kg +[E2889] Ethylene glycol monoethyl ether[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2890] Ethylene glycol monoethyl ether[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2891] Hydrocarbons, aromatic[water_lake] environmental [M22] water_lake [U3] kg +[E2892] Hydrocarbons, aromatic[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2893] Hydrocarbons, aromatic[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2894] Hydrogen peroxide[water_lake] environmental [M22] water_lake [U3] kg +[E2895] Hydrogen peroxide[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2896] Hydrogen peroxide[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2897] Monochloroethane[water_lake] environmental [M22] water_lake [U3] kg +[E2898] Monochloroethane[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2899] Monochloroethane[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2900] t-Butyl methyl ether[water_lake] environmental [M22] water_lake [U3] kg +[E2901] t-Butyl methyl ether[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2902] t-Butyl methyl ether[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2903] Cobalt-57[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2904] Cobalt-57[air_low population density] environmental [M3] air_low population density [U15] kBq +[E2905] Cobalt-57[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E2906] Cobalt-57[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2907] Dichlobenil[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2908] Metalaxyl-M[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2909] Methiocarb[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2910] Monolinuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2911] Starane[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2912] Butene[water_lake] environmental [M22] water_lake [U3] kg +[E2913] Butene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2914] Butene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2915] Cobalt-57[water_lake] environmental [M22] water_lake [U15] kBq +[E2916] Cobalt-57[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E2917] Cobalt-57[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2918] Glutaraldehyde[water_lake] environmental [M22] water_lake [U3] kg +[E2919] Glutaraldehyde[water_river] environmental [M6] water_river [U3] kg +[E2920] Glutaraldehyde[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2921] Glutaraldehyde[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2922] Methane, dichlorofluoro-, HCFC-21[water_lake] environmental [M22] water_lake [U3] kg +[E2923] Methane, dichlorofluoro-, HCFC-21[water_river] environmental [M6] water_river [U3] kg +[E2924] Methane, dichlorofluoro-, HCFC-21[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2925] Methane, dichlorofluoro-, HCFC-21[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2926] Propene[water_lake] environmental [M22] water_lake [U3] kg +[E2927] Propene[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2928] Propene[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2929] Triethylene glycol[water_lake] environmental [M22] water_lake [U3] kg +[E2930] Triethylene glycol[water_river] environmental [M6] water_river [U3] kg +[E2931] Triethylene glycol[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E2932] Triethylene glycol[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2933] Nitrogen fluoride[air_low population density] environmental [M3] air_low population density [U3] kg +[E2934] Nitrogen fluoride[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E2935] Nitrogen fluoride[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2936] Nitrogen fluoride[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E2937] Methane, dichloro-, HCC-30[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2938] Methane, dichloro-, HCC-30[water_ground-] environmental [M11] water_ground- [U3] kg +[E2939] Methane, tetrachloro-, R-10[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2940] Methane, tetrachloro-, R-10[water_ground-] environmental [M11] water_ground- [U3] kg +[E2941] Actinides, radioactive, unspecified[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2942] Actinides, radioactive, unspecified[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2943] Actinides, radioactive, unspecified[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2944] Noble gases, radioactive, unspecified[air_high population density] environmental [M5] air_high population density [U15] kBq +[E2945] Noble gases, radioactive, unspecified[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E2946] Noble gases, radioactive, unspecified[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E2947] Antimony-124[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2948] Cesium-134[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2949] Cesium-137[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2950] Cobalt-58[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2951] Cobalt-60[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2952] Hydrogen-3, Tritium[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2953] Iodine-129[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2954] Iodine-129[water_ground-] environmental [M11] water_ground- [U15] kBq +[E2955] Iodine-129[water_lake] environmental [M22] water_lake [U15] kBq +[E2956] Iodine-129[water_river] environmental [M6] water_river [U15] kBq +[E2957] Iodine-129[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2958] Iodine-131[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2959] Manganese-54[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2960] Radium-226[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2961] Silver-110[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2962] Uranium alpha[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2963] Uranium alpha[water_ground-] environmental [M11] water_ground- [U15] kBq +[E2964] Uranium alpha[water_lake] environmental [M22] water_lake [U15] kBq +[E2965] Uranium alpha[water_ocean] environmental [M15] water_ocean [U15] kBq +[E2966] Uranium alpha[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E2967] Uranium-234[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2968] Uranium-235[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2969] Uranium-238[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E2970] Acetonitrile[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E2971] Hexaconazole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2972] Thiophanat-methyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E2973] Acenaphthene[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2974] Acetonitrile[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2975] Acetonitrile[water_ground-] environmental [M11] water_ground- [U3] kg +[E2976] Acetonitrile[water_ocean] environmental [M15] water_ocean [U3] kg +[E2977] Acrylate, ion[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2978] Acrylate, ion[water_ground-] environmental [M11] water_ground- [U3] kg +[E2979] Acrylate, ion[water_ocean] environmental [M15] water_ocean [U3] kg +[E2980] Aniline[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2981] Aniline[water_ground-] environmental [M11] water_ground- [U3] kg +[E2982] Aniline[water_ocean] environmental [M15] water_ocean [U3] kg +[E2983] Barium[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2984] Benzene, ethyl-[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2985] Benzene, ethyl-[water_ground-] environmental [M11] water_ground- [U3] kg +[E2986] Bromate[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2987] Bromate[water_ground-] environmental [M11] water_ground- [U3] kg +[E2988] Bromate[water_lake] environmental [M22] water_lake [U3] kg +[E2989] Bromate[water_ocean] environmental [M15] water_ocean [U3] kg +[E2990] Bromate[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2991] Carboxylic acids, unspecified[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2992] Carboxylic acids, unspecified[water_ground-] environmental [M11] water_ground- [U3] kg +[E2993] Carboxylic acids, unspecified[water_lake] environmental [M22] water_lake [U3] kg +[E2994] Carboxylic acids, unspecified[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E2995] Cyclohexane[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E2996] Cyclohexane[water_ground-] environmental [M11] water_ground- [U3] kg +[E2997] Cyclohexane[water_lake] environmental [M22] water_lake [U3] kg +[E2998] Cyclohexane[water_ocean] environmental [M15] water_ocean [U3] kg +[E2999] Cyclohexane[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3000] Ethane, hexachloro-[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3001] Ethane, hexachloro-[water_ground-] environmental [M11] water_ground- [U3] kg +[E3002] Ethane, hexachloro-[water_ocean] environmental [M15] water_ocean [U3] kg +[E3003] Ethylene oxide[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3004] Ethylene oxide[water_ground-] environmental [M11] water_ground- [U3] kg +[E3005] Hydrocarbons, aromatic[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3006] Hydrocarbons, aromatic[water_ground-] environmental [M11] water_ground- [U3] kg +[E3007] Monochloroethane[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3008] Monochloroethane[water_ground-] environmental [M11] water_ground- [U3] kg +[E3009] Monochloroethane[water_ocean] environmental [M15] water_ocean [U3] kg +[E3010] PAH, polycyclic aromatic hydrocarbons[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3011] PAH, polycyclic aromatic hydrocarbons[water_ground-] environmental [M11] water_ground- [U3] kg +[E3012] Phthalate, butyl-benzyl-[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3013] Phthalate, butyl-benzyl-[water_ground-] environmental [M11] water_ground- [U3] kg +[E3014] Phthalate, dibutyl-[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3015] Phthalate, dibutyl-[water_ground-] environmental [M11] water_ground- [U3] kg +[E3016] Phthalate, dioctyl-[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3017] Phthalate, dioctyl-[water_ground-] environmental [M11] water_ground- [U3] kg +[E3018] t-Butyl methyl ether[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3019] t-Butyl methyl ether[water_ground-] environmental [M11] water_ground- [U3] kg +[E3020] Tin, ion[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3021] Tributyltin compounds[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3022] Transformation, from forest, intensive[resource_land] environmental [M2] resource_land [U6] m2 +[E3023] Transformation, to forest, extensive[resource_land] environmental [M2] resource_land [U6] m2 +[E3024] Bromine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E3025] Iodine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E3026] Bromine[soil_forestry] environmental [M20] soil_forestry [U3] kg +[E3027] Bromine[soil_industrial] environmental [M16] soil_industrial [U3] kg +[E3028] Bromine[soil_unspecified] environmental [M19] soil_unspecified [U3] kg +[E3029] Fluorochloridone[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E3030] Fuberidazole[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E3031] Oxadixyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E3032] Quinmerac[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E3033] Bromine[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3034] Bromine[water_lake] environmental [M22] water_lake [U3] kg +[E3035] Chloroacetic acid[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3036] Chloroacetic acid[water_ground-] environmental [M11] water_ground- [U3] kg +[E3037] Chloroacetic acid[water_lake] environmental [M22] water_lake [U3] kg +[E3038] Chloroacetic acid[water_ocean] environmental [M15] water_ocean [U3] kg +[E3039] Chloroacetic acid[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3040] Dimethylamine[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3041] Dimethylamine[water_ground-] environmental [M11] water_ground- [U3] kg +[E3042] Dimethylamine[water_ocean] environmental [M15] water_ocean [U3] kg +[E3043] Formic acid[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3044] Formic acid[water_ground-] environmental [M11] water_ground- [U3] kg +[E3045] Formic acid[water_lake] environmental [M22] water_lake [U3] kg +[E3046] Formic acid[water_ocean] environmental [M15] water_ocean [U3] kg +[E3047] Formic acid[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3048] Methyl acrylate[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3049] Methyl acrylate[water_ground-] environmental [M11] water_ground- [U3] kg +[E3050] Methyl acrylate[water_lake] environmental [M22] water_lake [U3] kg +[E3051] Methyl acrylate[water_ocean] environmental [M15] water_ocean [U3] kg +[E3052] Methyl acrylate[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3053] Phthalate, dimethyl-[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3054] Phthalate, dimethyl-[water_ground-] environmental [M11] water_ground- [U3] kg +[E3055] Sodium formate[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3056] Sodium formate[water_ground-] environmental [M11] water_ground- [U3] kg +[E3057] Sodium formate[water_lake] environmental [M22] water_lake [U3] kg +[E3058] Sodium formate[water_ocean] environmental [M15] water_ocean [U3] kg +[E3059] Sodium formate[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3060] Triethylene glycol[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3061] Triethylene glycol[water_ground-] environmental [M11] water_ground- [U3] kg +[E3062] Methane, dichloro-, HCC-30[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3063] Methane, tetrachloro-, R-10[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3064] Acetonitrile[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3065] Acrylate, ion[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3066] Aniline[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3067] Benzene, ethyl-[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3068] Bromate[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3069] Bromate[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3070] Carboxylic acids, unspecified[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3071] Carboxylic acids, unspecified[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3072] Cyclohexane[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3073] Cyclohexane[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3074] Ethane, hexachloro-[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3075] Ethylene oxide[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3076] Hydrocarbons, aromatic[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3077] Monochloroethane[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3078] PAH, polycyclic aromatic hydrocarbons[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3079] Phthalate, butyl-benzyl-[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3080] Phthalate, dibutyl-[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3081] Phthalate, dioctyl-[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3082] Styrene[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3083] t-Butyl methyl ether[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3084] Actinides, radioactive, unspecified[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3085] Noble gases, radioactive, unspecified[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3086] Iodine-129[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3087] Iodine-129[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3088] Uranium alpha[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3089] Uranium alpha[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3090] Bromine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E3091] Iodine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E3092] Bromine[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3093] Chloroacetic acid[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3094] Chloroacetic acid[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3095] Dimethylamine[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3096] Formic acid[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3097] Formic acid[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3098] Methyl acrylate[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3099] Methyl acrylate[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3100] Phthalate, dimethyl-[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3101] Sodium formate[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3102] Sodium formate[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3103] Triethylene glycol[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3104] Methyl acetate[water_lake] environmental [M22] water_lake [U3] kg +[E3105] Methyl acetate[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3106] Methyl acetate[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3107] Chloramine[air_low population density] environmental [M3] air_low population density [U3] kg +[E3108] Chloramine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E3109] Chloramine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E3110] Chloramine[water_ground-] environmental [M11] water_ground- [U3] kg +[E3111] Chloramine[water_lake] environmental [M22] water_lake [U3] kg +[E3112] Chloramine[water_ocean] environmental [M15] water_ocean [U3] kg +[E3113] Chloramine[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3114] Ethylene glycol monoethyl ether[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3115] Ethylene glycol monoethyl ether[water_ground-] environmental [M11] water_ground- [U3] kg +[E3116] Ethylene glycol monoethyl ether[water_ocean] environmental [M15] water_ocean [U3] kg +[E3117] Benazolin[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E3118] 1-Pentanol[water_ground-] environmental [M11] water_ground- [U3] kg +[E3119] 1-Pentanol[water_lake] environmental [M22] water_lake [U3] kg +[E3120] 1-Pentanol[water_ocean] environmental [M15] water_ocean [U3] kg +[E3121] 1-Pentanol[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3122] Acetyl chloride[water_ground-] environmental [M11] water_ground- [U3] kg +[E3123] Acetyl chloride[water_lake] environmental [M22] water_lake [U3] kg +[E3124] Acetyl chloride[water_ocean] environmental [M15] water_ocean [U3] kg +[E3125] Acetyl chloride[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3126] Chlorosulfonic acid[water_ground-] environmental [M11] water_ground- [U3] kg +[E3127] Chlorosulfonic acid[water_lake] environmental [M22] water_lake [U3] kg +[E3128] Chlorosulfonic acid[water_ocean] environmental [M15] water_ocean [U3] kg +[E3129] Chlorosulfonic acid[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3130] Diethylamine[water_ground-] environmental [M11] water_ground- [U3] kg +[E3131] Diethylamine[water_lake] environmental [M22] water_lake [U3] kg +[E3132] Diethylamine[water_ocean] environmental [M15] water_ocean [U3] kg +[E3133] Diethylamine[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3134] Dipropylamine[water_ground-] environmental [M11] water_ground- [U3] kg +[E3135] Dipropylamine[water_lake] environmental [M22] water_lake [U3] kg +[E3136] Dipropylamine[water_ocean] environmental [M15] water_ocean [U3] kg +[E3137] Dipropylamine[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3138] Ethylamine[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3139] Ethylamine[water_ground-] environmental [M11] water_ground- [U3] kg +[E3140] Ethylamine[water_lake] environmental [M22] water_lake [U3] kg +[E3141] Ethylamine[water_ocean] environmental [M15] water_ocean [U3] kg +[E3142] Ethylamine[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3143] Formamide[water_ground-] environmental [M11] water_ground- [U3] kg +[E3144] Formamide[water_lake] environmental [M22] water_lake [U3] kg +[E3145] Formamide[water_ocean] environmental [M15] water_ocean [U3] kg +[E3146] Formamide[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3147] Isopropylamine[water_ground-] environmental [M11] water_ground- [U3] kg +[E3148] Isopropylamine[water_lake] environmental [M22] water_lake [U3] kg +[E3149] Isopropylamine[water_ocean] environmental [M15] water_ocean [U3] kg +[E3150] Isopropylamine[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3151] Propanol[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3152] Propanol[water_ground-] environmental [M11] water_ground- [U3] kg +[E3153] Propanol[water_lake] environmental [M22] water_lake [U3] kg +[E3154] Propanol[water_ocean] environmental [M15] water_ocean [U3] kg +[E3155] Propanol[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3156] Propionic acid[water_ground-] environmental [M11] water_ground- [U3] kg +[E3157] Propionic acid[water_lake] environmental [M22] water_lake [U3] kg +[E3158] Propionic acid[water_ocean] environmental [M15] water_ocean [U3] kg +[E3159] Propionic acid[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3160] Propylamine[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3161] Propylamine[water_ground-] environmental [M11] water_ground- [U3] kg +[E3162] Propylamine[water_lake] environmental [M22] water_lake [U3] kg +[E3163] Propylamine[water_ocean] environmental [M15] water_ocean [U3] kg +[E3164] Propylamine[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3165] t-Butylamine[water_ground-] environmental [M11] water_ground- [U3] kg +[E3166] t-Butylamine[water_lake] environmental [M22] water_lake [U3] kg +[E3167] t-Butylamine[water_ocean] environmental [M15] water_ocean [U3] kg +[E3168] t-Butylamine[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3169] Trimethylamine[water_ground-] environmental [M11] water_ground- [U3] kg +[E3170] Trimethylamine[water_lake] environmental [M22] water_lake [U3] kg +[E3171] Trimethylamine[water_ocean] environmental [M15] water_ocean [U3] kg +[E3172] Trimethylamine[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3173] Urea[water_ground-] environmental [M11] water_ground- [U3] kg +[E3174] Urea[water_lake] environmental [M22] water_lake [U3] kg +[E3175] Urea[water_ocean] environmental [M15] water_ocean [U3] kg +[E3176] Urea[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3177] Chloramine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E3178] Chloramine[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3179] Chloramine[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3180] Ethylene glycol monoethyl ether[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3181] 1-Pentanol[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3182] 1-Pentanol[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3183] Acetyl chloride[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3184] Acetyl chloride[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3185] Chlorosulfonic acid[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3186] Chlorosulfonic acid[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3187] Diethylamine[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3188] Diethylamine[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3189] Dipropylamine[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3190] Dipropylamine[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3191] Ethylamine[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3192] Ethylamine[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3193] Formamide[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3194] Formamide[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3195] Isopropylamine[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3196] Isopropylamine[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3197] Propanol[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3198] Propanol[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3199] Propionic acid[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3200] Propionic acid[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3201] Propylamine[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3202] Propylamine[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3203] t-Butylamine[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3204] t-Butylamine[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3205] Trimethylamine[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3206] Trimethylamine[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3207] Urea[water_ground-, long-term] environmental [M21] water_ground-, long-term [U3] kg +[E3208] Urea[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3209] Sulfate[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E3210] Arsine[air_low population density] environmental [M3] air_low population density [U3] kg +[E3211] Arsine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E3212] Arsine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E3213] Transformation, from arable, non-irrigated, diverse-intensive[resource_land] environmental [M2] resource_land [U6] m2 +[E3214] Transformation, from arable, non-irrigated, monotone-intensive[resource_land] environmental [M2] resource_land [U6] m2 +[E3215] Transformation, from dump site[resource_land] environmental [M2] resource_land [U6] m2 +[E3216] Transformation, from dump site, benthos[resource_land] environmental [M2] resource_land [U6] m2 +[E3217] Transformation, from permanent crop[resource_land] environmental [M2] resource_land [U6] m2 +[E3218] Transformation, from permanent crop, fruit[resource_land] environmental [M2] resource_land [U6] m2 +[E3219] Transformation, from permanent crop, fruit, extensive[resource_land] environmental [M2] resource_land [U6] m2 +[E3220] Transformation, from permanent crop, fruit, intensive[resource_land] environmental [M2] resource_land [U6] m2 +[E3221] Transformation, from permanent crop, vine[resource_land] environmental [M2] resource_land [U6] m2 +[E3222] Transformation, from permanent crop, vine, extensive[resource_land] environmental [M2] resource_land [U6] m2 +[E3223] Transformation, from permanent crop, vine, intensive[resource_land] environmental [M2] resource_land [U6] m2 +[E3224] Transformation, from traffic area, rail embankment[resource_land] environmental [M2] resource_land [U6] m2 +[E3225] Transformation, from traffic area, rail network[resource_land] environmental [M2] resource_land [U6] m2 +[E3226] Transformation, from traffic area, road embankment[resource_land] environmental [M2] resource_land [U6] m2 +[E3227] Transformation, from traffic area, road network[resource_land] environmental [M2] resource_land [U6] m2 +[E3228] Transformation, from urban, continuously built[resource_land] environmental [M2] resource_land [U6] m2 +[E3229] Transformation, from urban, discontinuously built[resource_land] environmental [M2] resource_land [U6] m2 +[E3230] Transformation, from water bodies, artificial[resource_land] environmental [M2] resource_land [U6] m2 +[E3231] Transformation, from water courses, artificial[resource_land] environmental [M2] resource_land [U6] m2 +[E3232] Transformation, to arable, non-irrigated, diverse-intensive[resource_land] environmental [M2] resource_land [U6] m2 +[E3233] Transformation, to arable, non-irrigated, monotone-intensive[resource_land] environmental [M2] resource_land [U6] m2 +[E3234] Transformation, to permanent crop[resource_land] environmental [M2] resource_land [U6] m2 +[E3235] Transformation, to permanent crop, fruit[resource_land] environmental [M2] resource_land [U6] m2 +[E3236] Transformation, to permanent crop, fruit, extensive[resource_land] environmental [M2] resource_land [U6] m2 +[E3237] Transformation, to permanent crop, vine[resource_land] environmental [M2] resource_land [U6] m2 +[E3238] Transformation, to permanent crop, vine, extensive[resource_land] environmental [M2] resource_land [U6] m2 +[E3239] Transformation, to permanent crop, vine, intensive[resource_land] environmental [M2] resource_land [U6] m2 +[E3240] Transformation, to urban, continuously built[resource_land] environmental [M2] resource_land [U6] m2 +[E3241] Butyrolactone[air_low population density] environmental [M3] air_low population density [U3] kg +[E3242] Butyrolactone[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E3243] Butyrolactone[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E3244] Methyl amine[air_low population density] environmental [M3] air_low population density [U3] kg +[E3245] Methyl amine[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E3246] Methyl amine[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E3247] Arsine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E3248] Butyrolactone[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E3249] Methyl amine[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E3250] Occupation, sea and ocean[resource_land] environmental [M2] resource_land [U5] m2a +[E3251] Methyl borate[air_low population density] environmental [M3] air_low population density [U3] kg +[E3252] Methyl borate[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E3253] Methyl borate[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E3254] Methyl borate[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E3255] N-Bromoacetamide[air_high population density] environmental [M5] air_high population density [U3] kg +[E3256] N-Bromoacetamide[air_low population density] environmental [M3] air_low population density [U3] kg +[E3257] N-Bromoacetamide[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E3258] N-Bromoacetamide[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E3259] N-Bromoacetamide[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E3260] Dimefuron[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E3261] Fluoroglycofen-ethyl[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E3262] AOX, Adsorbable Organic Halogen as Cl[water_lake] environmental [M22] water_lake [U3] kg +[E3263] Chlorinated solvents, unspecified[water_lake] environmental [M22] water_lake [U3] kg +[E3264] Chlorinated solvents, unspecified[water_unspecified] environmental [M13] water_unspecified [U3] kg +[E3265] AOX, Adsorbable Organic Halogen as Cl[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3266] Chlorinated solvents, unspecified[water_river, long-term] environmental [M9] water_river, long-term [U3] kg +[E3267] Methane, dichlorofluoro-, HCFC-21[water_ocean] environmental [M15] water_ocean [U3] kg +[E3268] Radium-224[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3269] Radium-224[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3270] Radium-224[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3271] Radium-224[water_lake] environmental [M22] water_lake [U15] kBq +[E3272] Radium-224[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3273] Radium-224[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3274] Radium-228[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3275] Radium-228[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3276] Radium-228[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3277] Radium-228[water_lake] environmental [M22] water_lake [U15] kBq +[E3278] Radium-228[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3279] Actinides, radioactive, unspecified[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3280] Actinides, radioactive, unspecified[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3281] Actinides, radioactive, unspecified[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3282] Actinides, radioactive, unspecified[water_lake] environmental [M22] water_lake [U15] kBq +[E3283] Actinides, radioactive, unspecified[water_river] environmental [M6] water_river [U15] kBq +[E3284] Actinides, radioactive, unspecified[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3285] Actinides, radioactive, unspecified[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3286] Americium-241[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3287] Americium-241[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3288] Americium-241[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3289] Americium-241[water_lake] environmental [M22] water_lake [U15] kBq +[E3290] Americium-241[water_river] environmental [M6] water_river [U15] kBq +[E3291] Americium-241[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3292] Americium-241[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3293] Curium alpha[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3294] Curium alpha[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3295] Curium alpha[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3296] Curium alpha[water_lake] environmental [M22] water_lake [U15] kBq +[E3297] Curium alpha[water_river] environmental [M6] water_river [U15] kBq +[E3298] Curium alpha[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3299] Curium alpha[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3300] Neptunium-237[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3301] Neptunium-237[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3302] Neptunium-237[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3303] Neptunium-237[water_lake] environmental [M22] water_lake [U15] kBq +[E3304] Neptunium-237[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3305] Neptunium-237[water_river] environmental [M6] water_river [U15] kBq +[E3306] Neptunium-237[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3307] Neptunium-237[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3308] Plutonium-241[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3309] Plutonium-241[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3310] Plutonium-241[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3311] Plutonium-241[water_lake] environmental [M22] water_lake [U15] kBq +[E3312] Plutonium-241[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3313] Plutonium-241[water_river] environmental [M6] water_river [U15] kBq +[E3314] Plutonium-241[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3315] Plutonium-241[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3316] Plutonium-alpha[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3317] Plutonium-alpha[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3318] Plutonium-alpha[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3319] Plutonium-alpha[water_lake] environmental [M22] water_lake [U15] kBq +[E3320] Plutonium-alpha[water_river] environmental [M6] water_river [U15] kBq +[E3321] Plutonium-alpha[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3322] Plutonium-alpha[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3323] Protactinium-234[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3324] Protactinium-234[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3325] Protactinium-234[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3326] Protactinium-234[water_lake] environmental [M22] water_lake [U15] kBq +[E3327] Protactinium-234[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3328] Protactinium-234[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3329] Protactinium-234[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3330] Thorium-228[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3331] Thorium-228[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3332] Thorium-228[water_lake] environmental [M22] water_lake [U15] kBq +[E3333] Thorium-228[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3334] Thorium-228[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3335] Thorium-230[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3336] Thorium-230[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3337] Thorium-230[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3338] Thorium-230[water_lake] environmental [M22] water_lake [U15] kBq +[E3339] Thorium-230[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3340] Thorium-230[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3341] Thorium-230[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3342] Thorium-232[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3343] Thorium-232[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3344] Thorium-232[water_lake] environmental [M22] water_lake [U15] kBq +[E3345] Thorium-232[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3346] Thorium-232[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3347] Thorium-232[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3348] Thorium-234[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3349] Thorium-234[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3350] Thorium-234[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3351] Thorium-234[water_lake] environmental [M22] water_lake [U15] kBq +[E3352] Thorium-234[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3353] Thorium-234[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3354] Thorium-234[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3355] Antimony-122[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3356] Antimony-122[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3357] Antimony-122[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3358] Antimony-122[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3359] Antimony-124[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3360] Antimony-125[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3361] Antimony-125[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3362] Antimony-125[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3363] Barium-140[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3364] Barium-140[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3365] Barium-140[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3366] Barium-140[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3367] Cadmium-109[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3368] Cadmium-109[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3369] Cadmium-109[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3370] Cadmium-109[water_lake] environmental [M22] water_lake [U15] kBq +[E3371] Cadmium-109[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3372] Cadmium-109[water_river] environmental [M6] water_river [U15] kBq +[E3373] Cadmium-109[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3374] Cadmium-109[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3375] Carbon-14[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3376] Carbon-14[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3377] Carbon-14[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3378] Carbon-14[water_lake] environmental [M22] water_lake [U15] kBq +[E3379] Carbon-14[water_river] environmental [M6] water_river [U15] kBq +[E3380] Carbon-14[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3381] Carbon-14[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3382] Cerium-141[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3383] Cerium-141[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3384] Cerium-141[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3385] Cerium-141[water_lake] environmental [M22] water_lake [U15] kBq +[E3386] Cerium-141[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3387] Cerium-141[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3388] Cerium-141[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3389] Cerium-144[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3390] Cerium-144[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3391] Cerium-144[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3392] Cerium-144[water_lake] environmental [M22] water_lake [U15] kBq +[E3393] Cerium-144[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3394] Cerium-144[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3395] Cerium-144[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3396] Cesium-136[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3397] Cesium-136[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3398] Cesium-136[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3399] Cesium-136[water_lake] environmental [M22] water_lake [U15] kBq +[E3400] Cesium-136[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3401] Cesium-136[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3402] Cesium-136[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3403] Chromium-51[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3404] Chromium-51[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3405] Chromium-51[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3406] Chromium-51[water_lake] environmental [M22] water_lake [U15] kBq +[E3407] Chromium-51[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3408] Chromium-51[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3409] Chromium-51[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3410] Cobalt-57[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3411] Cobalt-57[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3412] Cobalt-57[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3413] Cobalt-57[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3414] Cobalt-58[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3415] Iodine-131[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3416] Iodine-133[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3417] Iodine-133[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3418] Iodine-133[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3419] Iodine-133[water_lake] environmental [M22] water_lake [U15] kBq +[E3420] Iodine-133[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3421] Iodine-133[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3422] Iodine-133[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3423] Iron-59[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3424] Iron-59[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3425] Iron-59[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3426] Iron-59[water_lake] environmental [M22] water_lake [U15] kBq +[E3427] Iron-59[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3428] Iron-59[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3429] Iron-59[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3430] Lanthanum-140[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3431] Lanthanum-140[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3432] Lanthanum-140[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3433] Lanthanum-140[water_lake] environmental [M22] water_lake [U15] kBq +[E3434] Lanthanum-140[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3435] Lanthanum-140[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3436] Lanthanum-140[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3437] Lead-210[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3438] Lead-210[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3439] Lead-210[water_lake] environmental [M22] water_lake [U15] kBq +[E3440] Lead-210[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3441] Manganese-54[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3442] Manganese-55[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3443] Manganese-55[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3444] Manganese-55[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3445] Manganese-55[water_lake] environmental [M22] water_lake [U15] kBq +[E3446] Manganese-55[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3447] Manganese-55[water_river] environmental [M6] water_river [U15] kBq +[E3448] Manganese-55[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3449] Manganese-55[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3450] Molybdenum-99[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3451] Molybdenum-99[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3452] Molybdenum-99[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3453] Molybdenum-99[water_lake] environmental [M22] water_lake [U15] kBq +[E3454] Molybdenum-99[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3455] Molybdenum-99[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3456] Molybdenum-99[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3457] Niobium-95[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3458] Niobium-95[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3459] Niobium-95[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3460] Niobium-95[water_lake] environmental [M22] water_lake [U15] kBq +[E3461] Niobium-95[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3462] Niobium-95[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3463] Niobium-95[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3464] Polonium-210[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3465] Polonium-210[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3466] Polonium-210[water_lake] environmental [M22] water_lake [U15] kBq +[E3467] Polonium-210[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3468] Polonium-210[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3469] Potassium-40[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3470] Potassium-40[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3471] Potassium-40[water_lake] environmental [M22] water_lake [U15] kBq +[E3472] Potassium-40[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3473] Potassium-40[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3474] Ruthenium-103[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3475] Ruthenium-103[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3476] Ruthenium-103[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3477] Ruthenium-103[water_lake] environmental [M22] water_lake [U15] kBq +[E3478] Ruthenium-103[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3479] Ruthenium-103[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3480] Ruthenium-103[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3481] Ruthenium-106[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3482] Ruthenium-106[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3483] Ruthenium-106[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3484] Ruthenium-106[water_lake] environmental [M22] water_lake [U15] kBq +[E3485] Ruthenium-106[water_river] environmental [M6] water_river [U15] kBq +[E3486] Ruthenium-106[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3487] Ruthenium-106[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3488] Silver-110[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3489] Sodium-24[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3490] Sodium-24[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3491] Sodium-24[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3492] Sodium-24[water_lake] environmental [M22] water_lake [U15] kBq +[E3493] Sodium-24[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3494] Sodium-24[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3495] Sodium-24[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3496] Strontium-89[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3497] Strontium-89[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3498] Strontium-89[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3499] Strontium-89[water_lake] environmental [M22] water_lake [U15] kBq +[E3500] Strontium-89[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3501] Strontium-89[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3502] Strontium-89[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3503] Strontium-90[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3504] Strontium-90[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3505] Strontium-90[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3506] Strontium-90[water_lake] environmental [M22] water_lake [U15] kBq +[E3507] Strontium-90[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3508] Strontium-90[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3509] Technetium-99[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3510] Technetium-99[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3511] Technetium-99[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3512] Technetium-99[water_lake] environmental [M22] water_lake [U15] kBq +[E3513] Technetium-99[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3514] Technetium-99[water_river] environmental [M6] water_river [U15] kBq +[E3515] Technetium-99[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3516] Technetium-99[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3517] Technetium-99m[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3518] Technetium-99m[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3519] Technetium-99m[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3520] Technetium-99m[water_lake] environmental [M22] water_lake [U15] kBq +[E3521] Technetium-99m[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3522] Technetium-99m[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3523] Technetium-99m[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3524] Tellurium-123m[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3525] Tellurium-123m[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3526] Tellurium-123m[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3527] Tellurium-123m[water_lake] environmental [M22] water_lake [U15] kBq +[E3528] Tellurium-123m[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3529] Tellurium-123m[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3530] Tellurium-123m[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3531] Tellurium-132[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3532] Tellurium-132[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3533] Tellurium-132[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3534] Tellurium-132[water_lake] environmental [M22] water_lake [U15] kBq +[E3535] Tellurium-132[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3536] Tellurium-132[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3537] Tellurium-132[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3538] Yttrium-90[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3539] Yttrium-90[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3540] Yttrium-90[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3541] Yttrium-90[water_lake] environmental [M22] water_lake [U15] kBq +[E3542] Yttrium-90[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3543] Yttrium-90[water_river] environmental [M6] water_river [U15] kBq +[E3544] Yttrium-90[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3545] Yttrium-90[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3546] Zinc-65[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3547] Zinc-65[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3548] Zinc-65[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3549] Zinc-65[water_lake] environmental [M22] water_lake [U15] kBq +[E3550] Zinc-65[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3551] Zinc-65[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3552] Zinc-65[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3553] Zirconium-95[water_fossil-] environmental [M23] water_fossil- [U15] kBq +[E3554] Zirconium-95[water_ground-] environmental [M11] water_ground- [U15] kBq +[E3555] Zirconium-95[water_ground-, long-term] environmental [M21] water_ground-, long-term [U15] kBq +[E3556] Zirconium-95[water_lake] environmental [M22] water_lake [U15] kBq +[E3557] Zirconium-95[water_ocean] environmental [M15] water_ocean [U15] kBq +[E3558] Zirconium-95[water_river, long-term] environmental [M9] water_river, long-term [U15] kBq +[E3559] Zirconium-95[water_unspecified] environmental [M13] water_unspecified [U15] kBq +[E3560] Carbon dioxide, biogenic[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E3561] Carbon dioxide, biogenic[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E3562] Heat, waste[soil_forestry] environmental [M20] soil_forestry [U9] MJ +[E3563] Heat, waste[water_fossil-] environmental [M23] water_fossil- [U9] MJ +[E3564] Heat, waste[water_ground-] environmental [M11] water_ground- [U9] MJ +[E3565] Heat, waste[water_lake] environmental [M22] water_lake [U9] MJ +[E3566] Heat, waste[water_river, long-term] environmental [M9] water_river, long-term [U9] MJ +[E3567] Oils, biogenic[soil_agricultural] environmental [M10] soil_agricultural [U3] kg +[E3568] Particulates, > 10 um[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E3569] Radium-228[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3570] Radium-228[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3571] Radon-220[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3572] Radon-220[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3573] Argon-41[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3574] Argon-41[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3575] Argon-41[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3576] Argon-41[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3577] Krypton-85m[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3578] Krypton-85m[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3579] Krypton-85m[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3580] Krypton-85m[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3581] Krypton-87[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3582] Krypton-87[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3583] Krypton-87[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3584] Krypton-87[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3585] Krypton-88[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3586] Krypton-88[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3587] Krypton-88[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3588] Krypton-88[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3589] Krypton-89[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3590] Krypton-89[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3591] Krypton-89[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3592] Krypton-89[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3593] Xenon-131m[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3594] Xenon-131m[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3595] Xenon-131m[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3596] Xenon-131m[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3597] Xenon-135[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3598] Xenon-135[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3599] Xenon-135[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3600] Xenon-135[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3601] Xenon-135m[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3602] Xenon-135m[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3603] Xenon-135m[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3604] Xenon-135m[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3605] Xenon-137[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3606] Xenon-137[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3607] Xenon-137[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3608] Xenon-137[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3609] Xenon-138[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3610] Xenon-138[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3611] Xenon-138[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3612] Xenon-138[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3613] Aerosols, radioactive, unspecified[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3614] Aerosols, radioactive, unspecified[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3615] Aerosols, radioactive, unspecified[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3616] Aerosols, radioactive, unspecified[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3617] Antimony-124[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3618] Antimony-125[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3619] Barium-140[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3620] Cerium-141[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3621] Cerium-141[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3622] Cerium-141[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3623] Cerium-141[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3624] Cerium-144[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3625] Cerium-144[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3626] Cerium-144[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3627] Cerium-144[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3628] Cerium-144[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3629] Chromium-51[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3630] Chromium-51[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3631] Chromium-51[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3632] Chromium-51[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3633] Cobalt-57[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3634] Iodine-135[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3635] Iodine-135[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3636] Iodine-135[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3637] Iodine-135[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3638] Iron-59[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3639] Iron-59[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3640] Iron-59[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3641] Iron-59[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3642] Iron-59[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3643] Lanthanum-140[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3644] Lanthanum-140[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3645] Lanthanum-140[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3646] Lanthanum-140[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3647] Manganese-54[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3648] Manganese-54[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3649] Manganese-54[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3650] Manganese-54[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3651] Niobium-95[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3652] Niobium-95[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3653] Niobium-95[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3654] Niobium-95[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3655] Potassium-40[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3656] Potassium-40[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3657] Promethium-147[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3658] Promethium-147[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3659] Promethium-147[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3660] Promethium-147[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3661] Promethium-147[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3662] Ruthenium-103[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3663] Ruthenium-103[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3664] Ruthenium-103[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3665] Ruthenium-103[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3666] Ruthenium-106[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3667] Ruthenium-106[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3668] Ruthenium-106[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3669] Ruthenium-106[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3670] Ruthenium-106[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3671] Silver-110[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3672] Silver-110[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3673] Silver-110[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3674] Silver-110[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3675] Strontium-89[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3676] Strontium-89[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3677] Strontium-89[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3678] Strontium-89[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3679] Strontium-89[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3680] Strontium-90[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3681] Strontium-90[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3682] Strontium-90[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3683] Strontium-90[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3684] Strontium-90[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3685] Technetium-99[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3686] Technetium-99[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3687] Technetium-99[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3688] Technetium-99[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3689] Technetium-99[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3690] Tellurium-123m[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3691] Tellurium-123m[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3692] Tellurium-123m[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3693] Tellurium-123m[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3694] Tellurium-123m[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3695] Zinc-65[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3696] Zirconium-95[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3697] Zirconium-95[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3698] Zirconium-95[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3699] Zirconium-95[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3700] Americium-241[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3701] Americium-241[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3702] Americium-241[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3703] Americium-241[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3704] Americium-241[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3705] Curium alpha[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3706] Curium alpha[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3707] Curium alpha[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3708] Curium alpha[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3709] Curium alpha[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3710] Curium-242[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3711] Curium-242[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3712] Curium-242[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3713] Curium-242[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3714] Curium-242[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3715] Curium-244[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3716] Curium-244[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3717] Curium-244[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3718] Curium-244[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3719] Curium-244[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3720] Neptunium-237[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3721] Neptunium-237[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3722] Neptunium-237[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3723] Neptunium-237[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3724] Neptunium-237[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3725] Plutonium-241[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3726] Plutonium-241[air_low population density] environmental [M3] air_low population density [U15] kBq +[E3727] Plutonium-241[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3728] Plutonium-241[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3729] Plutonium-241[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3730] Protactinium-234[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3731] Protactinium-234[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3732] Protactinium-234[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3733] Protactinium-234[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3734] Thorium-228[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3735] Thorium-228[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3736] Thorium-232[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3737] Thorium-232[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3738] Thorium-234[air_high population density] environmental [M5] air_high population density [U15] kBq +[E3739] Thorium-234[air_low population density, long-term] environmental [M17] air_low population density, long-term [U15] kBq +[E3740] Thorium-234[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U15] kBq +[E3741] Thorium-234[air_unspecified] environmental [M14] air_unspecified [U15] kBq +[E3742] BOD5, Biological Oxygen Demand[water_fossil-] environmental [M23] water_fossil- [U3] kg +[E3743] Chlorosilane, trimethyl-[air_low population density] environmental [M3] air_low population density [U3] kg +[E3744] Chlorosilane, trimethyl-[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E3745] Chlorosilane, trimethyl-[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E3746] Chlorosilane, trimethyl-[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E3747] Hexamethyldisilizane[air_high population density] environmental [M5] air_high population density [U3] kg +[E3748] Hexamethyldisilizane[air_low population density] environmental [M3] air_low population density [U3] kg +[E3749] Hexamethyldisilizane[air_low population density, long-term] environmental [M17] air_low population density, long-term [U3] kg +[E3750] Hexamethyldisilizane[air_lower stratosphere + upper troposphere] environmental [M18] air_lower stratosphere + upper troposphere [U3] kg +[E3751] Hexamethyldisilizane[air_unspecified] environmental [M14] air_unspecified [U3] kg +[E3752] Carbon dioxide[air] environmental [M25] air [U3] kg +[E3753] Nitrogen oxides[air] environmental [M25] air [U3] kg +[E3754] Water[resources] environmental [M26] resources [U2] m3 +[E3755] Hydrogen chloride[air] environmental [M25] air [U3] kg +[E3756] Hydrogen fluoride[air] environmental [M25] air [U3] kg +[E3757] Carbon monoxide[air] environmental [M25] air [U3] kg +[E3758] Sulfur dioxide[air] environmental [M25] air [U3] kg +[E3759] Benzene[air] environmental [M25] air [U3] kg +[E3760] Cadmium[air] environmental [M25] air [U3] kg +[E3761] Chromium[air] environmental [M25] air [U3] kg +[E3762] Copper[air] environmental [M25] air [U3] kg +[E3763] Nickel[air] environmental [M25] air [U3] kg +[E3764] Zinc[air] environmental [M25] air [U3] kg +[E3765] PAH, polycyclic aromatic hydrocarbons[air] environmental [M25] air [U3] kg +[E3766] Lead[air] environmental [M25] air [U3] kg +[E3767] Heat, waste[air] environmental [M25] air [U9] MJ +[E3768] 2,3,7,8-tetrachlorodibenzo-p-dioxin[air] environmental [M25] air [U3] kg +[E3769] Mercury[air] environmental [M25] air [U3] kg +[E3770] Vanadium[air] environmental [M25] air [U3] kg +[E3771] Particulates[air] environmental [M25] air [U3] kg +[E3772] Particulates, > 2.5 um, and < 10um[air] environmental [M25] air [U3] kg +[E3773] Benzene, hexachloro-[air] environmental [M25] air [U3] kg +[E3774] Hydrocarbons, aliphatic, alkanes, unspecified[air] environmental [M25] air [U3] kg +[E3775] Hydrocarbons, aromatic[air] environmental [M25] air [U3] kg +[E3776] Manganese[air] environmental [M25] air [U3] kg +[E3777] Polychlorinated biphenyls[air] environmental [M25] air [U3] kg +[E3778] Titanium[air] environmental [M25] air [U3] kg diff --git a/data/bw-harmonised/ExpectedOutputfiles.jpg b/data/bw-harmonised/ExpectedOutputfiles.jpg new file mode 100644 index 0000000..ed18fba Binary files /dev/null and b/data/bw-harmonised/ExpectedOutputfiles.jpg differ diff --git a/data/bw-harmonised/LCIsAsAggregatedProcesses.xlsx b/data/bw-harmonised/LCIsAsAggregatedProcesses.xlsx new file mode 100644 index 0000000..5a0a4cb Binary files /dev/null and b/data/bw-harmonised/LCIsAsAggregatedProcesses.xlsx differ diff --git a/data/bw-harmonised/REM2_2.xlsx b/data/bw-harmonised/REM2_2.xlsx new file mode 100644 index 0000000..67348a1 Binary files /dev/null and b/data/bw-harmonised/REM2_2.xlsx differ diff --git a/data/bw-harmonised/REM3_1.xlsx b/data/bw-harmonised/REM3_1.xlsx new file mode 100644 index 0000000..e3975a8 Binary files /dev/null and b/data/bw-harmonised/REM3_1.xlsx differ diff --git a/data/bw-harmonised/REM3_2.xlsx b/data/bw-harmonised/REM3_2.xlsx new file mode 100644 index 0000000..e19cf20 Binary files /dev/null and b/data/bw-harmonised/REM3_2.xlsx differ diff --git a/data/bw-harmonised/REM3_3.xlsx b/data/bw-harmonised/REM3_3.xlsx new file mode 100644 index 0000000..3c445d9 Binary files /dev/null and b/data/bw-harmonised/REM3_3.xlsx differ diff --git a/data/bw-harmonised/REM3_4.xlsx b/data/bw-harmonised/REM3_4.xlsx new file mode 100644 index 0000000..75b805f Binary files /dev/null and b/data/bw-harmonised/REM3_4.xlsx differ diff --git a/data/bw-harmonised/REM3_5.xlsx b/data/bw-harmonised/REM3_5.xlsx new file mode 100644 index 0000000..45660d9 Binary files /dev/null and b/data/bw-harmonised/REM3_5.xlsx differ diff --git a/data/bw-harmonised/REM3_6.xlsx b/data/bw-harmonised/REM3_6.xlsx new file mode 100644 index 0000000..3f4bd14 Binary files /dev/null and b/data/bw-harmonised/REM3_6.xlsx differ diff --git a/data/bw-harmonised/REM_replicated_2_2.xlsx b/data/bw-harmonised/REM_replicated_2_2.xlsx new file mode 100644 index 0000000..0ce60f5 Binary files /dev/null and b/data/bw-harmonised/REM_replicated_2_2.xlsx differ diff --git a/data/bw-harmonised/REM_unlinked_2_2.xlsx b/data/bw-harmonised/REM_unlinked_2_2.xlsx new file mode 100644 index 0000000..395ec58 Binary files /dev/null and b/data/bw-harmonised/REM_unlinked_2_2.xlsx differ diff --git a/data/correspondenceFiles/00_correspondenceFilesNameAndSize.jpg b/data/correspondenceFiles/00_correspondenceFilesNameAndSize.jpg new file mode 100644 index 0000000..02e0637 Binary files /dev/null and b/data/correspondenceFiles/00_correspondenceFilesNameAndSize.jpg differ diff --git a/data/processDataCMLCA.xlsx b/data/processDataCMLCA.xlsx new file mode 100644 index 0000000..64884aa Binary files /dev/null and b/data/processDataCMLCA.xlsx differ diff --git a/data/results/LCIs/Inventory_software_bw.csv b/data/results/LCIs/Inventory_software_bw.csv new file mode 100644 index 0000000..fdbe092 --- /dev/null +++ b/data/results/LCIs/Inventory_software_bw.csv @@ -0,0 +1,1648 @@ +,name,categories,type,unit,database,"REO solvent extraction, Hi- +tech_1 | NdO from solvent +extraction, primary, Hi-tech | +| REM_replicated_2_2","REO solvent extraction, +baseline_1 | NdO from solvent +extraction, baseline | | +REM_replicated_2_2","REO solvent extraction, Low- +tech_1 | NdO from solvent +extraction, Low-tech | | +REM_replicated_2_2","Pulse magnetising and testing +of magnet, recycled, hand +picking | Magnetised NdFeB +magnet, recycled, hand picking +| | REM_replicated_2_2","Pulse magnetising and testing +of magnet, recycling, shredded +| Magnetised NdFeB magnet, +recycled, shredded | | +REM_replicated_2_2","pulse magnetising and testing +of magnet, primary, baseline | +Magnetised NdFeB magnet, +primary, baseline | | +REM_replicated_2_2","REO solvent extraction, Hi- +tech_1 | NdO from solvent +extraction, primary, Hi-tech | +| REM2_2","REO solvent extraction, +baseline_1 | NdO from solvent +extraction, baseline | | +REM2_2","REO solvent extraction, Low- +tech_1 | NdO from solvent +extraction, Low-tech | | +REM2_2","Pulse magnetising and testing +of magnet, recycled, hand +picking | Magnetised NdFeB +magnet, recycled, hand picking +| | REM2_2","Pulse magnetising and testing +of magnet, recycling, shredded +| Magnetised NdFeB magnet, +recycled, shredded | | REM2_2","pulse magnetising and testing +of magnet, primary, baseline | +Magnetised NdFeB magnet, +primary, baseline | | REM2_2","REO solvent extraction, Hi- +tech_1 | NdO from solvent +extraction, primary, Hi-tech | +| REM_unlinked_2_2","REO solvent extraction, +baseline_1 | NdO from solvent +extraction, baseline | | +REM_unlinked_2_2","REO solvent extraction, Low- +tech_1 | NdO from solvent +extraction, Low-tech | | +REM_unlinked_2_2","Pulse magnetising and testing +of magnet, recycled, hand +picking | Magnetised NdFeB +magnet, recycled, hand picking +| | REM_unlinked_2_2","Pulse magnetising and testing +of magnet, recycling, shredded +| Magnetised NdFeB magnet, +recycled, shredded | | +REM_unlinked_2_2","pulse magnetising and testing +of magnet, primary, baseline | +Magnetised NdFeB magnet, +primary, baseline | | +REM_unlinked_2_2" +0,"1,4-Butanediol","('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.894253129391213e-10,5.101158203600632e-10,5.380076175771107e-10,2.868819011231357e-13,2.794485318561432e-11,4.614810645203547e-10,4.894253129391213e-10,5.101158203600632e-10,5.380076175771107e-10,1.1209862073735539e-12,2.794485318561432e-11,4.614810645203547e-10,4.894253129391225e-10,5.101158203600638e-10,5.380076175771107e-10,1.1209862073735539e-12,2.794485318561433e-11,4.614810645203536e-10 +1,1-Pentanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,9.774836397401841e-12,1.0737803266894017e-11,1.2106443117125481e-11,2.90793911724483e-13,2.4181490777161114e-12,1.1865139040439709e-11,9.774836397401841e-12,1.0737803266894017e-11,1.2106443117125481e-11,1.747147201594376e-12,2.418149077716111e-12,1.1865139040439705e-11,9.774836397401841e-12,1.0737803266894019e-11,1.2106443117125481e-11,1.747147201594376e-12,2.4181490777161118e-12,1.18651390404397e-11 +2,1-Pentene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.386643395529128e-12,8.11433840522091e-12,9.148592497201379e-12,2.1974735753962363e-13,1.8273487009517803e-12,8.966245660502706e-12,7.386643395529128e-12,8.11433840522091e-12,9.148592497201379e-12,1.3202855145985482e-12,1.8273487009517803e-12,8.966245660502704e-12,7.386643395529128e-12,8.114338405220912e-12,9.148592497201379e-12,1.3202855145985482e-12,1.8273487009517807e-12,8.9662456605027e-12 +3,"2,4-D","('soil', 'agricultural')",emission,kilogram,biosphere3,7.060600994908997e-07,7.36091027245677e-07,7.766399473249341e-07,7.183946257778203e-11,8.566846103812667e-10,6.610523577084284e-07,7.060600994908997e-07,7.36091027245677e-07,7.766399473249341e-07,1.7062756581417624e-10,8.566846103812667e-10,6.610523577084284e-07,7.060600994909021e-07,7.36091027245678e-07,7.766399473249341e-07,1.7062756581417614e-10,8.566846103812819e-10,6.610523577084265e-07 +4,2-Aminopropanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.1636099170137027e-11,1.2134040561100955e-11,1.2806778731008237e-11,8.434433528246142e-15,4.8144926225399624e-14,1.0930041242867203e-11,1.1636099170137027e-11,1.2134040561100955e-11,1.2806778731008237e-11,2.3299159904160306e-14,4.8144926225399346e-14,1.0930041242867197e-11,1.163609917013702e-11,1.2134040561100958e-11,1.2806778731008237e-11,2.3299159904160306e-14,4.8144926225400185e-14,1.093004124286719e-11 +5,2-Methyl pentane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6,2-Methyl-1-propanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.558539242223703e-11,7.97413114455565e-11,8.547045021948516e-11,5.118178053724266e-13,4.250960627599087e-12,7.545452980267597e-11,7.558539242223703e-11,7.97413114455565e-11,8.547045021948516e-11,3.0298261237672105e-12,4.2509606275990866e-12,7.545452980267596e-11,7.558539242223718e-11,7.974131144555657e-11,8.547045021948516e-11,3.0298261237672105e-12,4.250960627599089e-12,7.545452980267583e-11 +7,2-Methyl-2-butene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.6384508994903391e-15,1.7998624998072316e-15,2.0292726125869623e-15,4.874255817875847e-17,4.0532750306604086e-16,1.988824911977009e-15,1.6384508994903391e-15,1.7998624998072316e-15,2.0292726125869623e-15,2.928548990521322e-16,4.0532750306604086e-16,1.988824911977009e-15,1.6384508994903391e-15,1.7998624998072316e-15,2.0292726125869635e-15,2.928548990521322e-16,4.05327503066041e-16,1.9888249119770086e-15 +8,2-Nitrobenzoic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.1056697212654108e-11,2.1951031571244598e-11,2.31584745876267e-11,1.171706838530125e-14,5.781964814986913e-14,1.9745702640216375e-11,2.1056697212654108e-11,2.1951031571244598e-11,2.31584745876267e-11,2.072262721140106e-14,5.781964814986862e-14,1.9745702640216362e-11,2.1056697212654102e-11,2.19510315712446e-11,2.31584745876267e-11,2.072262721140106e-14,5.781964814987016e-14,1.9745702640216355e-11 +9,2-Propanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.5089865897478117e-06,1.5708475644095358e-06,1.653528417541261e-06,4.127571301459159e-09,5.115337280217281e-07,1.4720331908798442e-06,1.5089865897478117e-06,1.5708475644095358e-06,1.653528417541261e-06,1.8166705962051024e-08,5.115337280217281e-07,1.4720331908798442e-06,1.5089865897478117e-06,1.5708475644095358e-06,1.653528417541261e-06,1.8166705962051024e-08,5.11533728021728e-07,1.4720331908798434e-06 +10,3-Methyl-1-butanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11,4-Methyl-2-pentanone,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12,Abamectin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13,Acenaphthene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.478986193035651e-12,5.718030518832052e-12,6.0445445857063746e-12,1.4114099639994107e-11,3.258090928281065e-11,7.306186463708492e-12,5.478986193035651e-12,5.718030518832052e-12,6.0445445857063746e-12,1.4686476953498363e-11,3.258090928281065e-11,7.306186463708492e-12,5.478986193035651e-12,5.718030518832052e-12,6.0445445857063746e-12,1.4686476953498363e-11,3.258090928281065e-11,7.306186463708492e-12 +14,Acephate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +15,Acetaldehyde,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.3461462401151694e-06,3.4920866186937902e-06,3.6895344138641153e-06,3.250119437329317e-07,1.3785688640860754e-06,4.7056328145366734e-06,3.3461462401151694e-06,3.4920866186937902e-06,3.6895344138641153e-06,6.961032008770906e-07,1.3785688640860754e-06,4.705632814536674e-06,3.346146240115168e-06,3.4920866186937902e-06,3.689534413864115e-06,6.961032008770906e-07,1.3785688640860754e-06,4.705632814536673e-06 +16,Acetamide,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +17,Acetic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.7300110460438638e-05,2.170666156204365e-05,2.727508833441345e-05,3.252581989323328e-06,1.1138453728204464e-05,2.67726974320454e-05,1.7300110460438638e-05,2.170666156204365e-05,2.727508833441345e-05,5.1525046518461514e-06,1.1138453728204464e-05,2.6772697432045405e-05,1.7300110460438628e-05,2.170666156204365e-05,2.7275088334413445e-05,5.1525046518461514e-06,1.1138453728204464e-05,2.677269743204539e-05 +18,Acetochlor,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +19,Acetone,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.095209606001327e-06,5.309064140027609e-06,5.597552177812572e-06,2.5704219096594677e-07,1.8225241238260094e-06,6.384680481280455e-06,5.095209606001327e-06,5.309064140027609e-06,5.597552177812572e-06,6.387417686812162e-07,1.8225241238260094e-06,6.384680481280454e-06,5.095209606001325e-06,5.309064140027609e-06,5.597552177812572e-06,6.387417686812162e-07,1.8225241238260094e-06,6.384680481280452e-06 +20,Aclonifen,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.797035047021382e-07,1.8733466277762754e-07,1.9763735542440504e-07,1.004693509061223e-10,4.835005092538692e-10,1.6851197006540666e-07,1.797035047021382e-07,1.8733466277762754e-07,1.9763735542440504e-07,1.746137382213135e-10,4.835005092538647e-10,1.6851197006540658e-07,1.7970350470213815e-07,1.8733466277762756e-07,1.9763735542440504e-07,1.746137382213135e-10,4.835005092538777e-10,1.685119700654065e-07 +21,Acrolein,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2278604992011996e-09,1.393416139872984e-09,1.6106020995690615e-09,7.520419847946514e-11,7.253818613654802e-10,1.5904475396819245e-09,1.2278604992011996e-09,1.393416139872984e-09,1.6106020995690615e-09,2.5907743139389257e-10,7.253818613654802e-10,1.5904475396819247e-09,1.2278604992011996e-09,1.393416139872984e-09,1.6106020995690615e-09,2.5907743139389257e-10,7.253818613654801e-10,1.5904475396819239e-09 +22,Acrylic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.9040009322429296e-09,4.064046002458538e-09,4.277955972419567e-09,1.0688927705541708e-11,1.3234688039561677e-09,3.808431439405446e-09,3.9040009322429296e-09,4.064046002458538e-09,4.277955972419567e-09,4.7034557470537864e-11,1.3234688039561683e-09,3.808431439405445e-09,3.9040009322429296e-09,4.064046002458538e-09,4.277955972419567e-09,4.7034557470537864e-11,1.3234688039561677e-09,3.808431439405442e-09 +23,Alachlor,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +24,"Aldehydes, unspecified","('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.039215126078862e-08,3.216920073717147e-07,6.225205965590769e-07,2.5765720290615107e-09,5.742068274041983e-08,3.1400536457733613e-07,8.039215126078862e-08,3.216920073717147e-07,6.225205965590769e-07,1.1215105216157925e-08,5.742068274041983e-08,3.1400536457733624e-07,8.039215126077738e-08,3.216920073717094e-07,6.225205965590769e-07,1.1215105216157925e-08,5.742068274041981e-08,3.140053645773296e-07 +25,Aldicarb,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +26,Aldrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.0040270475608748e-10,1.0451875913211802e-10,1.100201328655499e-10,2.754504979539882e-13,3.403890000214142e-11,9.794716727636569e-11,1.0040270475608748e-10,1.0451875913211802e-10,1.100201328655499e-10,1.2114876060718673e-12,3.403890000214142e-11,9.794716727636569e-11,1.0040270475608704e-10,1.0451875913211787e-10,1.100201328655499e-10,1.2114876060718673e-12,3.403890000214199e-11,9.794716727636569e-11 +27,Aluminium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.111192523481289e-05,4.287221703933168e-05,4.5249896339897196e-05,1.101422067565431e-06,2.1099994217477832e-05,4.737359043470286e-05,4.111192523481289e-05,4.287221703933168e-05,4.5249896339897196e-05,3.4988303777495046e-06,2.1099994217477832e-05,4.737359043470286e-05,4.111192523481289e-05,4.2872217039331676e-05,4.524989633989721e-05,3.4988303777495046e-06,2.1099994217477825e-05,4.737359043470284e-05 +28,"Aluminium, 24% in bauxite, 11% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.00584516617548659,0.0063543128882787,0.007073535846098508,0.00048269977995623757,0.004778372986371057,0.009544055781912558,0.00584516617548659,0.0063543128882787,0.007073535846098508,0.0019510893834558496,0.004778372986371057,0.009544055781912558,0.00584516617548659,0.006354312888278701,0.007073535846098508,0.0019510893834558496,0.004778372986371057,0.009544055781912556 +29,Amidosulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +30,Ammonia,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0007977612999686346,0.0008443880709769737,0.0009069176487961454,4.659025328914933e-06,0.00035436127763930296,0.000777264094130165,0.0007977612999686346,0.0008443880709769737,0.0009069176487961454,1.8755923809129826e-05,0.00035436127763930296,0.000777264094130165,0.0007977612999686346,0.0008443880709769739,0.0009069176487961456,1.8755923809129826e-05,0.00035436127763930286,0.0007772640941301646 +31,Ammonium carbonate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.4824534678405386e-09,2.5029893526723993e-09,3.7835383817220095e-09,1.1678457851200704e-09,3.107427450400519e-09,4.908290988212326e-09,1.4824534678405386e-09,2.5029893526723993e-09,3.7835383817220095e-09,1.2759040423109337e-09,3.107427450400519e-09,4.9082909882123265e-09,1.482453467840531e-09,2.5029893526724035e-09,3.7835383817220095e-09,1.2759040423109337e-09,3.1074274504005195e-09,4.9082909882123364e-09 +32,"Ammonium, ion","('water', 'ground-')",emission,kilogram,biosphere3,7.980588886709627e-07,8.302792115022317e-07,8.741898593121958e-07,7.333893806799779e-07,1.803595053165542e-06,4.956767694889127e-06,7.980588886709627e-07,8.302792115022317e-07,8.741898593121958e-07,7.850184237294124e-07,1.803595053165542e-06,4.956767694889127e-06,7.980588886709627e-07,8.302792115022314e-07,8.741898593121958e-07,7.850184237294124e-07,1.803595053165542e-06,4.956767694889127e-06 +33,"Anhydrite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.5628848128707304e-07,5.178693124393428e-07,8.446434865574737e-07,4.020409047887876e-09,1.1794633333530303e-07,4.998650221714337e-07,2.5628848128707304e-07,5.178693124393428e-07,8.446434865574737e-07,1.897431075040423e-08,1.1794633333530303e-07,4.998650221714337e-07,2.5628848128707214e-07,5.178693124393436e-07,8.446434865574737e-07,1.897431075040423e-08,1.1794633333530301e-07,4.998650221714336e-07 +34,Aniline,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.3762432063404604e-09,1.4366849335594778e-09,1.5185340223789099e-09,1.1728806275995e-12,1.0132407355682135e-11,1.298050698647808e-09,1.3762432063404604e-09,1.4366849335594778e-09,1.5185340223789099e-09,6.454394051794837e-12,1.0132407355682133e-11,1.298050698647808e-09,1.3762432063404643e-09,1.4366849335594797e-09,1.5185340223789099e-09,6.454394051794836e-12,1.0132407355682165e-11,1.2980506986478046e-09 +35,Anthranilic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.5359289468917538e-11,1.6011647443377367e-11,1.6892398441841698e-11,8.54396515263496e-15,4.223331587271597e-14,1.4403035224506081e-11,1.5359289468917538e-11,1.6011647443377367e-11,1.6892398441841698e-11,1.5128718337945e-14,4.2233315872715604e-14,1.4403035224506073e-11,1.535928946891753e-11,1.601164744337737e-11,1.6892398441841698e-11,1.5128718337945e-14,4.2233315872716715e-14,1.4403035224506068e-11 +36,Anthraquinone,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +37,Antimony,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.951122620607377e-08,2.023048788868175e-08,2.1198131141717196e-08,1.7202850679268473e-10,3.6475052282830477e-09,1.8984677118772474e-07,1.951122620607377e-08,2.023048788868175e-08,2.1198131141717196e-08,5.396173613490459e-10,3.6475052282830477e-09,1.8984677118772474e-07,1.9511226206073757e-08,2.023048788868176e-08,2.1198131141717183e-08,5.396173613490459e-10,3.647505228283043e-09,1.8984677118772474e-07 +38,Antimony-122,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,0.20544992598414136,0.20544992598414138,0.2054499259841413,0.0,0.0,0.18430869857080037,0.20544992598414136,0.20544992598414138,0.2054499259841413,0.0,0.0,0.18430869857080037,0.20544992598414136,0.20544992598414138,0.2054499259841413,0.0,0.0,0.18430869857080032 +39,Arsenic,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.775480292832993e-07,5.000740948592849e-07,5.309838548082171e-07,1.8326677687051246e-08,1.444455818574218e-07,1.5734597450157277e-06,4.775480292832993e-07,5.000740948592849e-07,5.309838548082171e-07,5.4020905152875296e-08,1.444455818574218e-07,1.573459745015728e-06,4.775480292832992e-07,5.000740948592848e-07,5.30983854808217e-07,5.4020905152875296e-08,1.4444558185742176e-07,1.5734597450157277e-06 +40,"Arsenic, ion","('water', 'ground-')",emission,kilogram,biosphere3,1.3062224680237079e-06,1.363214270280529e-06,1.4410393288914787e-06,8.19657052332824e-08,8.034669225507487e-07,1.6348608758040245e-06,1.3062224680237079e-06,1.363214270280529e-06,1.4410393288914787e-06,3.345108485338997e-07,8.034669225507487e-07,1.6348608758040245e-06,1.3062224680237079e-06,1.363214270280529e-06,1.4410393288914787e-06,3.345108485338997e-07,8.034669225507487e-07,1.634860875804024e-06 +41,Arsine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.550629494642804e-14,4.737183193655714e-14,4.9865235580881633e-14,1.245935120895706e-16,1.5426779236459377e-14,4.439230584858395e-14,4.550629494642804e-14,4.737183193655714e-14,4.9865235580881633e-14,5.482497186631089e-16,1.5426779236459384e-14,4.439230584858394e-14,4.550629494642804e-14,4.737183193655714e-14,4.9865235580881633e-14,5.482497186631089e-16,1.5426779236459377e-14,4.439230584858391e-14 +42,Asulam,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +43,Atrazine,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.6339725081550172e-11,2.7419534048442155e-11,2.8862768793774826e-11,7.226192195627966e-14,8.929792066249271e-12,2.5695537494984563e-11,2.6339725081550172e-11,2.7419534048442155e-11,2.8862768793774826e-11,3.1782268860906153e-13,8.929792066249271e-12,2.5695537494984563e-11,2.6339725081550056e-11,2.7419534048442117e-11,2.8862768793774826e-11,3.1782268860906153e-13,8.929792066249422e-12,2.5695537494984563e-11 +44,Azinphos-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +45,Azoxystrobin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +46,"Barite, 15% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.01906549369877135,0.020961870512775593,0.023691059305069068,0.0009158276932594852,0.006915955179874016,0.020461125078471004,0.01906549369877135,0.020961870512775593,0.023691059305069068,0.001457886739157468,0.006915955179874016,0.020461125078470997,0.019065493698771346,0.020961870512775586,0.023691059305069068,0.001457886739157468,0.006915955179874016,0.020461125078470987 +47,Barium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2181037553856975e-06,1.2615589791162587e-06,1.3202398140837257e-06,1.2973303611970455e-08,2.483103511733706e-07,1.173036980442529e-05,1.2181037553856975e-06,1.2615589791162587e-06,1.3202398140837257e-06,4.1104443195093394e-08,2.483103511733706e-07,1.1730369804425292e-05,1.2181037553856975e-06,1.2615589791162583e-06,1.3202398140837257e-06,4.1104443195093394e-08,2.483103511733705e-07,1.1730369804425292e-05 +48,"Basalt, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0010475516286229932,0.0011024909827755916,0.0011777531224700965,5.279137052661736e-05,0.0006174767840426087,0.0013597799807857035,0.0010475516286229932,0.0011024909827755916,0.0011777531224700965,0.0002449610485761148,0.0006174767840426087,0.0013597799807857035,0.0010475516286229932,0.0011024909827755888,0.0011777531224700971,0.0002449610485761148,0.0006174767840426088,0.001359779980785703 +49,Benomyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,4.501101873686393e-09,4.6925477723691e-09,4.951045452083166e-09,4.578636936283884e-13,5.447298082809146e-12,4.214177881006154e-09,4.501101873686393e-09,4.6925477723691e-09,4.951045452083166e-09,1.0872521447389526e-12,5.447298082809146e-12,4.214177881006154e-09,4.501101873686407e-09,4.692547772369106e-09,4.951045452083166e-09,1.0872521447389518e-12,5.447298082809243e-12,4.2141778810061425e-09 +50,Bensulfuron methyl ester,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +51,Bentazone,"('soil', 'agricultural')",emission,kilogram,biosphere3,9.171236107628927e-08,9.560695136829329e-08,1.0086496939999106e-07,5.127491214623152e-11,2.467563084445075e-10,8.600071918474603e-08,9.171236107628927e-08,9.560695136829329e-08,1.0086496939999106e-07,8.911478011066812e-11,2.467563084445053e-10,8.600071918474599e-08,9.171236107628925e-08,9.560695136829331e-08,1.0086496939999106e-07,8.911478011066812e-11,2.4675630844451197e-10,8.600071918474596e-08 +52,Benzal chloride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +53,Benzaldehyde,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.406228704097908e-10,7.269997266360822e-10,8.40314140678669e-10,3.9236973021437525e-11,3.7846010158654207e-10,8.297987175661139e-10,6.406228704097908e-10,7.269997266360822e-10,8.40314140678669e-10,1.351708333766959e-10,3.7846010158654207e-10,8.29798717566114e-10,6.406228704097908e-10,7.269997266360822e-10,8.40314140678669e-10,1.351708333766959e-10,3.7846010158654207e-10,8.297987175661134e-10 +54,Benzene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.1873922499916406e-05,4.348683986531185e-05,5.842047553389695e-05,1.5905899329380403e-06,1.2175880776640693e-05,6.233417506279202e-05,3.1873922499916406e-05,4.348683986531185e-05,5.842047553389695e-05,3.309132831046305e-06,1.2175880776640693e-05,6.233417506279202e-05,3.187392249991641e-05,4.348683986531185e-05,5.842047553389695e-05,3.309132831046305e-06,1.2175880776640688e-05,6.2334175062792e-05 +55,"Benzene, dichloro","('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.8086943910137103e-10,3.979628675644366e-10,4.2115547693333407e-10,6.904034629945939e-13,5.038475854481228e-12,3.616754728919081e-10,3.8086943910137103e-10,3.979628675644366e-10,4.2115547693333407e-10,3.284255388721093e-12,5.038475854481218e-12,3.6167547289190797e-10,3.808694391013709e-10,3.9796286756443674e-10,4.211554769333341e-10,3.284255388721093e-12,5.0384758544812455e-12,3.616754728919078e-10 +56,"Benzene, ethyl-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.31337246189505e-06,4.814512962235783e-06,5.53291328002298e-06,1.2094645717407432e-07,1.320584018909744e-06,4.7434084519243565e-06,4.31337246189505e-06,4.814512962235783e-06,5.53291328002298e-06,2.465807298058518e-07,1.320584018909744e-06,4.7434084519243565e-06,4.313372461895051e-06,4.814512962235783e-06,5.532913280022979e-06,2.465807298058518e-07,1.3205840189097436e-06,4.743408451924354e-06 +57,"Benzene, hexachloro-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.444594144508787e-11,2.5745056975156575e-11,2.749816760362369e-11,1.3254241183008532e-12,1.6315354297848014e-11,3.1699273667544065e-11,2.444594144508787e-11,2.5745056975156575e-11,2.749816760362369e-11,7.391605063700588e-12,1.6315354297848014e-11,3.1699273667544026e-11,2.4445941445087906e-11,2.5745056975156552e-11,2.7498167603623656e-11,7.391605063700588e-12,1.6315354297847907e-11,3.1699273667543864e-11 +58,"Benzene, pentachloro-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.134900227253644e-11,6.460941656726744e-11,6.900922339981734e-11,3.309868698729009e-12,4.091486381497925e-11,7.955149532078986e-11,6.134900227253644e-11,6.460941656726744e-11,6.900922339981734e-11,1.8536596016322342e-11,4.091486381497925e-11,7.955149532078976e-11,6.134900227253653e-11,6.460941656726739e-11,6.900922339981727e-11,1.8536596016322342e-11,4.091486381497898e-11,7.955149532078934e-11 +59,Benzo(a)pyrene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.276902390534452e-09,1.3332791833984916e-09,1.4095766379556696e-09,5.151288260756763e-10,1.3972569492716233e-09,1.5908297184335335e-09,1.276902390534452e-09,1.3332791833984916e-09,1.4095766379556696e-09,6.364642555402904e-10,1.3972569492716233e-09,1.5908297184335335e-09,1.2769023905344527e-09,1.3332791833984919e-09,1.4095766379556696e-09,6.364642555402904e-10,1.3972569492716233e-09,1.5908297184335327e-09 +60,Beryllium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.958018112009183e-09,5.170007016843255e-09,5.456433482217878e-09,1.7484492331153428e-10,2.621002862694212e-09,5.929617081003997e-09,4.958018112009183e-09,5.170007016843255e-09,5.456433482217878e-09,4.667716743274252e-10,2.621002862694212e-09,5.929617081003997e-09,4.958018112009183e-09,5.170007016843254e-09,5.4564334822178786e-09,4.667716743274252e-10,2.621002862694211e-09,5.929617081003995e-09 +61,Bifenox,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +62,Bifenthrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +63,Bitertanol,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +64,"BOD5, Biological Oxygen Demand","('water', 'ground-')",emission,kilogram,biosphere3,1.289878111468297e-07,1.3447470835218258e-07,1.4196426025138924e-07,1.4642095384039843e-07,3.594772269975249e-07,5.318498237483643e-07,1.289878111468297e-07,1.3447470835218258e-07,1.4196426025138924e-07,1.5608203485317303e-07,3.594772269975249e-07,5.318498237483644e-07,1.289878111468297e-07,1.3447470835218258e-07,1.4196426025138924e-07,1.5608203485317303e-07,3.594772269975249e-07,5.318498237483643e-07 +65,"Borax, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.887261463717769e-08,5.144255834921592e-08,5.49720713022758e-08,9.426304779895846e-09,4.219524600165204e-08,6.186360157849621e-08,4.887261463717769e-08,5.144255834921592e-08,5.49720713022758e-08,1.7296569252211155e-08,4.219524600165204e-08,6.186360157849621e-08,4.887261463717769e-08,5.1442558349215826e-08,5.497207130225959e-08,1.7296569252211155e-08,4.219524600164798e-08,6.186360157847995e-08 +66,Boric acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +67,Boron,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.0471787616969555e-06,6.2578025721033415e-06,6.542089522933635e-06,5.1232155169241324e-08,2.028793088320185e-05,8.973115539582747e-05,6.0471787616969555e-06,6.2578025721033415e-06,6.542089522933635e-06,1.606853526263192e-07,2.028793088320185e-05,8.973115539582748e-05,6.0471787616969555e-06,6.257802572103339e-06,6.542089522933636e-06,1.606853526263192e-07,2.0287930883201852e-05,8.973115539582748e-05 +68,Boron trifluoride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.227864497275158e-16,6.483176682026002e-16,6.824416944330439e-16,1.7051518728213715e-18,2.1112659367380495e-16,6.075407054391527e-16,6.227864497275158e-16,6.483176682026002e-16,6.824416944330439e-16,7.503192068693905e-18,2.1112659367380502e-16,6.075407054391525e-16,6.227864497275158e-16,6.483176682026002e-16,6.824416944330439e-16,7.503192068693905e-18,2.1112659367380495e-16,6.075407054391522e-16 +69,Bromine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.5656698474187096e-06,3.6769545601363948e-06,3.827224907490278e-06,5.8897576363088885e-08,1.7322611623627949e-07,5.2445644229238475e-05,3.5656698474187096e-06,3.6769545601363948e-06,3.827224907490278e-06,6.679058649835363e-08,1.7322611623627949e-07,5.244564422923848e-05,3.5656698474187096e-06,3.6769545601363935e-06,3.827224907490278e-06,6.679058649835363e-08,1.7322611623627949e-07,5.244564422923848e-05 +70,Bromoxynil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +71,Bromuconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +72,Buprofezin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +73,Butadiene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.299732487567745e-12,6.920347445420834e-12,7.802411265455408e-12,1.8741094769684705e-13,1.558449363663682e-12,7.646888462341657e-12,6.299732487567745e-12,6.920347445420834e-12,7.802411265455408e-12,1.1260018513016033e-12,1.5584493636636819e-12,7.646888462341654e-12,6.299732487567744e-12,6.920347445420835e-12,7.802411265455408e-12,1.1260018513016033e-12,1.5584493636636823e-12,7.64688846234165e-12 +74,Butane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0002004930375868994,0.00022159925814189363,0.0002519999708697654,2.0604235907325553e-05,9.375108577764034e-05,0.00022207827804131573,0.0002004930375868994,0.00022159925814189363,0.0002519999708697654,2.760088729181145e-05,9.375108577764034e-05,0.00022207827804131573,0.00020049303758689943,0.0002215992581418936,0.00025199997086976537,2.760088729181145e-05,9.375108577764031e-05,0.00022207827804131565 +75,Butanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.827757641845089e-11,7.118041999277823e-11,7.50997325434521e-11,1.3919573364063372e-14,1.8871531065885446e-13,6.39557072021067e-11,6.827757641845089e-11,7.118041999277823e-11,7.50997325434521e-11,2.980931741071716e-14,1.8871531065885413e-13,6.395570720210668e-11,6.827757641845104e-11,7.118041999277832e-11,7.509973254345212e-11,2.980931741071715e-14,1.887153106588563e-13,6.395570720210654e-11 +76,Butene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.275292795710122e-06,4.7479130712912645e-06,5.430605491921821e-06,9.167803146235658e-08,1.2435283545284458e-06,4.667469534311995e-06,4.275292795710122e-06,4.7479130712912645e-06,5.430605491921821e-06,2.13527207095882e-07,1.2435283545284458e-06,4.667469534311996e-06,4.2752927957101225e-06,4.747913071291264e-06,5.43060549192182e-06,2.13527207095882e-07,1.243528354528445e-06,4.667469534311992e-06 +77,Butyrolactone,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.335953397334554e-11,2.4317256665724078e-11,2.5597362262784e-11,6.564482197968553e-14,7.925241960240225e-12,2.279473298971707e-11,2.335953397334554e-11,2.4317256665724078e-11,2.5597362262784e-11,2.8709237993139383e-13,7.925241960240225e-12,2.279473298971707e-11,2.335953397334554e-11,2.4317256665724078e-11,2.5597362262784e-11,2.8709237993139383e-13,7.925241960240223e-12,2.279473298971706e-11 +78,Cadmium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.498350913895248e-07,7.890453238174232e-07,8.432153230686933e-07,1.644785313403594e-08,1.7680955356472372e-07,9.194962699582016e-07,7.498350913895248e-07,7.890453238174232e-07,8.432153230686933e-07,8.923954839658456e-08,1.7680955356472372e-07,9.194962699582016e-07,7.498350913895245e-07,7.890453238174231e-07,8.432153230686931e-07,8.923954839658456e-08,1.768095535647237e-07,9.194962699582012e-07 +79,"Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,7.889471761053364e-07,8.223430780846384e-07,8.678783808472757e-07,2.7970592014585625e-08,3.8610001749930216e-07,8.805033130495751e-07,7.889471761053364e-07,8.223430780846384e-07,8.678783808472757e-07,1.117354797650755e-07,3.8610001749930216e-07,8.805033130495751e-07,7.889471761053364e-07,8.223430780846384e-07,8.678783808472757e-07,1.117354797650755e-07,3.8610001749930216e-07,8.805033130495818e-07 +80,"Cadmium, ion","('water', 'ground-')",emission,kilogram,biosphere3,3.132903591116453e-08,3.272186545485485e-08,3.460959936462766e-08,1.720442050928987e-08,1.369135087796026e-07,1.5507075300957412e-07,3.132903591116453e-08,3.272186545485485e-08,3.460959936462766e-08,1.162383291572063e-07,1.369135087796026e-07,1.5507075300957412e-07,3.132903591116452e-08,3.272186545485485e-08,3.460959936462766e-08,1.162383291572063e-07,1.369135087796026e-07,1.5507075300957407e-07 +81,"Calcite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.6618247479112429,0.6908122729485909,0.7301516566297784,0.27613949313417235,0.7265512297446424,1.095296805119104,0.6618247479112429,0.6908122729485909,0.7301516566297784,0.45429200417511445,0.7265512297446424,1.095296805119104,0.6618247479112429,0.6908122729485909,0.7301516566297785,0.45429200417511445,0.7265512297446424,1.0952968051191039 +82,Calcium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2930937091423134e-05,1.3516955021156343e-05,1.4314992014476641e-05,5.811481347536281e-06,1.664207081498423e-05,1.5829070630611193e-05,1.2930937091423134e-05,1.3516955021156343e-05,1.4314992014476641e-05,6.737073147753632e-06,1.664207081498423e-05,1.5829070630611193e-05,1.2930937091423142e-05,1.3516955021156345e-05,1.4314992014476641e-05,6.737073147753632e-06,1.664207081498423e-05,1.582907063061118e-05 +83,"Calcium, ion","('water', 'ground-')",emission,kilogram,biosphere3,0.0008406592212139206,0.0008775487640691455,0.0009277900602900676,0.0003714748264622688,0.0019737774030508934,0.0024259550522307835,0.0008406592212139206,0.0008775487640691455,0.0009277900602900676,0.001379943000217101,0.0019737774030508934,0.0024259550522307835,0.0008406592212139204,0.0008775487640691455,0.0009277900602900676,0.001379943000217101,0.0019737774030508934,0.0024259550522307835 +84,Carbaryl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +85,Carbendazim,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +86,Carbetamide,"('soil', 'agricultural')",emission,kilogram,biosphere3,3.2536871575175775e-08,3.3933466776499336e-08,3.582085091434906e-08,2.5956316742564507e-11,1.5262086616299085e-10,3.058399525400193e-08,3.2536871575175775e-08,3.3933466776499336e-08,3.582085091434906e-08,7.89005728814551e-11,1.5262086616299005e-10,3.058399525400192e-08,3.253687157517577e-08,3.393346677649935e-08,3.582085091434907e-08,7.89005728814551e-11,1.526208661629924e-10,3.058399525400191e-08 +87,Carbofuran,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.4676755758655966e-06,2.572633513174326e-06,2.71435179206441e-06,2.510183241460627e-10,2.9864163901382773e-09,2.310372908929629e-06,2.4676755758655966e-06,2.572633513174326e-06,2.71435179206441e-06,5.960730552832577e-10,2.9864163901382773e-09,2.310372908929629e-06,2.4676755758656047e-06,2.572633513174329e-06,2.71435179206441e-06,5.960730552832573e-10,2.98641639013833e-09,2.310372908929623e-06 +88,Carbon,"('soil', 'agricultural')",emission,kilogram,biosphere3,9.659447860691724e-05,0.00010013856150503192,0.00010494901242354425,1.7234840022820934e-06,3.730483154236322e-05,9.165122367388866e-05,9.659447860691724e-05,0.00010013856150503192,0.00010494901242354425,2.472550025119561e-06,3.730483154236322e-05,9.165122367388866e-05,9.659447860691726e-05,0.0001001385615050319,0.00010494901242354425,2.472550025119561e-06,3.73048315423632e-05,9.165122367388861e-05 +89,"Carbon dioxide, fossil","('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.49608313382489,5.805048629808873,6.222378282466591,1.1918807198562886,4.410124418886823,14.546481834483973,5.49608313382489,5.805048629808873,6.222378282466591,1.5578404790132965,4.410124418886823,14.546481834483975,5.496083133824889,5.805048629808874,6.222378282466591,1.5578404790132965,4.410124418886823,14.546481834483973 +90,"Carbon dioxide, in air","('natural resource', 'in air')",natural resource,kilogram,biosphere3,0.27329275118466606,0.2853073834276733,0.3016177856078619,0.10485782159600088,0.2837836330477195,0.39192674542766487,0.27329275118466606,0.2853073834276733,0.3016177856078619,0.12349178790280357,0.2837836330477195,0.39192674542766487,0.2732927511846665,0.2853073834276735,0.3016177856078619,0.12349178790280357,0.2837836330477195,0.39192674542766454 +91,"Carbon dioxide, non-fossil","('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.16840668089564034,0.175979706010725,0.186236668189126,0.09615440821456808,0.2506111356444775,0.2073174616268934,0.16840668089564034,0.175979706010725,0.186236668189126,0.11203005550649568,0.2506111356444775,0.2073174616268934,0.1684066808956406,0.17597970601072513,0.18623666818912601,0.11203005550649568,0.2506111356444775,0.20731746162689318 +92,Carbon disulfide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.825597918421792e-10,2.3256778272553485e-10,3.021495114746132e-10,1.5463341327588632e-11,1.4803838409375372e-10,3.4538600331226656e-10,1.825597918421792e-10,2.3256778272553485e-10,3.021495114746132e-10,9.227433309825053e-11,1.4803838409375372e-10,3.4538600331226656e-10,1.8255979184217918e-10,2.3256778272553488e-10,3.021495114746132e-10,9.227433309825053e-11,1.4803838409375377e-10,3.4538600331226645e-10 +93,"Carbon monoxide, fossil","('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0010308553323165788,0.0011679723504828506,0.001345978831419157,0.00024335508397362957,0.0011984513009195145,0.0024629738237752063,0.0010308553323165788,0.0011679723504828506,0.001345978831419157,0.0003157473275861792,0.0011984513009195145,0.0024629738237752067,0.0010308553323165783,0.0011679723504828508,0.001345978831419157,0.0003157473275861792,0.0011984513009195145,0.0024629738237752063 +94,"Carbon monoxide, non-fossil","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.71211465181511e-05,1.804552464764834e-05,1.9283702834035476e-05,7.187373259492546e-06,2.2809481318555983e-05,2.209915225820171e-05,1.71211465181511e-05,1.804552464764834e-05,1.9283702834035476e-05,1.0079435517333324e-05,2.2809481318555983e-05,2.2099152258201723e-05,1.7121146518151115e-05,1.804552464764834e-05,1.9283702834035476e-05,1.0079435517333324e-05,2.2809481318555963e-05,2.2099152258201696e-05 +95,"Carbon, organic, in soil or biomass stock","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0031169938657232507,0.003249569334698941,0.003428577876292276,3.1706865511270865e-07,3.7722307006238686e-06,0.002918300223537058,0.0031169938657232507,0.003249569334698941,0.003428577876292276,7.529174716937505e-07,3.7722307006238686e-06,0.002918300223537058,0.0031169938657232606,0.0032495693346989455,0.003428577876292276,7.529174716937499e-07,3.772230700623936e-06,0.00291830022353705 +96,Carboxin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +97,Carfentrazone ethyl ester,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +98,"Cerium, 24% in bastnasite, 2.4% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.6185982178871713,0.780079448242144,1.015003565719815,-1.4226672180607723e-22,7.11815552959686e-21,0.6998076402248771,0.6185982178871713,0.780079448242144,1.015003565719815,4.390862145381556e-22,7.118155540102017e-21,0.6998076402248771,0.6185982178871713,0.7800794482421439,1.015003565719815,4.390862145381556e-22,5.915829458076245e-21,0.6998076402248767 +99,Chloramine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.857254835386745e-11,6.298411268743966e-11,6.918086804556741e-11,1.034743904192382e-12,8.558824359750452e-12,6.440406942627167e-11,5.857254835386745e-11,6.298411268743966e-11,6.918086804556741e-11,6.1596909549874505e-12,8.55882435975045e-12,6.440406942627165e-11,5.857254835386742e-11,6.298411268743967e-11,6.918086804556741e-11,6.1596909549874505e-12,8.558824359750455e-12,6.440406942627163e-11 +100,Chloridazon,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +101,Chloride,"('soil', 'agricultural')",emission,kilogram,biosphere3,4.1629374092566883e-07,4.342684926621175e-07,4.586922924456034e-07,4.055413311987041e-07,9.674940637526083e-07,5.442887914132336e-07,4.1629374092566883e-07,4.342684926621175e-07,4.586922924456034e-07,4.311576119346337e-07,9.674940637526083e-07,5.442887914132336e-07,4.162937409256693e-07,4.3426849266211773e-07,4.586922924456034e-07,4.311576119346337e-07,9.674940637526083e-07,5.442887914132332e-07 +102,Chlorimuron-ethyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +103,Chlorine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0010766429311614841,0.0011162126804467735,0.001169636778508595,3.0198064275533724e-07,0.0003056927435667157,0.001006943905207235,0.0010766429311614841,0.0011162126804467735,0.001169636778508595,6.762417990067146e-07,0.0003056927435667157,0.001006943905207235,0.0010766429311614841,0.0011162126804467733,0.001169636778508595,6.762417990067146e-07,0.00030569274356671556,0.0010069439052072346 +104,Chlormequat,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +105,Chloroacetic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,9.857702104569738e-09,1.026949232664507e-08,1.082553768240167e-08,1.9580195483071463e-11,1.8624527671144322e-10,9.350320925944911e-09,9.857702104569738e-09,1.026949232664507e-08,1.082553768240167e-08,2.8185578199851865e-11,1.8624527671144302e-10,9.350320925944908e-09,9.85770210456974e-09,1.0269492326645071e-08,1.0825537682401672e-08,2.8185578199851862e-11,1.8624527671144359e-10,9.350320925944904e-09 +106,Chloroform,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.277070077291634e-09,4.471969843098645e-09,4.732593178262106e-09,4.792075841347023e-10,2.4075970089215326e-09,4.3774847598070715e-09,4.277070077291634e-09,4.471969843098645e-09,4.732593178262106e-09,5.957522093630842e-10,2.407597008921533e-09,4.3774847598070715e-09,4.277070077291632e-09,4.471969843098645e-09,4.732593178262106e-09,5.957522093630842e-10,2.407597008921532e-09,4.377484759807068e-09 +107,"Chlorosilane, trimethyl-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.87645177223648e-10,6.176614464966756e-10,6.586852323531062e-10,2.6271964048059956e-11,3.288211687203707e-10,7.401750160074806e-10,5.87645177223648e-10,6.176614464966756e-10,6.586852323531062e-10,1.218603755476752e-10,3.288211687203707e-10,7.401750160074806e-10,5.87645177223648e-10,6.176614464966743e-10,6.586852323531067e-10,1.218603755476752e-10,3.288211687203708e-10,7.401750160074802e-10 +108,Chlorosulfonic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.4362472935756156e-10,1.497281868430947e-10,1.5796890603409297e-10,8.252853660094975e-14,4.065682971502039e-13,1.3470165617552104e-10,1.4362472935756156e-10,1.497281868430947e-10,1.5796890603409297e-10,1.534176768890027e-13,4.0656829715020035e-13,1.34701656175521e-10,1.436247293575615e-10,1.4972818684309472e-10,1.57968906034093e-10,1.534176768890027e-13,4.0656829715021075e-13,1.3470165617552094e-10 +109,Chlorothalonil,"('soil', 'agricultural')",emission,kilogram,biosphere3,7.634482200663148e-08,9.428340203349804e-08,1.2034094986233354e-07,7.697963658324747e-09,6.43608585121118e-08,1.4399569229060553e-07,7.634482200663148e-08,9.428340203349804e-08,1.2034094986233354e-07,4.6688449492788583e-08,6.43608585121118e-08,1.4399569229060553e-07,7.634482200663146e-08,9.428340203349804e-08,1.2034094986233354e-07,4.6688449492788583e-08,6.43608585121118e-08,1.4399569229060547e-07 +110,Chlorotoluron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +111,Chlorpyrifos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +112,Chlorsulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +113,Choline chloride,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +114,Chromium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.587928527437863e-07,6.369640877230512e-07,7.377374296246278e-07,3.019284953812785e-08,1.9356702992455912e-07,1.665619425593812e-06,5.587928527437863e-07,6.369640877230512e-07,7.377374296246278e-07,7.487547536533938e-08,1.9356702992455912e-07,1.6656194255938123e-06,5.58792852743786e-07,6.36964087723051e-07,7.377374296246277e-07,7.487547536533938e-08,1.9356702992455912e-07,1.665619425593812e-06 +115,Chromium VI,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.3412178436457306e-08,2.4348869440414883e-08,2.562039525944123e-08,6.27783483329612e-10,7.1109915062194e-09,1.472873040724118e-07,2.3412178436457306e-08,2.4348869440414883e-08,2.562039525944123e-08,1.6569772962386271e-09,7.1109915062194e-09,1.4728730407241182e-07,2.3412178436457306e-08,2.4348869440414877e-08,2.5620395259441233e-08,1.6569772962386271e-09,7.110991506219399e-09,1.4728730407241182e-07 +116,"Chromium, 25.5% in chromite, 11.6% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.003043964434778624,0.0031819092310849313,0.0033689397556431527,0.0001119948567985589,0.0011759241623953006,0.003262395817126994,0.003043964434778624,0.0031819092310849313,0.0033689397556431527,0.00021783451514937105,0.0011759241623953006,0.0032623958171269954,0.003043964434778624,0.003181909231084917,0.0033689397556431527,0.00021783451514937105,0.0011759241623953006,0.003262395817126994 +117,"Chromium, ion","('water', 'ground-')",emission,kilogram,biosphere3,8.883638604316367e-08,9.269899748443687e-08,9.792528317963654e-08,3.8932328056299007e-10,1.350761312943176e-09,8.456971804474182e-08,8.883638604316367e-08,9.269899748443687e-08,9.792528317963654e-08,6.841355333295157e-10,1.3507613129431738e-09,8.456971804474178e-08,8.883638604316366e-08,9.26989974844369e-08,9.792528317963656e-08,6.841355333295157e-10,1.35076131294318e-09,8.456971804474177e-08 +118,"Chrysotile, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.433811287882746e-05,2.495484755979018e-05,2.5782114627381546e-05,2.5027556834804407e-08,8.483770499768453e-06,2.253966852451019e-05,2.433811287882746e-05,2.495484755979018e-05,2.5782114627381546e-05,5.766394267175519e-08,8.483770499768453e-06,2.253966852451019e-05,2.4338112878827463e-05,2.495484755979017e-05,2.5782114627381546e-05,5.766394267175519e-08,8.483770499768444e-06,2.253966852451019e-05 +119,Cinidon-ethyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +120,"Cinnabar, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.2388654547589615e-06,2.2965139714621415e-06,2.3737551171002008e-06,2.318859693537768e-09,7.805721038549638e-07,2.074373297818054e-06,2.2388654547589615e-06,2.2965139714621415e-06,2.3737551171002008e-06,5.371679036678516e-09,7.805721038549638e-07,2.074373297818054e-06,2.238865454758962e-06,2.2965139714621402e-06,2.3737551171002008e-06,5.371679036678516e-09,7.80572103854963e-07,2.074373297818054e-06 +121,"Clay, bentonite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.002393201273359153,0.0025805899700739117,0.002846368764965807,0.00023842747584685385,0.027062551412555196,0.03433338812473704,0.002393201273359153,0.0025805899700739117,0.002846368764965807,0.0003554221340464288,0.027062551412555202,0.03433338812473704,0.0023932012733591528,0.0025805899700739113,0.002846368764965807,0.0003554221340464288,0.027062551412555192,0.03433338812473703 +122,"Clay, unspecified, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.14467795248104112,0.15113792926425662,0.15986759853456475,0.014425074217408882,0.17033096173089982,0.27107923152099433,0.14467795248104112,0.15113792926425662,0.15986759853456475,0.12294142286210925,0.17033096173089982,0.2710792315209944,0.14467795248104112,0.1511379292642566,0.15986759853456475,0.12294142286210925,0.1703309617308998,0.2710792315209944 +123,Clethodim,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +124,Clodinafop-propargyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +125,Clomazone,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +126,Clopyralid,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +127,Cloquintocet-mexyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +128,Cloransulam-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +129,"Coal, brown, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.8003697140197217,0.8354465836293539,0.883336118498824,0.03395610534133481,0.3928579457344922,0.914129019006518,0.8003697140197217,0.8354465836293539,0.883336118498824,0.11762633587962851,0.3928579457344922,0.914129019006518,0.8003697140197217,0.8354465836293539,0.883336118498824,0.11762633587962851,0.3928579457344921,0.914129019006518 +130,"Coal, hard, unspecified, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.0523943370520579,1.097561141388707,1.1588704865166601,1.0176060445301183,2.5014136537272362,6.111924248567216,1.0523943370520579,1.097561141388707,1.1588704865166601,1.089804975120419,2.5014136537272362,6.111924248567216,1.0523943370520579,1.0975611413887068,1.1588704865166601,1.089804975120419,2.5014136537272362,6.111924248567216 +131,Cobalt,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.658796303123361e-07,9.097851005546247e-07,9.703546027151088e-07,6.69277756854813e-08,3.2115250567137337e-07,1.4486216225611382e-06,8.658796303123361e-07,9.097851005546247e-07,9.703546027151088e-07,1.4874705638491103e-07,3.2115250567137337e-07,1.4486216225611384e-06,8.65879630312336e-07,9.097851005546246e-07,9.703546027151085e-07,1.4874705638491103e-07,3.211525056713733e-07,1.4486216225611378e-06 +132,"COD, Chemical Oxygen Demand","('water', 'ground-')",emission,kilogram,biosphere3,1.289878111468297e-07,1.3447470835218258e-07,1.4196426025138924e-07,1.4642095384039843e-07,3.594772269975249e-07,5.318498237483643e-07,1.289878111468297e-07,1.3447470835218258e-07,1.4196426025138924e-07,1.5608203485317303e-07,3.594772269975249e-07,5.318498237483644e-07,1.289878111468297e-07,1.3447470835218258e-07,1.4196426025138924e-07,1.5608203485317303e-07,3.594772269975249e-07,5.318498237483643e-07 +133,"Colemanite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.1523642933733752e-05,2.241786517713617e-05,2.361819344439016e-05,1.4856464899825277e-06,0.13422452061574436,0.1631348977953469,2.1523642933733752e-05,2.241786517713617e-05,2.361819344439016e-05,1.7843879250828717e-06,0.13422452061574436,0.1631348977953469,2.1523642933733746e-05,2.241786517713617e-05,2.361819344439016e-05,1.7843879250828717e-06,0.13422452061574439,0.1631348977953469 +134,Copper,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.406308340937498e-06,2.5179033340157037e-06,2.670508596516071e-06,7.190170347115588e-08,7.949962023310931e-07,4.108534382967777e-06,2.406308340937498e-06,2.5179033340157037e-06,2.670508596516071e-06,2.6306283708783615e-07,7.949962023310931e-07,4.108534382967777e-06,2.4063083409374977e-06,2.517903334015703e-06,2.6705085965160704e-06,2.6306283708783615e-07,7.949962023310931e-07,4.108534382967776e-06 +135,"Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +136,"Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +137,"Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +138,"Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0002577533977126662,0.0002708924326107113,0.000288707282268039,2.365693724466582e-05,0.0001661623324799228,0.00034039321542411255,0.0002577533977126662,0.0002708924326107113,0.000288707282268039,6.619167592280322e-05,0.0001661623324799228,0.00034039321542411255,0.0002577533977126662,0.00027089243261071137,0.0002887072822680391,6.619167592280322e-05,0.0001661623324799228,0.00034039321542411245 +139,"Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +140,"Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0014165477298243123,0.0014857339801686016,0.0015798988266758076,0.00013115728948512453,0.0009167928413675059,0.001872101043123038,0.0014165477298243123,0.0014857339801686016,0.0015798988266758076,0.00036682677760748323,0.0009167928413675059,0.001872101043123038,0.0014165477298243123,0.0014857339801686018,0.0015798988266758083,0.00036682677760748323,0.0009167928413675059,0.001872101043123037 +141,"Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0003757595358654021,0.0003941121778258849,0.00041909074950047785,3.479134629850046e-05,0.00024319240784400175,0.0004966015652173454,0.0003757595358654021,0.0003941121778258849,0.00041909074950047785,9.730604693354541e-05,0.00024319240784400175,0.0004966015652173454,0.0003757595358654021,0.00039411217782588494,0.0004190907495004779,9.730604693354541e-05,0.00024319240784400175,0.0004966015652173452 +142,"Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0018819672542201322,0.0019737346993514296,0.0020986140859042676,0.00017252621882200717,0.001212100205822057,0.002480556840358094,0.0018819672542201322,0.0019737346993514296,0.0020986140859042676,0.0004826140224483836,0.001212100205822057,0.002480556840358094,0.0018819672542201322,0.00197373469935143,0.0020986140859042685,0.0004826140224483836,0.001212100205822057,0.002480556840358093 +143,"Copper, ion","('water', 'ground-')",emission,kilogram,biosphere3,2.1165388291417764e-07,2.2105684363767902e-07,2.3380464681720106e-07,9.117276255880361e-08,7.952476567579451e-07,9.115688953620617e-07,2.1165388291417764e-07,2.2105684363767902e-07,2.3380464681720106e-07,6.8194338072503e-07,7.952476567579451e-07,9.115688953620617e-07,2.1165388291417759e-07,2.2105684363767904e-07,2.3380464681720106e-07,6.8194338072503e-07,7.952476567579452e-07,9.115688953620616e-07 +144,"Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +145,"Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +146,Cumene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.309615167744307e-06,9.342974166244557e-06,1.8112073336466842e-05,7.101119233625063e-08,1.6856754132254027e-06,9.137901114051337e-06,2.309615167744307e-06,9.342974166244557e-06,1.8112073336466842e-05,3.4776133497841555e-07,1.6856754132254027e-06,9.13790111405134e-06,2.3096151677443064e-06,9.342974166244557e-06,1.8112073336466842e-05,3.4776133497841555e-07,1.6856754132254025e-06,9.137901114051332e-06 +147,Cyanazine,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +148,Cyanide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.780545114095264e-07,4.932271278408829e-07,5.126696615659534e-07,4.505011394098905e-09,2.499610627070583e-07,4.7549934327217026e-07,4.780545114095264e-07,4.932271278408829e-07,5.126696615659534e-07,2.827997052318088e-08,2.499610627070583e-07,4.754993432721703e-07,4.780545114095264e-07,4.932271278408829e-07,5.126696615659534e-07,2.827997052318088e-08,2.4996106270705825e-07,4.7549934327216994e-07 +149,Cyanoacetic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.176232375851267e-10,1.226217391237317e-10,1.2937057741042322e-10,6.758776343476535e-14,3.3296412364164724e-13,1.1031557714730647e-10,1.176232375851267e-10,1.226217391237317e-10,1.2937057741042322e-10,1.2564331087348842e-13,3.3296412364164436e-13,1.1031557714730642e-10,1.1762323758512666e-10,1.2262173912373176e-10,1.2937057741042324e-10,1.2564331087348842e-13,3.329641236416529e-13,1.1031557714730639e-10 +150,Cyclanilide,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +151,Cyclohexane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +152,Cycloxydim,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +153,Cyfluthrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +154,Cymoxanil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +155,Cypermethrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,3.49148041137339e-07,3.6399910603100767e-07,3.840516800394588e-07,3.623544072676206e-11,4.269029087424124e-10,3.268962773831037e-07,3.49148041137339e-07,3.6399910603100767e-07,3.840516800394588e-07,8.725970862209981e-11,4.269029087424123e-10,3.268962773831037e-07,3.491480411373401e-07,3.6399910603100815e-07,3.840516800394588e-07,8.725970862209974e-11,4.2690290874241987e-10,3.268962773831028e-07 +156,Cyproconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +157,Cyprodinil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +158,Deltamethrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +159,"Diatomite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.3792277319646905e-10,2.4808578560644975e-10,2.6194627887771943e-10,6.034878619373242e-11,2.2385732849702881e-10,2.79793474924663e-10,2.3792277319646905e-10,2.4808578560644975e-10,2.6194627887771943e-10,8.51941332226478e-11,2.2385732849702881e-10,2.797934749246633e-10,2.379227731964691e-10,2.4808578560644975e-10,2.6194627887771933e-10,8.51941332226478e-11,2.2385732849702876e-10,2.7979347492466323e-10 +160,Diazinon,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +161,Dicamba,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +162,Dichlorprop-P,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +163,Diclofop,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +164,Diclofop-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +165,Dicofol,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +166,Dicrotophos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +167,Diethyl ether,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +168,Diethylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.167961974718093e-10,6.438785598777634e-10,6.805522832210468e-10,5.254941532141892e-13,4.525555186610089e-12,5.817335356868005e-10,6.167961974718093e-10,6.438785598777634e-10,6.805522832210468e-10,2.8792676618196173e-12,4.525555186610089e-12,5.817335356868004e-10,6.167961974718112e-10,6.438785598777643e-10,6.805522832210468e-10,2.8792676618196173e-12,4.5255551866101035e-12,5.817335356867988e-10 +169,Diethylene glycol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +170,Difenoconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +171,Diflubenzuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +172,Diflufenican,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +173,Diflufenzopyr-sodium,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +174,Dimethachlor,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +175,Dimethenamid,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +176,Dimethipin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +177,Dimethoate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +178,Dimethomorph,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +179,Dimethyl malonate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.4749924562309743e-10,1.5376735404118404e-10,1.6223038035968096e-10,8.475488219030502e-14,4.1753616264975217e-13,1.383354576918693e-10,1.4749924562309743e-10,1.5376735404118404e-10,1.6223038035968096e-10,1.5755638031724111e-13,4.1753616264974863e-13,1.383354576918692e-10,1.474992456230974e-10,1.537673540411841e-10,1.6223038035968096e-10,1.5755638031724111e-13,4.175361626497593e-13,1.3833545769186919e-10 +180,Dimethylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.0478265109572315e-22,3.9863001970455596e-23,1.0464497034802033e-22,-6.462021046632782e-25,3.233199602937328e-23,1.0508690606177724e-22,1.0478265109572315e-22,3.9863001970455596e-23,1.0464497034802033e-22,1.9944118509313065e-24,3.2331996077089676e-23,8.324214804105892e-23,8.29378930700544e-23,6.170775656247408e-23,8.280021113340102e-23,1.9944118509313065e-24,2.6870805752091137e-23,6.139739191244252e-23 +181,Dinitrogen monoxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.00013349450832272054,0.00015225098538216723,0.00017920783907002534,3.200096222941005e-05,0.00012316654083728982,0.0002550975840822891,0.00013349450832272054,0.00015225098538216723,0.00017920783907002534,7.702215049210705e-05,0.00012316654083728982,0.0002550975840822891,0.0001334945083227205,0.0001522509853821672,0.00017920783907002534,7.702215049210705e-05,0.00012316654083728982,0.0002550975840822892 +182,"Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin","('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.282201327629726e-13,5.54579753458981e-13,5.900748058104759e-13,5.977196148644167e-14,3.551204858383407e-13,1.2480020623403262e-12,5.282201327629726e-13,5.54579753458981e-13,5.900748058104759e-13,1.2030348393140536e-13,3.551204858383407e-13,1.248002062340326e-12,5.28220132762973e-13,5.545797534589809e-13,5.900748058104758e-13,1.2030348393140536e-13,3.551204858383399e-13,1.2480020623403248e-12 +183,Dipropylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.872409716372078e-10,4.0425184657864445e-10,4.272881511818163e-10,3.308547976850401e-13,2.8639484403272836e-12,3.652548296452339e-10,3.872409716372078e-10,4.0425184657864445e-10,4.272881511818163e-10,1.826525019563304e-12,2.8639484403272836e-12,3.652548296452339e-10,3.8724097163720894e-10,4.0425184657864496e-10,4.272881511818163e-10,1.8265250195633036e-12,2.863948440327292e-12,3.6525482964523285e-10 +184,Diquat,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +185,Dissolved solids,"('water', 'ground-')",emission,kilogram,biosphere3,0.00014095868961381224,0.00014692889145919596,0.0001550771027996819,0.00015742178895106443,0.0003865311391947677,0.0006062013181752473,0.00014095868961381224,0.00014692889145919596,0.0001550771027996819,0.0001678573053742514,0.0003865311391947677,0.0006062013181752474,0.00014095868961381224,0.00014692889145919593,0.0001550771027996819,0.0001678573053742514,0.0003865311391947677,0.0006062013181752474 +186,Disulfoton,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +187,Dithianon,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +188,Diuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +189,"Dolomite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0007661722218044888,0.0008042492210850713,0.0008564748373085474,2.2009487127921532e-05,0.00017044653467490433,0.0008358359525734273,0.0007661722218044888,0.0008042492210850713,0.0008564748373085474,5.7557434898415116e-05,0.00017044653467490433,0.0008358359525734273,0.00076617222180449,0.0008042492210850716,0.0008564748373085474,5.7557434898415116e-05,0.00017044653467490433,0.0008358359525734278 +190,DSMA,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +191,Endosulfan,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +192,Endothall,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +193,Epoxiconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +194,EPTC,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +195,Esfenvalerate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +196,Ethalfluralin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +197,Ethane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.962398751632993e-05,6.517504290574928e-05,7.31373729234954e-05,2.5484063505557108e-05,7.20807495537459e-05,7.121911139152698e-05,5.962398751632993e-05,6.517504290574928e-05,7.31373729234954e-05,2.8064992387889134e-05,7.20807495537459e-05,7.121911139152698e-05,5.9623987516329934e-05,6.517504290574928e-05,7.313737292349539e-05,2.8064992387889134e-05,7.208074955374587e-05,7.121911139152695e-05 +198,"Ethane, 1,1,1,2-tetrafluoro-, HFC-134a","('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.3366214343387643e-10,4.51465489919042e-10,4.752721470218403e-10,1.5789494177760765e-12,1.4818896991890812e-10,4.2475417430255237e-10,4.3366214343387643e-10,4.51465489919042e-10,4.752721470218403e-10,6.455587660873031e-12,1.4818896991890812e-10,4.2475417430255237e-10,4.3366214343387643e-10,4.51465489919042e-10,4.752721470218403e-10,6.455587660873031e-12,1.4818896991890804e-10,4.2475417430255206e-10 +199,"Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.852823762829896e-10,1.9287805348470438e-10,2.0303013801572857e-10,5.072921736879621e-13,6.28113174085781e-11,1.80746684419612e-10,1.852823762829896e-10,1.9287805348470438e-10,2.0303013801572857e-10,2.232241235555551e-12,6.281131740857813e-11,1.8074668441961194e-10,1.852823762829896e-10,1.9287805348470438e-10,2.0303013801572857e-10,2.232241235555551e-12,6.28113174085781e-11,1.8074668441961181e-10 +200,"Ethane, 1,1-difluoro-, HFC-152a","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.7643826557159472e-09,1.840812594262239e-09,1.9451582577797654e-09,7.742679780881851e-11,8.684744575936698e-10,2.0239010495798108e-09,1.7643826557159472e-09,1.840812594262239e-09,1.9451582577797654e-09,2.647853136411386e-10,8.684744575936698e-10,2.0239010495798108e-09,1.7643826557159472e-09,1.840812594262239e-09,1.9451582577797654e-09,2.647853136411386e-10,8.684744575936696e-10,2.02390104957981e-09 +201,"Ethane, 1,2-dichloro-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.3111159771274054e-07,6.449850309240141e-07,1.1613971057419822e-06,1.3052835359819295e-08,1.579546314320652e-07,6.556975116412119e-07,2.3111159771274054e-07,6.449850309240141e-07,1.1613971057419822e-06,4.538366605715513e-08,1.579546314320652e-07,6.556975116412119e-07,2.311115977127405e-07,6.449850309240141e-07,1.1613971057419822e-06,4.538366605715513e-08,1.579546314320652e-07,6.556975116412115e-07 +202,"Ethane, hexafluoro-, HFC-116","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2812606109964349e-08,1.3337961679814796e-08,1.404018535769004e-08,3.686843936338446e-11,4.350173994745238e-09,1.2506411755500977e-08,1.2812606109964349e-08,1.3337961679814796e-08,1.404018535769004e-08,1.6036241401081574e-10,4.350173994745239e-09,1.2506411755500974e-08,1.2812606109964349e-08,1.3337961679814796e-08,1.404018535769004e-08,1.6036241401081574e-10,4.350173994745238e-09,1.2506411755500965e-08 +203,Ethanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.534905789426727e-06,6.811797821075534e-06,7.187254848893425e-06,5.120688346367382e-07,2.4223116323384053e-06,9.245875462817134e-06,6.534905789426727e-06,6.811797821075534e-06,7.187254848893425e-06,1.2416292768349462e-06,2.4223116323384053e-06,9.245875462817134e-06,6.534905789426725e-06,6.8117978210755335e-06,7.187254848893424e-06,1.2416292768349462e-06,2.4223116323384053e-06,9.245875462817131e-06 +204,Ethene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.1813024796225324e-05,2.788878429705694e-05,3.570144146357954e-05,5.385337850087149e-07,9.608104408566054e-06,2.8815347023328206e-05,2.1813024796225324e-05,2.788878429705694e-05,3.570144146357954e-05,1.616446319856458e-06,9.608104408566054e-06,2.8815347023328206e-05,2.181302479622529e-05,2.7888784297056975e-05,3.570144146357954e-05,1.616446319856458e-06,9.60810440856605e-06,2.8815347023328206e-05 +205,"Ethene, chloro-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,9.720773793845142e-08,1.8311441545308439e-07,2.905226024740137e-07,6.008720712163898e-09,6.199283906707309e-08,1.9664171673517242e-07,9.720773793845142e-08,1.8311441545308439e-07,2.905226024740137e-07,2.124207226912326e-08,6.199283906707309e-08,1.9664171673517245e-07,9.720773793845142e-08,1.8311441545308439e-07,2.905226024740137e-07,2.124207226912326e-08,6.199283906707309e-08,1.9664171673517232e-07 +206,"Ethene, tetrachloro-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.0623945056221655e-12,2.15039162461767e-12,2.269849917320618e-12,6.673122191660514e-14,9.26636589348635e-13,2.266617891556384e-12,2.0623945056221655e-12,2.15039162461767e-12,2.269849917320618e-12,2.2976047748758867e-13,9.266365893486352e-13,2.266617891556384e-12,2.0623945056221655e-12,2.15039162461767e-12,2.269849917320618e-12,2.2976047748758867e-13,9.26636589348635e-13,2.2666178915563825e-12 +207,Ethephon,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +208,Ethofumesate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +209,Ethoprop,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +210,Ethyl acetate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.005263004494315e-06,7.292459026734177e-06,7.67632110346456e-06,1.9397911559686126e-08,2.375404374711611e-06,6.834667559220839e-06,7.005263004494315e-06,7.292459026734177e-06,7.67632110346456e-06,8.512812843329751e-08,2.375404374711611e-06,6.834667559220837e-06,7.005263004494315e-06,7.292459026734177e-06,7.67632110346456e-06,8.512812843329751e-08,2.375404374711611e-06,6.834667559220834e-06 +211,Ethyl cellulose,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.4173131654298393e-08,1.475416072386715e-08,1.553074116316532e-08,3.879695074172486e-11,4.80470620060812e-09,1.382614059989446e-08,1.4173131654298393e-08,1.475416072386715e-08,1.553074116316532e-08,1.7072710848291445e-10,4.80470620060812e-09,1.382614059989446e-08,1.4173131654298393e-08,1.475416072386715e-08,1.553074116316532e-08,1.7072710848291445e-10,4.80470620060812e-09,1.3826140599894454e-08 +212,Ethylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.33944331934202e-11,3.544557111358259e-11,3.829396309236767e-11,3.6436916931650504e-13,1.0406032289504983e-11,4.3581197936496795e-11,3.33944331934202e-11,3.544557111358259e-11,3.829396309236767e-11,2.0638439427387667e-12,1.0406032289504983e-11,4.358119793649678e-11,3.3394433193420186e-11,3.544557111358259e-11,3.829396309236767e-11,2.0638439427387667e-12,1.0406032289504983e-11,4.358119793649677e-11 +213,Ethylene diamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.544237821834061e-11,9.208173073700462e-11,1.1622792381978132e-10,7.053891052393755e-12,6.29959343715661e-11,1.4215866145015903e-10,7.544237821834061e-11,9.208173073700462e-11,1.1622792381978132e-10,4.244999893965495e-11,6.29959343715661e-11,1.4215866145015903e-10,7.54423782183406e-11,9.208173073700462e-11,1.1622792381978132e-10,4.244999893965495e-11,6.29959343715661e-11,1.4215866145015898e-10 +214,Ethylene glycol monoethyl ether,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +215,Ethylene oxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.8638392546981067e-06,2.9544091226189624e-06,3.067330026844743e-06,1.2184190772447117e-09,1.4149476563048167e-06,2.660513933020147e-06,2.8638392546981067e-06,2.9544091226189624e-06,3.067330026844743e-06,4.813578509439237e-09,1.4149476563048167e-06,2.660513933020147e-06,2.863839254698104e-06,2.954409122618966e-06,3.067330026844743e-06,4.813578509439237e-09,1.4149476563048159e-06,2.6605139330201473e-06 +216,Ethyne,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.9181572407491426e-06,2.000335332551086e-06,2.1113404356093282e-06,5.140167430598315e-08,9.84147571213695e-07,2.21051847231727e-06,1.9181572407491426e-06,2.000335332551086e-06,2.1113404356093282e-06,1.624365728332064e-07,9.84147571213695e-07,2.21051847231727e-06,1.9181572407491426e-06,2.0003353325510855e-06,2.1113404356093287e-06,1.624365728332064e-07,9.841475712136949e-07,2.2105184723172693e-06 +217,Etridiazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +218,"Europium, 0.06% in bastnasite, 0.006% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0030703594836786197,0.0038718577950541534,0.005037883611465345,-3.5642838108330093e-25,1.783349345162867e-23,0.0034734355237135686,0.0030703594836786197,0.0038718577950541534,0.005037883611465345,1.1000660352401851e-24,1.7833493477947796e-23,0.0034734355237135686,0.0030703594836786197,0.003871857795054153,0.005037883611465345,1.1000660352401851e-24,1.4821242028625598e-23,0.003473435523713567 +219,"Feldspar, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.769067465063699e-09,1.848549779440225e-09,1.9560360967950054e-09,1.184080810244753e-10,9.253228111460894e-10,2.245545850594566e-09,1.769067465063699e-09,1.848549779440225e-09,1.9560360967950054e-09,3.7841063767947905e-10,9.253228111460894e-10,2.245545850594566e-09,1.7690674650636993e-09,1.848549779440225e-09,1.9560360967950054e-09,3.7841063767947905e-10,9.253228111460894e-10,2.2455458505945653e-09 +220,Fenbuconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +221,Fenoxaprop,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +222,Fenoxaprop ethyl ester,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +223,Fenoxaprop-P ethyl ester,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +224,Fenpiclonil,"('soil', 'agricultural')",emission,kilogram,biosphere3,9.201511736410644e-09,1.0170702157598646e-08,1.1551570175775745e-08,3.064502572155193e-10,2.5498652832738238e-09,1.1478284041945933e-08,9.201511736410644e-09,1.0170702157598646e-08,1.1551570175775745e-08,1.8436419060838981e-09,2.5498652832738234e-09,1.1478284041945932e-08,9.201511736410641e-09,1.0170702157598649e-08,1.1551570175775745e-08,1.8436419060838981e-09,2.549865283273824e-09,1.1478284041945927e-08 +225,Fenpropathrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +226,Fenpropidin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +227,Fenpropimorph,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +228,Fentin hydroxide,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +229,Fipronil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +230,Florasulam,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +231,Fluazifop-P-butyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +232,Flucarbazone sodium salt,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +233,Fludioxonil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +234,Flufenacet,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +235,Flumetsulam,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +236,Flumioxazin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +237,Fluometuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +238,Fluoride,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +239,Fluorine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.17820747561099e-08,5.415377480770701e-08,5.7361178417727305e-08,4.813126304552498e-08,1.1651132453249151e-07,6.784923306380572e-08,5.17820747561099e-08,5.415377480770701e-08,5.7361178417727305e-08,5.198849522919918e-08,1.1651132453249151e-07,6.784923306380572e-08,5.1782074756109966e-08,5.415377480770705e-08,5.7361178417727305e-08,5.198849522919918e-08,1.1651132453249151e-07,6.784923306380573e-08 +240,"Fluorine, 4.5% in apatite, 1% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.0124080935727317e-05,2.1580381970966982e-05,2.363363674088375e-05,1.306331697376217e-05,3.898026184674283e-05,5.3116171856699815e-05,2.0124080935727317e-05,2.1580381970966982e-05,2.363363674088375e-05,3.336371471009259e-05,3.898026184674283e-05,5.3116171856699815e-05,2.0124080935727317e-05,2.1580381970966982e-05,2.363363674088375e-05,3.336371471009259e-05,3.898026184674283e-05,5.3116171856699815e-05 +241,"Fluorine, 4.5% in apatite, 3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.0097499008142424e-05,4.2069129903911494e-05,4.476981582171658e-05,5.738194657573488e-06,1.7176113639555193e-05,5.260985439698307e-05,4.0097499008142424e-05,4.2069129903911494e-05,4.476981582171658e-05,1.4656394287164179e-05,1.7176113639555193e-05,5.2609854396983065e-05,4.009749900814248e-05,4.206912990391152e-05,4.476981582171658e-05,1.4656394287164179e-05,1.7176113639555193e-05,5.260985439698301e-05 +242,"Fluorspar, 92%, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0005455198462824104,0.0005864540886652225,0.0006442844780709472,0.00011653988153261052,0.0013424132631003022,0.001752147712453551,0.0005455198462824104,0.0005864540886652225,0.0006442844780709472,0.000705442960316202,0.0013424132631003022,0.001752147712453551,0.0005455198462824104,0.0005864540886652225,0.0006442844780709472,0.000705442960316202,0.0013424132631003017,0.001752147712453551 +243,Fluosilicic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.567211192102984e-07,1.705302412823053e-07,1.900725622798311e-07,1.3161793150104417e-08,5.116960674824237e-06,6.319254277984104e-06,1.567211192102984e-07,1.705302412823053e-07,1.900725622798311e-07,5.290906826607507e-08,5.116960674824239e-06,6.319254277984106e-06,1.5672111921029843e-07,1.705302412823053e-07,1.9007256227983113e-07,5.290906826607507e-08,5.116960674824238e-06,6.319254277984101e-06 +244,Flupyrsulfuron-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +245,Fluquinconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +246,Fluroxypyr,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +247,Flurtamone,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +248,Flusilazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +249,Flutolanil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +250,Fomesafen,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +251,Foramsulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +252,Formaldehyde,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.3593459493038433e-05,1.4242210532189855e-05,1.511310264874656e-05,1.553042492314281e-06,6.315788122329344e-06,2.3174305694279913e-05,1.3593459493038433e-05,1.4242210532189855e-05,1.511310264874656e-05,2.950022608173238e-06,6.315788122329344e-06,2.3174305694279913e-05,1.3593459493038433e-05,1.4242210532189853e-05,1.511310264874656e-05,2.950022608173238e-06,6.315788122329342e-06,2.3174305694279906e-05 +253,Formamide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.787725405244447e-11,1.9638437609525498e-11,2.2141562576118308e-11,5.318387888549488e-13,4.4226013728531256e-12,2.170025967865444e-11,1.787725405244447e-11,1.9638437609525498e-11,2.2141562576118308e-11,3.195392719146232e-12,4.4226013728531256e-12,2.1700259678654434e-11,1.7877254052444464e-11,1.96384376095255e-11,2.2141562576118308e-11,3.195392719146232e-12,4.422601372853126e-12,2.1700259678654428e-11 +254,Formic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.775926881862608e-09,9.13599445825893e-09,9.617289291115532e-09,2.4145240431778832e-11,2.974506473618607e-09,8.562234484902918e-09,8.775926881862608e-09,9.13599445825893e-09,9.617289291115532e-09,1.0651865955619461e-10,2.974506473618607e-09,8.562234484902918e-09,8.775926881862608e-09,9.13599445825893e-09,9.617289291115532e-09,1.0651865955619461e-10,2.974506473618607e-09,8.562234484902914e-09 +255,"Gadolinium, 0.15% in bastnasite, 0.015% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.007770196975036775,0.009798558731258782,0.012749434783283114,-8.895478314902878e-25,4.450752597079246e-23,0.008790266528337719,0.007770196975036775,0.009798558731258782,0.012749434783283114,2.7454641888220607e-24,4.4507526036477815e-23,0.008790266528337719,0.007770196975036775,0.009798558731258782,0.012749434783283114,2.7454641888220607e-24,3.6989769631939977e-23,0.008790266528337714 +256,"Gallium, 0.014% in bauxite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.3589394708504069e-11,1.417806003242754e-11,1.498173274000874e-11,5.964861359141422e-13,6.689160748542024e-12,1.5588694877383322e-11,1.3589394708504069e-11,1.417806003242754e-11,1.498173274000874e-11,2.039745119116525e-12,6.689160748542024e-12,1.5588694877383322e-11,1.3589394708504069e-11,1.417806003242754e-11,1.498173274000874e-11,2.039745119116525e-12,6.689160748542024e-12,1.558869487738332e-11 +257,"Gas, mine, off-gas, process, coal mining","('natural resource', 'in ground')",natural resource,cubic meter,biosphere3,0.010496030812457301,0.010921844624750257,0.011502253739582413,0.010081685714491263,0.024778316735668666,0.06351175062247913,0.010496030812457301,0.010921844624750257,0.011502253739582413,0.010848393477554515,0.024778316735668666,0.06351175062247913,0.010496030812457301,0.010921844624750255,0.011502253739582413,0.010848393477554515,0.024778316735668666,0.06351175062247913 +258,"Gas, natural, in ground","('natural resource', 'in ground')",natural resource,cubic meter,biosphere3,0.822947250091561,0.9007132118507091,1.0038545312660139,0.45938222778299265,1.1970480693095984,0.9728573788216405,0.822947250091561,0.9007132118507091,1.0038545312660139,0.5340564112441444,1.1970480693095984,0.9728573788216406,0.8229472500915608,0.9007132118507094,1.0038545312660139,0.5340564112441444,1.1970480693095984,0.9728573788216406 +259,Glufosinate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +260,Glyphosate,"('soil', 'agricultural')",emission,kilogram,biosphere3,4.903191478047776e-06,5.111741991950366e-06,5.393341203693985e-06,7.69871272401116e-10,1.063022685459473e-08,4.592493192819596e-06,4.903191478047776e-06,5.111741991950366e-06,5.393341203693985e-06,2.5047660316488374e-09,1.063022685459473e-08,4.592493192819596e-06,4.903191478047792e-06,5.111741991950373e-06,5.393341203693985e-06,2.5047660316488366e-09,1.0630226854594833e-08,4.5924931928195835e-06 +261,"Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.3883151139851646e-08,1.4452292747697474e-08,1.521298504816654e-08,3.8008855514254275e-11,4.706423683539486e-09,1.3543283184336392e-08,1.3883151139851646e-08,1.4452292747697474e-08,1.521298504816654e-08,1.6725312750913778e-10,4.706423683539486e-09,1.3543283184336392e-08,1.3883151139851604e-08,1.4452292747697474e-08,1.521298504816654e-08,1.6725312750913778e-10,4.706423683539486e-09,1.3543283184336232e-08 +262,"Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.5458687354027928e-08,2.6502369593349296e-08,2.789731424819263e-08,6.970000265325248e-11,8.630560040001253e-09,2.4835443276185107e-08,2.5458687354027928e-08,2.6502369593349296e-08,2.789731424819263e-08,3.0670597229062153e-10,8.630560040001253e-09,2.4835443276185107e-08,2.5458687354027855e-08,2.6502369593349296e-08,2.789731424819263e-08,3.0670597229062153e-10,8.630560040001253e-09,2.4835443276184806e-08 +263,"Gold, Au 1.4E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.0482607657937176e-08,3.173224617119864e-08,3.340246388578408e-08,8.345433637028879e-11,1.0333681861214604e-08,2.9736374972716357e-08,3.0482607657937176e-08,3.173224617119864e-08,3.340246388578408e-08,3.672301646618958e-10,1.0333681861214604e-08,2.9736374972716357e-08,3.048260765793709e-08,3.173224617119864e-08,3.340246388578408e-08,3.672301646618958e-10,1.0333681861214604e-08,2.9736374972716006e-08 +264,"Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.655896731320135e-08,4.8467658302977476e-08,5.101873965021544e-08,1.2746764788040177e-10,1.57836086555448e-08,4.541917547383802e-08,4.655896731320135e-08,4.8467658302977476e-08,5.101873965021544e-08,5.609051678662909e-10,1.57836086555448e-08,4.541917547383802e-08,4.655896731320122e-08,4.8467658302977476e-08,5.101873965021544e-08,5.609051678662909e-10,1.57836086555448e-08,4.541917547383748e-08 +265,"Gold, Au 4.3E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.1539198671859268e-08,1.2012249640496407e-08,1.264451096998317e-08,3.159165757194483e-11,3.911817815973081e-09,1.1256712098309754e-08,1.1539198671859268e-08,1.2012249640496407e-08,1.264451096998317e-08,1.3901506208826943e-10,3.911817815973081e-09,1.1256712098309754e-08,1.1539198671859233e-08,1.2012249640496407e-08,1.264451096998317e-08,1.3901506208826943e-10,3.911817815973081e-09,1.125671209830962e-08 +266,"Gold, Au 4.9E-5%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.763785359525175e-08,2.8770871039281664e-08,3.028521761664157e-08,7.566603161810545e-11,9.369302871285945e-09,2.6961262138625015e-08,2.763785359525175e-08,2.8770871039281664e-08,3.028521761664157e-08,3.329587558340295e-10,9.369302871285945e-09,2.6961262138625015e-08,2.763785359525167e-08,2.8770871039281664e-08,3.028521761664157e-08,3.329587558340295e-10,9.369302871285945e-09,2.6961262138624694e-08 +267,"Gold, Au 6.7E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.2787886002005525e-08,4.454198101767573e-08,4.688643546307855e-08,1.1714330744917965e-10,1.4505202492816773e-08,4.174041254120744e-08,4.2787886002005525e-08,4.454198101767573e-08,4.688643546307855e-08,5.154742143556119e-10,1.4505202492816773e-08,4.174041254120744e-08,4.278788600200539e-08,4.454198101767573e-08,4.688643546307855e-08,5.154742143556119e-10,1.4505202492816773e-08,4.1740412541206945e-08 +268,"Gold, Au 7.1E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.8247776180169524e-08,5.022570011398722e-08,5.286931549314878e-08,1.320912431877146e-10,1.6356119287259322e-08,4.706664135835083e-08,4.8247776180169524e-08,5.022570011398722e-08,5.286931549314878e-08,5.812506871860052e-10,1.6356119287259322e-08,4.706664135835083e-08,4.8247776180169385e-08,5.022570011398722e-08,5.286931549314878e-08,5.812506871860052e-10,1.6356119287259322e-08,4.706664135835027e-08 +269,"Granite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.572118960065439e-11,1.7773005128510282e-11,2.071335681715116e-11,1.1314310175471267e-12,9.800098802430449e-12,2.2396611362904e-11,1.572118960065439e-11,1.7773005128510282e-11,2.071335681715116e-11,5.893271833271727e-12,9.800098802430449e-12,2.2396611362904055e-11,1.572118960065439e-11,1.7773005128510308e-11,2.071335681715116e-11,5.893271833271727e-12,9.80009880243049e-12,2.2396611362904087e-11 +270,"Gravel, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.2367709448372537,2.3263029216151248,2.448202464809121,0.4854207046060667,4.324678185802217,6.362771316680888,2.2367709448372537,2.3263029216151248,2.448202464809121,3.837145210955758,4.324678185802217,6.362771316680888,2.2367709448372537,2.3263029216151243,2.448202464809121,3.837145210955758,4.324678185802217,6.362771316680887 +271,"Gypsum, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.392290269311719e-07,4.6485128722833445e-07,5.00489002957693e-07,9.362196465359309e-08,6.780847916822115e-07,8.824907487105571e-07,4.392290269311719e-07,4.6485128722833445e-07,5.00489002957693e-07,1.287120745283027e-07,6.780847916822117e-07,8.824907487105574e-07,4.392290269311719e-07,4.6485128722833456e-07,5.004890029576929e-07,1.287120745283027e-07,6.780847916822117e-07,8.824907487105574e-07 +272,Halosulfuron-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,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,"Heat, waste","('air', 'urban air close to ground')",emission,megajoule,biosphere3,76.67345862436937,81.35291717946741,87.65968087081622,14.544675163426598,50.27718817674222,135.49438115760424,76.67345862436937,81.35291717946741,87.65968087081622,20.17631296088628,50.27718817674222,135.49438115760424,76.67345862436936,81.3529171794674,87.6596808708162,20.17631296088628,50.27718817674221,135.49438115760424 +274,Helium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +275,Heptane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.2887422470642926e-05,4.761931834018955e-05,5.4453949447270616e-05,9.158719972057527e-07,1.2423984326541348e-05,4.679867851780768e-05,4.2887422470642926e-05,4.761931834018955e-05,5.4453949447270616e-05,2.1339251742750634e-06,1.2423984326541348e-05,4.679867851780768e-05,4.288742247064293e-05,4.761931834018954e-05,5.445394944727061e-05,2.1339251742750634e-06,1.2423984326541341e-05,4.6798678517807656e-05 +276,Hexane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.00018699065880301688,0.00020115721051103012,0.0002212401120222465,1.6080457265576222e-05,5.9223720368383805e-05,0.00019144504778702664,0.00018699065880301688,0.00020115721051103012,0.0002212401120222465,1.9268553220952334e-05,5.9223720368383805e-05,0.00019144504778702664,0.00018699065880301718,0.00020115721051103025,0.00022124011202224648,1.9268553220952334e-05,5.9223720368383785e-05,0.00019144504778702642 +277,"Hydrocarbons, aliphatic, alkanes, cyclic","('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.925195210051754e-07,1.0241185161309525e-06,1.191984413296654e-06,1.034998453074701e-09,2.323989031726143e-08,9.295163263453788e-07,8.925195210051754e-07,1.0241185161309525e-06,1.191984413296654e-06,4.598604697183784e-09,2.323989031726143e-08,9.295163263453788e-07,8.925195210051782e-07,1.0241185161309533e-06,1.1919844132966543e-06,4.598604697183784e-09,2.3239890317261444e-08,9.295163263453765e-07 +278,"Hydrocarbons, aliphatic, alkanes, unspecified","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.243976816093742e-05,2.36846752244323e-05,2.541589753084033e-05,2.070706462034234e-06,9.56669813240281e-06,4.7738688919002794e-05,2.243976816093742e-05,2.36846752244323e-05,2.541589753084033e-05,3.897669879062718e-06,9.56669813240281e-06,4.7738688919002794e-05,2.2439768160937416e-05,2.36846752244323e-05,2.5415897530840322e-05,3.897669879062718e-06,9.566698132402809e-06,4.773868891900279e-05 +279,"Hydrocarbons, aliphatic, unsaturated","('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.0326140246223205e-06,7.319531527968518e-06,7.708286931045016e-06,3.0852621774551818e-06,8.44953201400565e-06,2.7074837508121446e-05,7.0326140246223205e-06,7.319531527968518e-06,7.708286931045016e-06,3.509666766118851e-06,8.44953201400565e-06,2.707483750812145e-05,7.032614024622325e-06,7.31953152796852e-06,7.708286931045016e-06,3.509666766118851e-06,8.449532014005648e-06,2.707483750812145e-05 +280,"Hydrocarbons, aromatic","('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.464482520375904e-06,4.626733444481834e-06,6.089864964828604e-06,7.823539332568292e-08,1.0111031125576547e-06,4.803895759820648e-06,3.464482520375904e-06,4.626733444481834e-06,6.089864964828604e-06,4.677451334696897e-07,1.0111031125576545e-06,4.803895759820649e-06,3.4644825203758964e-06,4.62673344448184e-06,6.0898649648286035e-06,4.677451334696897e-07,1.0111031125576545e-06,4.8038957598206464e-06 +281,"Hydrocarbons, chlorinated","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.691403945359837e-08,3.0411843716850827e-08,3.487280062199188e-08,4.050487600143478e-10,9.90335367275572e-09,2.8901731545802382e-08,2.691403945359837e-08,3.0411843716850827e-08,3.487280062199188e-08,8.565883271474028e-10,9.90335367275572e-09,2.8901731545802382e-08,2.691403945359837e-08,3.0411843716850827e-08,3.487280062199187e-08,8.565883271474028e-10,9.903353672755718e-09,2.890173154580237e-08 +282,Hydrogen,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.00027205293434414427,0.000280666771207086,0.0002922050073141614,3.7435213631796543e-06,0.00011461265532954042,0.00027179141622000455,0.00027205293434414427,0.000280666771207086,0.0002922050073141614,1.944604258577944e-05,0.00011461265532954042,0.00027179141622000455,0.00027205293434414427,0.0002806667712070859,0.0002922050073141614,1.944604258577944e-05,0.00011461265532954033,0.0002717914162200045 +283,Hydrogen chloride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0003732400429540755,0.0003884184958278716,0.0004088578519229009,4.694814807931251e-06,8.741075962693727e-05,0.0030102765078911537,0.0003732400429540755,0.0003884184958278716,0.0004088578519229009,1.6913754519234834e-05,8.741075962693727e-05,0.0030102765078911537,0.0003732400429540755,0.0003884184958278715,0.0004088578519229009,1.6913754519234834e-05,8.741075962693724e-05,0.0030102765078911537 +284,Hydrogen fluoride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.4652582039617028e-05,2.5590645012827648e-05,2.6858112321703783e-05,2.030764874295836e-07,3.704539181440149e-06,0.00025989342605946985,2.4652582039617028e-05,2.5590645012827648e-05,2.6858112321703783e-05,8.092621877970348e-07,3.704539181440149e-06,0.0002598934260594699,2.4652582039617028e-05,2.559064501282764e-05,2.6858112321703783e-05,8.092621877970348e-07,3.704539181440148e-06,0.0002598934260594699 +285,Hydrogen peroxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.0500478975508861e-08,1.0930955486714226e-08,1.1506317745673359e-08,2.888946266481318e-11,3.5602164262341597e-09,1.0244011250985164e-08,1.0500478975508861e-08,1.0930955486714226e-08,1.1506317745673359e-08,1.2697633695979353e-10,3.5602164262341597e-09,1.0244011250985164e-08,1.0500478975508861e-08,1.0930955486714226e-08,1.1506317745673359e-08,1.2697633695979353e-10,3.5602164262341593e-09,1.0244011250985157e-08 +286,Hydrogen sulfide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.132125322492702e-08,3.613017575824004e-08,4.3011916213464765e-08,2.3307211015934223e-09,2.5789605944734953e-08,5.131903485247926e-08,3.132125322492702e-08,3.613017575824004e-08,4.3011916213464765e-08,1.3126675839327146e-08,2.5789605944734953e-08,5.13190348524792e-08,3.132125322492697e-08,3.613017575824009e-08,4.301191621346471e-08,1.3126675839327146e-08,2.5789605944734933e-08,5.131903485247914e-08 +287,Imazamox,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +288,Imazapyr,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +289,Imazethapyr,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +290,Imidacloprid,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +291,"Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.382190531241532e-08,1.4407632713590815e-08,1.5206323570893898e-08,4.957902277242049e-10,6.766441088130874e-09,1.544707202510983e-08,1.382190531241532e-08,1.4407632713590815e-08,1.5206323570893898e-08,1.9634525288733442e-09,6.766441088130874e-09,1.544707202510983e-08,1.3821905312415426e-08,1.4407632713590815e-08,1.5206323570893898e-08,1.9634525288733442e-09,6.766441088130874e-09,1.5447072025109937e-08 +292,Indoxacarb,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +293,Iodide,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +294,Iodine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.801606980551321e-06,1.8579202436749312e-06,1.9339445494939544e-06,1.1699246617816173e-09,2.2817826834918653e-08,2.6792348890084897e-05,1.801606980551321e-06,1.8579202436749312e-06,1.9339445494939544e-06,3.695797061856003e-09,2.2817826834918653e-08,2.6792348890084903e-05,1.801606980551321e-06,1.8579202436749308e-06,1.9339445494939544e-06,3.695797061856003e-09,2.281782683491865e-08,2.6792348890084903e-05 +295,"Iodine, 0.03% in water","('natural resource', 'in water')",natural resource,kilogram,biosphere3,3.3162983986865866e-07,3.470562893631281e-07,3.680508807095366e-07,7.453428958545652e-10,6.254914035816592e-09,3.170849232346503e-07,3.3162983986865866e-07,3.470562893631281e-07,3.680508807095366e-07,4.315622097066216e-09,6.254914035816591e-09,3.170849232346503e-07,3.3162983986865956e-07,3.470562893631285e-07,3.680508807095366e-07,4.315622097066216e-09,6.254914035816599e-09,3.1708492323464956e-07 +296,Iodosulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +297,Iodosulfuron-methyl-sodium,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +298,Ioxynil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +299,Iprodion,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +300,Iron,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.1012979487046428e-05,2.1947317772698036e-05,2.3215620948890055e-05,5.676991727490355e-07,9.71373764471595e-06,2.4202096108264918e-05,2.1012979487046428e-05,2.1947317772698036e-05,2.3215620948890055e-05,1.9505865921717017e-06,9.71373764471595e-06,2.4202096108264918e-05,2.1012979487046428e-05,2.1947317772698033e-05,2.3215620948890055e-05,1.9505865921717017e-06,9.713737644715949e-06,2.4202096108264908e-05 +301,"Iron, 46% in ore, 25% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,11.423138558612518,14.383363912598837,18.68955796279925,0.006240874654298735,0.5620908639350076,13.567037821022744,11.423138558612518,14.383363912598837,18.68955796279925,0.012054562366345944,0.5620908639350077,13.567037821022744,11.423138558612518,14.383363912598835,18.68955796279925,0.012054562366345944,0.5620908639350075,13.567037821022737 +302,"Iron, ion","('water', 'ground-')",emission,kilogram,biosphere3,0.0012945293628903233,0.001350990427701482,0.0014281045807393456,6.166127636984374e-05,0.0006740152152597593,0.0015207429447235753,0.0012945293628903233,0.001350990427701482,0.0014281045807393456,0.0002235202084580032,0.0006740152152597593,0.0015207429447235753,0.0012945293628903233,0.001350990427701482,0.0014281045807393456,0.0002235202084580032,0.0006740152152597592,0.0015207429447235753 +303,Isocyanic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.0376117992554078e-07,1.0752677570514932e-07,1.1262820559166593e-07,1.1149685588170427e-08,4.448660723621678e-08,1.195819389757549e-07,1.0376117992554078e-07,1.0752677570514932e-07,1.1262820559166593e-07,1.3858281720835541e-08,4.448660723621678e-08,1.195819389757549e-07,1.0376117992554079e-07,1.0752677570514932e-07,1.1262820559166593e-07,1.3858281720835541e-08,4.448660723621677e-08,1.1958193897575488e-07 +304,Isopropylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.5213385729433246e-11,1.5906695096083382e-11,1.6848626408357207e-11,3.809898177571076e-14,2.6162262097353628e-12,1.7367778614731315e-11,1.5213385729433246e-11,1.5906695096083382e-11,1.6848626408357207e-11,1.720382637913793e-13,2.616226209735362e-12,1.7367778614731312e-11,1.521338572943324e-11,1.5906695096083385e-11,1.6848626408357207e-11,1.720382637913793e-13,2.6162262097353623e-12,1.7367778614731306e-11 +305,Isoproturon,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +306,Isoxaflutole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +307,"Kaolinite, 24% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0001596724326567147,0.00019840760066644128,0.00025470274035772764,1.7327039003310434e-05,0.00011614948690539507,0.0002806542623981314,0.0001596724326567147,0.00019840760066644128,0.00025470274035772764,9.853952014599672e-05,0.00011614948690539507,0.0002806542623981314,0.00015967243265671468,0.00019840760066644128,0.00025470274035772764,9.853952014599672e-05,0.00011614948690539507,0.00028065426239813125 +308,"Kieserite, 25% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.3619061845631937e-07,5.31273342135307e-07,6.692547562612128e-07,5.5375946002551536e-08,3.4228443458178994e-07,7.520810203867783e-07,4.3619061845631937e-07,5.31273342135307e-07,6.692547562612128e-07,2.564864390907489e-07,3.4228443458178994e-07,7.520810203867784e-07,4.3619061845631937e-07,5.312733421353069e-07,6.692547562612128e-07,2.564864390907489e-07,3.4228443458178994e-07,7.520810203867782e-07 +309,Kresoxim-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +310,"Krypton, in air","('natural resource', 'in air')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +311,Lactic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.0334169544679164e-10,3.166670092248042e-10,3.347122883285699e-10,2.591719976756004e-13,2.243446406041929e-12,2.8611904909447044e-10,3.0334169544679164e-10,3.166670092248042e-10,3.347122883285699e-10,1.4307905081753094e-12,2.243446406041929e-12,2.861190490944704e-10,3.033416954467925e-10,3.166670092248046e-10,3.347122883285699e-10,1.4307905081753094e-12,2.243446406041936e-12,2.861190490944696e-10 +312,Lactofen,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +313,Lambda-cyhalothrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +314,"Lanthanum, 7.2% in bastnasite, 0.72% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.3711589447838755,0.4680476866649351,0.6090021624878824,-4.264955206050991e-23,2.133922402796094e-21,0.41988460003118605,0.3711589447838755,0.4680476866649351,0.6090021624878824,1.3163184002737968e-22,2.1339224059453912e-21,0.41988460003118605,0.3711589447838755,0.46804768666493507,0.6090021624878824,1.3163184002737968e-22,1.773482043096765e-21,0.41988460003118583 +315,Lead,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.068142930569234e-06,2.165851008750659e-06,2.299877224288232e-06,6.542010577417582e-08,5.542363287235594e-07,7.74387992452932e-06,2.068142930569234e-06,2.165851008750659e-06,2.299877224288232e-06,2.174017731159279e-07,5.542363287235594e-07,7.743879924529321e-06,2.068142930569234e-06,2.1658510087506584e-06,2.2998772242882315e-06,2.174017731159279e-07,5.542363287235594e-07,7.74387992452932e-06 +316,"Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.746598087664801e-05,6.0429793907828394e-05,6.452875008482486e-05,1.90068784305878e-05,6.142891695209853e-05,9.999633630965989e-05,5.746598087664801e-05,6.0429793907828394e-05,6.452875008482486e-05,2.3700745375379887e-05,6.142891695209853e-05,9.999633630965972e-05,5.7465980876647876e-05,6.0429793907828543e-05,6.45287500848247e-05,2.3700745375379887e-05,6.142891695209849e-05,9.999633630965956e-05 +317,Lead-210,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,0.0009063625356284113,0.0009365463730465529,0.0009773004512191766,4.769226477494978e-06,9.139589490479957e-05,0.011286482159134432,0.0009063625356284113,0.0009365463730465529,0.0009773004512191766,1.5067832440340937e-05,9.139589490479957e-05,0.011286482159134434,0.0009063625356284113,0.0009365463730465526,0.0009773004512191768,1.5067832440340937e-05,9.139589490479954e-05,0.011286482159134434 +318,Linuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.384490658879663e-06,1.443283398018619e-06,1.5226584315843559e-06,7.740944991558034e-10,3.732418033695969e-09,1.2982684897371286e-06,1.384490658879663e-06,1.443283398018619e-06,1.5226584315843559e-06,1.3455210776692765e-09,3.732418033695935e-09,1.298268489737128e-06,1.3844906588796626e-06,1.4432833980186194e-06,1.522658431584356e-06,1.3455210776692765e-09,3.732418033696036e-09,1.2982684897371275e-06 +319,"Lithium, 0.15% in brine, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.171970002707001e-10,5.681485396316435e-10,6.405646384012536e-10,1.5386182670546355e-11,1.279465674652942e-10,6.277968285563275e-10,5.171970002707001e-10,5.681485396316435e-10,6.405646384012536e-10,9.244321892450435e-11,1.279465674652942e-10,6.277968285563275e-10,5.171970002707001e-10,5.681485396316435e-10,6.405646384012538e-10,9.244321892450435e-11,1.279465674652943e-10,6.277968285563271e-10 +320,"Magnesite, 60% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0015459217586108172,0.001633684012959609,0.0017560257136970668,0.0001560796077551901,0.0006399695109430507,0.0019573909228707046,0.0015459217586108172,0.001633684012959609,0.0017560257136970668,0.00024035029820223798,0.0006399695109430507,0.0019573909228707055,0.0015459217586108172,0.0016336840129596091,0.0017560257136970665,0.00024035029820223798,0.0006399695109430512,0.001957390922870705 +321,Magnesium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.4934641640573272e-05,1.557425268968071e-05,1.643834434762205e-05,7.374324504258767e-07,8.313850299947569e-06,1.726795229232854e-05,1.4934641640573272e-05,1.557425268968071e-05,1.643834434762205e-05,1.614239965568664e-06,8.313850299947569e-06,1.726795229232854e-05,1.4934641640573272e-05,1.5574252689680707e-05,1.6438344347622052e-05,1.614239965568664e-06,8.313850299947567e-06,1.7267952292328533e-05 +322,"Magnesium, 0.13% in water","('natural resource', 'in water')",natural resource,kilogram,biosphere3,7.360829336793009e-08,7.672065835317426e-08,8.092082732605473e-08,3.744634614149509e-09,3.580384483094303e-08,8.969070137701961e-08,7.360829336793009e-08,7.672065835317426e-08,8.092082732605473e-08,8.861395397873038e-09,3.580384483094303e-08,8.969070137701959e-08,7.360829336793009e-08,7.672065835317426e-08,8.092082732605473e-08,8.861395397873038e-09,3.580384483094302e-08,8.969070137701957e-08 +323,Malathion,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +324,Maleic hydrazide,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +325,Mancozeb,"('soil', 'agricultural')",emission,kilogram,biosphere3,9.915619387653156e-08,1.2245471331049815e-07,1.5629809910710036e-07,9.998068716000533e-09,8.359149443117635e-08,1.870207357423221e-07,9.915619387653156e-08,1.2245471331049815e-07,1.5629809910710036e-07,6.063867630471988e-08,8.359149443117635e-08,1.870207357423221e-07,9.915619387653155e-08,1.2245471331049815e-07,1.5629809910710036e-07,6.063867630471988e-08,8.359149443117635e-08,1.8702073574232208e-07 +326,Maneb,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +327,Manganese,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.549796490956813e-07,6.787977905773657e-07,7.110410663212273e-07,1.8436458973940787e-07,4.907926842689312e-07,5.918900371183247e-06,6.549796490956813e-07,6.787977905773657e-07,7.110410663212273e-07,2.0542275923484335e-07,4.907926842689312e-07,5.918900371183248e-06,6.549796490956815e-07,6.787977905773656e-07,7.110410663212273e-07,2.0542275923484335e-07,4.907926842689312e-07,5.918900371183248e-06 +328,"Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0006077323549861934,0.0006379228816716785,0.0006795336344306945,1.664969118083443e-05,0.00018825958254634724,0.0006848780427167119,0.0006077323549861934,0.0006379228816716785,0.0006795336344306945,4.79331686122928e-05,0.00018825958254634724,0.0006848780427167123,0.0006077323549861934,0.0006379228816716787,0.0006795336344306945,4.79331686122928e-05,0.0001882595825463476,0.0006848780427167125 +329,MCPA,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +330,MCPB,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +331,Mecoprop,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +332,Mecoprop-P,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +333,Mefenpyr,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +334,Mefenpyr-diethyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +335,Mepiquat chloride,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +336,Mercury,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.22385884150383e-07,6.40126707185141e-07,6.639812800150488e-07,2.091893011382645e-09,2.1291681323800986e-07,8.579439927222922e-07,6.22385884150383e-07,6.40126707185141e-07,6.639812800150488e-07,4.29575377334223e-09,2.1291681323800986e-07,8.579439927222922e-07,6.22385884150383e-07,6.401267071851407e-07,6.639812800150488e-07,4.29575377334223e-09,2.1291681323800965e-07,8.579439927222922e-07 +337,Mesosulfuron-methyl (prop),"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +338,Mesotrione,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +339,Metalaxil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +340,Metaldehyde,"('soil', 'agricultural')",emission,kilogram,biosphere3,6.146044822192269e-09,6.413608113557486e-09,6.775662703722196e-09,6.858305744498705e-12,4.5215713566727404e-11,5.7956503290066404e-09,6.146044822192269e-09,6.413608113557486e-09,6.775662703722196e-09,2.6810009296739113e-11,4.5215713566727255e-11,5.795650329006638e-09,6.146044822192267e-09,6.413608113557489e-09,6.775662703722197e-09,2.6810009296739113e-11,4.5215713566727695e-11,5.795650329006636e-09 +341,Metamitron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +342,"Metamorphous rock, graphite containing, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,8.384013316524432e-06,9.11875155165118e-06,1.0158338609602273e-05,7.920079530038762e-07,0.00028152862613917487,0.00034750507051766084,8.384013316524432e-06,9.11875155165118e-06,1.0158338609602273e-05,2.808107727610563e-06,0.00028152862613917487,0.00034750507051766084,8.384013316524432e-06,9.118751551651179e-06,1.0158338609602273e-05,2.808107727610563e-06,0.00028152862613917487,0.00034750507051766084 +343,Metam-sodium,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +344,Metazachlor,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +345,Metconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +346,Methamidophos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +347,"Methane, bromotrifluoro-, Halon 1301","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.131299393211692e-14,1.1796235180563372e-14,1.245528800894306e-14,2.8695254487644682e-15,1.0644195891008195e-14,1.3303904658378995e-14,1.131299393211692e-14,1.1796235180563372e-14,1.245528800894306e-14,4.050897296572912e-15,1.0644195891008195e-14,1.3303904658379007e-14,1.1312993932116921e-14,1.1796235180563372e-14,1.2455288008943057e-14,4.050897296572912e-15,1.0644195891008194e-14,1.3303904658379004e-14 +348,"Methane, chlorodifluoro-, HCFC-22","('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.461890800492155e-09,6.735069921007538e-09,7.1015214116564374e-09,3.413757678056398e-11,2.2792791090223585e-09,6.431645523590682e-09,6.461890800492155e-09,6.735069921007538e-09,7.1015214116564374e-09,1.7430318782964077e-10,2.2792791090223585e-09,6.431645523590682e-09,6.4618908004921544e-09,6.735069921007538e-09,7.1015214116564374e-09,1.7430318782964077e-10,2.2792791090223577e-09,6.43164552359068e-09 +349,"Methane, dichloro-, HCC-30","('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.977145825834419e-10,5.107014090004063e-10,6.535201454670515e-10,1.9096423985019854e-11,1.223803390173701e-10,4.98887353369288e-10,3.977145825834419e-10,5.107014090004063e-10,6.535201454670515e-10,3.714367285463801e-11,1.223803390173701e-10,4.98887353369288e-10,3.977145825834418e-10,5.107014090004064e-10,6.535201454670515e-10,3.714367285463801e-11,1.2238033901737009e-10,4.988873533692878e-10 +350,"Methane, dichlorodifluoro-, CFC-12","('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.260978468032709e-10,5.486405037596536e-10,5.787413299120199e-10,1.2788071967151285e-11,2.013392198177879e-10,5.246085363245881e-10,5.260978468032709e-10,5.486405037596536e-10,5.787413299120199e-10,2.0622515070363847e-11,2.013392198177879e-10,5.246085363245881e-10,5.260978468032708e-10,5.486405037596536e-10,5.787413299120198e-10,2.062251507036385e-11,2.0133921981778784e-10,5.246085363245879e-10 +351,"Methane, dichlorofluoro-, HCFC-21","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2337997663869115e-12,1.2844515585753508e-12,1.3521831982158615e-12,4.4922249327535404e-15,4.216082062989212e-13,1.2084559613192047e-12,1.2337997663869115e-12,1.2844515585753508e-12,1.3521831982158615e-12,1.8366611759374515e-14,4.216082062989212e-13,1.2084559613192047e-12,1.2337997663869115e-12,1.2844515585753508e-12,1.3521831982158615e-12,1.8366611759374515e-14,4.2160820629892097e-13,1.2084559613192039e-12 +352,"Methane, fossil","('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.002134976522548361,0.0026257466649823773,0.003243479134318651,4.1713038365405733e-05,0.0010492526016403505,0.002605788433893588,0.002134976522548361,0.0026257466649823773,0.003243479134318651,0.00011598166685808421,0.0010492526016403505,0.0026057884338935885,0.0021349765225483594,0.0026257466649823786,0.003243479134318651,0.00011598166685808421,0.0010492526016403503,0.0026057884338935885 +353,"Methane, monochloro-, R-40","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.0324906021798343e-11,1.0824100479965493e-11,1.1504080030702253e-11,3.8482529087739343e-13,5.290559215788117e-12,1.2340674407528127e-11,1.0324906021798343e-11,1.0824100479965493e-11,1.1504080030702253e-11,1.7086481150079683e-12,5.290559215788117e-12,1.2340674407528131e-11,1.0324906021798343e-11,1.0824100479965495e-11,1.150408003070226e-11,1.7086481150079683e-12,5.290559215788116e-12,1.2340674407528123e-11 +354,"Methane, non-fossil","('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.677114113412301e-06,6.732813373620021e-06,8.071808851006661e-06,4.790722022061773e-07,3.1067888313652134e-06,6.5654557006182314e-06,5.677114113412301e-06,6.732813373620021e-06,8.071808851006661e-06,7.10037203696479e-07,3.1067888313652134e-06,6.565455700618233e-06,5.677114113412297e-06,6.732813373620025e-06,8.071808851006661e-06,7.10037203696479e-07,3.1067888313652117e-06,6.565455700618231e-06 +355,"Methane, tetrachloro-, R-10","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2415818362855427e-06,1.291574500360099e-06,1.3586271351607993e-06,7.436406603290476e-10,3.542824839390754e-07,1.1683736452233161e-06,1.2415818362855427e-06,1.291574500360099e-06,1.3586271351607993e-06,2.024448617453156e-09,3.542824839390754e-07,1.1683736452233161e-06,1.2415818362855427e-06,1.2915745003600988e-06,1.3586271351607993e-06,2.024448617453156e-09,3.5428248393907523e-07,1.1683736452233157e-06 +356,"Methane, tetrafluoro-, R-14","('air', 'urban air close to ground')",emission,kilogram,biosphere3,9.074262621955633e-11,9.46734388161041e-11,1.0003996494149368e-10,3.981975638383157e-12,4.466576852093689e-11,1.0408937102836771e-10,9.074262621955633e-11,9.46734388161041e-11,1.0003996494149368e-10,1.3617713355078886e-11,4.466576852093689e-11,1.0408937102836771e-10,9.074262621955636e-11,9.46734388161041e-11,1.0003996494149368e-10,1.3617713355078886e-11,4.4665768520936874e-11,1.040893710283677e-10 +357,"Methane, trichlorofluoro-, CFC-11","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.0030079717640585e-12,2.0852384489404297e-12,2.1951971455013174e-12,7.292887079279034e-15,6.844583873545429e-13,1.9618636589942643e-12,2.0030079717640585e-12,2.0852384489404297e-12,2.1951971455013174e-12,2.981721264512554e-14,6.844583873545429e-13,1.9618636589942643e-12,2.0030079717640585e-12,2.0852384489404297e-12,2.1951971455013174e-12,2.981721264512554e-14,6.844583873545425e-13,1.9618636589942635e-12 +358,"Methane, trifluoro-, HFC-23","('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.9257266167183333e-10,4.0868914135542845e-10,4.302401180726272e-10,1.4293442252706632e-12,1.3414806815222222e-10,3.8450872319388505e-10,3.9257266167183333e-10,4.0868914135542845e-10,4.302401180726272e-10,5.843921639777391e-12,1.3414806815222222e-10,3.8450872319388505e-10,3.9257266167183333e-10,4.0868914135542845e-10,4.302401180726272e-10,5.843921639777391e-12,1.3414806815222214e-10,3.8450872319388485e-10 +359,Methanesulfonic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.1886169814840685e-10,1.2391282914259538e-10,1.3073272626196185e-10,6.829939785325567e-14,3.364699168062629e-13,1.1147709500944003e-10,1.1886169814840685e-10,1.2391282914259538e-10,1.3073272626196185e-10,1.2696621349224555e-13,3.3646991680626004e-13,1.1147709500943997e-10,1.1886169814840683e-10,1.239128291425954e-10,1.307327262619619e-10,1.2696621349224555e-13,3.364699168062686e-13,1.1147709500943994e-10 +360,Methanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.3652838134230714e-05,1.420516789827317e-05,1.494853113495578e-05,6.880982947043283e-07,5.462757771710403e-06,1.7071378444948813e-05,1.3652838134230714e-05,1.420516789827317e-05,1.494853113495578e-05,2.378725658436658e-06,5.462757771710403e-06,1.7071378444948813e-05,1.365283813423071e-05,1.420516789827317e-05,1.494853113495578e-05,2.378725658436658e-06,5.462757771710402e-06,1.707137844494881e-05 +361,Methomyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +362,Methyl acetate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.875938732609956e-12,5.083032917099779e-12,5.36263128476401e-12,2.713234071983176e-15,1.3388847453588099e-14,4.5723617263905285e-12,4.875938732609956e-12,5.083032917099779e-12,5.36263128476401e-12,4.79858380016639e-15,1.3388847453587982e-14,4.572361726390526e-12,4.875938732609953e-12,5.083032917099781e-12,5.36263128476401e-12,4.79858380016639e-15,1.3388847453588335e-14,4.5723617263905244e-12 +363,Methyl acrylate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.4294483021649824e-09,4.611034161251033e-09,4.853734705523709e-09,1.212756656744241e-11,1.5015971212443822e-09,4.321015901079852e-09,4.4294483021649824e-09,4.611034161251033e-09,4.853734705523709e-09,5.336501504815803e-11,1.5015971212443824e-09,4.3210159010798516e-09,4.4294483021649824e-09,4.611034161251033e-09,4.853734705523709e-09,5.336501504815803e-11,1.5015971212443822e-09,4.321015901079848e-09 +364,Methyl amine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.5785401320253874e-10,2.6880688057977103e-10,2.83591041891654e-10,6.776854557021562e-14,3.2228083250672176e-12,2.418140645181777e-10,2.5785401320253874e-10,2.6880688057977103e-10,2.83591041891654e-10,1.9632289179933375e-13,3.222808325067217e-12,2.418140645181777e-10,2.578540132025394e-10,2.6880688057977134e-10,2.835910418916541e-10,1.9632289179933375e-13,3.222808325067224e-12,2.4181406451817704e-10 +365,Methyl borate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.465355859848074e-12,4.857890005416936e-12,5.413232523949966e-12,1.0817370196886868e-13,8.988185579392748e-13,5.186995355372121e-12,4.465355859848074e-12,4.857890005416936e-12,5.413232523949966e-12,6.479294459662815e-13,8.988185579392747e-13,5.186995355372119e-12,4.4653558598480726e-12,4.857890005416937e-12,5.413232523949966e-12,6.479294459662815e-13,8.988185579392748e-13,5.186995355372117e-12 +366,Methyl ethyl ketone,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.004594194940708e-06,7.291760896086695e-06,7.675583274751366e-06,1.9397291323224304e-08,2.3753958297333892e-06,6.8340362335782945e-06,7.004594194940708e-06,7.291760896086695e-06,7.675583274751366e-06,8.512488674501368e-08,2.3753958297333892e-06,6.834036233578292e-06,7.004594194940708e-06,7.291760896086695e-06,7.675583274751366e-06,8.512488674501368e-08,2.3753958297333884e-06,6.834036233578289e-06 +367,Methyl formate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.190611610284119e-11,2.3076040930984724e-11,2.4679162681586475e-11,1.876090393324598e-13,6.9930027680558525e-12,2.249617786222657e-11,2.190611610284119e-11,2.3076040930984724e-11,2.4679162681586475e-11,1.0516825166990914e-12,6.993002768036183e-12,2.249617786196428e-11,2.19061161028412e-11,2.3076040930879875e-11,2.4679162682006092e-11,1.0516825166990914e-12,6.993002768108329e-12,2.2496177862278955e-11 +368,Methyl lactate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.330187376488133e-10,3.476477169946876e-10,3.674584337161294e-10,2.845279059452644e-13,2.462933442471222e-12,3.1411113876482183e-10,3.330187376488133e-10,3.476477169946876e-10,3.674584337161294e-10,1.5707719415475695e-12,2.4629334424712216e-12,3.1411113876482183e-10,3.330187376488143e-10,3.4764771699468803e-10,3.674584337161294e-10,1.5707719415475695e-12,2.4629334424712293e-12,3.1411113876482106e-10 +369,Metiram,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +370,Metolachlor,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.0020673075795839e-05,1.0446203676274815e-05,1.1020705075035555e-05,5.602397790160175e-09,2.696107976305733e-08,9.396607841211413e-06,1.0020673075795839e-05,1.0446203676274815e-05,1.1020705075035555e-05,9.73685616032611e-09,2.6961079763057083e-08,9.396607841211408e-06,1.0020673075795835e-05,1.0446203676274818e-05,1.1020705075035557e-05,9.73685616032611e-09,2.696107976305781e-08,9.396607841211407e-06 +371,Metosulam,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +372,Metribuzin,"('soil', 'agricultural')",emission,kilogram,biosphere3,3.4913530336288815e-09,4.311708811009459e-09,5.503356080402168e-09,3.5203839710511494e-10,2.9433100068169694e-09,6.585119775135362e-09,3.4913530336288815e-09,4.311708811009459e-09,5.503356080402168e-09,2.135126593558851e-09,2.9433100068169694e-09,6.585119775135362e-09,3.4913530336288806e-09,4.311708811009459e-09,5.503356080402168e-09,2.135126593558851e-09,2.9433100068169694e-09,6.58511977513536e-09 +373,Metsulfuron-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +374,Molinate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +375,Molybdenum,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.0704919761100683e-07,4.2788343485001504e-07,4.566437415973932e-07,1.7796399595733523e-08,1.2054137333212643e-07,6.479870562183016e-07,4.0704919761100683e-07,4.2788343485001504e-07,4.566437415973932e-07,5.566536850008789e-08,1.2054137333212643e-07,6.479870562183017e-07,4.070491976110067e-07,4.27883434850015e-07,4.5664374159739313e-07,5.566536850008789e-08,1.2054137333212643e-07,6.479870562183015e-07 +376,"Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.4973920475874476e-05,3.6679299417220095e-05,3.900002084181022e-05,3.2061759867652827e-06,2.2525310118062925e-05,4.609793149979216e-05,3.4973920475874476e-05,3.6679299417220095e-05,3.900002084181022e-05,8.968755565657875e-06,2.2525310118062925e-05,4.609793149979216e-05,3.4973920475874476e-05,3.66792994172201e-05,3.900002084181024e-05,8.968755565657875e-06,2.2525310118062925e-05,4.609793149979214e-05 +377,"Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.935631035706454e-06,5.176694430177058e-06,5.50478993215396e-06,4.5698706274961013e-07,3.194351377049008e-06,6.522900577327994e-06,4.935631035706454e-06,5.176694430177058e-06,5.50478993215396e-06,1.2781225662444196e-06,3.194351377049008e-06,6.522900577327994e-06,4.935631035706454e-06,5.17669443017706e-06,5.5047899321539615e-06,1.2781225662444196e-06,3.194351377049008e-06,6.522900577327991e-06 +378,"Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +379,"Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +380,"Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,6.796281530149853e-06,7.197076982310859e-06,7.741281523298183e-06,1.8050324243395779e-07,2.1153638393027744e-06,7.690850346778095e-06,6.796281530149853e-06,7.197076982310859e-06,7.741281523298183e-06,5.235029360455795e-07,2.1153638393027744e-06,7.6908503467781e-06,6.796281530149853e-06,7.197076982310861e-06,7.741281523298181e-06,5.235029360455795e-07,2.115363839302778e-06,7.690850346778102e-06 +381,"Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.8085673825440053e-05,1.896900442618466e-05,2.0171247502271865e-05,1.6745415209768446e-06,1.1705088384137408e-05,2.390191886385899e-05,1.8085673825440053e-05,1.896900442618466e-05,2.0171247502271865e-05,4.683435199550284e-06,1.1705088384137408e-05,2.390191886385899e-05,1.8085673825440053e-05,1.8969004426184666e-05,2.0171247502271872e-05,4.683435199550284e-06,1.1705088384137408e-05,2.3901918863858977e-05 +382,"Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.3623469982039138e-05,1.4428554564468365e-05,1.5521788149355725e-05,3.6403354197251023e-07,4.2377353580521965e-06,1.5431154069147253e-05,1.3623469982039138e-05,1.4428554564468365e-05,1.5521788149355725e-05,1.0553992896481957e-06,4.2377353580521965e-06,1.543115406914726e-05,1.3623469982039138e-05,1.4428554564468369e-05,1.5521788149355722e-05,1.0553992896481957e-06,4.237735358052204e-06,1.5431154069147263e-05 +383,Monochloroethane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +384,Monocrotophos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +385,Monoethanolamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.001721824011276713,0.0017218324998079099,0.001721843925378083,1.982353135170091e-07,0.0008467632866690509,0.0015448622183787807,0.001721824011276713,0.0017218324998079099,0.001721843925378083,2.0387699882250662e-07,0.0008467632866690509,0.0015448622183787807,0.001721824011276713,0.0017218324998079099,0.001721843925378083,2.0387699882250664e-07,0.0008467632866690504,0.0015448622183787805 +386,MSMA,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +387,m-Xylene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2212661891827536e-07,1.2740753659231887e-07,1.345829888257817e-07,1.1541878104016902e-07,2.7931560250600665e-07,1.6043115020743546e-07,1.2212661891827536e-07,1.2740753659231887e-07,1.345829888257817e-07,1.246657978845052e-07,2.7931560250600665e-07,1.604311502074355e-07,1.2212661891827552e-07,1.2740753659231895e-07,1.3458298882578173e-07,1.246657978845052e-07,2.7931560250600665e-07,1.6043115020743536e-07 +388,Naled,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +389,Napropamide,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.0873748587641384e-08,1.1347128793247581e-08,1.1987685558184895e-08,1.2133899875242236e-11,7.999686241006894e-11,1.0253821181426705e-08,1.0873748587641384e-08,1.1347128793247581e-08,1.1987685558184895e-08,4.7432993002190846e-11,7.999686241006868e-11,1.0253821181426701e-08,1.0873748587641379e-08,1.1347128793247586e-08,1.1987685558184897e-08,4.7432993002190846e-11,7.999686241006946e-11,1.0253821181426698e-08 +390,"Neodymium, 4% in bastnasite, 0.4% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.20406198025001396,0.25733109530177234,0.3348274075037649,-2.3457253406306218e-23,1.173657310181451e-21,0.23085118697258258,0.20406198025001396,0.25733109530177234,0.3348274075037649,7.239751131453481e-23,1.1736573119135647e-21,0.23085118697258258,0.20406198025001396,0.2573310953017723,0.3348274075037649,7.239751131453481e-23,9.754151142650272e-22,0.23085118697258245 +391,"Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +392,"Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +393,Nickel,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.405176067937828e-05,1.4812468958097547e-05,1.5842370266635767e-05,4.2732173008200583e-07,3.58791116349243e-06,1.90141454119308e-05,1.405176067937828e-05,1.4812468958097547e-05,1.5842370266635767e-05,1.893843817250698e-06,3.58791116349243e-06,1.90141454119308e-05,1.4051760679378275e-05,1.4812468958097545e-05,1.5842370266635764e-05,1.893843817250698e-06,3.5879111634924306e-06,1.901414541193079e-05 +394,"Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.4640073028491597e-05,2.6835670608613758e-05,2.9672028121239027e-05,0.011996325079904033,0.11996887109528488,0.11998105072325463,2.4640073028491597e-05,2.6835670608613758e-05,2.9672028121239027e-05,0.11995717954422422,0.11996887109528488,0.11998105072325463,2.4640073028491597e-05,2.6835670608613758e-05,2.967202812123903e-05,0.11995717954422422,0.1199688710952849,0.11998105072325463 +395,"Nickel, 1.98% in silicates, 1.04% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.007715163113512119,0.008077183058120514,0.008570165176102706,0.000290678119254794,0.002954104004231567,0.008393814950197207,0.007715163113512119,0.008077183058120514,0.008570165176102706,0.0005737140326296151,0.002954104004231567,0.008393814950197207,0.007715163113512119,0.008077183058120482,0.008570165176102706,0.0005737140326296151,0.002954104004231567,0.008393814950197205 +396,"Nickel, ion","('water', 'ground-')",emission,kilogram,biosphere3,5.537727039724451e-07,5.776226052767116e-07,6.10169079689169e-07,2.977840758494214e-07,9.299906842910641e-07,1.5253810813156046e-06,5.537727039724451e-07,5.776226052767116e-07,6.10169079689169e-07,4.403004467444098e-07,9.299906842910641e-07,1.5253810813156046e-06,5.537727039724451e-07,5.776226052767116e-07,6.101690796891689e-07,4.403004467444098e-07,9.299906842910641e-07,1.5253810813156046e-06 +397,Nicosulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +398,Nitrate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.3508458657951993e-07,1.6884933709242208e-07,2.179414345820164e-07,1.4165870162512038e-08,9.670296223484863e-08,2.392129258358232e-07,1.3508458657951993e-07,1.6884933709242208e-07,2.179414345820164e-07,8.504140603896077e-08,9.670296223484863e-08,2.392129258358232e-07,1.350845865795199e-07,1.6884933709242208e-07,2.179414345820164e-07,8.504140603896077e-08,9.670296223484863e-08,2.392129258358231e-07 +399,Nitrobenzene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.8582883023003066e-09,1.9398704015395593e-09,2.0503437927351615e-09,1.5764460038850316e-12,1.3581144341714186e-11,1.7525907339951661e-09,1.8582883023003066e-09,1.9398704015395593e-09,2.0503437927351615e-09,8.635966968563851e-12,1.3581144341714185e-11,1.7525907339951661e-09,1.858288302300312e-09,1.9398704015395618e-09,2.0503437927351615e-09,8.635966968563851e-12,1.3581144341714227e-11,1.7525907339951616e-09 +400,Nitrogen,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +401,Nitrogen fluoride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +402,Nitrogen oxides,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.008989606182144323,0.009507556754921053,0.01020554172221065,0.0013584433645991894,0.004687413173312217,0.04547319768828298,0.008989606182144323,0.009507556754921053,0.01020554172221065,0.0018252048227362394,0.004687413173312217,0.04547319768828298,0.008989606182144323,0.009507556754921053,0.01020554172221065,0.0018252048227362394,0.004687413173312216,0.04547319768828298 +403,"NMVOC, non-methane volatile organic compounds, unspecified origin","('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.00024400266140201145,0.00035636896732040013,0.0005006413432062807,8.230669937993338e-06,9.51419265270538e-05,0.00036056248181827574,0.00024400266140201145,0.00035636896732040013,0.0005006413432062807,2.7564834658912988e-05,9.51419265270538e-05,0.0003605624818182758,0.000244002661402007,0.00035636896732039905,0.0005006413432062807,2.7564834658912988e-05,9.514192652705379e-05,0.00036056248181827336 +404,Norflurazon,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +405,"Occupation, annual crop, non-irrigated","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.04545162104524932,0.04743067329254494,0.05010868034774181,5.0903042551286554e-05,0.000336046277674015,0.04286210891802848,0.04545162104524932,0.04743067329254494,0.05010868034774181,0.00019938703762551366,0.000336046277674014,0.04286210891802846,0.04545162104524931,0.047430673292544946,0.05010868034774181,0.00019938703762551366,0.0003360462776740173,0.04286210891802845 +406,"Occupation, arable land, unspecified use","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +407,"Occupation, construction site","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0009567588365910294,0.0010247007959728075,0.0011198473858464641,0.00022167220160099768,0.0008173435431776331,0.0016770721451136658,0.0009567588365910294,0.0010247007959728075,0.0011198473858464641,0.0005278746539033901,0.0008173435431776331,0.0016770721451136658,0.0009567588365910297,0.0010247007959728075,0.0011198473858464641,0.0005278746539033901,0.0008173435431776331,0.0016770721451136654 +408,"Occupation, dump site","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.011850675479079392,0.012314290898738417,0.01294381029482226,0.006808464196621154,0.02458096856991852,0.09659849271701182,0.011850675479079392,0.012314290898738417,0.01294381029482226,0.01586168981717508,0.02458096856991852,0.09659849271701182,0.011850675479079392,0.012314290898738412,0.012943810294822262,0.01586168981717508,0.02458096856991852,0.09659849271701182 +409,"Occupation, forest, intensive","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.22418119072141623,0.23415785491551855,0.24771796804807236,0.05924440621434736,0.20765238957574012,0.6118243610156825,0.22418119072141623,0.23415785491551855,0.24771796804807236,0.09117040793536077,0.20765238957574012,0.6118243610156826,0.2241811907214164,0.2341578549155186,0.24771796804807236,0.09117040793536077,0.2076523895757401,0.6118243610156824 +410,"Occupation, forest, primary (non-use)","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +411,"Occupation, industrial area","('natural resource', 'land')",natural resource,square meter-year,biosphere3,1.5433598408442546,1.6096293372759658,1.6992026799052076,0.004139510476990598,0.02250163022425144,1.4660892986239795,1.5433598408442546,1.6096293372759658,1.6992026799052076,0.011362958783772857,0.02250163022425144,1.46608929862398,1.5433598408442541,1.6096293372759658,1.699202679905208,0.011362958783772857,0.022501630224251674,1.4660892986239797 +412,"Occupation, lake, artificial","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.008743754768967953,0.009109531767909377,0.00961146130966659,0.0016277848934800514,0.005533490539038183,0.06736454101570472,0.008743754768967953,0.009109531767909377,0.00961146130966659,0.0022792476758022864,0.005533490539038183,0.06736454101570473,0.008743754768967953,0.009109531767909376,0.00961146130966659,0.0022792476758022864,0.005533490539038185,0.06736454101570473 +413,"Occupation, mineral extraction site","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.00884839845001319,0.010255609787728532,0.012287498354999591,0.0027824279834893053,0.009227834557879119,0.017776723858831316,0.00884839845001319,0.010255609787728532,0.012287498354999591,0.0040216495556655695,0.009227834557879119,0.017776723858831316,0.00884839845001319,0.01025560978772853,0.012287498354999593,0.0040216495556655695,0.009227834557879117,0.01777672385883131 +414,"Occupation, pasture, man made","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +415,"Occupation, pasture, man made, extensive","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +416,"Occupation, pasture, man made, intensive","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +417,"Occupation, permanent crop, irrigated, intensive","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.12700953342041105,0.13240816623712484,0.13969710446777858,6.243872164948058e-06,4.236992672189025e-05,0.1187994234982476,0.12700953342041105,0.13240816623712484,0.13969710446777858,1.4380208846722083e-05,4.2369926721877656e-05,0.1187994234982476,0.12700953342041055,0.1324081662371254,0.1396971044677786,1.4380208846722091e-05,4.236992672188643e-05,0.11879942349824762 +418,"Occupation, river, artificial","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0027528013327916415,0.00294060983178219,0.0032037502437186408,0.0011277951824719941,0.006265238285859636,0.00704354216920326,0.0027528013327916415,0.00294060983178219,0.0032037502437186408,0.004783129410953682,0.006265238285859636,0.00704354216920326,0.0027528013327916424,0.00294060983178219,0.00320375024371864,0.004783129410953682,0.006265238285859636,0.007043542169203259 +419,"Occupation, seabed, drilling and mining","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.00133386486064221,0.0014739641323853385,0.001675469938980554,0.0004536912696840768,0.0013078638297835635,0.001477150798694395,0.00133386486064221,0.0014739641323853385,0.001675469938980554,0.000503853150630784,0.0013078638297835635,0.001477150798694395,0.0013338648606422098,0.0014739641323853385,0.001675469938980554,0.000503853150630784,0.0013078638297835635,0.0014771507986943942 +420,"Occupation, shrub land, sclerophyllous","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.00021020164181217047,0.00021954461921483754,0.0002322030312640582,0.00010729291959990186,0.00039768070190988945,0.0007509570187025593,0.00021020164181217047,0.00021954461921483754,0.0002322030312640582,0.00032118103651051203,0.00039768070190988945,0.0007509570187025593,0.00021020164181217047,0.00021954461921483754,0.00023220303126405824,0.00032118103651051203,0.00039768070190988945,0.0007509570187025593 +421,"Occupation, traffic area, rail network","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.011895480898831991,0.012301743763854851,0.012850423948866808,0.00019282051348663119,0.002075045022722061,0.01253143106822164,0.011895480898831991,0.012301743763854851,0.012850423948866808,0.00022657037655498697,0.002075045022722061,0.01253143106822164,0.011895480898831991,0.012301743763854851,0.012850423948866804,0.00022657037655498697,0.002075045022722061,0.012531431068221634 +422,"Occupation, traffic area, rail/road embankment","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.012939646477104902,0.013406830807425513,0.014039179742035212,0.0007710539903512865,0.004198387491630439,0.017437050708379156,0.012939646477104902,0.013406830807425513,0.014039179742035212,0.001202558989427227,0.004198387491630439,0.01743705070837916,0.012939646477104902,0.013406830807425513,0.01403917974203521,0.001202558989427227,0.004198387491630438,0.017437050708379153 +423,"Occupation, traffic area, road network","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.005428210553862584,0.005990372006707111,0.006792474992943547,0.00129194453557127,0.0050914649687091775,0.011070140547731486,0.005428210553862584,0.005990372006707111,0.006792474992943547,0.0035292338510297507,0.0050914649687091775,0.011070140547731483,0.005428210553862584,0.0059903720067071104,0.0067924749929435466,0.0035292338510297507,0.005091464968709175,0.011070140547731484 +424,"Occupation, urban, discontinuously built","('natural resource', 'land')",natural resource,square meter-year,biosphere3,9.737934601206141e-05,0.00010164646364934562,0.0001074243148411209,9.054548847599897e-08,7.683592270070065e-07,9.181086289700849e-05,9.737934601206141e-05,0.00010164646364934562,0.0001074243148411209,4.195753719664408e-07,7.683592270070056e-07,9.181086289700849e-05,9.737934601206162e-05,0.00010164646364934573,0.0001074243148411209,4.195753719664407e-07,7.683592270070091e-07,9.181086289700833e-05 +425,"Oil, crude, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.2376145537142147,3.6260909498650284,4.18079905074627,0.06827447133946316,0.9459841186189081,3.563071864175365,3.2376145537142147,3.6260909498650284,4.18079905074627,0.16206262058490972,0.9459841186189081,3.5630718641753654,3.2376145537142156,3.626090949865029,4.180799050746269,0.16206262058490972,0.9459841186189075,3.5630718641753636 +426,"Oils, unspecified","('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +427,"Olivine, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,8.643885101436974e-08,1.7578280148346248e-07,2.87391436000387e-07,1.5788062903842135e-09,4.073225928173289e-08,1.7050639414590892e-07,8.643885101436974e-08,1.7578280148346248e-07,2.87391436000387e-07,7.098042522739661e-09,4.073225928173289e-08,1.7050639414590897e-07,8.643885101436945e-08,1.7578280148346277e-07,2.87391436000387e-07,7.098042522739661e-09,4.073225928173289e-08,1.7050639414590903e-07 +428,o-Nitrotoluene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.81836103938499e-11,1.895591705572334e-11,1.9998610178782434e-11,1.0118334825083567e-14,4.993041137035031e-14,1.70514948490088e-11,1.81836103938499e-11,1.895591705572334e-11,1.9998610178782434e-11,1.789513080701056e-14,4.993041137034988e-14,1.7051494849008793e-11,1.8183610393849895e-11,1.8955917055723345e-11,1.9998610178782434e-11,1.789513080701056e-14,4.99304113703512e-14,1.7051494849008783e-11 +429,Orbencarb,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.885365279242076e-08,2.328365538514178e-08,2.9718668873883335e-08,1.9010422735004785e-09,1.5894166072320692e-08,3.5560300157642604e-08,1.885365279242076e-08,2.328365538514178e-08,2.9718668873883335e-08,1.1529895452982094e-08,1.5894166072320692e-08,3.5560300157642604e-08,1.8853652792420752e-08,2.328365538514178e-08,2.9718668873883335e-08,1.1529895452982094e-08,1.5894166072320692e-08,3.556030015764259e-08 +430,Oxamyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +431,Oxydemeton-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +432,Oxyfluorfen,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +433,Ozone,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.828855302353975e-08,4.016149594108084e-08,4.271108932308479e-08,2.28078477367829e-09,6.682284934155955e-09,5.028594172079498e-08,3.828855302353975e-08,4.016149594108084e-08,4.271108932308479e-08,3.5609880343694817e-09,6.682284934155955e-09,5.028594172079498e-08,3.8288553023539746e-08,4.0161495941080836e-08,4.271108932308479e-08,3.5609880343694817e-09,6.682284934155952e-09,5.028594172079497e-08 +434,"PAH, polycyclic aromatic hydrocarbons","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.3824879429063916e-07,2.499950466386721e-07,2.657488538801749e-07,1.56461441258914e-07,3.924571571591365e-07,3.681642391434043e-07,2.3824879429063916e-07,2.499950466386721e-07,2.657488538801749e-07,1.801893599637957e-07,3.924571571591365e-07,3.681642391434043e-07,2.382487942906391e-07,2.499950466386721e-07,2.657488538801749e-07,1.801893599637957e-07,3.924571571591365e-07,3.681642391434043e-07 +435,Paraffins,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +436,Paraquat,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +437,Parathion,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +438,"Particulates, < 2.5 um","('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.001420932088817787,0.001491325941972027,0.0015871770574912283,0.00013488525874271617,0.0005277056129627846,0.007885632107788563,0.001420932088817787,0.001491325941972027,0.0015871770574912283,0.00022889222324251287,0.0005277056129627846,0.007885632107788565,0.001420932088817787,0.001491325941972027,0.001587177057491228,0.00022889222324251287,0.0005277056129627846,0.007885632107788565 +439,"Particulates, > 10 um","('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.00044539536532335616,0.00047502703482999397,0.0005149530760847812,2.9796671699316537e-05,0.00030756209797821023,0.00227441330207174,0.00044539536532335616,0.00047502703482999397,0.0005149530760847812,6.504899303397129e-05,0.00030756209797821023,0.0022744133020717403,0.0004453953653233561,0.00047502703482999386,0.0005149530760847812,6.504899303397129e-05,0.0003075620979782103,0.0022744133020717403 +440,"Particulates, > 2.5 um, and < 10um","('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0002843472879316796,0.00030537667079577613,0.00033309807279644285,1.0248766858968803e-05,0.00023829411089477712,0.001254801138486201,0.0002843472879316796,0.00030537667079577613,0.00033309807279644285,3.4582241452441674e-05,0.00023829411089477712,0.001254801138486201,0.0002843472879316795,0.0003053766707957762,0.00033309807279644285,3.4582241452441674e-05,0.00023829411089477712,0.001254801138486201 +441,"Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,6.931076855722616e-09,7.494050073609703e-09,8.294395974263392e-09,7.44876111690684e-11,2.1208785849626412e-09,7.197155126045727e-09,6.931076855722616e-09,7.494050073609703e-09,8.294395974263392e-09,2.128736993269153e-10,2.1208785849626412e-09,7.197155126045727e-09,6.931076855722616e-09,7.494050073609703e-09,8.294395974263392e-09,2.128736993269153e-10,2.120878584962641e-09,7.197155126045722e-09 +442,"Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.6656621910998437e-08,1.8009547615080676e-08,1.9932922487527e-08,1.7900710558598936e-10,5.096851984155439e-09,1.7296055771129163e-08,1.6656621910998437e-08,1.8009547615080676e-08,1.9932922487527e-08,5.115737261943569e-10,5.096851984155439e-09,1.7296055771129163e-08,1.6656621910998437e-08,1.8009547615080676e-08,1.9932922487527e-08,5.115737261943569e-10,5.096851984155438e-09,1.7296055771129156e-08 +443,"Peat, in ground","('natural resource', 'biotic')",natural resource,kilogram,biosphere3,6.707377453882629e-05,7.864807614281548e-05,9.368282535538486e-05,2.419349459508655e-06,5.599289474556899e-05,0.00011090835613448004,6.707377453882629e-05,7.864807614281548e-05,9.368282535538486e-05,1.5278995990700882e-05,5.599289474556899e-05,0.00011090835613448004,6.707377453882624e-05,7.864807614281557e-05,9.368282535538488e-05,1.5278995990700882e-05,5.5992894745568985e-05,0.00011090835613448 +444,Pendimethalin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +445,Pentane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.00026152811380272546,0.000288655393100193,0.00032768980213363885,2.588413898417943e-05,0.00012045405771923763,0.0003007696289343449,0.00026152811380272546,0.000288655393100193,0.00032768980213363885,3.597821171136108e-05,0.00012045405771923763,0.0003007696289343449,0.00026152811380272546,0.000288655393100193,0.00032768980213363874,3.597821171136108e-05,0.0001204540577192376,0.00030076962893434476 +446,"Perlite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +447,Permethrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +448,Phenmedipham,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +449,Phenol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.0722189829446107e-07,1.1364849046385526e-07,1.2255352703947785e-07,4.336763976760632e-09,7.415841496254729e-08,1.3925067084718372e-07,1.0722189829446107e-07,1.1364849046385526e-07,1.2255352703947785e-07,3.5674294043113607e-08,7.415841496254729e-08,1.3925067084718372e-07,1.0722189829446107e-07,1.1364849046385527e-07,1.2255352703947788e-07,3.5674294043113607e-08,7.415841496254728e-08,1.3925067084718372e-07 +450,"Phenol, 2,4-dichloro","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.2299317815308258e-10,2.324765206410215e-10,2.4528117698434344e-10,3.216813064746931e-14,3.026057436211668e-13,2.0880948552425405e-10,2.2299317815308258e-10,2.324765206410215e-10,2.4528117698434344e-10,6.939112143992863e-14,3.026057436211663e-13,2.0880948552425405e-10,2.2299317815308317e-10,2.3247652064102182e-10,2.452811769843435e-10,6.93911214399286e-14,3.0260574362117215e-13,2.088094855242535e-10 +451,"Phenol, pentachloro-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.4956939752658605e-11,1.5670138686136397e-11,1.6635875804347113e-11,8.153018577521808e-12,2.333145879533268e-11,1.9534432757218625e-11,1.4956939752658605e-11,1.5670138686136397e-11,1.6635875804347113e-11,1.0443452257766655e-11,2.333145879533268e-11,1.9534432757218615e-11,1.4956939752658628e-11,1.5670138686136397e-11,1.6635875804347103e-11,1.0443452257766655e-11,2.333145879533265e-11,1.9534432757218564e-11 +452,Phorate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +453,Phosmet,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +454,Phosphate,"('water', 'ground-')",emission,kilogram,biosphere3,0.001772604351495044,0.0018509990215915036,0.00195752011995046,0.000774147290084705,0.005704937819635916,0.006609322759257834,0.001772604351495044,0.0018509990215915036,0.00195752011995046,0.004606738033488838,0.005704937819635916,0.006609322759257834,0.0017726043514950435,0.0018509990215915036,0.00195752011995046,0.004606738033488838,0.005704937819635917,0.006609322759257833 +455,Phosphine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.374564041574432e-12,3.512904771488009e-12,3.6978055705876666e-12,9.239358217568996e-15,1.1439879969777372e-12,3.2919550961860177e-12,3.374564041574432e-12,3.512904771488009e-12,3.6978055705876666e-12,4.0656010283966184e-14,1.1439879969777378e-12,3.291955096186017e-12,3.374564041574432e-12,3.512904771488009e-12,3.6978055705876666e-12,4.0656010283966184e-14,1.1439879969777372e-12,3.291955096186015e-12 +456,Phosphoric acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +457,Phosphorus,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.959742115148147e-07,6.233594614061913e-07,6.602666429286186e-07,2.9546727749684206e-07,8.425048769548627e-07,7.293762114486428e-07,5.959742115148147e-07,6.233594614061913e-07,6.602666429286186e-07,3.3377465707321166e-07,8.425048769548627e-07,7.293762114486428e-07,5.959742115148151e-07,6.233594614061915e-07,6.602666429286187e-07,3.3377465707321166e-07,8.425048769548627e-07,7.293762114486423e-07 +458,Phosphorus trichloride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +459,"Phosphorus, 18% in apatite, 12% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.00016026258901418662,0.00016848753762140604,0.00017971038294864962,2.296123006593351e-05,6.931545740730859e-05,0.0002112511382806675,0.00016026258901418662,0.00016848753762140604,0.00017971038294864962,5.914003805014302e-05,6.931545740730859e-05,0.00021125113828066746,0.00016026258901418684,0.00016848753762140618,0.00017971038294864962,5.914003805014302e-05,6.931545740730859e-05,0.00021125113828066727 +460,"Phosphorus, 18% in apatite, 4% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,8.049632372815408e-05,8.632152786756627e-05,9.453454694499307e-05,5.22532679022506e-05,0.0001559210473988058,0.00021246468742668336,8.049632372815408e-05,8.632152786756627e-05,9.453454694499307e-05,0.00013345485884686266,0.0001559210473988058,0.00021246468742668336,8.049632372815408e-05,8.632152786756627e-05,9.453454694499307e-05,0.00013345485884686266,0.0001559210473988058,0.00021246468742668336 +461,Picloram,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +462,Picoxystrobin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +463,Piperonyl butoxide,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +464,Pirimicarb,"('soil', 'agricultural')",emission,kilogram,biosphere3,8.675390353578553e-09,9.043793158323938e-09,9.541167322239409e-09,4.850271786772177e-12,2.3341535074621082e-11,8.135106335260496e-09,8.675390353578553e-09,9.043793158323938e-09,9.541167322239409e-09,8.429676118676661e-12,2.334153507462087e-11,8.135106335260492e-09,8.67539035357855e-09,9.04379315832394e-09,9.541167322239409e-09,8.429676118676661e-12,2.33415350746215e-11,8.13510633526049e-09 +465,Platinum,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.638369137631475e-14,3.79330689671531e-14,4.004595100995787e-14,2.655600207020398e-15,1.8317134164259725e-14,4.4770138240552633e-14,3.638369137631475e-14,3.79330689671531e-14,4.004595100995787e-14,8.114310439838817e-15,1.8317134164259725e-14,4.4770138240552633e-14,3.638369137631476e-14,3.79330689671531e-14,4.004595100995787e-14,8.114310439838817e-15,1.8317134164259722e-14,4.477013824055263e-14 +466,Polonium-210,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,0.001661709237625547,0.0017170363719157743,0.0017917387843925628,8.717956358772177e-06,0.00016706788002395596,0.020706044038605587,0.001661709237625547,0.0017170363719157743,0.0017917387843925628,2.7543375990105387e-05,0.00016706788002395596,0.02070604403860559,0.001661709237625547,0.001717036371915774,0.0017917387843925628,2.7543375990105387e-05,0.00016706788002395593,0.02070604403860559 +467,Polychlorinated biphenyls,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.4223745832639694e-13,1.480684886509583e-13,1.558620076184878e-13,3.8918307820778773e-16,4.821800436814312e-14,1.3875443941733999e-13,1.4223745832639694e-13,1.480684886509583e-13,1.558620076184878e-13,1.7127912717399143e-15,4.821800436814312e-14,1.3875443941733943e-13,1.422374583263963e-13,1.480684886509589e-13,1.5586200761848725e-13,1.7127912717399143e-15,4.821800436814297e-14,1.3875443941733875e-13 +468,Potassium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.9014592606981015e-05,3.0267623218798874e-05,3.196832322258442e-05,2.2636931747239433e-05,5.695936289787719e-05,3.7203124144984565e-05,2.9014592606981015e-05,3.0267623218798874e-05,3.196832322258442e-05,2.472541142472838e-05,5.695936289787719e-05,3.7203124144984565e-05,2.9014592606981045e-05,3.0267623218798884e-05,3.196832322258442e-05,2.472541142472838e-05,5.695936289787719e-05,3.720312414498454e-05 +469,"Potassium, ion","('water', 'ground-')",emission,kilogram,biosphere3,0.00017155767185076323,0.00017905192297908124,0.00018927933818151845,2.489780544657247e-05,0.0001724935609987208,0.000280603764664057,0.00017155767185076323,0.00017905192297908124,0.00018927933818151845,9.813075790479696e-05,0.0001724935609987208,0.000280603764664057,0.00017155767185076323,0.00017905192297908124,0.00018927933818151845,9.813075790479696e-05,0.0001724935609987208,0.00028060376466405694 +470,Potassium-40,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,0.0002316722801428602,0.0002394603486956411,0.00024997595332363693,1.3845904770202779e-06,2.653403820444787e-05,0.0027978474326894602,0.0002316722801428602,0.0002394603486956411,0.00024997595332363693,4.374464702942833e-06,2.653403820444787e-05,0.0027978474326894607,0.0002316722801428602,0.00023946034869564103,0.000249975953323637,4.374464702942833e-06,2.6534038204447862e-05,0.0027978474326894607 +471,"Praseodymium, 0.42% in bastnasite, 0.042% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.06487737156494416,0.08181320726503143,0.10645158936581105,-2.4889060763170778e-24,1.245296182049711e-22,0.07339445699330664,0.06487737156494416,0.08181320726503143,0.10645158936581105,7.681658321197054e-24,1.245296183887551e-22,0.07339445699330664,0.06487737156494416,0.08181320726503141,0.10645158936581105,7.681658321197054e-24,1.0349534801772993e-22,0.0733944569933066 +472,Primisulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +473,Prochloraz,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +474,Procymidone,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +475,Profenofos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +476,Prohexadione-calcium,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +477,Prometryn,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +478,Pronamide,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +479,Propamocarb HCl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +480,Propanal,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.4785737525088956e-09,1.6038270440815834e-09,1.7700564900952652e-09,4.25621431929642e-11,4.0971803720805643e-10,1.6374951151128504e-09,1.4785737525088956e-09,1.6038270440815834e-09,1.7700564900952652e-09,1.5065358538128967e-10,4.0971803720805643e-10,1.6374951151128506e-09,1.4785737525088969e-09,1.603827044081584e-09,1.7700564900952652e-09,1.5065358538128967e-10,4.0971803720805643e-10,1.6374951151128488e-09 +481,Propane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.00019275090564323705,0.000213248612739524,0.00024280453579766798,1.661728259545155e-05,8.423291649141399e-05,0.0002150419698522828,0.00019275090564323705,0.000213248612739524,0.00024280453579766798,2.2867826946188016e-05,8.423291649141399e-05,0.0002150419698522828,0.00019275090564323708,0.000213248612739524,0.00024280453579766795,2.2867826946188016e-05,8.423291649141395e-05,0.0002150419698522827 +482,Propanil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +483,Propanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.572032302908375e-10,7.93248672132749e-10,8.424337712662234e-10,5.096253199834221e-12,4.901651553156836e-11,7.418773819188343e-10,7.572032302908375e-10,7.93248672132749e-10,8.424337712662234e-10,2.2111959255069832e-11,4.901651553156835e-11,7.418773819188343e-10,7.572032302908375e-10,7.932486721327491e-10,8.424337712662233e-10,2.2111959255069832e-11,4.901651553156833e-11,7.418773819188339e-10 +484,Propaquizafop,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +485,Propargite,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +486,Propene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.1547970045032032e-05,1.5313981343059234e-05,2.0205591228219774e-05,2.658413833998585e-07,4.163590903469083e-06,1.6655010151568743e-05,1.1547970045032032e-05,1.5313981343059234e-05,2.0205591228219774e-05,7.354858407112461e-07,4.163590903469083e-06,1.6655010151568743e-05,1.1547970045032034e-05,1.5313981343059234e-05,2.020559122821977e-05,7.354858407112461e-07,4.163590903469081e-06,1.6655010151568736e-05 +487,Propiconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +488,Propionic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.104167306576598e-07,4.312191878185287e-07,4.590777026731054e-07,2.902203885589931e-07,7.228287157153188e-07,4.747050464653609e-07,4.104167306576598e-07,4.312191878185287e-07,4.590777026731054e-07,3.3253710491942125e-07,7.228287157153188e-07,4.747050464653609e-07,4.1041673065765966e-07,4.312191878185287e-07,4.590777026731054e-07,3.3253710491942125e-07,7.228287157153188e-07,4.7470504646536077e-07 +489,Propoxycarbazone-sodium (prop),"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +490,Propylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.661405451181617e-12,6.219138224679898e-12,7.011829362509678e-12,1.6842252415711292e-13,1.4005477954508815e-12,6.87207066332589e-12,5.661405451181617e-12,6.219138224679898e-12,7.011829362509678e-12,1.01191576121074e-12,1.4005477954508813e-12,6.872070663325889e-12,5.661405451181615e-12,6.219138224679898e-12,7.011829362509678e-12,1.01191576121074e-12,1.4005477954508817e-12,6.872070663325886e-12 +491,Propylene oxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.335899040569499e-08,7.688720727253436e-08,8.17230595743917e-08,1.0259036079010208e-09,2.865736565090933e-08,7.677837076725565e-08,7.335899040569499e-08,7.688720727253436e-08,8.17230595743917e-08,4.879214247736279e-09,2.865736565090933e-08,7.677837076725565e-08,7.335899040569499e-08,7.688720727253436e-08,8.17230595743917e-08,4.879214247736276e-09,2.8657365650909318e-08,7.67783707672556e-08 +492,Prosulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +493,Prothioconazol,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +494,"Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.337558572923934e-10,1.4574298078983273e-10,1.62911947046909e-10,1.5435665804333886e-11,7.224696762832141e-11,1.503148504310565e-10,1.337558572923934e-10,1.4574298078983273e-10,1.62911947046909e-10,2.229550676074866e-11,7.224696762832141e-11,1.503148504310565e-10,1.337558572923934e-10,1.4574298078983268e-10,1.62911947046909e-10,2.229550676074866e-11,7.22469676283214e-11,1.5031485043105642e-10 +495,"Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.795034514632267e-10,5.224762768003989e-10,5.840255707877169e-10,5.533555801773765e-11,2.589992759271487e-10,5.388660425147126e-10,4.795034514632267e-10,5.224762768003989e-10,5.840255707877169e-10,7.992750773450886e-11,2.589992759271487e-10,5.388660425147126e-10,4.795034514632267e-10,5.224762768003987e-10,5.840255707877169e-10,7.992750773450886e-11,2.5899927592714866e-10,5.388660425147124e-10 +496,"Pumice, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +497,Pymetrozine,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +498,Pyraclostrobin (prop),"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +499,Pyriproxyfen,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +500,"Pyrite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +501,Pyrithiobac sodium salt,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +502,Quinclorac,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +503,Quinoxyfen,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +504,Quintozene,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +505,Quizalofop ethyl ester,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +506,Quizalofop-P,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +507,"Radioactive species, other beta emitters","('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,0.00038160945449412526,0.0003979101287598207,0.0004201412721341328,9.679471649096683e-05,0.000359049585394679,0.0004487667741452099,0.00038160945449412526,0.0003979101287598207,0.0004201412721341328,0.00013664470343730087,0.000359049585394679,0.0004487667741452103,0.0003816094544941253,0.0003979101287598207,0.0004201412721341327,0.00013664470343730087,0.0003590495853946789,0.00044876677414521025 +508,Radium-226,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,0.00023494819482061506,0.00024277005052202426,0.0002533310776141853,1.2307685886792784e-06,2.3586036376446852e-05,0.0029285931078298463,0.00023494819482061506,0.00024277005052202426,0.0002533310776141853,3.888472084196226e-06,2.3586036376446852e-05,0.0029285931078298468,0.00023494819482061506,0.0002427700505220242,0.0002533310776141853,3.888472084196226e-06,2.3586036376446845e-05,0.0029285931078298468 +509,Radium-228,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,0.0003050132975881007,0.00031739846822009837,0.0003341266323257795,6.665335759821389e-06,0.00012774284030200511,0.0011368792558497838,0.0003050132975881007,0.00031739846822009837,0.0003341266323257795,2.1058684639388975e-05,0.00012774284030200511,0.001136879255849784,0.0003050132975881007,0.0003173984682200983,0.00033412663232577954,2.1058684639388975e-05,0.0001277428403020051,0.0011368792558497838 +510,Radon-220,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,0.00391513722673404,0.004036494727767416,0.004200327263911022,1.0309601358428468e-07,1.9673141248642067e-06,0.05953118838950315,0.00391513722673404,0.004036494727767416,0.004200327263911022,3.247243382061318e-07,1.9673141248642067e-06,0.05953118838950316,0.00391513722673404,0.004036494727767415,0.004200327263911022,3.247243382061318e-07,1.9673141248642063e-06,0.05953118838950316 +511,Radon-222,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,0.0022061984206554726,0.002274603674102352,0.002366950772952594,1.0288070806577925e-07,1.966737332231847e-06,0.03352256742455247,0.0022061984206554726,0.002274603674102352,0.002366950772952594,3.244798118373076e-07,1.966737332231847e-06,0.03352256742455248,0.0022061984206554726,0.0022746036741023517,0.002366950772952594,3.244798118373076e-07,1.9667373322318465e-06,0.03352256742455248 +512,"Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.0012423981965319e-10,1.1061572469572928e-10,1.2573983639664691e-10,1.8021995455358792e-12,2.9609932782470855e-11,1.0853041650413738e-10,1.0012423981965319e-10,1.1061572469572928e-10,1.2573983639664691e-10,4.929453663272688e-12,2.9609932782470855e-11,1.0853041650413738e-10,1.0012423981965318e-10,1.1061572469572928e-10,1.257398363966469e-10,4.929453663272688e-12,2.960993278247084e-11,1.0853041650413735e-10 +513,"Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.136003542633198e-10,3.464608621616195e-10,3.938312771095412e-10,5.6446912464302106e-12,9.274163224791439e-11,3.3992944302729924e-10,3.136003542633198e-10,3.464608621616195e-10,3.938312771095412e-10,1.5439602161234614e-11,9.274163224791439e-11,3.3992944302729924e-10,3.1360035426331973e-10,3.464608621616195e-10,3.938312771095411e-10,1.5439602161234614e-11,9.274163224791433e-11,3.399294430272992e-10 +514,"Rhenium, in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.5762845129595883e-10,1.7316511862973857e-10,1.954991564614609e-10,2.098489146678882e-12,4.3617789288490416e-11,1.6661237541722495e-10,1.5762845129595883e-10,1.7316511862973857e-10,1.954991564614609e-10,5.249130139946947e-12,4.3617789288490416e-11,1.6661237541722498e-10,1.5762845129595888e-10,1.7316511862973854e-10,1.9549915646146088e-10,5.249130139946947e-12,4.36177892884904e-11,1.666123754172249e-10 +515,Rimsulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +516,"Samarium, 0.3% in bastnasite, 0.03% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.015464955666735105,0.019501986482923114,0.025375089503245272,-1.7760492432210286e-24,8.886262775283858e-23,0.017495191254000987,0.015464955666735105,0.019501986482923114,0.025375089503245272,5.4815260318029265e-24,8.886262788398433e-23,0.017495191254000987,0.015464955666735105,0.01950198648292311,0.025375089503245272,5.4815260318029265e-24,7.385286101104328e-23,0.017495191254000977 +517,"Sand, unspecified, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.0498117001950158e-05,1.5236145236633253e-05,2.118677860026371e-05,3.6004434545195837e-06,1.2030333069145228e-05,1.9322178459181297e-05,1.0498117001950158e-05,1.5236145236633253e-05,2.118677860026371e-05,6.06807402806953e-06,1.2030333069145228e-05,1.9322178459181297e-05,1.049811700195015e-05,1.5236145236633263e-05,2.118677860026371e-05,6.06807402806953e-06,1.2030333069145222e-05,1.9322178459186223e-05 +518,Scandium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.830140172198255e-09,5.036688357095147e-09,5.315687790967911e-09,1.2921203565181884e-10,2.4763321670899284e-09,5.563900845785248e-09,4.830140172198255e-09,5.036688357095147e-09,5.315687790967911e-09,4.0823666320178246e-10,2.4763321670899284e-09,5.563900845785248e-09,4.830140172198255e-09,5.0366883570951465e-09,5.3156877909679115e-09,4.0823666320178246e-10,2.4763321670899275e-09,5.563900845785246e-09 +519,Selenium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.7911816341731596e-07,3.975781533145279e-07,4.229931364385658e-07,1.290288292215742e-08,9.984595907019544e-08,1.2694350552793208e-06,3.7911816341731596e-07,3.975781533145279e-07,4.229931364385658e-07,4.248481589400415e-08,9.984595907019544e-08,1.269435055279321e-06,3.791181634173159e-07,3.975781533145278e-07,4.2299313643856576e-07,4.248481589400415e-08,9.984595907019541e-08,1.2694350552793208e-06 +520,Sethoxydim,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +521,"Shale, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,7.255314662087536e-07,1.4660612312657273e-06,2.3911513119648046e-06,1.138064419426238e-08,3.3389576150884283e-07,1.415087000736311e-06,7.255314662087536e-07,1.4660612312657273e-06,2.3911513119648046e-06,5.370938166925931e-08,3.338957615088428e-07,1.415087000736311e-06,7.25531466208751e-07,1.4660612312657294e-06,2.3911513119648046e-06,5.370938166925931e-08,3.338957615088428e-07,1.4150870007363108e-06 +522,Silicon,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.405868345537253e-05,6.69681705113074e-05,7.086854508003018e-05,1.640676189276244e-06,3.284729342567775e-05,7.333664082624407e-05,6.405868345537253e-05,6.69681705113074e-05,7.086854508003018e-05,5.228951070018754e-06,3.284729342567775e-05,7.333664082624408e-05,6.405868345537253e-05,6.696817051130738e-05,7.08685450800302e-05,5.228951070018754e-06,3.284729342567774e-05,7.333664082624404e-05 +523,Silthiofam,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +524,Silver,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.843040965518726e-10,2.996969029097539e-10,3.203432461508793e-10,1.2461114552957176e-11,1.4019163187621753e-10,3.290273781378377e-10,2.843040965518726e-10,2.996969029097539e-10,3.203432461508793e-10,4.268528292860484e-11,1.4019163187621753e-10,3.290273781378377e-10,2.8430409655187265e-10,2.996969029097539e-10,3.203432461508793e-10,4.268528292860484e-11,1.401916318762175e-10,3.290273781378376e-10 +525,"Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.0771971394986314e-07,3.20338196383311e-07,3.3720541402965354e-07,9.042866154644242e-10,1.0454687648754726e-07,3.0044296343106477e-07,3.0771971394986314e-07,3.20338196383311e-07,3.3720541402965354e-07,3.912958619099468e-09,1.0454687648754726e-07,3.0044296343106455e-07,3.0771971394986293e-07,3.203381963833112e-07,3.3720541402965333e-07,3.912958619099468e-09,1.0454687648754718e-07,3.004429634310641e-07 +526,"Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.195207767846866e-07,2.2852257199573812e-07,2.4055536128223465e-07,6.454882219205179e-10,7.458378876263877e-08,2.1433229435687126e-07,2.195207767846866e-07,2.2852257199573812e-07,2.4055536128223465e-07,2.7938605067126996e-09,7.458378876263877e-08,2.1433229435687126e-07,2.195207767846866e-07,2.2852257199573812e-07,2.4055536128223465e-07,2.7938605067126996e-09,7.458378876263874e-08,2.1433229435687118e-07 +527,"Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.0266802161189528e-08,2.109787059689239e-08,2.2208766066972594e-08,5.952767313879549e-11,6.8855496059387365e-09,1.978751234983918e-08,2.0266802161189528e-08,2.109787059689239e-08,2.2208766066972594e-08,2.577170417049646e-10,6.8855496059387365e-09,1.978751234983918e-08,2.0266802161189528e-08,2.1097870596892398e-08,2.2208766066972594e-08,2.577170417049646e-10,6.885549605938735e-09,1.9787512349839167e-08 +528,"Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.62870428410679e-08,4.818510746724114e-08,5.072226482325872e-08,1.3595433465438443e-10,1.5725802499120928e-08,4.519240003984921e-08,4.62870428410679e-08,4.818510746724114e-08,5.072226482325872e-08,5.885959888779762e-10,1.5725802499120928e-08,4.519240003984921e-08,4.62870428410679e-08,4.818510746724116e-08,5.072226482325872e-08,5.885959888779762e-10,1.5725802499120925e-08,4.519240003984919e-08 +529,"Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.536905680650094e-08,4.72294781382835e-08,4.971631741785412e-08,1.332580339385199e-10,1.5413921143787062e-08,4.429612349153354e-08,4.536905680650094e-08,4.72294781382835e-08,4.971631741785412e-08,5.769227063528985e-10,1.5413921143787062e-08,4.429612349153354e-08,4.5369056806500944e-08,4.722947813828351e-08,4.971631741785412e-08,5.769227063528985e-10,1.541392114378706e-08,4.429612349153352e-08 +530,"Silver, ion","('water', 'ground-')",emission,kilogram,biosphere3,6.679236890367639e-09,6.970887335997703e-09,7.368562522848697e-09,3.217824266180832e-09,1.3210093696834713e-08,1.7091383548818117e-08,6.679236890367639e-09,6.970887335997703e-09,7.368562522848697e-09,7.914575521550676e-09,1.3210093696834713e-08,1.7091383548818117e-08,6.679236890367639e-09,6.970887335997703e-09,7.368562522848697e-09,7.914575521550676e-09,1.3210093696834713e-08,1.7091383548818114e-08 +531,Simazine,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +532,Sodium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.1065269474044088e-05,2.2133013644582964e-05,2.3604021770501132e-05,1.8053726580400503e-06,8.675404896791079e-06,2.4473518811771865e-05,2.1065269474044088e-05,2.2133013644582964e-05,2.3604021770501132e-05,3.7505812151280382e-06,8.675404896791079e-06,2.4473518811771865e-05,2.1065269474044088e-05,2.213301364458296e-05,2.3604021770501126e-05,3.7505812151280382e-06,8.675404896791079e-06,2.447351881177185e-05 +533,Sodium chlorate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.44413025538815e-09,6.929443063147259e-09,7.615394600549055e-09,1.538890134518113e-09,1.1033535393891258e-08,1.4384062903322608e-08,6.44413025538815e-09,6.929443063147259e-09,7.615394600549055e-09,8.348990590522286e-09,1.1033535393891258e-08,1.4384062903322608e-08,6.44413025538815e-09,6.929443063147259e-09,7.615394600549055e-09,8.348990590522286e-09,1.103353539389126e-08,1.4384062903322611e-08 +534,"Sodium chloride, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.9674846285755088,2.035354710091756,2.1266129357917003,0.0012871239001781708,0.694748951291722,1.8360078932551138,1.9674846285755088,2.035354710091756,2.1266129357917003,0.003460830354732919,0.694748951291722,1.8360078932551138,1.9674846285755088,2.0353547100917555,2.1266129357917003,0.003460830354732919,0.6947489512917215,1.836007893255113 +535,Sodium dichromate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.846473782644812e-09,7.2040517159758275e-09,7.698030142397406e-09,6.602934814829452e-09,1.6503455092640816e-08,2.1101740489848546e-08,6.846473782644812e-09,7.2040517159758275e-09,7.698030142397406e-09,7.041139440280187e-09,1.6503455092640816e-08,2.110174048984855e-08,6.8464737826448105e-09,7.2040517159758275e-09,7.698030142397406e-09,7.041139440280187e-09,1.6503455092640822e-08,2.1101740489848566e-08 +536,Sodium formate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.2996594651143445e-09,4.544766335296408e-09,4.8835945356342764e-09,1.9379216894864324e-10,3.550950322369714e-09,5.942252474519377e-09,4.2996594651143445e-09,4.544766335296408e-09,4.8835945356342764e-09,1.7732459206141416e-09,3.550950322369714e-09,5.942252474519377e-09,4.2996594651143445e-09,4.544766335296408e-09,4.883594535634277e-09,1.7732459206141416e-09,3.550950322369712e-09,5.942252474519374e-09 +537,Sodium hydroxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.9158498563311234e-08,4.0763818804812724e-08,4.290943338986417e-08,1.0742722796223528e-10,1.3275651448405629e-08,3.820079350127547e-08,3.9158498563311234e-08,4.0763818804812724e-08,4.290943338986417e-08,4.724894240194873e-10,1.3275651448405629e-08,3.820079350127547e-08,3.9158498563311234e-08,4.0763818804812724e-08,4.290943338986417e-08,4.724894240194873e-10,1.3275651448405629e-08,3.8200793501275444e-08 +538,"Sodium nitrate, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,7.359272614680037e-12,1.0193801718902899e-11,1.3756388804993242e-11,6.716267544469756e-13,5.294176507022128e-12,1.169099408698387e-11,7.359272614680037e-12,1.0193801718902899e-11,1.3756388804993242e-11,2.208003386746339e-12,5.294176507022128e-12,1.169099408698387e-11,7.359272614680037e-12,1.0193801718902898e-11,1.3756388804993244e-11,2.208003386746339e-12,5.294176507022127e-12,1.1690994086983868e-11 +539,"Sodium sulphate, various forms, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.00014268585912606164,0.00015375684033427597,0.0001694279773511441,2.4108820239873927e-05,0.00023837651165768578,0.00033472898246330126,0.00014268585912606164,0.00015375684033427597,0.0001694279773511441,0.00019414682370825595,0.00023837651165768578,0.00033472898246330126,0.00014268585912606164,0.00015375684033427597,0.0001694279773511441,0.00019414682370825595,0.0002383765116576859,0.0003347289824633013 +540,"Sodium, ion","('water', 'ground-')",emission,kilogram,biosphere3,0.0003787898253070784,0.0003952908494237891,0.00041781721104956976,7.40400141225666e-05,0.00036404392562661207,0.0006125804496093148,0.0003787898253070784,0.0003952908494237891,0.00041781721104956976,0.00017314323568870378,0.00036404392562661207,0.0006125804496093148,0.0003787898253070784,0.0003952908494237891,0.00041781721104956976,0.00017314323568870378,0.00036404392562661207,0.0006125804496093147 +541,"Solids, inorganic","('water', 'ground-')",emission,kilogram,biosphere3,0.0028265874340968776,0.0029498622902292253,0.003118239768161159,0.00015630885847601485,0.001465008077795282,0.003279945065124972,0.0028265874340968776,0.0029498622902292253,0.003118239768161159,0.000451172938956559,0.001465008077795282,0.003279945065124972,0.0028265874340968776,0.0029498622902292253,0.003118239768161159,0.000451172938956559,0.0014650080777952818,0.003279945065124972 +542,Spinosad,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +543,Spiroxamine,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +544,"Spodumene, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +545,"Stibnite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.4725307964819515e-11,2.57814641669305e-11,2.722186838435025e-11,6.271540577530755e-12,2.3263604984323195e-11,2.9076577109403877e-11,2.4725307964819515e-11,2.57814641669305e-11,2.722186838435025e-11,8.853508134677724e-12,2.3263604984323195e-11,2.9076577109403903e-11,2.4725307964819518e-11,2.57814641669305e-11,2.7221868384350244e-11,8.853508134677724e-12,2.326360498432319e-11,2.9076577109403896e-11 +546,Strontium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.3963332935476323e-06,1.4481798883675293e-06,1.5181970660490535e-06,1.9486561136148076e-08,3.734677501433457e-07,1.1004428666996612e-05,1.3963332935476323e-06,1.4481798883675293e-06,1.5181970660490535e-06,6.157722538296283e-08,3.734677501433457e-07,1.1004428666996614e-05,1.3963332935476323e-06,1.448179888367529e-06,1.5181970660490539e-06,6.157722538296283e-08,3.7346775014334557e-07,1.1004428666996614e-05 +547,Styrene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.6325493791572936e-08,2.996511745071318e-08,4.7089264122789414e-08,5.9449098928889e-10,9.967164781332537e-09,3.2529215812635256e-08,1.6325493791572936e-08,2.996511745071318e-08,4.7089264122789414e-08,3.851070667595232e-09,9.967164781332537e-09,3.252921581263527e-08,1.632549379157293e-08,2.996511745071318e-08,4.708926412278944e-08,3.851070667595232e-09,9.967164781332536e-09,3.2529215812635335e-08 +548,Sulfate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.011674932042205302,0.012168537925103824,0.0128349750469998,2.6815332696674992e-05,0.0029763982104199656,0.011427129105804141,0.011674932042205302,0.012168537925103824,0.0128349750469998,2.793354052414213e-05,0.0029763982104199656,0.011427129105804141,0.0116749320422053,0.012168537925103822,0.012834975046999797,2.793354052414213e-05,0.0029763982104199643,0.011427129105804137 +549,Sulfentrazone,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +550,Sulfosate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +551,Sulfosulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +552,Sulfur,"('soil', 'agricultural')",emission,kilogram,biosphere3,9.599614016921184e-06,9.951283248027596e-06,1.0427849010470692e-05,1.1799711366773126e-06,5.757415417966333e-06,9.467421495580173e-06,9.599614016921184e-06,9.951283248027596e-06,1.0427849010470692e-05,1.304697985666116e-06,5.757415417966333e-06,9.467421495580173e-06,9.599614016921186e-06,9.951283248027596e-06,1.0427849010470692e-05,1.304697985666116e-06,5.757415417966331e-06,9.467421495580166e-06 +553,Sulfur dioxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0513404856294681,0.053771053936050334,0.057071650549052416,0.000951466205439172,0.013218175325983609,0.12010320728538722,0.0513404856294681,0.053771053936050334,0.057071650549052416,0.002053303457857766,0.013218175325983609,0.12010320728538723,0.05134048562946808,0.05377105393605033,0.0570716505490524,0.002053303457857766,0.013218175325983605,0.1201032072853872 +554,Sulfur hexafluoride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +555,"Sulfur, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,7.510160946613593e-06,1.6536016413311254e-05,2.780857559845357e-05,9.643923693690626e-07,9.920823655957366e-06,2.2053266679763874e-05,7.510160946613593e-06,1.6536016413311254e-05,2.780857559845357e-05,6.656951785829126e-06,9.920823655957366e-06,2.2053266679763874e-05,7.5101609466135815e-06,1.653601641331127e-05,2.780857559845357e-05,6.656951785829126e-06,9.920823655957367e-06,2.205326667976424e-05 +556,Sulfuric acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.196698673932386e-09,8.53273172576667e-09,8.98186473903218e-09,2.258786130739552e-11,2.7792499351169374e-09,7.996652302467685e-09,8.196698673932386e-09,8.53273172576667e-09,8.98186473903218e-09,9.924106821905634e-11,2.7792499351169374e-09,7.996652302467685e-09,8.196698673932386e-09,8.53273172576667e-09,8.98186473903218e-09,9.924106821905634e-11,2.779249935116937e-09,7.99665230246768e-09 +557,"Suspended solids, unspecified","('water', 'ground-')",emission,kilogram,biosphere3,3.803629150135367e-23,1.4470341675953e-23,3.798631314139631e-23,-2.345725305165898e-25,1.1736572924370752e-23,3.8146736603272275e-23,3.803629150135367e-23,1.4470341675953e-23,3.798631314139631e-23,7.239751021996603e-25,1.1736572941691888e-23,3.0217050007601764e-23,3.010660490388615e-23,2.2400027026999273e-23,3.0056626112337584e-23,7.239751021996603e-25,9.754150995178499e-24,2.2287364098767657e-23 +558,"Sylvite, 25 % in sylvinite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.002376207227763355,0.002477971226139699,0.0026154523648041126,1.0123141329073307e-06,1.324726282251065e-05,0.0022297581817421397,0.002376207227763355,0.002477971226139699,0.0026154523648041126,3.554010805314307e-06,1.3247262822510671e-05,0.0022297581817421397,0.0023762072277633615,0.0024779712261397023,0.0026154523648041126,3.554010805314307e-06,1.3247262822510719e-05,0.0022297581817421344 +559,"Talc, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.3605108546289204e-05,2.7984992840347152e-05,3.4320854627578474e-05,2.0032900566088785e-06,1.751248212070755e-05,3.852226830996994e-05,2.3605108546289204e-05,2.7984992840347152e-05,3.4320854627578474e-05,1.3033776628268762e-05,1.751248212070755e-05,3.852226830996994e-05,2.36051085462892e-05,2.7984992840347152e-05,3.4320854627578474e-05,1.3033776628268762e-05,1.7512482120707548e-05,3.852226830996994e-05 +560,"Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.4269958458605145e-07,2.5265128526979405e-07,2.659535135692887e-07,7.034070098172917e-10,8.242083389026394e-08,2.3692057261780631e-07,2.4269958458605145e-07,2.5265128526979405e-07,2.659535135692887e-07,3.0545175138421263e-09,8.242083389026394e-08,2.3692057261780626e-07,2.4269958458605145e-07,2.5265128526979405e-07,2.659535135692887e-07,3.0545175138421263e-09,8.242083389026394e-08,2.3692057261780613e-07 +561,t-Butyl methyl ether,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.9406228955346655e-09,3.073101764648626e-09,3.2529142089801004e-09,4.763234703166224e-10,3.5506504290879093e-09,6.750185575092806e-09,2.9406228955346655e-09,3.073101764648626e-09,3.2529142089801004e-09,1.2251846859089735e-09,3.5506504290879093e-09,6.750185575092787e-09,2.9406228955346655e-09,3.073101764648626e-09,3.252914208980101e-09,1.2251846859089735e-09,3.550650429087907e-09,6.750185575092804e-09 +562,t-Butylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,9.037618710917523e-11,9.42713713399409e-11,9.95373557629576e-11,8.619112993747222e-14,3.245693589926729e-12,8.836309550222075e-11,9.037618710917523e-11,9.42713713399409e-11,9.95373557629576e-11,2.7823625488181514e-13,3.2456935899267267e-12,8.836309550222071e-11,9.037618710917519e-11,9.427137133994091e-11,9.953735576295762e-11,2.7823625488181514e-13,3.2456935899267324e-12,8.836309550222067e-11 +563,TCMTB,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +564,Tebuconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +565,Tebufenozide,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +566,Tebupirimphos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +567,Tebutam,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.5765738100424527e-08,2.6887429511739153e-08,2.8405251789012923e-08,2.875171187069361e-11,1.895554407139148e-10,2.4296797830098317e-08,2.5765738100424527e-08,2.6887429511739153e-08,2.8405251789012923e-08,1.1239418174965652e-10,1.8955544071391414e-10,2.4296797830098307e-08,2.576573810042452e-08,2.6887429511739166e-08,2.8405251789012927e-08,1.1239418174965652e-10,1.89555440713916e-10,2.4296797830098298e-08 +568,Teflubenzuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.3275685941792198e-10,2.874472423399151e-10,3.668903903835985e-10,2.346922551534474e-11,1.962206591411023e-10,4.390079670912536e-10,2.3275685941792198e-10,2.874472423399151e-10,3.668903903835985e-10,1.4234176712275408e-10,1.962206591411023e-10,4.390079670912536e-10,2.3275685941792195e-10,2.874472423399151e-10,3.668903903835985e-10,1.4234176712275408e-10,1.962206591411023e-10,4.390079670912535e-10 +569,Tefluthrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +570,"Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.2928663688183464e-08,3.427895540901844e-08,3.608390379696252e-08,9.682485072502771e-11,1.1187754257821558e-08,3.2150378419359145e-08,3.2928663688183464e-08,3.427895540901844e-08,3.608390379696252e-08,4.190860757195075e-10,1.1187754257821558e-08,3.2150378419359145e-08,3.2928663688183464e-08,3.427895540901844e-08,3.608390379696252e-08,4.190860757195075e-10,1.1187754257821554e-08,3.215037841935913e-08 +571,Terbufos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +572,Tetramethyl ammonium hydroxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +573,Thallium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.068626177199294e-09,6.3286099370395635e-09,6.679850409821447e-09,1.6253544002050546e-10,3.1121457924810723e-09,6.992024901187614e-09,6.068626177199294e-09,6.3286099370395635e-09,6.679850409821447e-09,5.1515409273777e-10,3.1121457924810723e-09,6.992024901187614e-09,6.068626177199294e-09,6.328609937039563e-09,6.679850409821448e-09,5.1515409273777e-10,3.1121457924810715e-09,6.992024901187612e-09 +574,Thiamethoxam,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +575,Thidiazuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +576,Thifensulfuron-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +577,Thiobencarb,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +578,Thiram,"('soil', 'agricultural')",emission,kilogram,biosphere3,7.985490729023845e-09,8.325138551255259e-09,8.78374421776923e-09,8.123047142654769e-13,9.664155468720807e-12,7.47645339820784e-09,7.985490729023845e-09,8.325138551255259e-09,8.78374421776923e-09,1.928914770512854e-12,9.664155468720807e-12,7.47645339820784e-09,7.985490729023871e-09,8.32513855125527e-09,8.78374421776923e-09,1.928914770512853e-12,9.664155468720978e-12,7.476453398207818e-09 +579,Thorium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.283644999703275e-09,7.595134413157333e-09,8.015888407527401e-09,1.9485408049904983e-10,3.7344667303481354e-09,8.390454227083781e-09,7.283644999703275e-09,7.595134413157333e-09,8.015888407527401e-09,6.15667380997507e-10,3.7344667303481354e-09,8.390454227083781e-09,7.283644999703275e-09,7.595134413157331e-09,8.015888407527403e-09,6.15667380997507e-10,3.734466730348135e-09,8.390454227083778e-09 +580,Thorium-228,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,5.1171275267915255e-05,5.300520251817599e-05,5.5481705146461146e-05,5.640961608441733e-07,1.0810259552711568e-05,0.0004821863576725052,5.1171275267915255e-05,5.300520251817599e-05,5.5481705146461146e-05,1.7822113455389692e-06,1.0810259552711568e-05,0.0004821863576725053,5.1171275267915255e-05,5.300520251817597e-05,5.548170514646115e-05,1.7822113455389692e-06,1.0810259552711565e-05,0.0004821863576725053 +581,Thorium-232,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,6.0713973216829214e-05,6.275327051850003e-05,6.550676610976339e-05,3.589721786703766e-07,6.879245819313203e-06,0.0007352720560592519,6.0713973216829214e-05,6.275327051850003e-05,6.550676610976339e-05,1.1341335737608554e-06,6.879245819313203e-06,0.000735272056059252,6.0713973216829214e-05,6.275327051850002e-05,6.550676610976339e-05,1.1341335737608554e-06,6.879245819313201e-06,0.000735272056059252 +582,Tin,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.7238395040257632e-09,3.896831362174475e-09,4.1297917602358185e-09,1.0777034377232532e-10,1.832721894762148e-09,4.236414729824093e-09,3.7238395040257632e-09,3.896831362174475e-09,4.1297917602358185e-09,3.504103808041229e-10,1.832721894762148e-09,4.236414729824093e-09,3.7238395040257632e-09,3.896831362174475e-09,4.1297917602358185e-09,3.504103808041229e-10,1.8327218947621476e-09,4.236414729824092e-09 +583,"Tin, 79% in cassiterite, 0.1% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.1110541079174182e-05,1.1602554441132464e-05,1.2265693492197389e-05,1.9757898776685292e-07,4.728946441725401e-06,1.1840624460566422e-05,1.1110541079174182e-05,1.1602554441132464e-05,1.2265693492197389e-05,9.903719931958042e-07,4.728946441725401e-06,1.1840624460566449e-05,1.1110541079174182e-05,1.1602554441132476e-05,1.2265693492197389e-05,9.903719931958042e-07,4.728946441725421e-06,1.1840624460566464e-05 +584,"Tin, ion","('water', 'ground-')",emission,kilogram,biosphere3,1.8138547776577437e-08,1.8950169749080243e-08,2.0048847413545983e-08,8.479094052487994e-09,8.571433111489114e-08,9.478984801685393e-08,1.8138547776577437e-08,1.8950169749080243e-08,2.0048847413545983e-08,7.625139576691155e-08,8.571433111489114e-08,9.478984801685393e-08,1.813854777657743e-08,1.8950169749080243e-08,2.0048847413545983e-08,7.625139576691155e-08,8.571433111489116e-08,9.478984801685391e-08 +585,"TiO2, 54% in ilmenite, 2.6% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0003961441769374938,0.0004222003328542573,0.00045880223337260105,0.00012867111541744,0.0006562560667015026,0.0007647763053060588,0.0003961441769374938,0.0004222003328542573,0.00045880223337260105,0.00044724711862645497,0.0006562560667015026,0.0007647763053060588,0.0003961441769374896,0.0004222003328542574,0.00045880223337259237,0.00044724711862645497,0.0006562560667015022,0.0007647763053060541 +586,"TiO2, 95% in rutile, 0.40% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.7669728571061527e-09,1.8413376093375676e-09,1.9414046363597716e-09,1.973445249268744e-11,6.632385555916969e-10,1.7882843965129222e-09,1.7669728571061527e-09,1.8413376093375676e-09,1.9414046363597716e-09,8.040848643845185e-11,6.632385555916969e-10,1.7882843965129224e-09,1.7669728571061527e-09,1.8413376093375678e-09,1.9414046363597716e-09,8.040848643845185e-11,6.632385555916967e-10,1.7882843965129218e-09 +587,Titanium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.4642433569739151e-06,1.526862279799625e-06,1.6114494259815875e-06,3.9217793163289176e-08,7.501726774981908e-07,1.6862691103254233e-06,1.4642433569739151e-06,1.526862279799625e-06,1.6114494259815875e-06,1.2426676093016768e-07,7.501726774981908e-07,1.6862691103254233e-06,1.4642433569739151e-06,1.5268622797996247e-06,1.6114494259815877e-06,1.2426676093016768e-07,7.501726774981907e-07,1.6862691103254227e-06 +588,"Titanium, ion","('water', 'ground-')",emission,kilogram,biosphere3,8.694272429682155e-08,9.074801720973131e-08,9.593755611997656e-08,2.097873017009371e-08,1.267479011992858e-07,1.782523115965432e-07,8.694272429682155e-08,9.074801720973131e-08,9.593755611997656e-08,8.15028637835727e-08,1.267479011992858e-07,1.782523115965432e-07,8.694272429682155e-08,9.074801720973131e-08,9.593755611997656e-08,8.15028637835727e-08,1.267479011992858e-07,1.7825231159654314e-07 +589,"TOC, Total Organic Carbon","('water', 'ground-')",emission,kilogram,biosphere3,1.1410887751417143e-26,4.341102617301076e-27,1.1395894243034417e-26,-7.037176101133358e-29,3.520971970191943e-27,1.1444021282866762e-26,1.1410887751417143e-26,4.341102617301076e-27,1.1395894243034417e-26,2.1719253638928154e-28,3.520971975388284e-27,9.065115241411772e-27,9.03198170942305e-27,6.720008285368785e-27,9.01698807156296e-27,2.1719253638928154e-28,2.926245375745806e-27,6.68620940600771e-27 +590,Toluene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.1520458215818726e-05,3.474825745831442e-05,3.937581238145498e-05,9.63701893156822e-07,9.50466943282105e-06,4.385539468936041e-05,3.1520458215818726e-05,3.474825745831442e-05,3.937581238145498e-05,2.1687465240985572e-06,9.50466943282105e-06,4.385539468936041e-05,3.1520458215818726e-05,3.474825745831442e-05,3.9375812381454975e-05,2.1687465240985572e-06,9.504669432821047e-06,4.385539468936039e-05 +591,"Toluene, 2-chloro","('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.71525752975959e-10,5.965880273756032e-10,6.305223614276013e-10,4.80949822500034e-13,4.092420379541665e-12,5.389170592668004e-10,5.71525752975959e-10,5.965880273756032e-10,6.305223614276013e-10,2.586235922519301e-12,4.092420379541664e-12,5.389170592668004e-10,5.715257529759606e-10,5.965880273756039e-10,6.305223614276013e-10,2.586235922519301e-12,4.092420379541679e-12,5.389170592667991e-10 +592,Tralkoxydim,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +593,Tralomethrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +594,"Transformation, from annual crop, non-irrigated","('natural resource', 'land')",natural resource,square meter,biosphere3,0.08400041254704127,0.08765730424535001,0.09260564503517453,9.373584759512784e-05,0.0006181204853263437,0.07921144685130518,0.08400041254704127,0.08765730424535001,0.09260564503517453,0.00036642618502585064,0.0006181204853263415,0.07921144685130516,0.08400041254704124,0.08765730424535004,0.09260564503517454,0.00036642618502585064,0.0006181204853263476,0.07921144685130513 +595,"Transformation, from arable land, unspecified use","('natural resource', 'land')",natural resource,square meter,biosphere3,4.030456198909843e-06,4.301646993329233e-06,4.681368591393748e-06,2.0143695377798027e-06,6.409985523776845e-06,9.36560884119802e-06,4.030456198909843e-06,4.301646993329233e-06,4.681368591393748e-06,2.7392076498522834e-06,6.409985523776845e-06,9.365608841198021e-06,4.030456198909843e-06,4.301646993329233e-06,4.681368591393748e-06,2.7392076498522834e-06,6.409985523776847e-06,9.365608841198021e-06 +596,"Transformation, from cropland fallow (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,7.091367828413543e-07,7.705597348072828e-07,8.573859784784902e-07,5.8566846491113126e-08,5.797357610214625e-07,1.1576344643609851e-06,7.091367828413543e-07,7.705597348072828e-07,8.573859784784902e-07,2.367317517912377e-07,5.797357610214625e-07,1.1576344643609851e-06,7.091367828413543e-07,7.705597348072829e-07,8.573859784784902e-07,2.367317517912377e-07,5.797357610214625e-07,1.1576344643609847e-06 +597,"Transformation, from dump site, inert material landfill","('natural resource', 'land')",natural resource,square meter,biosphere3,2.341775325001494e-05,2.4428761429428258e-05,2.5797169393219297e-05,1.1307195898240507e-06,1.288767988301936e-05,3.1447444553714145e-05,2.341775325001494e-05,2.4428761429428258e-05,2.5797169393219297e-05,4.732221298276361e-06,1.288767988301936e-05,3.144744455371415e-05,2.341775325001494e-05,2.4428761429428258e-05,2.57971693932193e-05,4.732221298276361e-06,1.288767988301936e-05,3.1447444553714145e-05 +598,"Transformation, from dump site, residual material landfill","('natural resource', 'land')",natural resource,square meter,biosphere3,1.8010646754098412e-05,1.8835635424067952e-05,1.9954247553219906e-05,2.0218611409068677e-05,6.619548050398426e-05,0.00011786624505845337,1.8010646754098412e-05,1.8835635424067952e-05,1.9954247553219906e-05,5.930601875250508e-05,6.619548050398426e-05,0.00011786624505845339,1.8010646754098416e-05,1.883563542406795e-05,1.9954247553219903e-05,5.930601875250508e-05,6.619548050398426e-05,0.00011786624505845337 +599,"Transformation, from dump site, sanitary landfill","('natural resource', 'land')",natural resource,square meter,biosphere3,5.226394610194884e-07,5.49415190257899e-07,5.862178509286258e-07,6.940091248104538e-08,3.012911669747461e-07,6.112634441024415e-07,5.226394610194884e-07,5.49415190257899e-07,5.862178509286258e-07,8.331214773780719e-08,3.012911669747461e-07,6.112634441024415e-07,5.226394610194883e-07,5.49415190257899e-07,5.862178509286258e-07,8.331214773780719e-08,3.0129116697474605e-07,6.112634441024414e-07 +600,"Transformation, from dump site, slag compartment","('natural resource', 'land')",natural resource,square meter,biosphere3,6.04722012614888e-08,6.497513216507289e-08,7.104502285811959e-08,7.50327937434879e-09,4.577917456993844e-08,7.787038926484211e-08,6.04722012614888e-08,6.497513216507289e-08,7.104502285811959e-08,1.9768492815744454e-08,4.577917456993844e-08,7.78703892648472e-08,6.047220126148999e-08,6.497513216507161e-08,7.104502285811965e-08,1.9768492815744454e-08,4.5779174569933535e-08,7.787038926484733e-08 +601,"Transformation, from forest, extensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.003086616609801611,0.0032212570001283565,0.003403673989459514,0.0004199090291182914,0.0015246372958230784,0.005644842865740243,0.003086616609801611,0.0032212570001283565,0.003403673989459514,0.0006709482405620404,0.0015246372958230782,0.005644842865740244,0.0030866166098016045,0.0032212570001283643,0.0034036739894595146,0.0006709482405620404,0.0015246372958230778,0.005644842865740243 +602,"Transformation, from forest, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0019359865035252868,0.002018330046596706,0.002129513493042187,1.969335404891396e-07,2.342958646224879e-06,0.0018125765046039474,0.0019359865035252868,0.002018330046596706,0.002129513493042187,4.6764226315184334e-07,2.342958646224879e-06,0.0018125765046039474,0.0019359865035252929,0.0020183300465967087,0.002129513493042187,4.67642263151843e-07,2.3429586462249207e-06,0.0018125765046039422 +603,"Transformation, from forest, primary (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0019359865035252866,0.002018330046596706,0.002129513493042186,1.9693354048913962e-07,2.342958646224879e-06,0.0018125765046039474,0.0019359865035252866,0.002018330046596706,0.002129513493042186,4.6764226315184334e-07,2.342958646224879e-06,0.0018125765046039474,0.0019359865035252926,0.0020183300465967083,0.0021295134930421865,4.67642263151843e-07,2.3429586462249207e-06,0.0018125765046039422 +604,"Transformation, from forest, unspecified","('natural resource', 'land')",natural resource,square meter,biosphere3,0.004245238693254065,0.004710132686678195,0.005380647523157177,0.00010524286482713806,0.0012862736530651969,0.004651685905686862,0.004245238693254065,0.004710132686678195,0.005380647523157177,0.00024160624111541044,0.0012862736530651969,0.004651685905686862,0.0042452386932540645,0.004710132686678194,0.005380647523157177,0.00024160624111541044,0.0012862736530651964,0.004651685905686861 +605,"Transformation, from heterogeneous, agricultural","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +606,"Transformation, from industrial area","('natural resource', 'land')",natural resource,square meter,biosphere3,8.187053138263376e-06,8.67786319344749e-06,9.350467141954673e-06,3.166880146153434e-06,9.421062893732785e-06,1.01839134098274e-05,8.187053138263376e-06,8.67786319344749e-06,9.350467141954673e-06,4.017512787791459e-06,9.421062893732785e-06,1.0183913409827401e-05,8.187053138263375e-06,8.67786319344749e-06,9.350467141954673e-06,4.017512787791459e-06,9.421062893732784e-06,1.0183913409827401e-05 +607,"Transformation, from mineral extraction site","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0001301343292152472,0.00014992572541278477,0.0001784476946823248,1.7519552952272172e-05,9.902383810867495e-05,0.00020004126842279674,0.0001301343292152472,0.00014992572541278477,0.00017844769468232483,5.285097187731214e-05,9.902383810867495e-05,0.00020004126842279674,0.00013013432921524717,0.00014992572541278474,0.00017844769468232483,5.285097187731214e-05,9.902383810867495e-05,0.00020004126842279655 +608,"Transformation, from pasture, man made","('natural resource', 'land')",natural resource,square meter,biosphere3,9.045528016402554e-05,9.463119132181624e-05,0.00010030690550820424,4.136424902732741e-05,0.00016806166643452137,0.00029081005736520066,9.045528016402554e-05,9.463119132181624e-05,0.00010030690550820424,0.00013317889538563414,0.00016806166643452137,0.00029081005736520066,9.045528016402554e-05,9.463119132181623e-05,0.00010030690550820425,0.00013317889538563414,0.00016806166643452134,0.00029081005736520066 +609,"Transformation, from pasture, man made, extensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +610,"Transformation, from pasture, man made, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,6.855215078254776e-05,7.153651546329492e-05,7.557482328152145e-05,7.649661275573884e-08,5.043299406806218e-07,6.464389810601647e-05,6.855215078254776e-05,7.153651546329492e-05,7.557482328152145e-05,2.9903521002231524e-07,5.043299406806202e-07,6.464389810601645e-05,6.855215078254773e-05,7.153651546329496e-05,7.557482328152147e-05,2.9903521002231524e-07,5.043299406806251e-07,6.464389810601642e-05 +611,"Transformation, from seabed, unspecified","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0013348601353014213,0.0014750301976613203,0.0016766356231911735,0.0004538935206598093,0.0013086240446950157,0.0014782326156807881,0.0013348601353014213,0.0014750301976613203,0.0016766356231911735,0.0005041110289315752,0.0013086240446950157,0.0014782326156807881,0.001334860135301421,0.0014750301976613203,0.0016766356231911735,0.0005041110289315752,0.0013086240446950157,0.0014782326156807875 +612,"Transformation, from shrub land, sclerophyllous","('natural resource', 'land')",natural resource,square meter,biosphere3,5.442344527315459e-05,5.687446389548528e-05,6.0205000372472185e-05,2.677030201252368e-05,0.00011390831900038116,0.00018823314489924752,5.442344527315459e-05,5.687446389548528e-05,6.0205000372472185e-05,9.196751565254807e-05,0.00011390831900038116,0.00018823314489924752,5.4423445273154594e-05,5.687446389548528e-05,6.020500037247219e-05,9.196751565254807e-05,0.00011390831900038114,0.00018823314489924752 +613,"Transformation, from unspecified","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0007413788603041671,0.0007962716330493463,0.0008736061945419466,0.00019469287104817006,0.0010568151426117976,0.002781329392750736,0.0007413788603041671,0.0007962716330493463,0.0008736061945419466,0.0005230086415442111,0.0010568151426117976,0.0027813293927507424,0.0007413788603041671,0.0007962716330493494,0.0008736061945419464,0.0005230086415442111,0.0010568151426118022,0.002781329392750747 +614,"Transformation, to annual crop, non-irrigated","('natural resource', 'land')",natural resource,square meter,biosphere3,0.08406896440275091,0.08772884044245764,0.09268121950579879,9.381235068299729e-05,0.0006186261776056635,0.07927609060537853,0.08406896440275091,0.08772884044245764,0.09268121950579879,0.0003667252510550673,0.0006186261776056612,0.0792760906053785,0.08406896440275088,0.08772884044245766,0.0926812195057988,0.0003667252510550673,0.0006186261776056673,0.07927609060537848 +615,"Transformation, to arable land, unspecified use","('natural resource', 'land')",natural resource,square meter,biosphere3,7.310013080776745e-05,7.673047312473834e-05,8.163864477393473e-05,3.4749119229061346e-05,0.00010034561092514376,8.751614406836726e-05,7.310013080776745e-05,7.673047312473834e-05,8.163864477393473e-05,4.367780006631461e-05,0.00010034561092514376,8.751614406836726e-05,7.310013080776742e-05,7.673047312473834e-05,8.163864477393473e-05,4.367780006631461e-05,0.00010034561092514374,8.751614406836724e-05 +616,"Transformation, to cropland fallow (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,1.2966305446975495e-06,1.3865856589966866e-06,1.5122640547536922e-06,1.1610165611857087e-07,1.250769149356173e-06,2.244223375552294e-06,1.2966305446975495e-06,1.3865856589966866e-06,1.5122640547536922e-06,7.067588082669904e-07,1.250769149356173e-06,2.244223375552294e-06,1.2966305446975495e-06,1.3865856589966866e-06,1.5122640547536922e-06,7.067588082669904e-07,1.250769149356173e-06,2.244223375552294e-06 +617,"Transformation, to dump site","('natural resource', 'land')",natural resource,square meter,biosphere3,9.074012283824271e-05,9.424140879781771e-05,9.8996481379143e-05,5.076750656254271e-05,0.00018059577738591546,0.0007660266008781871,9.074012283824271e-05,9.424140879781771e-05,9.8996481379143e-05,0.00011136839640253563,0.00018059577738591546,0.0007660266008781871,9.074012283824271e-05,9.424140879781768e-05,9.899648137914301e-05,0.00011136839640253563,0.00018059577738591546,0.0007660266008781871 +618,"Transformation, to dump site, inert material landfill","('natural resource', 'land')",natural resource,square meter,biosphere3,2.341775325001494e-05,2.4428761429428258e-05,2.5797169393219297e-05,1.1307195898240507e-06,1.288767988301936e-05,3.1447444553714145e-05,2.341775325001494e-05,2.4428761429428258e-05,2.5797169393219297e-05,4.732221298276361e-06,1.288767988301936e-05,3.144744455371415e-05,2.341775325001494e-05,2.4428761429428258e-05,2.57971693932193e-05,4.732221298276361e-06,1.288767988301936e-05,3.1447444553714145e-05 +619,"Transformation, to dump site, residual material landfill","('natural resource', 'land')",natural resource,square meter,biosphere3,1.801082929878617e-05,1.8835833472156436e-05,1.995446750918969e-05,2.021862632503453e-05,6.620124098418982e-05,0.00011787336137897121,1.801082929878617e-05,1.8835833472156436e-05,1.995446750918969e-05,5.930607756013938e-05,6.620124098418982e-05,0.00011787336137897122,1.8010829298786173e-05,1.8835833472156433e-05,1.9954467509189685e-05,5.930607756013938e-05,6.620124098418982e-05,0.00011787336137897121 +620,"Transformation, to dump site, sanitary landfill","('natural resource', 'land')",natural resource,square meter,biosphere3,5.226394610194884e-07,5.49415190257899e-07,5.862178509286258e-07,6.940091248104538e-08,3.012911669747461e-07,6.112634441024415e-07,5.226394610194884e-07,5.49415190257899e-07,5.862178509286258e-07,8.331214773780719e-08,3.012911669747461e-07,6.112634441024415e-07,5.226394610194883e-07,5.49415190257899e-07,5.862178509286258e-07,8.331214773780719e-08,3.0129116697474605e-07,6.112634441024414e-07 +621,"Transformation, to dump site, slag compartment","('natural resource', 'land')",natural resource,square meter,biosphere3,6.04722012614888e-08,6.497513216507289e-08,7.104502285811959e-08,7.50327937434879e-09,4.577917456993844e-08,7.787038926484211e-08,6.04722012614888e-08,6.497513216507289e-08,7.104502285811959e-08,1.9768492815744454e-08,4.577917456993844e-08,7.78703892648472e-08,6.047220126148999e-08,6.497513216507161e-08,7.104502285811965e-08,1.9768492815744454e-08,4.5779174569933535e-08,7.787038926484733e-08 +622,"Transformation, to forest, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.00515658367801942,0.005379241250243392,0.0056804983807658815,0.00041604609184135385,0.0015127100758707053,0.007556913691833636,0.00515658367801942,0.005379241250243392,0.0056804983807658815,0.0006646108081902297,0.0015127100758707053,0.0075569136918336366,0.0051565836780194324,0.005379241250243397,0.0056804983807658815,0.0006646108081902297,0.0015127100758707053,0.007556913691833626 +623,"Transformation, to forest, primary (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +624,"Transformation, to forest, unspecified","('natural resource', 'land')",natural resource,square meter,biosphere3,5.5315107984824195e-05,5.781686963159396e-05,6.121636064881712e-05,2.7112584640412248e-05,0.0001182997304267329,0.00019994656884789237,5.5315107984824195e-05,5.781686963159396e-05,6.121636064881712e-05,9.872910937460598e-05,0.0001182997304267329,0.0001999465688478924,5.531510798482421e-05,5.781686963159395e-05,6.12163606488171e-05,9.872910937460598e-05,0.00011829973042673289,0.0001999465688478924 +625,"Transformation, to heterogeneous, agricultural","('natural resource', 'land')",natural resource,square meter,biosphere3,0.00018768168148554517,0.00020927661686008552,0.00024042844344873183,4.8598860447423825e-06,5.3766054310938816e-05,0.00020686473126951694,0.00018768168148554517,0.00020927661686008552,0.00024042844344873183,1.111296019866347e-05,5.3766054310938816e-05,0.00020686473126951694,0.0001876816814855452,0.00020927661686008552,0.00024042844344873183,1.111296019866347e-05,5.376605431093879e-05,0.00020686473126951683 +626,"Transformation, to industrial area","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0002777740197043308,0.00029142099101384073,0.00031007555754002623,8.792796980997801e-05,0.00042089469550899924,0.0008404796867143499,0.0002777740197043308,0.00029142099101384073,0.00031007555754002623,0.00022861396847859698,0.00042089469550899924,0.0008404796867143562,0.0002777740197043308,0.0002914209910138438,0.0003100755575400262,0.00022861396847859698,0.00042089469550900407,0.0008404796867143614 +627,"Transformation, to lake, artificial","('natural resource', 'land')",natural resource,square meter,biosphere3,7.173358776137733e-05,7.483817897732161e-05,7.910693961265806e-05,1.4110904447125613e-05,6.26715245301895e-05,0.0004771648817823181,7.173358776137733e-05,7.483817897732161e-05,7.910693961265806e-05,3.7341578070411154e-05,6.26715245301895e-05,0.0004771648817823182,7.173358776137733e-05,7.48381789773216e-05,7.910693961265806e-05,3.7341578070411154e-05,6.26715245301895e-05,0.00047716488178231814 +628,"Transformation, to mineral extraction site","('natural resource', 'land')",natural resource,square meter,biosphere3,0.004245891120189376,0.004714940612066578,0.005391450526919829,0.00011578415689397556,0.0015492296832106674,0.0050170522092264505,0.004245891120189376,0.004714940612066578,0.005391450526919829,0.00034341191529421174,0.0015492296832106674,0.0050170522092264505,0.004245891120189375,0.004714940612066577,0.005391450526919829,0.00034341191529421174,0.001549229683210667,0.005017052209226449 +629,"Transformation, to pasture, man made","('natural resource', 'land')",natural resource,square meter,biosphere3,3.6678707001638328e-06,3.8907395298236764e-06,4.187969725931502e-06,2.923676513307043e-07,1.5913465609434075e-06,4.602312820580193e-06,3.6678707001638328e-06,3.8907395298236764e-06,4.187969725931502e-06,9.243455612772288e-07,1.5913465609434075e-06,4.602312820580193e-06,3.667870700163832e-06,3.890739529823677e-06,4.187969725931502e-06,9.243455612772288e-07,1.5913465609434075e-06,4.602312820580193e-06 +630,"Transformation, to pasture, man made, extensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +631,"Transformation, to pasture, man made, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +632,"Transformation, to permanent crop, irrigated, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0017879303159905927,0.0018639275975958754,0.001966534963224366,8.789583004375641e-08,5.964471690071492e-07,0.0016723554923372952,0.0017879303159905927,0.0018639275975958754,0.001966534963224366,2.0243213859560455e-07,5.96447169006972e-07,0.0016723554923372952,0.001787930315990586,0.0018639275975958832,0.0019665349632243664,2.0243213859560466e-07,5.964471690070954e-07,0.0016723554923372957 +633,"Transformation, to river, artificial","('natural resource', 'land')",natural resource,square meter,biosphere3,3.1085786407310987e-05,3.304230965529128e-05,3.577284663286425e-05,1.2898422834330155e-05,7.464671320405043e-05,8.358655683758632e-05,3.1085786407310987e-05,3.304230965529128e-05,3.577284663286425e-05,5.792875248852797e-05,7.464671320405043e-05,8.358655683758632e-05,3.1085786407310987e-05,3.304230965529128e-05,3.577284663286425e-05,5.792875248852797e-05,7.464671320405043e-05,8.35865568375863e-05 +634,"Transformation, to seabed, drilling and mining","('natural resource', 'land')",natural resource,square meter,biosphere3,0.00133386486064221,0.0014739641323853385,0.001675469938980554,0.0004536912696840768,0.0013078638297835635,0.001477150798694395,0.00133386486064221,0.0014739641323853385,0.001675469938980554,0.000503853150630784,0.0013078638297835635,0.001477150798694395,0.0013338648606422098,0.0014739641323853385,0.001675469938980554,0.000503853150630784,0.0013078638297835635,0.0014771507986943942 +635,"Transformation, to seabed, unspecified","('natural resource', 'land')",natural resource,square meter,biosphere3,2.063989970689534e-08,2.1758160455899056e-08,2.3249631801241312e-08,1.1329024369433783e-08,2.944545707288848e-08,2.37189650208768e-08,2.063989970689534e-08,2.1758160455899056e-08,2.3249631801241312e-08,1.3480043248290478e-08,2.944545707288848e-08,2.37189650208768e-08,2.0639899706895332e-08,2.1758160455899056e-08,2.3249631801241312e-08,1.3480043248290478e-08,2.944545707288848e-08,2.37189650208768e-08 +636,"Transformation, to shrub land, sclerophyllous","('natural resource', 'land')",natural resource,square meter,biosphere3,4.201151176220128e-05,4.38787872781416e-05,4.6408679931477474e-05,2.1426235223118183e-05,7.943023088378132e-05,0.00015000282363116145,4.201151176220128e-05,4.38787872781416e-05,4.6408679931477474e-05,6.414132079385168e-05,7.943023088378132e-05,0.0001500028236311615,4.201151176220129e-05,4.38787872781416e-05,4.640867993147748e-05,6.414132079385168e-05,7.943023088378132e-05,0.00015000282363116147 +637,"Transformation, to traffic area, rail network","('natural resource', 'land')",natural resource,square meter,biosphere3,2.7514764193106603e-05,2.8454467854938902e-05,2.9723588967011788e-05,4.460022320335511e-07,4.799669290240263e-06,2.8985744610268634e-05,2.7514764193106603e-05,2.8454467854938902e-05,2.9723588967011788e-05,5.240671315102273e-07,4.799669290240263e-06,2.8985744610268634e-05,2.7514764193106603e-05,2.8454467854938902e-05,2.972358896701178e-05,5.240671315102273e-07,4.799669290240263e-06,2.8985744610268624e-05 +638,"Transformation, to traffic area, rail/road embankment","('natural resource', 'land')",natural resource,square meter,biosphere3,3.9514308234023186e-05,4.103554035022526e-05,4.309862045461691e-05,4.554746538361996e-06,2.0373792488765715e-05,6.726947246428747e-05,3.9514308234023186e-05,4.103554035022526e-05,4.309862045461691e-05,7.48982261235818e-06,2.0373792488765715e-05,6.726947246428748e-05,3.9514308234023186e-05,4.103554035022526e-05,4.30986204546169e-05,7.48982261235818e-06,2.037379248876571e-05,6.726947246428747e-05 +639,"Transformation, to traffic area, road network","('natural resource', 'land')",natural resource,square meter,biosphere3,5.9759057629914555e-05,6.629194716561775e-05,7.562214829392262e-05,1.7094944302156153e-05,6.472133198476644e-05,0.00014013352249182313,5.9759057629914555e-05,6.629194716561775e-05,7.562214829392262e-05,4.7401862358419525e-05,6.472133198476644e-05,0.0001401335224918231,5.975905762991456e-05,6.629194716561774e-05,7.562214829392262e-05,4.7401862358419525e-05,6.472133198476642e-05,0.0001401335224918231 +640,"Transformation, to unspecified","('natural resource', 'land')",natural resource,square meter,biosphere3,8.341070494199478e-05,0.00010105862971824881,0.00012664905653799106,3.385301437406772e-06,2.7891747722874615e-05,0.00011064982657051207,8.341070494199478e-05,0.00010105862971824881,0.00012664905653799109,5.973990287394621e-06,2.7891747722874615e-05,0.00011064982657051207,8.341070494199475e-05,0.0001010586297182488,0.00012664905653799109,5.973990287394621e-06,2.7891747722874612e-05,0.00011064982657051191 +641,"Transformation, to urban, discontinuously built","('natural resource', 'land')",natural resource,square meter,biosphere3,1.939733769642974e-06,2.024732000982996e-06,2.1398230704101917e-06,1.8036077354410218e-09,1.530522026485545e-08,1.828813177277297e-06,1.939733769642974e-06,2.024732000982996e-06,2.1398230704101917e-06,8.357670813371397e-09,1.5305220264855435e-08,1.828813177277297e-06,1.9397337696429783e-06,2.024732000982998e-06,2.1398230704101917e-06,8.357670813371393e-09,1.5305220264855504e-08,1.8288131772772936e-06 +642,Triadimenol,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +643,Tri-allate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +644,Triasulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +645,Tribenuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +646,Tribenuron-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +647,Tribufos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +648,Trichlorfon,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +649,Triclopyr,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +650,Trifloxystrobin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +651,Trifluralin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +652,Trimethylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.651173657502704e-12,9.018624131786967e-12,9.514721290092634e-12,4.809735033831847e-15,2.3844531561005328e-14,8.112578011778913e-12,8.651173657502704e-12,9.018624131786967e-12,9.514721290092634e-12,8.534012199897015e-15,2.3844531561005123e-14,8.112578011778908e-12,8.6511736575027e-12,9.01862413178697e-12,9.514721290092634e-12,8.534012199897015e-15,2.384453156100575e-14,8.112578011778903e-12 +653,Trinexapac-ethyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +654,"Ulexite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,7.229518858490416e-07,7.53977515128349e-07,7.961893776284312e-07,3.2051901168291277e-07,7.252519020310742e-07,8.740650944411769e-07,7.229518858490416e-07,7.53977515128349e-07,7.961893776284312e-07,2.6933625003957254e-07,7.252519020310742e-07,8.740650944411769e-07,7.229518858490416e-07,7.539775151283491e-07,7.961893776284312e-07,2.6933625003957254e-07,7.252519020310735e-07,8.740650944416679e-07 +655,Uranium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,9.698813430475125e-09,1.0113600605102812e-08,1.0673888709587914e-08,2.594737776393101e-10,4.972907576498578e-09,1.117279678989115e-08,9.698813430475125e-09,1.0113600605102812e-08,1.0673888709587914e-08,8.198511430911862e-10,4.972907576498578e-09,1.117279678989115e-08,9.698813430475125e-09,1.0113600605102808e-08,1.0673888709587916e-08,8.198511430911862e-10,4.9729075764985775e-09,1.1172796789891145e-08 +656,Uranium-238,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,0.00019538901524046383,0.00020189479946344335,0.00021067887653621254,1.025641590372833e-06,1.9655042507212923e-05,0.0024343890837598544,0.00019538901524046383,0.00020189479946344335,0.00021067887653621254,3.2403969063197845e-06,1.9655042507212923e-05,0.002434389083759855,0.00019538901524046383,0.0002018947994634433,0.00021067887653621257,3.2403969063197845e-06,1.9655042507212916e-05,0.002434389083759855 +657,Vanadium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.2393890117589294e-05,5.474577176781548e-05,5.795097349053985e-05,1.518629920599133e-06,1.3036689920940053e-05,6.23294399850291e-05,5.2393890117589294e-05,5.474577176781548e-05,5.795097349053985e-05,7.280315884485562e-06,1.3036689920940053e-05,6.23294399850291e-05,5.2393890117589274e-05,5.474577176781547e-05,5.795097349053984e-05,7.280315884485562e-06,1.3036689920940053e-05,6.232943998502907e-05 +658,"Vanadium, ion","('water', 'ground-')",emission,kilogram,biosphere3,8.350975951468202e-08,8.715702693933281e-08,9.213351376307436e-08,2.6266846172963016e-08,1.1956709329414386e-07,1.4544003676632647e-07,8.350975951468202e-08,8.715702693933281e-08,9.213351376307436e-08,6.780390810821713e-08,1.1956709329414386e-07,1.4544003676632647e-07,8.350975951468202e-08,8.715702693933281e-08,9.213351376307436e-08,6.780390810821713e-08,1.1956709329414386e-07,1.4544003676632644e-07 +659,"Vermiculite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.1163854690255757e-06,1.1704872102301965e-06,1.2440759924876992e-06,6.638733322880163e-08,1.9340983849720265e-07,1.465065613283639e-06,1.1163854690255757e-06,1.1704872102301965e-06,1.2440759924876992e-06,1.0245833076482288e-07,1.9340983849720265e-07,1.465065613283639e-06,1.1163854690255755e-06,1.1704872102301963e-06,1.2440759924876992e-06,1.0245833076482288e-07,1.9340983849720263e-07,1.4650656132836388e-06 +660,Vinclozolin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +661,"Volume occupied, final repository for low-active radioactive waste","('natural resource', 'in ground')",natural resource,cubic meter,biosphere3,6.905185794764347e-08,7.205525973234641e-08,7.615726389421291e-08,5.208431074340173e-08,1.3925609947065926e-07,8.938429648391261e-08,6.905185794764347e-08,7.205525973234641e-08,7.615726389421291e-08,5.956792307406234e-08,1.3925609947065926e-07,8.938429648391265e-08,6.905185794764347e-08,7.205525973234641e-08,7.615726389421291e-08,5.956792307406234e-08,1.3925609947065928e-07,8.938429648391269e-08 +662,"Volume occupied, final repository for radioactive waste","('natural resource', 'in ground')",natural resource,cubic meter,biosphere3,1.7329225221655792e-08,1.8083554007679404e-08,1.9113844673996036e-08,1.3422480934630827e-08,3.572646669684503e-08,2.2081816359296007e-08,1.7329225221655792e-08,1.8083554007679404e-08,1.9113844673996036e-08,1.5290995895146175e-08,3.572646669684503e-08,2.2081816359296017e-08,1.7329225221655792e-08,1.8083554007679404e-08,1.9113844673996036e-08,1.5290995895146175e-08,3.572646669684504e-08,2.2081816359296027e-08 +663,"Volume occupied, reservoir","('natural resource', 'in water')",natural resource,cubic meter-year,biosphere3,0.05987952999040851,0.06233258298726388,0.06567518600489664,0.007733391388605782,0.036991183241905125,0.31840909481306395,0.05987952999040851,0.06233258298726388,0.06567518600489664,0.012696749607784974,0.036991183241905125,0.3184090948130641,0.05987952999040851,0.06233258298726387,0.06567518600489664,0.012696749607784974,0.03699118324190521,0.31840909481306423 +664,"Volume occupied, underground deposit","('natural resource', 'in ground')",natural resource,cubic meter,biosphere3,1.6574908985135805e-07,1.757399442099936e-07,1.8971813620032178e-07,4.897456428163743e-08,3.4553803073070304e-07,4.102809045122457e-07,1.6574908985135805e-07,1.757399442099936e-07,1.8971813620032178e-07,6.293307936431481e-08,3.455380307307031e-07,4.102809045122458e-07,1.6574908985135807e-07,1.7573994420999354e-07,1.8971813620032178e-07,6.293307936431481e-08,3.45538030730703e-07,4.102809045122457e-07 +665,"Water, cooling, unspecified natural origin","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.19607359052893453,0.20740892041751022,0.22250455783395762,0.08354784532191041,0.24541786096988785,0.5521659208197492,0.19607359052893453,0.20740892041751022,0.22250455783395762,0.09174083412472162,0.24541786096988785,0.5521659208197495,0.19607359052893453,0.2074089204175102,0.22250455783395762,0.09174083412472162,0.24541786096988782,0.5521659208197495 +666,"Water, lake","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.0011755086225166318,0.0012332652558267546,0.0013117346733197935,6.989075312684638e-05,0.00020368971965055186,0.0015433566183688941,0.0011755086225166318,0.0012332652558267546,0.0013117346733197935,0.00010788077479413407,0.00020368971965055186,0.0015433566183688941,0.0011755086225166316,0.0012332652558267544,0.0013117346733197935,0.00010788077479413407,0.00020368971965055183,0.0015433566183688937 +667,"Water, river","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.03179121343274795,0.03333188174390273,0.03544582985948312,0.015612262529458546,0.04241728092365677,0.05269457762294433,0.03179121343274795,0.03333188174390273,0.03544582985948312,0.01976845910775677,0.04241728092365677,0.052694577622944334,0.031791213432747975,0.033331881743902746,0.03544582985948312,0.01976845910775677,0.04241728092365677,0.0526945776229443 +668,"Water, salt, ocean","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.0036565399903943077,0.003898566952187963,0.004235322318561959,0.0016483702955333533,0.0047496564094226985,0.005460336758574714,0.0036565399903943077,0.003898566952187963,0.004235322318561959,0.0019511727513051686,0.0047496564094226985,0.005460336758574716,0.0036565399903943077,0.003898566952187963,0.004235322318561958,0.0019511727513051686,0.004749656409422699,0.005460336758574716 +669,"Water, salt, sole","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.0029179388491195426,0.0032185397240698673,0.003651374726574091,4.9860633706399374e-05,0.0007430994993560204,0.003134164988792352,0.0029179388491195426,0.0032185397240698673,0.003651374726574091,0.00013016231446684028,0.0007430994993560204,0.003134164988792352,0.0029179388491195443,0.0032185397240698673,0.003651374726574091,0.00013016231446684028,0.00074309949935602,0.00313416498879235 +670,"Water, turbine use, unspecified natural origin","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,21.718596223487612,22.722126812540495,24.09767976571492,8.876839087117196,56.28263877914374,76.55369542289448,21.718596223487612,22.722126812540495,24.09767976571492,44.97780355879882,56.28263877914374,76.55369542289448,21.71859622348761,22.722126812540495,24.097679765714922,44.97780355879882,56.28263877914374,76.55369542289448 +671,"Water, unspecified natural origin","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.41122946345547606,0.46194665792497674,0.5319931590937812,0.001605669377009347,0.08688128156446798,0.42774587608873577,0.41122946345547606,0.46194665792497674,0.5319931590937812,0.007291331949584244,0.08733135356441236,0.42829285109893833,0.41122946345547606,0.4619466579249768,0.5319931590937812,0.006841259949639849,0.08688128156446795,0.42774587608873554 +672,"Water, well, in ground","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.0071462668209811685,0.007476020320767001,0.00792596925495164,0.002719311480977349,0.019711373796070318,0.03451279415510425,0.0071462668209811685,0.007476020320767001,0.00792596925495164,0.01686488733237895,0.019711373796070318,0.03451279415510425,0.007146266820981168,0.007476020320767001,0.00792596925495164,0.01686488733237895,0.019711373796070318,0.03451279415510425 +673,"Wood, hard, standing","('natural resource', 'biotic')",natural resource,cubic meter,biosphere3,2.6298569472005252e-05,2.744203463745211e-05,2.9005970591753864e-05,3.5150682529494085e-05,8.805141149802263e-05,0.00010387875540594411,2.6298569472005252e-05,2.744203463745211e-05,2.9005970591753864e-05,3.76330661445394e-05,8.805141149802263e-05,0.00010387875540594415,2.6298569472005252e-05,2.7442034637452106e-05,2.9005970591753864e-05,3.76330661445394e-05,8.805141149802262e-05,0.00010387875540594413 +674,"Wood, primary forest, standing","('natural resource', 'biotic')",natural resource,cubic meter,biosphere3,2.0045204535787177e-05,2.089778959258678e-05,2.2048983013067847e-05,2.0390499300956057e-09,2.425899427666621e-08,1.8767417389287414e-05,2.0045204535787177e-05,2.089778959258678e-05,2.2048983013067847e-05,4.841968138334573e-09,2.425899427666621e-08,1.8767417389287414e-05,2.0045204535787242e-05,2.0897789592586803e-05,2.2048983013067854e-05,4.84196813833457e-09,2.4258994276666637e-08,1.876741738928736e-05 +675,"Wood, soft, standing","('natural resource', 'biotic')",natural resource,cubic meter,biosphere3,8.939949239392307e-05,9.356959527810683e-05,9.92604734332044e-05,7.688534498897527e-05,0.00021183751027316277,0.0001324071349074975,8.939949239392307e-05,9.356959527810683e-05,9.92604734332044e-05,9.42025297756729e-05,0.00021183751027316277,0.0001324071349074975,8.939949239392307e-05,9.356959527810685e-05,9.926047343320442e-05,9.42025297756729e-05,0.00021183751027316274,0.00013240713490749744 +676,"Wood, unspecified, standing","('natural resource', 'biotic')",natural resource,cubic meter,biosphere3,8.585421609648479e-10,3.048655780917349e-09,5.779759847191884e-09,2.921838232197862e-11,5.908674317743876e-10,2.995395081727804e-09,8.585421609648479e-10,3.048655780917349e-09,5.779759847191884e-09,1.3005737456621724e-10,5.908674317743876e-10,2.9953950817278048e-09,8.585421609648471e-10,3.04865578091735e-09,5.779759847191884e-09,1.3005737456621724e-10,5.908674317743878e-10,2.9953950817278093e-09 +677,"Xenon, in air","('natural resource', 'in air')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +678,Xylene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.3191260663294272e-05,2.5307809646653758e-05,2.834242069002334e-05,3.8283246439499284e-07,5.249846861318278e-06,0.00010376766203783872,2.3191260663294272e-05,2.5307809646653758e-05,2.834242069002334e-05,9.176149865295368e-07,5.249846861318278e-06,0.00010376766203783873,2.3191260663294276e-05,2.5307809646653754e-05,2.8342420690023332e-05,9.176149865295368e-07,5.249846861318276e-06,0.00010376766203783872 +679,Zinc,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.61943688416507e-06,2.7377094859410384e-06,2.899097309989987e-06,3.6397487017167646e-07,1.3676052631534853e-06,9.601225564471466e-06,2.61943688416507e-06,2.7377094859410384e-06,2.899097309989987e-06,5.49056662257885e-07,1.3676052631534853e-06,9.601225564471466e-06,2.6194368841650705e-06,2.737709485941038e-06,2.8990973099899865e-06,5.49056662257885e-07,1.3676052631534838e-06,9.601225564471462e-06 +680,"Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0011929321229212913,0.0012514195857745705,0.0013308682114254802,1.6354399963976333e-05,0.00046626449295388044,0.0012606207335329198,0.0011929321229212913,0.0012514195857745705,0.0013308682114254802,8.626249535786032e-05,0.00046626449295388044,0.0012606207335329198,0.001192932122921291,0.0012514195857745705,0.0013308682114254802,8.626249535786032e-05,0.0004662644929538782,0.0012606207335328465 +681,"Zinc, ion","('water', 'ground-')",emission,kilogram,biosphere3,1.5939792062133435e-06,1.6643969709794135e-06,1.7599380351967063e-06,7.711342599709849e-07,5.77368517160177e-06,6.937283982349105e-06,1.5939792062133435e-06,1.6643969709794135e-06,1.7599380351967063e-06,4.781910012616354e-06,5.77368517160177e-06,6.937283982349105e-06,1.593979206213343e-06,1.6643969709794135e-06,1.7599380351967063e-06,4.781910012616354e-06,5.773685171601771e-06,6.937283982349103e-06 +682,"Zirconium, 50% in zircon, 0.39% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.3264776670754737e-07,3.46285015671629e-07,3.6451219238645866e-07,9.162030920920513e-10,1.1278888848699696e-07,3.24527242340308e-07,3.3264776670754737e-07,3.46285015671629e-07,3.6451219238645866e-07,4.025893056488815e-09,1.1278888848699696e-07,3.2452724234030794e-07,3.3264776670754737e-07,3.46285015671629e-07,3.645121923864586e-07,4.025893056488815e-09,1.1278888848699692e-07,3.2452724234030767e-07 +683,Acenaphthene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.6423635547782531e-13,1.714280260955955e-13,1.8122987768399965e-13,1.1407628919845452e-13,3.092528950087507e-13,1.9213226745980368e-13,1.6423635547782531e-13,1.714280260955955e-13,1.8122987768399965e-13,1.301849072024519e-13,3.092528950087507e-13,1.9213226745980384e-13,1.6423635547782531e-13,1.7142802609559636e-13,1.8122987768399965e-13,1.301849072024519e-13,3.0925289500875086e-13,1.921322674598048e-13 +684,Acenaphthene,"('air',)",emission,kilogram,biosphere3,3.166948679999753e-15,3.3185883599179045e-15,3.524312230909041e-15,7.253672198880403e-17,1.2879112514994524e-15,3.3705358674850902e-15,3.166948679999753e-15,3.3185883599179045e-15,3.524312230909041e-15,2.387197077796019e-16,1.2879112514994524e-15,3.37053586748509e-15,3.1669486799997343e-15,3.3185883599179076e-15,3.524312230909041e-15,2.387197077796019e-16,1.2879112514994481e-15,3.37053586748494e-15 +685,Acetaldehyde,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,7.657020602146738e-06,7.982697565598342e-06,8.422439236575996e-06,7.788918841179024e-10,9.266636200102877e-09,7.1689216910564904e-06,7.657020602146738e-06,7.982697565598342e-06,8.422439236575996e-06,1.8495720047822838e-09,9.266636200102877e-09,7.1689216910564904e-06,7.657020602146762e-06,7.98269756559835e-06,8.422439236575998e-06,1.8495720047822825e-09,9.266636200103043e-09,7.168921691056469e-06 +686,Acetaldehyde,"('air',)",emission,kilogram,biosphere3,5.565788218945204e-07,5.778933592388649e-07,6.067110410993368e-07,5.507979881033122e-08,2.768752634711817e-07,7.403108015670511e-07,5.565788218945204e-07,5.778933592388649e-07,6.067110410993368e-07,1.2970575825962317e-07,2.768752634711817e-07,7.403108015670512e-07,5.565788218945205e-07,5.77893359238865e-07,6.067110410993367e-07,1.2970575825962317e-07,2.7687526347118166e-07,7.403108015670509e-07 +687,Acetic acid,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.030080120638064e-05,5.2440251137011095e-05,5.5329019435197495e-05,5.116727274417814e-09,6.08747515808726e-08,4.709436262269504e-05,5.030080120638064e-05,5.2440251137011095e-05,5.5329019435197495e-05,1.2150281380393081e-08,6.08747515808726e-08,4.709436262269504e-05,5.0300801206380805e-05,5.244025113701115e-05,5.53290194351975e-05,1.2150281380393073e-08,6.087475158087367e-08,4.7094362622694906e-05 +688,Acetic acid,"('air',)",emission,kilogram,biosphere3,6.755905753996623e-06,2.9095042589068518e-05,5.6942678849687575e-05,1.9856258114091657e-07,4.943899656646763e-06,2.8282228050293704e-05,6.755905753996623e-06,2.9095042589068518e-05,5.6942678849687575e-05,9.138730742762038e-07,4.943899656646763e-06,2.828222805029371e-05,6.755905753996622e-06,2.9095042589068518e-05,5.6942678849687575e-05,9.138730742762038e-07,4.943899656646762e-06,2.8282228050293687e-05 +689,Acetone,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,8.31254489769438e-06,8.666263774865627e-06,9.143995457436495e-06,2.1552491238871162e-07,5.756230893009604e-07,7.864813818884652e-06,8.31254489769438e-06,8.666263774865627e-06,9.143995457436495e-06,2.3677551224576323e-07,5.756230893009604e-07,7.864813818884652e-06,8.312544897694405e-06,8.666263774865636e-06,9.143995457436496e-06,2.3677551224576323e-07,5.756230893009606e-07,7.86481381888463e-06 +690,Acetone,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +691,Acetonitrile,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.1048045517802455e-06,2.194328452877104e-06,2.3152070972968623e-06,2.1410614790463522e-10,2.5472646712672325e-09,1.970633199350321e-06,2.1048045517802455e-06,2.194328452877104e-06,2.3152070972968623e-06,5.084206750341233e-10,2.5472646712672325e-09,1.970633199350321e-06,2.104804551780252e-06,2.1943284528771066e-06,2.315207097296863e-06,5.08420675034123e-10,2.5472646712672776e-09,1.970633199350315e-06 +692,Acrolein,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.328341608776807e-10,3.4730591552876535e-10,3.670546266656381e-10,3.298592296084268e-10,8.741874995605916e-10,4.3482951293964803e-10,3.328341608776807e-10,3.4730591552876535e-10,3.670546266656381e-10,3.6384809129437787e-10,8.741874995605916e-10,4.3482951293964814e-10,3.328341608776807e-10,3.473059155287659e-10,3.670546266656381e-10,3.6384809129437787e-10,8.741874995605918e-10,4.3482951293964865e-10 +693,Acrolein,"('air',)",emission,kilogram,biosphere3,1.833307367328822e-12,1.9210897000192878e-12,2.04018070111899e-12,4.199061084315822e-14,7.455558757244943e-13,1.9511614711402492e-12,1.833307367328822e-12,1.9210897000192878e-12,2.04018070111899e-12,1.3819188505820635e-13,7.455558757244943e-13,1.9511614711402492e-12,1.8333073673287226e-12,1.9210897000193023e-12,2.0401807011189903e-12,1.3819188505820635e-13,7.45555875724494e-13,1.95116147114022e-12 +694,"Actinides, radioactive, unspecified","('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,6.672408508516419e-07,6.964582817225099e-07,7.362801326350416e-07,4.635898312708492e-07,1.2566932380949172e-06,7.805898633501562e-07,6.672408508516419e-07,6.964582817225099e-07,7.362801326350416e-07,5.290408331678469e-07,1.2566932380949172e-06,7.805898633501568e-07,6.672408508516421e-07,6.964582817225135e-07,7.362801326350416e-07,5.290408331678469e-07,1.256693238094918e-06,7.805898633501607e-07 +695,"Aerosols, radioactive, unspecified","('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.4314458700537982e-05,1.493983216288217e-05,1.5794145577274805e-05,1.3166820036094388e-05,3.4048938534898544e-05,1.7175516619415593e-05,1.4314458700537982e-05,1.493983216288217e-05,1.5794145577274805e-05,1.4695509295959839e-05,3.4048938534898544e-05,1.7175516619415596e-05,1.4314458700537982e-05,1.493983216288217e-05,1.5794145577274805e-05,1.4695509295959839e-05,3.404893853489855e-05,1.71755166194156e-05 +696,"Aldehydes, unspecified","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.713563658195018e-08,2.831477210789146e-08,2.9925145754626386e-08,2.084923587116983e-08,5.549871698899694e-08,3.6737285648189986e-08,2.713563658195018e-08,2.831477210789146e-08,2.9925145754626386e-08,2.3775526561800805e-08,5.549871698899694e-08,3.6737285648189986e-08,2.713563658195018e-08,2.8314772107891463e-08,2.9925145754626386e-08,2.3775526561800805e-08,5.549871698899693e-08,3.6737285648189986e-08 +697,"Aldehydes, unspecified","('air',)",emission,kilogram,biosphere3,1.3480201102320711e-11,1.4125659424621972e-11,1.500132854176797e-11,3.0875449163014025e-13,5.482028460525251e-12,1.4346775395881434e-11,1.3480201102320711e-11,1.4125659424621972e-11,1.500132854176797e-11,1.0161168042919981e-12,5.482028460525251e-12,1.4346775395881436e-11,1.3480201102319981e-11,1.4125659424622077e-11,1.5001328541767972e-11,1.0161168042919981e-12,5.482028460525248e-12,1.4346775395881221e-11 +698,Aluminium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,6.931939567560985e-07,7.347217329238871e-07,7.924706332955264e-07,1.3995485022565272e-05,0.00013988306143383433,0.00014047342438996616,6.931939567560985e-07,7.347217329238871e-07,7.924706332955264e-07,0.0001396356844043507,0.00013988306143383433,0.00014047342438996616,6.931939567560985e-07,7.347217329238869e-07,7.924706332955264e-07,0.0001396356844043507,0.00013988306143383435,0.00014047342438996616 +699,Aluminium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.7896569663642527e-05,2.9108663631186106e-05,3.0764088147671744e-05,2.1457362583392172e-05,5.710665409059396e-05,3.782603440088351e-05,2.7896569663642527e-05,2.9108663631186106e-05,3.0764088147671744e-05,2.446881795400748e-05,5.710665409059396e-05,3.782603440088351e-05,2.7896569663642527e-05,2.9108663631186106e-05,3.0764088147671744e-05,2.446881795400748e-05,5.710665409059395e-05,3.782603440088351e-05 +700,Aluminium,"('air',)",emission,kilogram,biosphere3,0.0030018775760462728,0.003752482088345298,0.004843825052381825,0.00031476976695794665,0.0021490318010587953,0.0053118354400295345,0.0030018775760462728,0.003752482088345298,0.004843825052381825,0.0018903048155198498,0.0021490318010587953,0.005311835440029535,0.0030018775760462723,0.003752482088345298,0.004843825052381825,0.0018903048155198498,0.0021490318010587957,0.005311835440029534 +701,Ammonia,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.00012580656297572887,0.00013199598731478588,0.0001404790441650902,1.3421369530342585e-05,3.5226567439287294e-05,0.00012277134024269663,0.00012580656297572887,0.00013199598731478588,0.0001404790441650902,1.4925530808512152e-05,3.5226567439287294e-05,0.00012277134024269663,0.00012580656297572909,0.00013199598731478598,0.0001404790441650902,1.4925530808512152e-05,3.5226567439287294e-05,0.00012277134024269638 +702,Ammonia,"('air',)",emission,kilogram,biosphere3,0.001205017403969793,0.0015004280356479248,0.0019298160255413453,0.00012475778817562692,0.0008620475738527035,0.0021222368916443083,0.001205017403969793,0.0015004280356479248,0.0019298160255413453,0.0007512339804848755,0.0008620475738527035,0.0021222368916443087,0.0012050174039697928,0.0015004280356479248,0.0019298160255413453,0.0007512339804848755,0.0008620475738527033,0.002122236891644298 +703,Antimony,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.577746222043186e-07,1.6529128285298892e-07,1.7550873954767903e-07,1.7668607366994562e-08,1.06150483442201e-07,2.0080256674258154e-07,1.577746222043186e-07,1.6529128285298892e-07,1.7550873954767903e-07,4.048898476630294e-08,1.06150483442201e-07,2.0080256674258154e-07,1.5777462220431856e-07,1.6529128285298895e-07,1.7550873954767903e-07,4.048898476630294e-08,1.06150483442201e-07,2.008025667425813e-07 +704,Antimony,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.5152644902002242e-09,2.62455165165641e-09,2.7738112398096055e-09,1.9346802442969047e-09,5.148960642277576e-09,3.4105441004396496e-09,2.5152644902002242e-09,2.62455165165641e-09,2.7738112398096055e-09,2.2062049080080542e-09,5.148960642277576e-09,3.4105441004396496e-09,2.5152644902002242e-09,2.62455165165641e-09,2.7738112398096055e-09,2.2062049080080542e-09,5.148960642277574e-09,3.4105441004396496e-09 +705,Antimony,"('air',)",emission,kilogram,biosphere3,2.453726874493881e-10,2.5653818520215095e-10,2.7178904522132343e-10,4.81548411726494e-11,4.6353036765419364e-10,1.1743935678102144e-09,2.453726874493881e-10,2.5653818520215095e-10,2.7178904522132343e-10,4.1684949144737816e-10,4.6353036765419364e-10,1.1743935678102144e-09,2.453726874493881e-10,2.5653818520215085e-10,2.7178904522132343e-10,4.1684949144737816e-10,4.635303676541936e-10,1.1743935678102144e-09 +706,Antimony-124,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.1298385255925789e-10,1.1778728852732467e-10,1.2433799703839985e-10,8.475209508585786e-12,5.701422959368302e-11,1.397393077487897e-10,1.1298385255925789e-10,1.1778728852732467e-10,1.2433799703839985e-10,2.5795840415809916e-11,5.701422959368302e-11,1.3973930774879077e-10,1.129838525592579e-10,1.1778728852732467e-10,1.2433799703839985e-10,2.5795840415809916e-11,5.701422959368404e-11,1.3973930774879175e-10 +707,Antimony-125,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.1790815162222694e-09,1.2292094100320923e-09,1.2975715622082259e-09,8.844593823488984e-11,5.94991431162992e-10,1.4582971906020232e-09,1.1790815162222694e-09,1.2292094100320923e-09,1.2975715622082259e-09,2.692012870220959e-10,5.94991431162992e-10,1.4582971906020342e-09,1.1790815162222696e-09,1.2292094100320923e-09,1.2975715622082257e-09,2.692012870220959e-10,5.949914311630026e-10,1.4582971906020445e-09 +708,Argon-41,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.00738486488225041,0.007705079035218275,0.00814227288245608,0.00031330526941658686,0.0036336552887276836,0.008443777944519658,0.00738486488225041,0.007705079035218275,0.00814227288245608,0.0010812390593613855,0.0036336552887276836,0.008443777944519658,0.00738486488225041,0.007705079035218275,0.00814227288245608,0.0010812390593613855,0.003633655288727684,0.008443777944519658 +709,Arsenic,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.1312029003855129e-06,1.1865865810097012e-06,1.2620647256192541e-06,2.0896011496235765e-07,1.3269884173268196e-06,1.970496390181722e-06,1.1312029003855129e-06,1.1865865810097012e-06,1.2620647256192541e-06,8.319448846395777e-07,1.3269884173268196e-06,1.970496390181722e-06,1.1312029003855129e-06,1.1865865810097012e-06,1.2620647256192541e-06,8.319448846395777e-07,1.3269884173268196e-06,1.97049639018172e-06 +710,Arsenic,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.4786706465665213e-07,1.5429182510258193e-07,1.6306647974224886e-07,1.1373574790638485e-07,3.026964752955704e-07,2.0049865456981756e-07,1.4786706465665213e-07,1.5429182510258193e-07,1.6306647974224886e-07,1.2969810754755025e-07,3.026964752955704e-07,2.0049865456981756e-07,1.4786706465665213e-07,1.5429182510258193e-07,1.6306647974224886e-07,1.2969810754755025e-07,3.0269647529557035e-07,2.0049865456981756e-07 +711,Arsenic,"('air',)",emission,kilogram,biosphere3,1.4819968705094067e-09,1.549393206691237e-09,1.641445836112715e-09,2.889759450449389e-10,2.781992124192293e-09,7.10287763163823e-09,1.4819968705094067e-09,1.549393206691237e-09,1.641445836112715e-09,2.501377477757618e-09,2.781992124192293e-09,7.10287763163823e-09,1.4819968705094067e-09,1.5493932066912364e-09,1.6414458361127152e-09,2.501377477757618e-09,2.781992124192293e-09,7.102877631638229e-09 +712,Barium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.973348540719661e-07,3.1050416796219037e-07,3.2851429182142176e-07,3.6519147082353153e-07,9.047729472286411e-07,3.600883633758314e-07,2.973348540719661e-07,3.1050416796219037e-07,3.2851429182142176e-07,3.96162964463201e-07,9.047729472286411e-07,3.600883633758314e-07,2.973348540719661e-07,3.1050416796219037e-07,3.2851429182142176e-07,3.96162964463201e-07,9.047729472286409e-07,3.6008836337583125e-07 +713,Barium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.6158667888992606e-07,1.6860755066357184e-07,1.7819634787848466e-07,1.2428854167099434e-07,3.307816944178748e-07,2.191016080343353e-07,1.6158667888992606e-07,1.6860755066357184e-07,1.7819634787848466e-07,1.4173194328702513e-07,3.307816944178748e-07,2.191016080343353e-07,1.6158667888992606e-07,1.6860755066357184e-07,1.7819634787848466e-07,1.4173194328702513e-07,3.3078169441787476e-07,2.191016080343353e-07 +714,Barium,"('air',)",emission,kilogram,biosphere3,5.232067720809753e-09,5.429795502394252e-09,5.696727645150381e-09,3.220397420003046e-16,8.627289270361889e-16,3.531035568537044e-08,5.232067720809753e-09,5.429795502394252e-09,5.696727645150381e-09,3.6574697360150766e-16,8.627289270361889e-16,3.531035568537044e-08,5.232067720809753e-09,5.429795502394251e-09,5.696727645150381e-09,3.6574697360150766e-16,8.627289270361889e-16,3.531035568537044e-08 +715,Barium-140,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,7.669749387151047e-08,7.995823859059326e-08,8.440509461720385e-08,5.753276349790045e-09,3.8703305061762745e-08,9.486005698910157e-08,7.669749387151047e-08,7.995823859059326e-08,8.440509461720385e-08,1.751114214710521e-08,3.8703305061762745e-08,9.486005698910227e-08,7.669749387151048e-08,7.995823859059326e-08,8.440509461720384e-08,1.751114214710521e-08,3.870330506176345e-08,9.486005698910295e-08 +716,Benzal chloride,"('air',)",emission,kilogram,biosphere3,2.3257841808337557e-16,2.437147264002801e-16,2.588229385592361e-16,5.327044527392858e-18,9.458327055351263e-17,2.475297142522689e-16,2.3257841808337557e-16,2.437147264002801e-16,2.588229385592361e-16,1.7531403120335205e-17,9.458327055351263e-17,2.4752971425226892e-16,2.32578418083363e-16,2.437147264002819e-16,2.5882293855923617e-16,1.7531403120335205e-17,9.458327055351259e-17,2.4752971425226523e-16 +717,Benzene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.4907985510023787e-05,1.580619023168135e-05,1.705771228030567e-05,9.83862164960996e-06,2.5441635760101606e-05,1.7411248104981885e-05,1.4907985510023787e-05,1.580619023168135e-05,1.705771228030567e-05,1.0744396839140546e-05,2.5441635760101606e-05,1.7411248104981885e-05,1.49079855100238e-05,1.5806190231681357e-05,1.7057712280305673e-05,1.0744396839140546e-05,2.5441635760101606e-05,1.741124810498187e-05 +718,Benzene,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,1.3669245378962511e-11,1.4244712339288061e-11,1.501650894810397e-11,4.4775252385793873e-14,4.635480836979282e-12,1.3370051635416196e-11,1.3669245378962511e-11,1.4244712339288061e-11,1.501650894810397e-11,1.8260593505590653e-13,4.635480836979282e-12,1.3370051635416196e-11,1.3669245378962511e-11,1.4244712339288061e-11,1.501650894810397e-11,1.8260593505590653e-13,4.635480836979282e-12,1.3370051635416186e-11 +719,Benzene,"('air',)",emission,kilogram,biosphere3,5.657907927938546e-06,5.856945940938352e-06,6.125985665637566e-06,1.0292076848326311e-07,1.1543213502994292e-06,6.698756292458551e-06,5.657907927938546e-06,5.856945940938352e-06,6.125985665637566e-06,1.9692314367447157e-07,1.1543213502994292e-06,6.698756292458551e-06,5.6579079279385465e-06,5.856945940938353e-06,6.125985665637565e-06,1.9692314367447157e-07,1.154321350299429e-06,6.698756292458549e-06 +720,"Benzene, ethyl-","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.0296026802541676e-11,3.162264565339155e-11,3.343075419701861e-11,2.1043199087971593e-11,5.704665070400639e-11,3.5441874530308746e-11,3.0296026802541676e-11,3.162264565339155e-11,3.343075419701861e-11,2.4014691620786616e-11,5.704665070400639e-11,3.544187453030877e-11,3.0296026802541676e-11,3.162264565339171e-11,3.343075419701861e-11,2.4014691620786616e-11,5.7046650704006425e-11,3.5441874530308966e-11 +721,"Benzene, hexachloro-","('air',)",emission,kilogram,biosphere3,1.0382129945374297e-09,1.097315430283997e-09,1.1797295542602294e-09,5.050346104885905e-11,3.718320986779018e-10,1.2567368169796969e-09,1.0382129945374297e-09,1.097315430283997e-09,1.1797295542602294e-09,1.0422333429004507e-10,3.718320986779018e-10,1.2567368169796973e-09,1.0382129945374297e-09,1.0973154302839967e-09,1.1797295542602292e-09,1.0422333429004507e-10,3.718320986779019e-10,1.2567368169796967e-09 +722,Benzo(a)pyrene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.269053126012918e-08,4.560666437856136e-08,4.9702993647285836e-08,3.9770563250475804e-08,1.0545182214733585e-07,5.686450359690598e-08,4.269053126012918e-08,4.560666437856136e-08,4.9702993647285836e-08,4.360185957154341e-08,1.0545182214733585e-07,5.686450359690598e-08,4.269053126012918e-08,4.560666437856136e-08,4.9702993647285836e-08,4.360185957154341e-08,1.0545182214733585e-07,5.6864503596905974e-08 +723,Benzo(a)pyrene,"('air',)",emission,kilogram,biosphere3,1.4493647420255717e-08,1.57843652020673e-08,1.761244700865903e-08,1.2432821803511668e-09,1.3461222564494617e-07,4.636728068224397e-07,1.4493647420255717e-08,1.57843652020673e-08,1.761244700865903e-08,5.1598905374096926e-09,1.346122256449462e-07,4.636728068224397e-07,1.4493647420255717e-08,1.57843652020673e-08,1.761244700865903e-08,5.1598905374096926e-09,1.3461222564494617e-07,4.6367280682243965e-07 +724,Beryllium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,8.359976675081974e-10,8.748284073963793e-10,9.275486854687485e-10,5.658118343021961e-11,4.2914025210109506e-10,9.624167310889055e-10,8.359976675081974e-10,8.748284073963793e-10,9.275486854687485e-10,1.168541186564245e-10,4.2914025210109506e-10,9.624167310889057e-10,8.359976675081964e-10,8.748284073963789e-10,9.275486854687486e-10,1.168541186564245e-10,4.2914025210109506e-10,9.624167310889014e-10 +725,Beryllium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,3.5213701622205024e-09,3.6743721830698515e-09,3.883335599420644e-09,2.708552242452903e-09,7.208544641147499e-09,4.7747615772238555e-09,3.5213701622205024e-09,3.6743721830698515e-09,3.883335599420644e-09,3.088686764218653e-09,7.208544641147499e-09,4.7747615772238555e-09,3.5213701622205024e-09,3.6743721830698515e-09,3.883335599420644e-09,3.088686764218653e-09,7.208544641147497e-09,4.7747615772238555e-09 +726,Beryllium,"('air',)",emission,kilogram,biosphere3,2.4025654140083833e-10,2.521751164903544e-10,2.685313644446524e-10,7.223266152301445e-11,6.953027479591795e-10,8.989720215369499e-10,2.4025654140083833e-10,2.521751164903544e-10,2.685313644446524e-10,6.252755841120308e-10,6.953027479591795e-10,8.989720215369499e-10,2.4025654140083833e-10,2.521751164903543e-10,2.685313644446525e-10,6.252755841120308e-10,6.953027479591795e-10,8.989720215369499e-10 +727,Boron,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.0532733388400254e-05,2.1430801057236172e-05,2.265769455645954e-05,5.7309012945385015e-06,2.054321576393299e-05,2.3715876960931054e-05,2.0532733388400254e-05,2.1430801057236172e-05,2.265769455645954e-05,7.885096429744542e-06,2.054321576393299e-05,2.3715876960931054e-05,2.0532733388400254e-05,2.1430801057236172e-05,2.265769455645954e-05,7.885096429744542e-06,2.0543215763932985e-05,2.371587696093105e-05 +728,Boron,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,4.6875380662756876e-08,4.891209581138703e-08,5.16937515904753e-08,3.605540226619807e-08,9.595789673895641e-08,6.356013592451713e-08,4.6875380662756876e-08,4.891209581138703e-08,5.16937515904753e-08,4.1115634263802824e-08,9.595789673895641e-08,6.356013592451713e-08,4.6875380662756876e-08,4.891209581138703e-08,5.16937515904753e-08,4.1115634263802824e-08,9.59578967389564e-08,6.356013592451713e-08 +729,Boron,"('air',)",emission,kilogram,biosphere3,3.019980321197009e-08,3.134109961943844e-08,3.2881847677825e-08,1.8588323675447176e-15,4.9797222017846384e-15,2.0381345386672827e-07,3.019980321197009e-08,3.134109961943844e-08,3.2881847677825e-08,2.1111130812646035e-15,4.9797222017846384e-15,2.0381345386672827e-07,3.019980321197009e-08,3.1341099619438435e-08,3.2881847677825e-08,2.1111130812646035e-15,4.9797222017846384e-15,2.0381345386672827e-07 +730,Bromine,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.246576298189111e-06,2.3450061211386644e-06,2.4794921955305813e-06,2.4293947454426068e-06,6.129296443576756e-06,2.691247020716759e-06,2.246576298189111e-06,2.3450061211386644e-06,2.4794921955305813e-06,2.6656266516343385e-06,6.129296443576756e-06,2.691247020716759e-06,2.246576298189111e-06,2.3450061211386644e-06,2.4794921955305813e-06,2.6656266516343385e-06,6.1292964435767556e-06,2.691247020716758e-06 +731,Bromine,"('air',)",emission,kilogram,biosphere3,2.462149555563956e-08,2.5551979248889788e-08,2.680813052945019e-08,1.51577839061908e-15,4.065178265211495e-15,1.6616638231412023e-07,2.462149555563956e-08,2.5551979248889788e-08,2.680813052945019e-08,1.7221404390311628e-15,4.065178265211495e-15,1.6616638231412023e-07,2.462149555563956e-08,2.555197924888978e-08,2.680813052945019e-08,1.7221404390311628e-15,4.065178265211495e-15,1.6616638231412023e-07 +732,Butadiene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.1308748186703022e-12,2.2205833593406468e-12,2.3408973864641368e-12,6.979936287399719e-15,7.226170232375397e-13,2.0842340287762275e-12,2.1308748186703022e-12,2.2205833593406468e-12,2.3408973864641368e-12,2.84661218156601e-14,7.226170232375397e-13,2.0842340287762275e-12,2.1308748186703022e-12,2.2205833593406468e-12,2.3408973864641368e-12,2.84661218156601e-14,7.226170232375396e-13,2.084234028776226e-12 +733,Butadiene,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,1.2949938816933888e-11,1.3495123406795141e-11,1.4226306335972795e-11,4.2419085082109646e-14,4.391551397386796e-12,1.2666489346283543e-11,1.2949938816933888e-11,1.3495123406795141e-11,1.4226306335972795e-11,1.729968243125739e-13,4.391551397386796e-12,1.2666489346283543e-11,1.2949938816933888e-11,1.3495123406795141e-11,1.4226306335972795e-11,1.729968243125739e-13,4.391551397386795e-12,1.2666489346283535e-11 +734,Butadiene,"('air',)",emission,kilogram,biosphere3,3.021652291119015e-11,3.148862024416759e-11,3.319471368716349e-11,9.897783260538607e-14,1.0246952801797774e-11,2.955514074882094e-11,3.021652291119015e-11,3.148862024416759e-11,3.319471368716349e-11,4.036591418902823e-13,1.0246952801797774e-11,2.955514074882094e-11,3.021652291119015e-11,3.148862024416759e-11,3.319471368716349e-11,4.036591418902823e-13,1.0246952801797773e-11,2.955514074882092e-11 +735,Butane,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.0508018050171053e-05,1.1366650064878352e-05,1.2571748712086963e-05,3.4383121139256765e-06,1.0046125781434662e-05,1.192230244389203e-05,1.0508018050171053e-05,1.1366650064878352e-05,1.2571748712086963e-05,4.166084521006278e-06,1.0046125781434662e-05,1.192230244389203e-05,1.0508018050171053e-05,1.1366650064878352e-05,1.2571748712086961e-05,4.166084521006278e-06,1.0046125781434662e-05,1.192230244389203e-05 +736,Butane,"('air',)",emission,kilogram,biosphere3,4.146221686351159e-09,4.33650183217422e-09,4.594441880108941e-09,7.624182703513352e-11,1.353695717780462e-09,9.059940556538644e-09,4.146221686351159e-09,4.33650183217422e-09,4.594441880108941e-09,2.509131683442536e-10,1.353695717780462e-09,9.059940556538644e-09,4.1462216863511575e-09,4.336501832174221e-09,4.594441880108941e-09,2.509131683442536e-10,1.3536957177804572e-09,9.059940556538474e-09 +737,Cadmium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.5341496869963064e-07,3.730341681811167e-07,4.000159636459468e-07,3.454363013006167e-08,2.2609671394994171e-07,4.6316069374710455e-07,3.5341496869963064e-07,3.730341681811167e-07,4.000159636459468e-07,9.025414813197652e-08,2.2609671394994171e-07,4.6316069374710455e-07,3.5341496869963064e-07,3.7303416818111674e-07,4.000159636459469e-07,9.025414813197652e-08,2.2609671394994171e-07,4.6316069374710434e-07 +738,Cadmium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,3.811006855452202e-09,3.9765934656265015e-09,4.202744359330593e-09,2.931333750544757e-09,7.801455632457874e-09,5.1674911240390914e-09,3.811006855452202e-09,3.9765934656265015e-09,4.202744359330593e-09,3.342734752049544e-09,7.801455632457874e-09,5.1674911240390914e-09,3.811006855452202e-09,3.9765934656265015e-09,4.202744359330593e-09,3.342734752049544e-09,7.801455632457872e-09,5.1674911240390914e-09 +739,Cadmium,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,6.851817902640176e-15,7.140275291073342e-15,7.52714447653585e-15,2.2443952714213272e-17,2.3235716221976944e-15,6.701844664797125e-15,6.851817902640176e-15,7.140275291073342e-15,7.52714447653585e-15,9.153268092752968e-17,2.3235716221976944e-15,6.701844664797125e-15,6.851817902640176e-15,7.140275291073342e-15,7.52714447653585e-15,9.153268092752968e-17,2.323571622197694e-15,6.70184466479712e-15 +740,Cadmium,"('air',)",emission,kilogram,biosphere3,5.612353949955437e-09,5.928460268216171e-09,6.3687631143450675e-09,4.222534103085916e-10,3.783330390985627e-09,8.863823548477043e-09,5.612353949955437e-09,5.928460268216171e-09,6.3687631143450675e-09,1.953484092026224e-08,2.1156108602129857e-08,2.99770577431427e-08,5.612353949955437e-09,5.928460268216171e-09,6.368763114345066e-09,2.1620627091180114e-09,3.783330390985627e-09,8.863823548477043e-09 +741,Calcium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.0810711946334157e-07,1.1492603678739983e-07,1.2425125842447863e-07,9.822814000164846e-06,9.8174171160357e-05,9.824662984403952e-05,1.0810711946334157e-07,1.1492603678739983e-07,1.2425125842447863e-07,9.812478038953735e-05,9.8174171160357e-05,9.824662984403952e-05,1.0810711946334157e-07,1.1492603678739983e-07,1.2425125842447863e-07,9.812478038953735e-05,9.817417116035702e-05,9.824662984403952e-05 +742,Calcium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,9.070196352941649e-06,9.464292487510087e-06,1.0002531617828289e-05,6.976574340348455e-06,1.8567464466399352e-05,1.2298628942386747e-05,9.070196352941649e-06,9.464292487510087e-06,1.0002531617828289e-05,7.955708748315864e-06,1.8567464466399352e-05,1.2298628942386747e-05,9.070196352941649e-06,9.464292487510087e-06,1.0002531617828289e-05,7.955708748315864e-06,1.856746446639935e-05,1.2298628942386747e-05 +743,"Carbon dioxide, non-fossil","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.010411920719345037,0.01087073773455886,0.011497645106859092,0.0005792865345534234,0.010746210307235857,0.018513417486930344,0.010411920719345037,0.01087073773455886,0.011497645106859092,0.001661642985374624,0.010746210307235857,0.01851341748693035,0.010411920719345037,0.01087073773455886,0.011497645106859092,0.001661642985374624,0.010746210307235857,0.01851341748693035 +744,"Carbon dioxide, non-fossil","('air',)",emission,kilogram,biosphere3,0.0045762392716213055,0.004782105105091314,0.005063589936987944,0.000537802434429516,0.005213889008878072,0.008381054193495037,0.0045762392716213055,0.004782105105091314,0.005063589936987944,0.0036768722929745854,0.005213889008878072,0.008381054193495038,0.0045762392716213055,0.004782105105091314,0.005063589936987944,0.0036768722929745854,0.005213889008878072,0.008381054193495038 +745,"Carbon dioxide, fossil","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.4930665217353205,6.509794183465014,7.982040672381804,1.7920719392117468,4.332523017972289,7.628872276441351,5.4930665217353205,6.509794183465014,7.982040672381804,1.8505365358334271,4.332523017972289,7.628872276441353,5.4930665217353205,6.509794183465014,7.982040672381804,1.8505365358334271,4.332523017972289,7.628872276441349 +746,"Carbon dioxide, fossil","('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,2.1583230108257165e-06,2.2491871038221377e-06,2.371050918218736e-06,7.0698461477248384e-09,7.319251864990879e-07,2.1110814323612134e-06,2.1583230108257165e-06,2.2491871038221377e-06,2.371050918218736e-06,2.8832799162691438e-08,7.319251864990879e-07,2.1110814323612134e-06,2.1583230108257165e-06,2.2491871038221377e-06,2.371050918218736e-06,2.8832799162691438e-08,7.319251864990877e-07,2.1110814323612117e-06 +747,"Carbon dioxide, fossil","('air',)",emission,kilogram,biosphere3,0.6051422516356908,0.63950053206653,0.6873281220271762,0.054918165913608034,0.5547789936759432,1.084020878990997,0.6051422516356908,0.63950053206653,0.6873281220271762,0.5553456466880213,0.738408357497553,1.3071866683807505,0.6051422516356908,0.63950053206653,0.6873281220271762,0.37171628286641156,0.5547789936759432,1.0840208789909969 +748,Carbon disulfide,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.4357498720878818e-05,2.556227646164001e-05,2.7201731088434623e-05,7.813379467682729e-05,0.0007752938320346717,0.0007917289672553229,2.4357498720878818e-05,2.556227646164001e-05,2.7201731088434623e-05,0.0007659548872000032,0.0007752938320346717,0.0007917289672553229,2.4357498720878818e-05,2.556227646164002e-05,2.7201731088434633e-05,0.0007659548872000032,0.0007752938320346718,0.0007917289672553227 +749,Carbon disulfide,"('air',)",emission,kilogram,biosphere3,4.3136643726464375e-17,4.5202110368477023e-17,4.80042515579949e-17,9.880143770876339e-19,1.754249114561308e-17,4.5909681475844325e-17,4.3136643726464375e-17,4.5202110368477023e-17,4.80042515579949e-17,3.251573782042195e-18,1.754249114561308e-17,4.590968147584433e-17,4.313664372646204e-17,4.5202110368477356e-17,4.800425155799491e-17,3.251573782042195e-18,1.7542491145613074e-17,4.5909681475843647e-17 +750,"Carbon monoxide, non-fossil","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.3533424457832606e-05,1.4257557816749252e-05,1.5255602739475115e-05,7.854410233470387e-07,9.195529476512082e-05,0.00012181061201055674,1.3533424457832606e-05,1.4257557816749252e-05,1.5255602739475115e-05,2.190299364812528e-06,9.195529476512082e-05,0.00012181061201055674,1.3533424457832606e-05,1.4257557816749254e-05,1.5255602739475115e-05,2.190299364812528e-06,9.195529476512082e-05,0.00012181061201055674 +751,"Carbon monoxide, non-fossil","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +752,"Carbon monoxide, fossil","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.035062642922584326,0.043636463052285086,0.0561000235845426,0.0009814745629261208,0.0013842982058947606,0.03947363662366069,0.035062642922584326,0.043636463052285086,0.0561000235845426,0.0004876038427991479,0.0013842982058947608,0.03947363662366069,0.035062642922584326,0.04363646305228508,0.0561000235845426,0.0004876038427991479,0.0013842982058947604,0.03947363662366068 +753,"Carbon monoxide, fossil","('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,2.5351719767081257e-09,2.6419011832085083e-09,2.7850427453282867e-09,8.304260640531805e-12,8.59721282519237e-10,2.479681893906892e-09,2.5351719767081257e-09,2.6419011832085083e-09,2.7850427453282867e-09,3.3867085092117656e-11,8.59721282519237e-10,2.479681893906892e-09,2.5351719767081257e-09,2.6419011832085083e-09,2.7850427453282867e-09,3.3867085092117656e-11,8.597212825192369e-10,2.4796818939068905e-09 +754,"Carbon monoxide, fossil","('air',)",emission,kilogram,biosphere3,0.006393781862906742,0.007098396506920415,0.008100810745665047,0.00044416545714041444,0.007626533725622801,0.01440020133669008,0.006393781862906742,0.007098396506920415,0.008100810745665047,0.02500141845490578,0.03076023268893014,0.042514714632432685,0.006393781862906742,0.007098396506920415,0.008100810745665047,0.0018677194915984422,0.007626533725622802,0.014400201336690076 +755,Carbon-14,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0596384357989723,0.062236502066918546,0.0657850133329986,0.04445112618097695,0.11925002708604578,0.07094161739423797,0.0596384357989723,0.062236502066918546,0.0657850133329986,0.050987121306183325,0.11925002708604578,0.07094161739423803,0.0596384357989723,0.062236502066918546,0.0657850133329986,0.050987121306183325,0.1192500270860458,0.07094161739423807 +756,Cerium-141,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.859320781565298e-08,1.9383686113009203e-08,2.0461704628465005e-08,1.3947243807519032e-09,9.382556931682878e-09,2.299622411540834e-08,1.859320781565298e-08,1.9383686113009203e-08,2.0461704628465005e-08,4.245097138524161e-09,9.382556931682878e-09,2.2996224115408512e-08,1.8593207815652983e-08,1.9383686113009203e-08,2.0461704628465002e-08,4.245097138524161e-09,9.382556931683047e-09,2.2996224115408674e-08 +757,Cesium-134,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,8.904950828248538e-10,9.283539096596127e-10,9.799840637428203e-10,6.679832743801976e-11,4.4936413382207506e-10,1.1013712452731294e-09,8.904950828248538e-10,9.283539096596127e-10,9.799840637428203e-10,2.033128494048926e-10,4.4936413382207506e-10,1.1013712452731377e-09,8.904950828248539e-10,9.283539096596127e-10,9.799840637428203e-10,2.033128494048926e-10,4.4936413382208313e-10,1.1013712452731455e-09 +758,Cesium-137,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.578558264127682e-08,1.6456696554955286e-08,1.737193132766016e-08,1.1841171746959292e-09,7.965765137222843e-09,1.9523731411404442e-08,1.578558264127682e-08,1.6456696554955286e-08,1.737193132766016e-08,3.604075822134481e-09,7.965765137222843e-09,1.9523731411404588e-08,1.5785582641276825e-08,1.6456696554955286e-08,1.7371931327660157e-08,3.604075822134481e-09,7.965765137222987e-09,1.9523731411404723e-08 +759,Chlorine,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,8.043836392843981e-09,8.393343016197672e-09,8.870578583594615e-09,8.338414012396482e-07,1.6474605443541074e-08,1.1115635566848634e-08,8.043836392843981e-09,8.393343016197672e-09,8.870578583594615e-09,6.956359156768131e-09,1.6474605443541074e-08,1.1115635566848634e-08,8.043836392843981e-09,8.393343016197672e-09,8.870578583594615e-09,6.956359156768131e-09,1.647460544354107e-08,1.1115635566848634e-08 +760,Chlorine,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,3.460394165808928e-07,3.610746805768126e-07,3.816091814468716e-07,2.661650990557739e-07,7.083721584019435e-07,4.6920818718195797e-07,3.460394165808928e-07,3.610746805768126e-07,3.816091814468716e-07,3.0352031072653554e-07,7.083721584019435e-07,4.6920818718195797e-07,3.460394165808928e-07,3.610746805768126e-07,3.816091814468716e-07,3.0352031072653554e-07,7.083721584019433e-07,4.6920818718195797e-07 +761,Chlorine,"('air',)",emission,kilogram,biosphere3,3.607170224724856e-10,3.925854844219443e-10,4.3769442519305385e-10,3.0912205338672726e-11,2.2693350068188935e-10,5.058395393654193e-10,3.607170224724856e-10,3.925854844219443e-10,4.3769442519305385e-10,1.221214790098219e-10,2.2693350068188935e-10,5.058395393654194e-10,3.607170224724856e-10,3.9258548442194425e-10,4.3769442519305385e-10,1.221214790098219e-10,2.2693350068188935e-10,5.058395393654192e-10 +762,Chloroform,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.15716492497054e-11,3.295412575061927e-11,3.483836520001612e-11,2.192922866646713e-11,5.944861542657825e-11,3.69341643896058e-11,3.15716492497054e-11,3.295412575061927e-11,3.483836520001612e-11,2.5025836788045292e-11,5.944861542657825e-11,3.6934164389605825e-11,3.15716492497054e-11,3.295412575061943e-11,3.483836520001612e-11,2.5025836788045292e-11,5.944861542657828e-11,3.693416438960601e-11 +763,Chloroform,"('air',)",emission,kilogram,biosphere3,1.9627172754253948e-17,2.0566960069428994e-17,2.184193430121217e-17,4.495465382265479e-19,7.98183341349003e-18,2.088890492069835e-17,1.9627172754253948e-17,2.0566960069428994e-17,2.184193430121217e-17,1.4794660595619567e-18,7.98183341349003e-18,2.0888904920698354e-17,1.9627172754252885e-17,2.056696006942915e-17,2.1841934301212177e-17,1.4794660595619567e-18,7.981833413490026e-18,2.0888904920698043e-17 +764,Chromium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.0483506912592183e-05,1.0969747182249794e-05,1.163028968588518e-05,3.975280200104423e-07,4.071806437720068e-06,1.121024177336206e-05,1.0483506912592183e-05,1.0969747182249794e-05,1.163028968588518e-05,7.607781688660152e-07,4.071806437720068e-06,1.121024177336206e-05,1.0483506912592183e-05,1.0969747182249748e-05,1.163028968588518e-05,7.607781688660152e-07,4.071806437720068e-06,1.121024177336206e-05 +765,Chromium,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,3.425949467223463e-14,3.570179867223486e-14,3.7636167477078406e-14,1.1222110215846114e-16,1.1617995565666842e-14,3.3509619652659936e-14,3.425949467223463e-14,3.570179867223486e-14,3.7636167477078406e-14,4.57668869940397e-16,1.1617995565666842e-14,3.3509619652659936e-14,3.425949467223463e-14,3.570179867223486e-14,3.7636167477078406e-14,4.57668869940397e-16,1.161799556566684e-14,3.350961965265991e-14 +766,Chromium,"('air',)",emission,kilogram,biosphere3,1.4273360380413645e-07,1.5093005014681536e-07,1.6236433414646616e-07,7.156066604455252e-09,5.5232714914953664e-08,1.791495316984481e-07,1.4273360380413645e-07,1.5093005014681536e-07,1.6236433414646616e-07,3.8667728488609015e-08,7.79163429126116e-08,2.0671707124097267e-07,1.4273360380413645e-07,1.5093005014681536e-07,1.6236433414646614e-07,1.5984100490951078e-08,5.5232714914953684e-08,1.7914953169844807e-07 +767,Chromium VI,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.6339150881314993e-07,2.7531781424356556e-07,2.914872196218459e-07,1.3161978251061962e-08,1.0978948319303826e-07,2.8189623712577546e-07,2.6339150881314993e-07,2.7531781424356556e-07,2.914872196218459e-07,2.2522837285136734e-08,1.0978948319303826e-07,2.8189623712577546e-07,2.6339150881314993e-07,2.753178142435644e-07,2.914872196218459e-07,2.2522837285136734e-08,1.0978948319303826e-07,2.8189623712577546e-07 +768,Chromium VI,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.798795187837209e-08,1.8769520658844353e-08,1.9836952850582907e-08,1.383589490808594e-08,3.682286957360914e-08,2.439055747962046e-08,1.798795187837209e-08,1.8769520658844353e-08,1.9836952850582907e-08,1.577770761495649e-08,3.682286957360914e-08,2.439055747962046e-08,1.798795187837209e-08,1.8769520658844353e-08,1.9836952850582907e-08,1.577770761495649e-08,3.6822869573609136e-08,2.439055747962046e-08 +769,Chromium VI,"('air',)",emission,kilogram,biosphere3,1.1045864374123082e-10,1.1517751503346626e-10,1.2159980319322166e-10,1.3413581993136826e-11,1.3013428072509568e-10,5.813226055146746e-10,1.1045864374123082e-10,1.1517751503346626e-10,1.2159980319322166e-10,1.1537227674815277e-10,1.3013428072509568e-10,5.813226055146746e-10,1.1045864374123082e-10,1.1517751503346622e-10,1.2159980319322166e-10,1.1537227674815277e-10,1.3013428072509565e-10,5.813226055146746e-10 +770,Chromium-51,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.1914494653583272e-09,1.2421031746052095e-09,1.3111824100716942e-09,8.937369030103372e-11,6.012325821902179e-10,1.4735939673251493e-09,1.1914494653583272e-09,1.2421031746052095e-09,1.3111824100716942e-09,2.720250692408639e-10,6.012325821902179e-10,1.4735939673251603e-09,1.1914494653583275e-09,1.2421031746052095e-09,1.311182410071694e-09,2.720250692408639e-10,6.012325821902288e-10,1.4735939673251708e-09 +771,Cobalt,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.763775223382927e-07,1.8554675239434655e-07,1.9790517660514318e-07,1.0589529970036123e-05,0.00010578147301406053,0.0001058680603509397,1.763775223382927e-07,1.8554675239434655e-07,1.9790517660514318e-07,0.00010570500108632476,0.00010578147301406053,0.0001058680603509397,1.763775223382927e-07,1.85546752394346e-07,1.9790517660514318e-07,0.00010570500108632476,0.00010578147301406055,0.0001058680603509397 +772,Cobalt,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.2408719555997187e-08,2.338236879194161e-08,2.4712136003481656e-08,1.723624185378551e-08,4.587255755999898e-08,3.0384846813451056e-08,2.2408719555997187e-08,2.338236879194161e-08,2.4712136003481656e-08,1.9655279693638003e-08,4.587255755999898e-08,3.0384846813451056e-08,2.2408719555997187e-08,2.338236879194161e-08,2.4712136003481656e-08,1.9655279693638003e-08,4.5872557559998976e-08,3.0384846813451056e-08 +773,Cobalt,"('air',)",emission,kilogram,biosphere3,5.244695129649617e-10,5.480775607178353e-10,5.803033800910541e-10,9.631550843788251e-11,9.271641522235023e-10,2.5749402173744948e-09,5.244695129649617e-10,5.480775607178353e-10,5.803033800910541e-10,8.337181521697598e-10,9.271641522235023e-10,2.5749402173744948e-09,5.244695129649617e-10,5.480775607178352e-10,5.803033800910542e-10,8.337181521697598e-10,9.271641522235022e-10,2.5749402173744948e-09 +774,Cobalt-58,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.659142601097486e-09,1.7296799837763091e-09,1.8258756728885716e-09,1.244565555654069e-10,8.372412068361487e-10,2.0520404749202776e-09,1.659142601097486e-09,1.7296799837763091e-09,1.8258756728885716e-09,3.7880614532212765e-10,8.372412068361487e-10,2.052040474920293e-09,1.6591426010974864e-09,1.7296799837763091e-09,1.8258756728885712e-09,3.7880614532212765e-10,8.372412068361637e-10,2.0520404749203078e-09 +775,Cobalt-60,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.4656981447448695e-08,1.528011360557499e-08,1.6129913032265647e-08,1.0994578932023662e-09,7.396247218269232e-09,1.8127868670556967e-08,1.4656981447448695e-08,1.528011360557499e-08,1.6129913032265647e-08,3.346399911833223e-09,7.396247218269232e-09,1.8127868670557106e-08,1.4656981447448699e-08,1.528011360557499e-08,1.6129913032265644e-08,3.346399911833223e-09,7.396247218269366e-09,1.8127868670557232e-08 +776,Copper,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.600200938120305e-06,6.273565749597776e-06,7.236372661093377e-06,3.546053308079708e-06,3.383627755334883e-05,3.836931920441112e-05,5.600200938120305e-06,6.273565749597776e-06,7.236372661093377e-06,3.237190000635827e-05,3.383627755334883e-05,3.836931920441112e-05,5.600200938120304e-06,6.2735657495977746e-06,7.236372661093378e-06,3.237190000635827e-05,3.3836277553348834e-05,3.836931920441111e-05 +777,Copper,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.3628241132304262e-07,2.465487805879343e-07,2.6057013522815687e-07,1.8174268136854528e-07,4.836902205696926e-07,3.2038443185772975e-07,2.3628241132304262e-07,2.465487805879343e-07,2.6057013522815687e-07,2.072495429152554e-07,4.836902205696926e-07,3.2038443185772975e-07,2.3628241132304262e-07,2.465487805879343e-07,2.6057013522815687e-07,2.072495429152554e-07,4.836902205696925e-07,3.2038443185772975e-07 +778,Copper,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,1.1647759293687432e-12,1.2138122912637214e-12,1.2795781830109787e-12,3.815363165985107e-15,3.9499594502656785e-13,1.1392812027688902e-12,1.1647759293687432e-12,1.2138122912637214e-12,1.2795781830109787e-12,1.556011236087628e-14,3.9499594502656785e-13,1.1392812027688902e-12,1.1647759293687432e-12,1.2138122912637214e-12,1.2795781830109787e-12,1.556011236087628e-14,3.949959450265678e-13,1.1392812027688894e-12 +779,Copper,"('air',)",emission,kilogram,biosphere3,5.713771075901893e-07,5.99374986868412e-07,6.380168053852573e-07,1.8587304980842832e-08,2.730700990568032e-07,6.974901027762261e-07,5.713771075901893e-07,5.99374986868412e-07,6.380168053852573e-07,1.6481900290122987e-07,3.4202112868036635e-07,7.812866734060044e-07,5.713771075901893e-07,5.99374986868412e-07,6.380168053852571e-07,9.58679732776667e-08,2.7307009905680307e-07,6.974901027762258e-07 +780,Cumene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.7539805957156755e-12,1.830784849252456e-12,1.9354648234028215e-12,1.2182905398549591e-12,3.302701011900672e-12,2.0518981140717364e-12,1.7539805957156755e-12,1.830784849252456e-12,1.9354648234028215e-12,1.3903243292611478e-12,3.302701011900672e-12,2.051898114071738e-12,1.7539805957156757e-12,1.8307848492524654e-12,1.9354648234028215e-12,1.3903243292611478e-12,3.302701011900674e-12,2.051898114071748e-12 +781,Cumene,"('air',)",emission,kilogram,biosphere3,1.7614129492595698e-18,1.8457528369942303e-18,1.9601736020313196e-18,4.0343920228232184e-20,7.163183867874245e-19,1.8746453235248107e-18,1.7614129492595698e-18,1.8457528369942303e-18,1.9601736020313196e-18,1.3277259545784173e-19,7.163183867874245e-19,1.874645323524811e-18,1.7614129492594743e-18,1.8457528369942442e-18,1.96017360203132e-18,1.3277259545784173e-19,7.163183867874242e-19,1.874645323524783e-18 +782,Cyanide,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.6389539128236666e-06,3.79407479570472e-06,4.003564988229343e-06,2.1597951563256823e-08,1.1187304726743663e-07,3.450838862374213e-06,3.6389539128236666e-06,3.79407479570472e-06,4.003564988229343e-06,2.781258739517934e-08,1.1187304726743663e-07,3.450838862374213e-06,3.6389539128236776e-06,3.794074795704723e-06,4.003564988229344e-06,2.7812587395179337e-08,1.1187304726743669e-07,3.4508388623742033e-06 +783,Cyanide,"('air',)",emission,kilogram,biosphere3,8.303804415654298e-16,8.701406768119225e-16,9.240818979497908e-16,1.901927804388705e-17,3.3769297548328294e-16,8.83761421873355e-16,8.303804415654298e-16,8.701406768119225e-16,9.240818979497908e-16,6.259279962774695e-17,3.3769297548328294e-16,8.837614218733551e-16,8.303804415653847e-16,8.70140676811929e-16,9.24081897949791e-16,6.259279962774695e-17,3.376929754832828e-16,8.837614218733418e-16 +784,Dinitrogen monoxide,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.00038601982280388344,0.0004649908280011751,0.0005794642808718457,4.608978265983716e-05,0.00011206360994682578,0.0004261950314846674,0.00038601982280388344,0.0004649908280011751,0.0005794642808718457,4.9213687875243465e-05,0.00011206360994682578,0.0004261950314846674,0.00038601982280388344,0.000464990828001175,0.0005794642808718457,4.9213687875243465e-05,0.00011206360994682578,0.0004261950314846671 +785,Dinitrogen monoxide,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,2.0555535002370766e-11,2.142091059054121e-11,2.2581522737644293e-11,6.733212578910828e-14,6.970742441791588e-12,2.0105613514469124e-11,2.0555535002370766e-11,2.142091059054121e-11,2.2581522737644293e-11,2.7459913576602806e-13,6.970742441791588e-12,2.0105613514469124e-11,2.0555535002370766e-11,2.142091059054121e-11,2.2581522737644293e-11,2.7459913576602806e-13,6.970742441791586e-12,2.010561351446911e-11 +786,Dinitrogen monoxide,"('air',)",emission,kilogram,biosphere3,4.1248400009728265e-05,4.3239050591686673e-05,4.598437818925153e-05,2.686370405195756e-05,7.364661630913996e-05,0.00010277471495454987,4.1248400009728265e-05,4.3239050591686673e-05,4.598437818925153e-05,3.248967505421043e-05,7.364661630913996e-05,0.0001027747149545499,4.1248400009728265e-05,4.3239050591686673e-05,4.598437818925153e-05,3.248967505421043e-05,7.364661630913996e-05,0.0001027747149545499 +787,"Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.1229722716403363e-13,3.2935827408811717e-13,3.5294774157980244e-13,1.6628218130929592e-11,1.2927159326295659e-12,1.2372508069488364e-12,3.1229722716403363e-13,3.2935827408811717e-13,3.5294774157980244e-13,1.0401469747555112e-12,1.2927159326295659e-12,1.2372508069488364e-12,3.122972271640336e-13,3.293582740881169e-13,3.5294774157980244e-13,1.0401469747555112e-12,1.2927159326295659e-12,1.2372508069488332e-12 +788,"Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin","('air',)",emission,kilogram,biosphere3,9.248093781579094e-13,9.780355102435803e-13,1.0522790943916663e-12,7.028496141173982e-14,5.449480135232968e-13,1.3349442735806304e-12,9.248093781579094e-13,9.780355102435803e-13,1.0522790943916663e-12,6.594682145002509e-12,6.845955688285445e-12,8.992594022099283e-12,9.248093781579094e-13,9.780355102435801e-13,1.0522790943916663e-12,2.936744702403616e-13,5.449480135232969e-13,1.3349442735806304e-12 +789,Ethane,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.00014544581138127447,0.0001546746902196038,0.00016717448543668065,4.3273863882211253e-05,0.00012972994099781022,0.0001692354414944661,0.00014544581138127447,0.0001546746902196038,0.00016717448543668065,5.5588892887926557e-05,0.00012972994099781022,0.0001692354414944661,0.00014544581138127447,0.00015467469021960382,0.00016717448543668065,5.5588892887926557e-05,0.00012972994099781022,0.00016923544149446607 +790,Ethane,"('air',)",emission,kilogram,biosphere3,6.690589639092136e-09,6.993130205208001e-09,7.403130920092213e-09,1.127984173243801e-10,2.002768026880597e-09,1.7158600187621805e-08,6.690589639092136e-09,6.993130205208001e-09,7.403130920092213e-09,3.712214666137713e-10,2.002768026880597e-09,1.7158600187621805e-08,6.690589639092135e-09,6.993130205208002e-09,7.403130920092213e-09,3.712214666137713e-10,2.00276802688059e-09,1.7158600187621556e-08 +791,"Ethane, 1,1,1,2-tetrafluoro-, HFC-134a","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.53236931072517e-09,1.5978033536038502e-09,1.6871344089763703e-09,1.408119477053664e-09,3.589962812646529e-09,3.6168489006659007e-09,1.53236931072517e-09,1.5978033536038502e-09,1.6871344089763703e-09,1.5633549415342758e-09,3.589962812646529e-09,3.6168489006659024e-09,1.53236931072517e-09,1.5978033536038502e-09,1.6871344089763703e-09,1.5633549415342758e-09,3.5899628126465302e-09,3.616848900665903e-09 +792,"Ethane, 1,1,1,2-tetrafluoro-, HFC-134a","('air',)",emission,kilogram,biosphere3,4.866873037356976e-07,5.071172712407725e-07,5.349538691924131e-07,1.333014515111077e-08,2.2355307555245077e-07,5.437350642559773e-07,4.866873037356976e-07,5.071172712407725e-07,5.349538691924131e-07,6.229829968630756e-08,2.2355307555245077e-07,5.437350642559773e-07,4.866873037356975e-07,5.071172712407725e-07,5.34953869192413e-07,6.229829968630756e-08,2.235530755524507e-07,5.437350642559772e-07 +793,"Ethane, 1,1,1-trichloro-, HCFC-140","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,6.441892254705811e-12,6.723973326482736e-12,7.10843431586579e-12,4.47444880874197e-12,1.2129919862961721e-11,7.536062038346077e-12,6.441892254705811e-12,6.723973326482736e-12,7.10843431586579e-12,5.106281995396273e-12,1.2129919862961721e-11,7.536062038346082e-12,6.441892254705812e-12,6.723973326482768e-12,7.10843431586579e-12,5.106281995396273e-12,1.2129919862961728e-11,7.536062038346123e-12 +794,"Ethane, 1,1,1-trichloro-, HCFC-140","('air',)",emission,kilogram,biosphere3,3.6306675092768815e-17,3.804510951313657e-17,4.040357834291523e-17,8.315787472558502e-19,1.4764929944871736e-17,3.8640648472210895e-17,3.6306675092768815e-17,3.804510951313657e-17,4.040357834291523e-17,2.736741189528097e-18,1.4764929944871736e-17,3.8640648472210895e-17,3.630667509276685e-17,3.8045109513136856e-17,4.0403578342915236e-17,2.736741189528097e-18,1.476492994487173e-17,3.864064847221032e-17 +795,"Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +796,"Ethane, 1,1-difluoro-, HFC-152a","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +797,"Ethane, 1,2-dichloro-","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.2867839590644303e-11,1.343130352976822e-11,1.419927389433907e-11,8.93782249360119e-12,2.4229815835344888e-11,1.5053470875452387e-11,1.2867839590644303e-11,1.343130352976822e-11,1.419927389433907e-11,1.0199924956983254e-11,2.4229815835344888e-11,1.5053470875452397e-11,1.2867839590644305e-11,1.3431303529768287e-11,1.419927389433907e-11,1.0199924956983254e-11,2.4229815835344904e-11,1.505347087545247e-11 +798,"Ethane, 1,2-dichloro-","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +799,"Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.444053839790159e-08,2.5507379956926472e-08,2.696464790762505e-08,2.021470733743192e-08,5.319187179247996e-08,2.9296345767435554e-08,2.444053839790159e-08,2.5507379956926472e-08,2.696464790762505e-08,2.2926711065987008e-08,5.319187179247996e-08,2.9296345767435584e-08,2.444053839790159e-08,2.5507379956926472e-08,2.6964647907625046e-08,2.2926711065987008e-08,5.319187179247999e-08,2.9296345767435604e-08 +800,"Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +801,"Ethane, hexafluoro-, HFC-116","('air',)",emission,kilogram,biosphere3,1.3409508231569375e-07,1.459105630224514e-07,1.6263153308162107e-07,1.1261607569507002e-08,1.369704813953361e-06,8.015395476310239e-06,1.3409508231569375e-07,1.459105630224514e-07,1.6263153308162107e-07,4.527051568868993e-08,1.369704813953361e-06,8.015395476310239e-06,1.3409508231569378e-07,1.4591056302245142e-07,1.626315330816211e-07,4.527051568868993e-08,1.3697048139533608e-06,8.015395476310237e-06 +802,Ethanol,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.069351643612537e-07,2.1573821212403455e-07,2.2762945402627016e-07,7.277577630907497e-09,1.876188974727013e-08,2.0473776098195584e-07,2.069351643612537e-07,2.1573821212403455e-07,2.2762945402627016e-07,8.101897559966704e-09,1.876188974727013e-08,2.0473776098195584e-07,2.0693516436125434e-07,2.1573821212403476e-07,2.276294540262702e-07,8.101897559966704e-09,1.8761889747270142e-08,2.0473776098195528e-07 +803,Ethene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.4586561544670895e-05,2.5663531478438416e-05,2.7122926085981984e-05,1.1474251225326558e-07,1.941715864958366e-06,2.5033201470044802e-05,2.4586561544670895e-05,2.5663531478438416e-05,2.7122926085981984e-05,2.2997186999051555e-07,1.941715864958366e-06,2.5033201470044802e-05,2.4586561544670967e-05,2.566353147843844e-05,2.7122926085981988e-05,2.2997186999051555e-07,1.941715864958367e-06,2.503320147004474e-05 +804,"Ethene, chloro-","('air',)",emission,kilogram,biosphere3,1.3300465576639063e-17,1.393731781165024e-17,1.4801311372733574e-17,3.0463777500858976e-19,5.408934938935994e-18,1.4155485573644204e-17,1.3300465576639063e-17,1.393731781165024e-17,1.4801311372733574e-17,1.0025686107157055e-18,5.408934938935994e-18,1.4155485573644207e-17,1.3300465576638342e-17,1.3937317811650345e-17,1.4801311372733577e-17,1.0025686107157055e-18,5.408934938935992e-18,1.4155485573643994e-17 +805,"Ethene, tetrachloro-","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.384050118844676e-11,1.4446556559125096e-11,1.52725767025672e-11,9.613419750697692e-12,2.606131300977956e-11,1.619134116942929e-11,1.384050118844676e-11,1.4446556559125096e-11,1.52725767025672e-11,1.0970922690412666e-11,2.606131300977956e-11,1.6191341169429304e-11,1.3840501188446761e-11,1.4446556559125169e-11,1.52725767025672e-11,1.0970922690412666e-11,2.6061313009779576e-11,1.6191341169429382e-11 +806,"Ethene, tetrachloro-","('air',)",emission,kilogram,biosphere3,2.875776331194204e-14,3.0134741113516755e-14,3.200283529454972e-14,6.586762781352452e-16,1.1694994471133805e-14,3.0606455222322545e-14,2.875776331194204e-14,3.0134741113516755e-14,3.200283529454972e-14,2.1677159507157134e-15,1.1694994471133805e-14,3.0606455222322545e-14,2.875776331194048e-14,3.013474111351698e-14,3.200283529454973e-14,2.1677159507157134e-15,1.16949944711338e-14,3.060645522232209e-14 +807,Ethylene oxide,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.0598322672694522e-11,2.1465499595708436e-11,2.262852763147274e-11,6.747227910288423e-14,6.985252479402657e-12,2.0147464635772508e-11,2.0598322672694522e-11,2.1465499595708436e-11,2.262852763147274e-11,2.751707215057963e-13,6.985252479402657e-12,2.0147464635772508e-11,2.0598322672694522e-11,2.1465499595708436e-11,2.262852763147274e-11,2.751707215057963e-13,6.985252479402656e-12,2.0147464635772495e-11 +808,Ethylene oxide,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,1.2518032342472676e-10,1.3045033930872065e-10,1.3751830440230098e-10,4.1004320620326613e-13,4.245084325815433e-11,1.2244036473286395e-10,1.2518032342472676e-10,1.3045033930872065e-10,1.3751830440230098e-10,1.6722702428084702e-12,4.245084325815433e-11,1.2244036473286395e-10,1.2518032342472676e-10,1.3045033930872065e-10,1.3751830440230098e-10,1.6722702428084702e-12,4.245084325815432e-11,1.2244036473286387e-10 +809,Ethylene oxide,"('air',)",emission,kilogram,biosphere3,2.9209816122792204e-10,3.0439531711451024e-10,3.2088784208663274e-10,9.5680273621157e-13,9.905561004016113e-11,2.857046894543548e-10,2.9209816122792204e-10,3.0439531711451024e-10,3.2088784208663274e-10,3.90210770179833e-12,9.905561004016113e-11,2.857046894543548e-10,2.9209816122792204e-10,3.0439531711451024e-10,3.2088784208663274e-10,3.90210770179833e-12,9.905561004016112e-11,2.857046894543546e-10 +810,Ethyne,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.7625289824322714e-06,4.966049047016999e-06,5.2410125336990655e-06,3.925555005230005e-09,3.291475294023079e-08,4.482017694091292e-06,4.7625289824322714e-06,4.966049047016999e-06,5.2410125336990655e-06,7.893991587666567e-09,3.291475294023079e-08,4.482017694091292e-06,4.762528982432287e-06,4.966049047017005e-06,5.241012533699067e-06,7.893991587666565e-09,3.29147529402309e-08,4.482017694091279e-06 +811,Ethyne,"('air',)",emission,kilogram,biosphere3,5.185504249578797e-09,5.424792700563119e-09,5.749533882473265e-09,6.90080656287425e-10,3.923531606535293e-09,6.423039016843272e-09,5.185504249578797e-09,5.424792700563119e-09,5.749533882473265e-09,1.694233209069689e-09,3.923531606535293e-09,6.4230390168432765e-09,5.185504249578799e-09,5.4247927005631155e-09,5.749533882473266e-09,1.694233209069689e-09,3.923531606535293e-09,6.423039016843278e-09 +812,Fluorine,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.4437487677464498e-07,1.513774338915292e-07,1.60912437227604e-07,1.762956196493368e-08,8.173844052228396e-08,1.8035290177660352e-07,1.4437487677464498e-07,1.513774338915292e-07,1.60912437227604e-07,2.9131327249248878e-08,8.173844052228396e-08,1.8035290177660352e-07,1.4437487677464498e-07,1.5137743389152905e-07,1.6091243722760405e-07,2.9131327249248878e-08,8.173844052228396e-08,1.8035290177660344e-07 +813,Fluorine,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.6997090201390188e-06,1.7735606468042362e-06,1.8744239434031438e-06,1.307374821133364e-06,3.4794491324943437e-06,2.3047009937180856e-06,1.6997090201390188e-06,1.7735606468042362e-06,1.8744239434031438e-06,1.4908596676268496e-06,3.4794491324943437e-06,2.3047009937180856e-06,1.6997090201390188e-06,1.7735606468042362e-06,1.8744239434031438e-06,1.4908596676268496e-06,3.4794491324943433e-06,2.3047009937180856e-06 +814,Fluorine,"('air',)",emission,kilogram,biosphere3,4.456639708428864e-11,4.6898604943711164e-11,5.0093218242036454e-11,2.2353396736573282e-12,2.6192615476150118e-11,5.7741852941713386e-11,4.456639708428864e-11,4.6898604943711164e-11,5.0093218242036454e-11,1.0354124246074782e-11,2.6192615476150118e-11,5.7741852941713386e-11,4.456639708428864e-11,4.689860494371105e-11,5.0093218242036487e-11,1.0354124246074782e-11,2.619261547615012e-11,5.774185294171337e-11 +815,Formaldehyde,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.3482391422005799e-05,1.4058540185129195e-05,1.4837224782532837e-05,1.011364412014632e-06,2.591855202663535e-06,1.2900746471493657e-05,1.3482391422005799e-05,1.4058540185129195e-05,1.4837224782532837e-05,1.127786479202236e-06,2.591855202663535e-06,1.2900746471493657e-05,1.3482391422005838e-05,1.4058540185129209e-05,1.4837224782532838e-05,1.127786479202236e-06,2.591855202663535e-06,1.2900746471493623e-05 +816,Formaldehyde,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,1.0792018860501402e-10,1.1246356325583659e-10,1.1855698197537334e-10,3.53505537998661e-13,3.659762871732351e-11,1.055580213078755e-10,1.0792018860501402e-10,1.1246356325583659e-10,1.1855698197537334e-10,1.4416939159110704e-12,3.659762871732351e-11,1.055580213078755e-10,1.0792018860501402e-10,1.1246356325583659e-10,1.1855698197537334e-10,1.4416939159110704e-12,3.65976287173235e-11,1.0555802130787543e-10 +817,Formaldehyde,"('air',)",emission,kilogram,biosphere3,2.38180789782808e-06,2.479447073743311e-06,2.6109953105708284e-06,1.4915311632615137e-07,1.3246634547340663e-06,3.0702578102648872e-06,2.38180789782808e-06,2.479447073743311e-06,2.6109953105708284e-06,6.053534540862627e-07,1.3246634547340663e-06,3.0702578102648872e-06,2.38180789782808e-06,2.479447073743311e-06,2.610995310570828e-06,6.053534540862627e-07,1.3246634547340663e-06,3.0702578102648864e-06 +818,Formic acid,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.4077719373558212e-05,1.4676488677720405e-05,1.548497022198391e-05,1.4320219194712536e-09,1.703705796379841e-08,1.318033123083569e-05,1.4077719373558212e-05,1.4676488677720405e-05,1.548497022198391e-05,3.400507443521209e-09,1.703705796379841e-08,1.318033123083569e-05,1.4077719373558256e-05,1.467648867772042e-05,1.5484970221983913e-05,3.400507443521207e-09,1.7037057963798713e-08,1.3180331230835653e-05 +819,Furan,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.997424720988583e-06,4.167447659729306e-06,4.397019227807964e-06,4.066294742240461e-10,4.837743801960254e-09,3.7426077690823423e-06,3.997424720988583e-06,4.167447659729306e-06,4.397019227807964e-06,9.655889801525548e-10,4.837743801960254e-09,3.7426077690823423e-06,3.997424720988596e-06,4.167447659729311e-06,4.397019227807965e-06,9.655889801525542e-10,4.83774380196034e-09,3.7426077690823317e-06 +820,Furan,"('air',)",emission,kilogram,biosphere3,2.8254502176677613e-18,2.9607382853926387e-18,3.1442785369513064e-18,6.471494499038171e-20,1.1490332003892096e-18,3.007084199609766e-18,2.8254502176677613e-18,2.9607382853926387e-18,3.1442785369513064e-18,2.129780939451423e-19,1.1490332003892096e-18,3.0070841996097663e-18,2.8254502176676084e-18,2.9607382853926607e-18,3.144278536951307e-18,2.129780939451423e-19,1.149033200389209e-18,3.0070841996097216e-18 +821,"Heat, waste","('air', 'non-urban air or from high stacks')",emission,megajoule,biosphere3,80.76636333076304,95.69399055355278,117.30010931848166,19.827119653750213,57.39859760137559,99.83838052426889,80.76636333076304,95.69399055355278,117.30010931848166,26.62169688270952,57.39859760137559,99.83838052426889,80.76636333076303,95.69399055355278,117.30010931848166,26.62169688270952,57.3985976013756,99.83838052426886 +822,"Heat, waste","('air', 'low population density, long-term')",emission,megajoule,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +823,"Heat, waste","('air', 'lower stratosphere + upper troposphere')",emission,megajoule,biosphere3,3.124421884019261e-05,3.255958155074374e-05,3.4323701038792646e-05,1.0234418826600956e-07,1.0595462573415593e-05,3.0560342413378934e-05,3.124421884019261e-05,3.255958155074374e-05,3.4323701038792646e-05,4.1738806666636906e-07,1.0595462573415593e-05,3.0560342413378934e-05,3.124421884019261e-05,3.255958155074374e-05,3.4323701038792646e-05,4.1738806666636906e-07,1.0595462573415591e-05,3.056034241337891e-05 +824,"Heat, waste","('air',)",emission,megajoule,biosphere3,13.448887268679385,14.198253761288601,15.243862393774577,1.3782883588183594,11.521963850618842,22.49140918871633,13.448887268679385,14.198253761288601,15.243862393774577,4.887779523974672,12.908185510267813,24.176092098391216,13.448887268679385,14.198253761288603,15.243862393774574,3.5015578643256977,11.52196385061884,22.491409188716325 +825,Helium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,8.021304688833794e-06,8.887840475481273e-06,1.0138329543109611e-05,3.3715363748920444e-07,2.5858184763325036e-06,8.863546595834535e-06,8.021304688833794e-06,8.887840475481273e-06,1.0138329543109611e-05,5.553124317556354e-07,2.5858184763325036e-06,8.863546595834535e-06,8.021304688833798e-06,8.887840475481272e-06,1.0138329543109608e-05,5.553124317556354e-07,2.5858184763325015e-06,8.863546595834529e-06 +826,Helium,"('air',)",emission,kilogram,biosphere3,9.39846353605382e-15,9.86503003245985e-15,1.0508073208070691e-14,1.1471653957768674e-15,7.155927573087784e-15,1.2578451119341026e-14,9.39846353605382e-15,9.86503003245985e-15,1.0508073208070691e-14,3.869203077543901e-15,7.155927573087784e-15,1.2578451119341026e-14,9.398463536053795e-15,9.865030032459853e-15,1.0508073208070633e-14,3.869203077543901e-15,7.15592757308778e-15,1.2578451119340987e-14 +827,Hexane,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.792946824070396e-07,6.044647947942213e-07,6.38841022216969e-07,4.4557775733120154e-07,1.1858619963838117e-06,7.854839588535285e-07,5.792946824070396e-07,6.044647947942213e-07,6.38841022216969e-07,5.08112832187021e-07,1.1858619963838117e-06,7.854839588535288e-07,5.792946824070396e-07,6.044647947942213e-07,6.38841022216969e-07,5.08112832187021e-07,1.1858619963838124e-06,7.854839588535292e-07 +828,Hexane,"('air',)",emission,kilogram,biosphere3,2.8506134117389918e-09,2.9871063421175868e-09,3.172281185658753e-09,6.529128759360074e-11,1.1592663707231943e-09,3.0338650011749443e-09,2.8506134117389918e-09,2.9871063421175868e-09,3.172281185658753e-09,2.148748470817061e-10,1.1592663707231943e-09,3.033865001174944e-09,2.85061341173899e-09,2.9871063421175868e-09,3.172281185658753e-09,2.148748470817061e-10,1.1592663707231902e-09,3.0338650011747988e-09 +829,"Hydrocarbons, aliphatic, alkanes, cyclic","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.865597529032199e-10,1.9472893255966992e-10,2.0586307521575194e-10,1.2958181064921886e-10,3.5128728669427283e-10,2.1824734407681805e-10,1.865597529032199e-10,1.9472893255966992e-10,2.0586307521575194e-10,1.4787995068939532e-10,3.5128728669427283e-10,2.1824734407681826e-10,1.865597529032199e-10,1.9472893255967088e-10,2.0586307521575194e-10,1.4787995068939532e-10,3.5128728669427304e-10,2.1824734407681932e-10 +830,"Hydrocarbons, aliphatic, alkanes, unspecified","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.0042719174254838e-05,1.0586719875904536e-05,1.1323873790957856e-05,3.979740306445658e-06,1.1516329753669399e-05,1.14461958979704e-05,1.0042719174254838e-05,1.0586719875904536e-05,1.1323873790957856e-05,4.9881984972973246e-06,1.1516329753669399e-05,1.14461958979704e-05,1.0042719174254835e-05,1.0586719875904536e-05,1.1323873790957856e-05,4.9881984972973246e-06,1.1516329753669399e-05,1.1446195897970399e-05 +831,"Hydrocarbons, aliphatic, alkanes, unspecified","('air',)",emission,kilogram,biosphere3,1.3593231888252092e-05,1.4374563823832991e-05,1.5465181223217922e-05,7.859937074653738e-07,1.9698383415242914e-05,3.438175519213701e-05,1.3593231888252092e-05,1.4374563823832991e-05,1.5465181223217922e-05,0.00012571876521398447,0.00014391825225617966,0.00018534685418746975,1.3593231888252092e-05,1.437456382383319e-05,1.5465181223217922e-05,1.4988963730477329e-06,1.969838341524294e-05,3.4381755192136895e-05 +832,"Hydrocarbons, aliphatic, unsaturated","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.089972280767217e-06,3.226629665599053e-06,3.413489582960435e-06,3.735577901701882e-06,9.27893570903563e-06,3.739554200872782e-06,3.089972280767217e-06,3.226629665599053e-06,3.413489582960435e-06,4.0589327117346986e-06,9.27893570903563e-06,3.739554200872782e-06,3.089972280767217e-06,3.226629665599053e-06,3.413489582960435e-06,4.0589327117346986e-06,9.27893570903563e-06,3.7395542008727815e-06 +833,"Hydrocarbons, aliphatic, unsaturated","('air',)",emission,kilogram,biosphere3,9.310003008903138e-09,9.661842155436688e-09,1.0136824358428492e-08,5.730413143550262e-16,1.5351500244041806e-15,6.28316633534248e-08,9.310003008903138e-09,9.661842155436688e-09,1.0136824358428492e-08,6.508144761585325e-16,1.5351500244041806e-15,6.28316633534248e-08,9.310003008903138e-09,9.661842155436687e-09,1.0136824358428492e-08,6.508144761585325e-16,1.5351500244041806e-15,6.28316633534248e-08 +834,"Hydrocarbons, aromatic","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.636312950146926e-06,3.849680360505496e-06,4.137994243004745e-06,1.0206893651205305e-07,1.1142851344836778e-06,4.035128842348618e-06,3.636312950146926e-06,3.849680360505496e-06,4.137994243004745e-06,4.5890693349465085e-07,1.1142851344836778e-06,4.035128842348618e-06,3.636312950146924e-06,3.849680360505496e-06,4.137994243004745e-06,4.5890693349465085e-07,1.1142851344836773e-06,4.0351288423486175e-06 +835,"Hydrocarbons, aromatic","('air',)",emission,kilogram,biosphere3,4.023233639437241e-06,4.252032144343483e-06,4.5710288420557654e-06,1.9504712846570716e-07,1.4421531098243178e-06,4.866289785186522e-06,4.023233639437241e-06,4.252032144343483e-06,4.5710288420557654e-06,4.0323862335711485e-07,1.4421531098243178e-06,4.866289785186523e-06,4.02323363943724e-06,4.252032144343482e-06,4.571028842055765e-06,4.0323862335711485e-07,1.4421531098243183e-06,4.866289785186522e-06 +836,"Hydrocarbons, chlorinated","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,6.537563763441529e-11,6.823834151395006e-11,7.214004948393942e-11,4.540900904383503e-11,1.2310066884903267e-10,7.647983573418374e-11,6.537563763441529e-11,6.823834151395006e-11,7.214004948393942e-11,5.182117742931438e-11,1.2310066884903267e-10,7.64798357341838e-11,6.537563763441529e-11,6.823834151395039e-11,7.214004948393942e-11,5.182117742931438e-11,1.2310066884903273e-10,7.647983573418419e-11 +837,"Hydrocarbons, chlorinated","('air',)",emission,kilogram,biosphere3,8.082690190720642e-08,8.698228405692602e-08,9.562992172184277e-08,4.95640281577217e-09,4.700383492818816e-08,1.0795753822257691e-07,8.082690190720642e-08,8.698228405692602e-08,9.562992172184277e-08,2.3093312011157496e-08,4.700383492818816e-08,1.0795753822257694e-07,8.082690190720642e-08,8.6982284056926e-08,9.562992172184282e-08,2.3093312011157496e-08,4.700383492818816e-08,1.079575382225772e-07 +838,Hydrogen,"('air',)",emission,kilogram,biosphere3,3.9995205057754375e-07,1.7224307537047774e-06,3.371013489513615e-06,5.694929129643199e-08,3.4060538817922595e-07,1.7325558480317363e-06,3.9995205057754375e-07,1.7224307537047774e-06,3.371013489513615e-06,9.929640829897001e-08,3.4060538817922595e-07,1.7325558480317363e-06,3.999520505775437e-07,1.7224307537047774e-06,3.371013489513615e-06,9.929640829897001e-08,3.406053881792259e-07,1.732555848031735e-06 +839,Hydrogen chloride,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.00013496719139628502,0.00014098093819811332,0.0001492102348810448,0.00010585450884944588,0.00028160008107495194,0.000159446566673977,0.00013496719139628502,0.00014098093819811332,0.0001492102348810448,0.00011991485738702535,0.00028160008107495194,0.000159446566673977,0.00013496719139628502,0.00014098093819811332,0.0001492102348810448,0.00011991485738702535,0.0002816000810749519,0.00015944656667397697 +840,Hydrogen chloride,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,5.892581315070233e-13,6.140655423339405e-13,6.47336393433903e-13,1.9301855497575388e-15,1.9982776624508795e-13,5.763603931267953e-13,5.892581315070233e-13,6.140655423339405e-13,6.47336393433903e-13,7.871833760689687e-15,1.9982776624508795e-13,5.763603931267953e-13,5.892581315070233e-13,6.140655423339405e-13,6.47336393433903e-13,7.871833760689687e-15,1.998277662450879e-13,5.763603931267949e-13 +841,Hydrogen chloride,"('air',)",emission,kilogram,biosphere3,1.9491282167454885e-05,2.0735332028307426e-05,2.2469448069473276e-05,9.226800408269587e-07,2.6958974659725742e-05,5.336365561916262e-05,1.9491282167454885e-05,2.0735332028307426e-05,2.2469448069473276e-05,3.925660068512086e-05,6.0804386461978226e-05,9.449617323442046e-05,1.9491282167454885e-05,2.0735332028307426e-05,2.2469448069473276e-05,5.411188882868382e-06,2.695897465972558e-05,5.3363655619158014e-05 +842,Hydrogen fluoride,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.9340102003203624e-05,3.064276849405749e-05,3.242454899718156e-05,3.9599698642737756e-05,9.830838639408087e-05,3.723350172969623e-05,2.9340102003203624e-05,3.064276849405749e-05,3.242454899718156e-05,4.2705191793819926e-05,9.830838639408087e-05,3.723350172969623e-05,2.9340102003203624e-05,3.064276849405749e-05,3.242454899718156e-05,4.2705191793819926e-05,9.830838639408087e-05,3.723350172969622e-05 +843,Hydrogen fluoride,"('air',)",emission,kilogram,biosphere3,0.009930897328117763,0.046687970959590576,0.11050222556649028,3.3125415724893266e-07,0.0042135798932571205,0.042059198590769085,0.009930897328117763,0.046687970959590576,0.11050222556649028,3.3765524895168408e-06,0.00421560521723231,0.04206165997828514,0.009930897328117763,0.046687970959590576,0.11050222556649028,1.3512285143273454e-06,0.0042135798932571205,0.04205919859076906 +844,Hydrogen sulfide,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.718545090543039e-05,1.8127162540693698e-05,1.9389219703613318e-05,5.491184090508121e-07,6.778100988147104e-06,2.1844018898926145e-05,1.718545090543039e-05,1.8127162540693698e-05,1.9389219703613318e-05,2.2608066812428782e-06,6.778100988147104e-06,2.1844018898926145e-05,1.7185450905430384e-05,1.8127162540693698e-05,1.9389219703613318e-05,2.2608066812428782e-06,6.7781009881471035e-06,2.1844018898926142e-05 +845,Hydrogen sulfide,"('air',)",emission,kilogram,biosphere3,2.75347430022362e-06,2.8864309579400553e-06,3.069622860096758e-06,1.4821886574727436e-07,1.2882092757712177e-06,3.2311939222361374e-06,2.75347430022362e-06,2.8864309579400553e-06,3.069622860096758e-06,3.9358163717012505e-07,1.2882092757712177e-06,3.2311939222361387e-06,2.75347430022362e-06,2.8864309579400553e-06,3.069622860096758e-06,3.9358163717012505e-07,1.2882092757712177e-06,3.231193922236138e-06 +846,"Hydrogen-3, Tritium","('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.3453622173045166,0.36035656446761183,0.38083537718624,0.2760937066112825,0.7293435738349988,0.4942926101092474,0.3453622173045166,0.36035656446761183,0.38083537718624,0.31257623461391054,0.7293435738349988,0.4942926101092475,0.3453622173045166,0.36035656446761183,0.38083537718624,0.31257623461391054,0.7293435738349988,0.4942926101092476 +847,Iodine,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.2091562742181838e-06,1.2620689411254725e-06,1.3343581190235224e-06,1.069085960538256e-06,2.785058691088711e-06,1.4351545292093187e-06,1.2091562742181838e-06,1.2620689411254725e-06,1.3343581190235224e-06,1.1960330447029519e-06,2.785058691088711e-06,1.4351545292093187e-06,1.2091562742181838e-06,1.2620689411254725e-06,1.3343581190235224e-06,1.1960330447029519e-06,2.785058691088711e-06,1.4351545292093185e-06 +848,Iodine,"('air',)",emission,kilogram,biosphere3,1.2599281152863911e-08,1.307542711366765e-08,1.3718223288102556e-08,7.755001391796297e-16,2.0775274442423813e-15,8.5030454999301e-08,1.2599281152863911e-08,1.307542711366765e-08,1.3718223288102556e-08,8.807510102363862e-16,2.0775274442423813e-15,8.5030454999301e-08,1.2599281152863911e-08,1.3075427113667648e-08,1.3718223288102556e-08,8.807510102363862e-16,2.0775274442423813e-15,8.5030454999301e-08 +849,Iodine-129,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,5.951974276841412e-05,6.211518700104251e-05,6.566033060402103e-05,4.597953448840902e-05,0.00012261955816007114,7.066851909447234e-05,5.951974276841412e-05,6.211518700104251e-05,6.566033060402103e-05,5.2396507556821365e-05,0.00012261955816007114,7.066851909447237e-05,5.951974276841412e-05,6.211518700104251e-05,6.566033060402103e-05,5.2396507556821365e-05,0.00012261955816007114,7.066851909447241e-05 +850,Iodine-131,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.002917294589228296,0.0030438011878331137,0.003216523692640305,0.00012329413067665784,0.0014351819551678255,0.003336804707610323,0.002917294589228296,0.0030438011878331137,0.003216523692640305,0.00042591300304481374,0.0014351819551678255,0.003336804707610323,0.002917294589228296,0.0030438011878331137,0.003216523692640305,0.00042591300304481374,0.0014351819551678255,0.003336804707610323 +851,Iodine-133,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.6956554481003114e-07,1.7684238143550003e-07,1.8676397629701013e-07,6.448773360762917e-08,2.0060778335714292e-07,2.0494324489318967e-07,1.6956554481003114e-07,1.7684238143550003e-07,1.8676397629701013e-07,8.636512207422683e-08,2.0060778335714292e-07,2.049432448931906e-07,1.6956554481003114e-07,1.7684238143550003e-07,1.867639762970101e-07,8.636512207422683e-08,2.0060778335714377e-07,2.0494324489319147e-07 +852,Iodine-135,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.6887049340508574e-07,1.761971107437337e-07,1.8618399286280877e-07,1.2494853214213833e-07,3.347310867441759e-07,1.9849996619863038e-07,1.6887049340508574e-07,1.761971107437337e-07,1.8618399286280877e-07,1.4190654531922982e-07,3.347310867441759e-07,1.9849996619863052e-07,1.6887049340508572e-07,1.761971107437337e-07,1.8618399286280877e-07,1.4190654531922982e-07,3.34731086744176e-07,1.9849996619863068e-07 +853,Iron,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.4495142743788545e-07,3.642676154830123e-07,3.911269190703834e-07,1.854237121199723e-08,1.6317683093947624e-07,4.519747946141975e-07,3.4495142743788545e-07,3.642676154830123e-07,3.911269190703834e-07,3.648220478408773e-08,1.6317683093947624e-07,4.5197479461419764e-07,3.4495142743788545e-07,3.642676154830119e-07,3.911269190703834e-07,3.648220478408773e-08,1.6317683093947627e-07,4.519747946141975e-07 +854,Iron,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,3.0335613348282533e-05,3.16536827137735e-05,3.345384375750436e-05,2.333341568197988e-05,6.209958430487443e-05,4.113322773386802e-05,3.0335613348282533e-05,3.16536827137735e-05,3.345384375750436e-05,2.6608167573044593e-05,6.209958430487443e-05,4.113322773386802e-05,3.0335613348282533e-05,3.16536827137735e-05,3.345384375750436e-05,2.6608167573044593e-05,6.209958430487441e-05,4.113322773386802e-05 +855,Iron,"('air',)",emission,kilogram,biosphere3,7.741958172654524e-07,8.199423424410743e-07,8.838545178614751e-07,3.962459063823813e-08,2.844172854813151e-07,9.437154975959428e-07,7.741958172654524e-07,8.199423424410743e-07,8.838545178614751e-07,8.17488970761385e-08,2.844172854813151e-07,9.437154975959431e-07,7.741958172654524e-07,8.19942342441074e-07,8.838545178614751e-07,8.17488970761385e-08,2.844172854813151e-07,9.437154975959403e-07 +856,Isoprene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.8549654223018514e-07,1.933862886137031e-07,2.0403933027040518e-07,1.8869186699401274e-11,2.244905770454074e-10,1.7367201347704738e-07,1.8549654223018514e-07,1.933862886137031e-07,2.0403933027040518e-07,4.480714228668712e-11,2.244905770454074e-10,1.7367201347704738e-07,1.8549654223018572e-07,1.9338628861370332e-07,2.0403933027040523e-07,4.4807142286687096e-11,2.2449057704541137e-10,1.7367201347704688e-07 +857,Isoprene,"('air',)",emission,kilogram,biosphere3,3.774456437944215e-17,3.9551847744441355e-17,4.200372135743117e-17,8.645125952957139e-19,1.5349680172698787e-17,4.017097245565995e-17,3.774456437944215e-17,3.9551847744441355e-17,4.200372135743117e-17,2.845127117550582e-18,1.5349680172698787e-17,4.017097245565995e-17,3.7744564379440106e-17,3.955184774444165e-17,4.2003721357431177e-17,2.845127117550582e-18,1.534968017269878e-17,4.0170972455659354e-17 +858,Krypton-85,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.023137977385715436,0.02414121356608227,0.025510945385410527,0.000983430309718495,0.011385523039459548,0.02646086683242353,0.023137977385715436,0.02414121356608227,0.025510945385410527,0.0033922063241335417,0.011385523039459548,0.02646086683242353,0.023137977385715436,0.02414121356608227,0.025510945385410523,0.0033922063241335417,0.011385523039459552,0.02646086683242353 +859,Krypton-85m,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.001473730490907587,0.0015367006015389014,0.001622601628745022,9.840649515242124e-05,0.0007389900644573565,0.0017879142749139894,0.001473730490907587,0.0015367006015389014,0.001622601628745022,0.00030595784567418225,0.0007389900644573565,0.0017879142749139996,0.0014737304909075873,0.0015367006015389014,0.0016226016287450215,0.00030595784567418225,0.0007389900644573664,0.0017879142749140093 +860,Krypton-87,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0005258600244223774,0.0005484559023295211,0.000579290286404482,3.023492558853521e-05,0.0002618045220256917,0.0006239819791410048,0.0005258600244223774,0.0005484559023295211,0.000579290286404482,9.691093183071732e-05,0.0002618045220256917,0.0006239819791410072,0.0005258600244223774,0.0005484559023295211,0.000579290286404482,9.691093183071732e-05,0.0002618045220256939,0.0006239819791410092 +861,Krypton-88,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0005438369804300154,0.0005671450379529979,0.0005989464909730791,3.3589032068021056e-05,0.0002716504709225623,0.0006519655135763038,0.0005438369804300154,0.0005671450379529979,0.0005989464909730791,0.00010605602742767041,0.0002716504709225623,0.0006519655135763067,0.0005438369804300154,0.0005671450379529979,0.0005989464909730791,0.00010605602742767041,0.0002716504709225653,0.0006519655135763095 +862,Krypton-89,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0001564087009124093,0.0001630739002435643,0.00017216484447947386,1.1132704741703157e-05,7.869577153064977e-05,0.0001917277184108618,0.0001564087009124093,0.0001630739002435643,0.00017216484447947386,3.420259341838133e-05,7.869577153064977e-05,0.00019172771841086307,0.0001564087009124093,0.0001630739002435643,0.00017216484447947383,3.420259341838133e-05,7.869577153065103e-05,0.00019172771841086426 +863,Lanthanum-140,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,6.555033063242014e-09,6.83371608644395e-09,7.213771376907375e-09,4.91709897962155e-10,3.3078192321214593e-09,8.107315886128812e-09,6.555033063242014e-09,6.83371608644395e-09,7.213771376907375e-09,1.4966084380963083e-09,3.3078192321214593e-09,8.107315886128873e-09,6.555033063242015e-09,6.83371608644395e-09,7.213771376907374e-09,1.4966084380963083e-09,3.307819232121519e-09,8.107315886128931e-09 +864,Lead,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.3434373387335743e-06,3.5058520976746875e-06,3.7269799408704e-06,9.466215236593134e-07,5.408004243862702e-06,7.281420609045188e-06,3.3434373387335743e-06,3.5058520976746875e-06,3.7269799408704e-06,3.932712315570427e-06,5.408004243862702e-06,7.281420609045188e-06,3.3434373387335743e-06,3.5058520976746867e-06,3.7269799408704006e-06,3.932712315570427e-06,5.408004243862702e-06,7.281420609045176e-06 +865,Lead,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.500020399328583e-07,2.6086452115617864e-07,2.757000192337241e-07,1.9229548610933282e-07,5.117754690424411e-07,3.3898740491775406e-07,2.500020399328583e-07,2.6086452115617864e-07,2.757000192337241e-07,2.1928339130513764e-07,5.117754690424411e-07,3.3898740491775406e-07,2.500020399328583e-07,2.6086452115617864e-07,2.757000192337241e-07,2.1928339130513764e-07,5.11775469042441e-07,3.3898740491775406e-07 +866,Lead,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,1.3703959379710284e-14,1.4280887779340933e-14,1.5054644420738392e-14,4.4888968028630664e-17,4.647252986552225e-15,1.3404005830516197e-14,1.3703959379710284e-14,1.4280887779340933e-14,1.5054644420738392e-14,1.830696960608857e-16,4.647252986552225e-15,1.3404005830516197e-14,1.3703959379710284e-14,1.4280887779340933e-14,1.5054644420738392e-14,1.830696960608857e-16,4.6472529865522244e-15,1.3404005830516188e-14 +867,Lead,"('air',)",emission,kilogram,biosphere3,4.5952386025626034e-07,4.859007987809719e-07,5.227003231261071e-07,2.6603649541948817e-08,2.337272081570775e-07,6.460178194751906e-07,4.5952386025626034e-07,4.859007987809719e-07,5.227003231261071e-07,2.974744371300571e-06,3.1411921424495904e-06,4.179476160128981e-06,4.5952386025626034e-07,4.859007987809719e-07,5.227003231261071e-07,6.727943700805831e-08,2.3372720815707752e-07,6.460178194751906e-07 +868,Lead-210,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.00031379149950030527,0.00032757547429501004,0.00034641268819649024,0.00041000441084124937,0.00100755278479336,0.00039118401066579316,0.00031379149950030527,0.00032757547429501004,0.00034641268819649024,0.00044376455125265683,0.00100755278479336,0.00039118401066579316,0.00031379149950030527,0.00032757547429501004,0.00034641268819649024,0.00044376455125265683,0.00100755278479336,0.00039118401066579316 +869,Lead-210,"('air',)",emission,kilo Becquerel,biosphere3,5.232067926371594e-06,5.429795715724589e-06,5.69672786896817e-06,3.2203975465208246e-13,8.627289609278517e-13,3.531035707267316e-05,5.232067926371594e-06,5.429795715724589e-06,5.69672786896817e-06,3.6574698796869577e-13,8.627289609278517e-13,3.531035707267316e-05,5.232067926371594e-06,5.429795715724588e-06,5.69672786896817e-06,3.6574698796869577e-13,8.627289609278517e-13,3.531035707267316e-05 +870,Magnesium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.591428375110885e-07,2.7480044186343194e-07,2.9650787532713463e-07,8.376883265481455e-06,8.372364355276185e-05,8.393549049223643e-05,2.591428375110885e-07,2.7480044186343194e-07,2.9650787532713463e-07,8.362899576976206e-05,8.372364355276185e-05,8.393549049223643e-05,2.591428375110885e-07,2.7480044186343194e-07,2.9650787532713463e-07,8.362899576976206e-05,8.372364355276186e-05,8.393549049223643e-05 +871,Magnesium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.7820349500976343e-06,2.9029131732956717e-06,3.068003322672151e-06,2.139873593451066e-06,5.695062496679752e-06,3.772268448643823e-06,2.7820349500976343e-06,2.9029131732956717e-06,3.068003322672151e-06,2.4401963211776982e-06,5.695062496679752e-06,3.772268448643823e-06,2.7820349500976343e-06,2.9029131732956717e-06,3.068003322672151e-06,2.4401963211776982e-06,5.695062496679751e-06,3.772268448643823e-06 +872,Magnesium,"('air',)",emission,kilogram,biosphere3,6.8299685760031554e-12,7.157000793643225e-12,7.600673147728608e-12,1.5643561093866833e-13,2.77756109850131e-12,7.269032889680033e-12,6.8299685760031554e-12,7.157000793643225e-12,7.600673147728608e-12,5.14832519286393e-13,2.77756109850131e-12,7.2690328896800335e-12,6.8299685760027855e-12,7.157000793643279e-12,7.60067314772861e-12,5.14832519286393e-13,2.7775610985013086e-12,7.269032889679925e-12 +873,Manganese,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.670261402175801e-07,5.940541147964162e-07,6.308562952246516e-07,1.2980002399825582e-07,5.196692400968413e-07,7.196086827963931e-07,5.670261402175801e-07,5.940541147964162e-07,6.308562952246516e-07,2.0918776338228632e-07,5.196692400968413e-07,7.196086827963931e-07,5.670261402175801e-07,5.94054114796416e-07,6.308562952246516e-07,2.0918776338228632e-07,5.196692400968413e-07,7.196086827963926e-07 +874,Manganese,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,6.27291700118277e-07,6.545472549765797e-07,6.917716904797327e-07,4.824975125323567e-07,1.2841195382204188e-06,8.505690019502229e-07,6.27291700118277e-07,6.545472549765797e-07,6.917716904797327e-07,5.502141159094399e-07,1.2841195382204188e-06,8.505690019502229e-07,6.27291700118277e-07,6.545472549765797e-07,6.917716904797327e-07,5.502141159094399e-07,1.2841195382204186e-06,8.505690019502229e-07 +875,Manganese,"('air',)",emission,kilogram,biosphere3,1.0741392637558785e-07,1.1371406347196923e-07,1.2251401795071843e-07,5.9978531126757145e-09,5.46055684470645e-08,1.645080420681154e-07,1.0741392637558785e-07,1.1371406347196923e-07,1.2251401795071843e-07,1.8532936853856662e-07,2.2833335695441428e-07,3.75640391787754e-07,1.0741392637558785e-07,1.137140634719692e-07,1.2251401795071843e-07,1.1601580031216817e-08,5.460556844706451e-08,1.6450804206811535e-07 +876,Manganese-54,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,6.101540526853026e-10,6.360943605982916e-10,6.71470578156751e-10,4.5769225653302924e-11,3.078976555274524e-10,7.546432791220476e-10,6.101540526853026e-10,6.360943605982916e-10,6.71470578156751e-10,1.3930695644187669e-10,3.078976555274524e-10,7.546432791220533e-10,6.101540526853027e-10,6.360943605982916e-10,6.714705781567509e-10,1.3930695644187669e-10,3.078976555274579e-10,7.546432791220586e-10 +877,Mercury,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.1727767581144074e-07,1.286015632269133e-07,1.4474799470488872e-07,7.286754317930242e-08,1.89437313747258e-07,1.3587896137455417e-07,1.1727767581144074e-07,1.286015632269133e-07,1.4474799470488872e-07,8.001066502520803e-08,1.89437313747258e-07,1.3587896137455417e-07,1.1727767581144074e-07,1.286015632269133e-07,1.447479947048887e-07,8.001066502520803e-08,1.89437313747258e-07,1.3587896137455383e-07 +878,Mercury,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.92074736318017e-09,2.0042030110508963e-09,2.1181830565232083e-09,1.4773921327537306e-09,3.931933443326738e-09,2.6044154091898043e-09,1.92074736318017e-09,2.0042030110508963e-09,2.1181830565232083e-09,1.6847382368097264e-09,3.931933443326738e-09,2.6044154091898043e-09,1.92074736318017e-09,2.0042030110508963e-09,2.1181830565232083e-09,1.6847382368097264e-09,3.931933443326737e-09,2.6044154091898043e-09 +879,Mercury,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,4.796264634682987e-17,4.9981844741382085e-17,5.268992458097211e-17,1.5710741338461842e-19,1.6264974598401676e-17,4.691283542311391e-17,4.796264634682987e-17,4.9981844741382085e-17,5.268992458097211e-17,6.407277350728008e-19,1.6264974598401676e-17,4.691283542311391e-17,4.796264634682987e-17,4.9981844741382085e-17,5.268992458097211e-17,6.407277350728008e-19,1.6264974598401673e-17,4.691283542311388e-17 +880,Mercury,"('air',)",emission,kilogram,biosphere3,1.2552898340049192e-07,1.326640333332244e-07,1.4261129237242303e-07,6.827874484469101e-09,5.192100025055825e-08,1.5974191099652113e-07,1.2552898340049192e-07,1.326640333332244e-07,1.4261129237242303e-07,8.741962158975049e-08,1.200618986466933e-07,2.425539246299906e-07,1.2552898340049192e-07,1.3266403333322437e-07,1.4261129237242303e-07,1.9278723193615434e-08,5.192100025055827e-08,1.5974191099652113e-07 +881,"Methane, non-fossil","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.00012363787546350018,0.00012864174241228524,0.0001354315190288067,9.96576836208487e-06,6.72686790700827e-05,0.000620456574674464,0.00012363787546350018,0.00012864174241228524,0.0001354315190288067,1.4195114078366434e-05,6.72686790700827e-05,0.0006204565746744641,0.00012363787546350015,0.00012864174241228524,0.00013543151902880668,1.4195114078366434e-05,6.72686790700827e-05,0.0006204565746744641 +882,"Methane, non-fossil","('air',)",emission,kilogram,biosphere3,7.38734857046415e-05,7.70741251620748e-05,8.144383264287824e-05,3.822693572018195e-06,3.761057889609656e-05,8.460845611254942e-05,7.38734857046415e-05,7.70741251620748e-05,8.144383264287824e-05,1.1620750763107919e-05,3.761057889609656e-05,8.460845611254946e-05,7.38734857046415e-05,7.707412516207481e-05,8.144383264287824e-05,1.1620750763107919e-05,3.761057889609656e-05,8.460845611254946e-05 +883,"Methane, bromo-, Halon 1001","('air',)",emission,kilogram,biosphere3,5.3201862317979225e-17,5.574927125845295e-17,5.920524550334043e-17,1.2185511090863908e-18,2.1635739802133315e-17,5.662194233302349e-17,5.3201862317979225e-17,5.574927125845295e-17,5.920524550334043e-17,4.0102744789811504e-18,2.1635739802133315e-17,5.66219423330235e-17,5.320186231797634e-17,5.574927125845337e-17,5.920524550334044e-17,4.0102744789811504e-18,2.1635739802133306e-17,5.662194233302265e-17 +884,"Methane, bromochlorodifluoro-, Halon 1211","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.4254590170215386e-08,3.613115774568707e-08,3.8641328723947255e-08,6.325646721125053e-09,2.2047059800814397e-08,3.9542940511654764e-08,3.4254590170215386e-08,3.613115774568707e-08,3.8641328723947255e-08,9.849523230876494e-09,2.2047059800814397e-08,3.9542940511654764e-08,3.425459017021537e-08,3.613115774568707e-08,3.8641328723947255e-08,9.849523230876494e-09,2.2047059800814394e-08,3.954294051165476e-08 +885,"Methane, bromotrifluoro-, Halon 1301","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.1137853697618042e-07,1.2363988577311243e-07,1.4134822638514496e-07,2.8349527415473255e-09,3.308800115128313e-08,1.2188529982895248e-07,1.1137853697618042e-07,1.2363988577311243e-07,1.4134822638514496e-07,5.987379220429482e-09,3.308800115128313e-08,1.2188529982895248e-07,1.1137853697618046e-07,1.2363988577311243e-07,1.4134822638514496e-07,5.987379220429482e-09,3.308800115128311e-08,1.2188529982895243e-07 +886,"Methane, chlorodifluoro-, HCFC-22","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.316056901056745e-07,1.3860143526638405e-07,1.4796796573579462e-07,3.6476160052857873e-08,1.1522424973170603e-07,1.545622789663822e-07,1.316056901056745e-07,1.3860143526638405e-07,1.4796796573579462e-07,5.0086597248709756e-08,1.1522424973170601e-07,1.545622789663822e-07,1.3160569010567446e-07,1.3860143526638405e-07,1.4796796573579462e-07,5.0086597248709756e-08,1.1522424973170601e-07,1.545622789663822e-07 +887,"Methane, chlorotrifluoro-, CFC-13","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +888,"Methane, dichloro-, HCC-30","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,9.343932883871031e-11,9.753090084599945e-11,1.0310748849911851e-10,6.490165887758228e-11,1.7594388821698753e-10,1.0931020744154697e-10,9.343932883871031e-11,9.753090084599945e-11,1.0310748849911851e-10,7.406636800001625e-11,1.7594388821698753e-10,1.0931020744154705e-10,9.343932883871032e-11,9.753090084599994e-11,1.0310748849911851e-10,7.406636800001625e-11,1.7594388821698763e-10,1.0931020744154762e-10 +889,"Methane, dichlorodifluoro-, CFC-12","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.243411012942249e-10,1.3163704530215697e-10,1.414957294606121e-10,3.4901736627929637e-12,3.8102176728030064e-11,1.3797832300851752e-10,1.243411012942249e-10,1.3163704530215697e-10,1.414957294606121e-10,1.569199229432666e-11,3.8102176728030064e-11,1.3797832300851752e-10,1.2434110129422485e-10,1.3163704530215697e-10,1.414957294606121e-10,1.569199229432666e-11,3.810217672803005e-11,1.3797832300851747e-10 +890,"Methane, dichlorodifluoro-, CFC-12","('air',)",emission,kilogram,biosphere3,3.5372050297122805e-17,3.706573305921617e-17,3.936348899128082e-17,8.101718325823277e-19,1.4384843684008472e-17,3.764594137328559e-17,3.5372050297122805e-17,3.706573305921617e-17,3.936348899128082e-17,2.666290644489907e-18,1.4384843684008472e-17,3.7645941373285595e-17,3.537205029712089e-17,3.706573305921645e-17,3.9363488991280825e-17,2.666290644489907e-18,1.4384843684008465e-17,3.764594137328503e-17 +891,"Methane, fossil","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.017109129130534858,0.01816672228788043,0.01964285905527472,0.006103443479286776,0.016878617792532326,0.087169016193602,0.017109129130534858,0.01816672228788043,0.01964285905527472,0.007025411488350935,0.016878617792532326,0.087169016193602,0.01710912913053486,0.01816672228788043,0.01964285905527472,0.007025411488350935,0.016878617792532326,0.08716901619360198 +892,"Methane, fossil","('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,3.425949424202131e-11,3.570179822391022e-11,3.763616700446362e-11,1.1222110074688354e-13,1.1617995419757219e-11,3.350961923185472e-11,3.425949424202131e-11,3.570179822391022e-11,3.763616700446362e-11,4.576688641782888e-13,1.1617995419757219e-11,3.350961923185472e-11,3.425949424202131e-11,3.570179822391022e-11,3.763616700446362e-11,4.576688641782888e-13,1.1617995419757218e-11,3.3509619231854695e-11 +893,"Methane, fossil","('air',)",emission,kilogram,biosphere3,3.34631016464971e-05,5.7230410626810474e-05,8.7070358708536e-05,1.4264883139240063e-06,2.014837495740156e-05,6.453409215739222e-05,3.34631016464971e-05,5.7230410626810474e-05,8.7070358708536e-05,8.325175850325413e-06,2.014837495740156e-05,6.453409215739222e-05,3.3463101646497034e-05,5.723041062681049e-05,8.7070358708536e-05,8.325175850325413e-06,2.014837495740155e-05,6.453409215739217e-05 +894,"Methane, monochloro-, R-40","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.7061447280655054e-10,1.7808543187101773e-10,1.8826793825259438e-10,1.1850644107528584e-10,3.212627284860166e-10,1.9959372178783062e-10,1.7061447280655054e-10,1.7808543187101773e-10,1.8826793825259438e-10,1.3524063667027086e-10,3.212627284860166e-10,1.9959372178783075e-10,1.7061447280655056e-10,1.7808543187101863e-10,1.8826793825259436e-10,1.3524063667027086e-10,3.2126272848601675e-10,1.9959372178783174e-10 +895,"Methane, tetrachloro-, R-10","('air',)",emission,kilogram,biosphere3,1.5816769492209342e-14,1.657410726695161e-14,1.7601559044584635e-14,3.6227194089207094e-16,6.4322468040479176e-15,1.6833550007831916e-14,1.5816769492209342e-14,1.657410726695161e-14,1.7601559044584635e-14,1.1922437293110502e-15,6.4322468040479176e-15,1.683355000783192e-14,1.5816769492208487e-14,1.6574107266951737e-14,1.7601559044584638e-14,1.1922437293110502e-15,6.4322468040479144e-15,1.6833550007831667e-14 +896,"Methane, tetrafluoro-, R-14","('air',)",emission,kilogram,biosphere3,1.2068652811478883e-06,1.3132054481185855e-06,1.4636953682607203e-06,1.0135526949886727e-07,1.2324918609872828e-05,7.199088776216752e-05,1.2068652811478883e-06,1.3132054481185855e-06,1.4636953682607203e-06,4.07437862458036e-07,1.2324918609872828e-05,7.199088776216752e-05,1.2068652811478886e-06,1.3132054481185857e-06,1.4636953682607205e-06,4.07437862458036e-07,1.2324918609872826e-05,7.199088776216751e-05 +897,Methanol,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.6299391665742387e-05,3.2502143277105344e-05,4.034359812439451e-05,7.779021499154194e-08,1.2858913195171507e-06,2.9719886075107673e-05,2.6299391665742387e-05,3.2502143277105344e-05,4.034359812439451e-05,2.600810682174259e-07,1.2858913195171507e-06,2.9719886075107673e-05,2.6299391665742434e-05,3.250214327710547e-05,4.034359812439451e-05,2.600810682174259e-07,1.2858913195171706e-06,2.9719886075107846e-05 +898,Methanol,"('air',)",emission,kilogram,biosphere3,3.4047574893937253e-06,1.4663672640865053e-05,2.869886792770964e-05,1.0007052625542096e-07,2.491636429415964e-06,1.425401049439324e-05,3.4047574893937253e-06,1.4663672640865053e-05,2.869886792770964e-05,4.6057553495272605e-07,2.491636429415964e-06,1.4254010494393241e-05,3.404757489393725e-06,1.4663672640865053e-05,2.869886792770964e-05,4.6057553495272605e-07,2.491636429415963e-06,1.4254010494393231e-05 +899,Molybdenum,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.8096742655208324e-08,1.888887345519918e-08,1.9971145072415895e-08,8.907459361974121e-09,2.638953756602545e-08,2.112435649355492e-08,1.8096742655208324e-08,1.888887345519918e-08,1.9971145072415895e-08,1.0796941086095072e-08,2.638953756602545e-08,2.112435649355492e-08,1.8096742655208324e-08,1.888887345519918e-08,1.9971145072415895e-08,1.0796941086095072e-08,2.638953756602545e-08,2.1124356493554917e-08 +900,Molybdenum,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,4.855222581423355e-08,5.066179916637527e-08,5.354296146875549e-08,3.734519071639102e-08,9.93905415483004e-08,6.583383496683403e-08,4.855222581423355e-08,5.066179916637527e-08,5.354296146875549e-08,4.2586439448848323e-08,9.93905415483004e-08,6.583383496683403e-08,4.855222581423355e-08,5.066179916637527e-08,5.354296146875549e-08,4.2586439448848323e-08,9.939054154830037e-08,6.583383496683403e-08 +901,Molybdenum,"('air',)",emission,kilogram,biosphere3,9.507069954795951e-11,9.867708725527575e-11,1.0354731904394975e-10,1.5464398340309319e-12,4.266157450441439e-12,6.285821781728488e-10,9.507069954795951e-11,9.867708725527575e-11,1.0354731904394975e-10,1.7982258514184858e-12,4.266157450441439e-12,6.285821781728488e-10,9.507069954795951e-11,9.867708725527574e-11,1.0354731904394975e-10,1.7982258514184858e-12,4.266157450441439e-12,6.285821781728488e-10 +902,Nickel,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.935522118385073e-06,3.129924361139538e-06,3.401599483799948e-06,4.2542769630507166e-06,3.939870234223727e-05,4.078742004982411e-05,2.935522118385073e-06,3.129924361139538e-06,3.401599483799948e-06,3.8005266609934e-05,3.939870234223727e-05,4.078742004982411e-05,2.935522118385073e-06,3.1299243611395377e-06,3.4015994837999486e-06,3.8005266609934e-05,3.939870234223728e-05,4.078742004982411e-05 +903,Nickel,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,5.121992960951779e-08,5.344541354764388e-08,5.648488141972493e-08,3.9397123518385224e-08,1.0485155838201292e-07,6.945107744279418e-08,5.121992960951779e-08,5.344541354764388e-08,5.648488141972493e-08,4.4926352913087244e-08,1.0485155838201292e-07,6.945107744279418e-08,5.121992960951779e-08,5.344541354764388e-08,5.648488141972493e-08,4.4926352913087244e-08,1.0485155838201291e-07,6.945107744279418e-08 +904,Nickel,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,4.7962646458879746e-14,4.998184485814962e-14,5.2689924704066867e-14,1.5710741375464698e-16,1.626497463640696e-14,4.691283553271882e-14,4.7962646458879746e-14,4.998184485814962e-14,5.2689924704066867e-14,6.407277365746957e-16,1.626497463640696e-14,4.691283553271882e-14,4.7962646458879746e-14,4.998184485814962e-14,5.2689924704066867e-14,6.407277365746957e-16,1.626497463640696e-14,4.69128355327188e-14 +905,Nickel,"('air',)",emission,kilogram,biosphere3,8.489223424339014e-08,8.972211325258122e-08,9.645623964236972e-08,3.8084181085060775e-05,3.812255795718585e-05,3.820482246537853e-05,8.489223424339014e-08,8.972211325258122e-08,9.645623964236972e-08,3.810823430901601e-05,3.8139930735397e-05,3.82259356995732e-05,8.489223424339014e-08,8.972211325258122e-08,9.645623964236972e-08,3.809086153080487e-05,3.812255795718585e-05,3.820482246537853e-05 +906,Niobium-95,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,7.243059917198923e-11,7.550993960272335e-11,7.970940467354251e-11,5.4332056198989185e-12,3.6550132745347206e-11,8.958272849004708e-11,7.243059917198923e-11,7.550993960272335e-11,7.970940467354251e-11,1.6536948719350247e-11,3.6550132745347206e-11,8.958272849004775e-11,7.243059917198925e-11,7.550993960272335e-11,7.970940467354251e-11,1.6536948719350247e-11,3.6550132745347865e-11,8.958272849004838e-11 +907,Nitrate,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,8.231774666860453e-08,8.589441739567239e-08,9.077927662870914e-08,6.331680775918259e-08,1.6851143861012426e-07,1.1161780656207055e-07,8.231774666860453e-08,8.589441739567239e-08,9.077927662870914e-08,7.220306948305157e-08,1.6851143861012426e-07,1.1161780656207055e-07,8.231774666860453e-08,8.589441739567239e-08,9.077927662870914e-08,7.220306948305157e-08,1.6851143861012423e-07,1.1161780656207055e-07 +908,Nitrate,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.393312100224362e-07,2.497300482493837e-07,2.639323231556399e-07,1.840877438001021e-07,4.899313717571942e-07,3.2451841472056485e-07,2.393312100224362e-07,2.497300482493837e-07,2.639323231556399e-07,2.0992372439929107e-07,4.899313717571942e-07,3.2451841472056485e-07,2.393312100224362e-07,2.497300482493837e-07,2.639323231556399e-07,2.0992372439929107e-07,4.899313717571941e-07,3.2451841472056485e-07 +909,Nitrogen oxides,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.07134586053195155,0.08884702619794131,0.11429196192942859,0.0035163402515997343,0.00941422292404452,0.08087182434265405,0.07134586053195155,0.08884702619794131,0.11429196192942859,0.0038545615414492425,0.00941422292404452,0.08087182434265405,0.07134586053195154,0.08884702619794131,0.11429196192942859,0.0038545615414492425,0.00941422292404452,0.08087182434265401 +910,Nitrogen oxides,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,9.592367482286445e-09,9.996200350304387e-09,1.0537807183730914e-08,3.142095432704111e-11,3.2529400599799392e-09,9.38240884326391e-09,9.592367482286445e-09,9.996200350304387e-09,1.0537807183730914e-08,1.281433899154933e-10,3.2529400599799392e-09,9.38240884326391e-09,9.592367482286445e-09,9.996200350304387e-09,1.0537807183730914e-08,1.281433899154933e-10,3.252940059979939e-09,9.382408843263906e-09 +911,Nitrogen oxides,"('air',)",emission,kilogram,biosphere3,0.012520347595016808,0.014501042321714772,0.017361128390667457,0.0009847023650043987,0.007905809758147307,0.020199251383337447,0.012520347595016808,0.014501042321714772,0.017361128390667457,0.006156508590859797,0.008380185620415016,0.020775763012889584,0.012520347595016808,0.014501042321714772,0.017361128390667457,0.005682132728592088,0.007905809758147307,0.020199251383337443 +912,"NMVOC, non-methane volatile organic compounds, unspecified origin","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.008160515812638457,0.009687804432673553,0.011902952186559929,0.00021644545398914232,0.001399638159786869,0.009184738180894065,0.008160515812638457,0.009687804432673553,0.011902952186559929,0.00036731591956303363,0.001399638159786869,0.009184738180894065,0.008160515812638457,0.009687804432673551,0.011902952186559929,0.00036731591956303363,0.0013996381597868683,0.009184738180894061 +913,"NMVOC, non-methane volatile organic compounds, unspecified origin","('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,4.5972644673722514e-10,4.790806520352072e-10,5.050378503603519e-10,1.5058894248655165e-12,1.5590130194538668e-10,4.4966391146944595e-10,4.5972644673722514e-10,4.790806520352072e-10,5.050378503603519e-10,6.141435745952758e-12,1.5590130194538668e-10,4.4966391146944595e-10,4.5972644673722514e-10,4.790806520352072e-10,5.050378503603519e-10,6.141435745952758e-12,1.5590130194538666e-10,4.496639114694457e-10 +914,"NMVOC, non-methane volatile organic compounds, unspecified origin","('air',)",emission,kilogram,biosphere3,0.0017789375951692058,0.002112915208880033,0.0025966010897003015,0.00015737319214579319,0.0011590385911036513,0.0029413317608274598,0.0017789375951692058,0.002112915208880033,0.0025966010897003015,0.0009120124886117773,0.0011590385911036513,0.00294133176082746,0.0017789375951692056,0.002112915208880033,0.0025966010897003015,0.0009120124886117773,0.0011590385911036513,0.0029413317608274593 +915,"Noble gases, radioactive, unspecified","('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,571.9841953917913,596.9261869387458,630.9947023612195,441.9959296994271,1178.6510408394379,679.4465268651986,571.9841953917913,596.9261869387458,630.9947023612195,503.66037686757045,1178.6510408394379,679.4465268651988,571.9841953917913,596.9261869387458,630.9947023612195,503.66037686757045,1178.6510408394379,679.4465268651992 +916,Ozone,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.2645136072074508e-09,1.3165994617109791e-09,1.386281688255226e-09,2.308688118973286e-11,4.736850379827146e-10,1.2427382238525742e-09,1.2645136072074508e-09,1.3165994617109791e-09,1.386281688255226e-09,3.933127099662993e-11,4.736850379827148e-10,1.2427382238525742e-09,1.2645136072074486e-09,1.3165994617109803e-09,1.386281688255226e-09,3.933127099662993e-11,4.736850379827156e-10,1.242738223852573e-09 +917,Ozone,"('air',)",emission,kilogram,biosphere3,2.3707822532302156e-05,2.471118131742493e-05,2.6080881867635415e-05,2.35457164924324e-05,5.935243495929682e-05,7.42292114155276e-05,2.3707822532302156e-05,2.471118131742493e-05,2.6080881867635415e-05,2.5950795551147393e-05,5.935243495929682e-05,7.422921141552762e-05,2.3707822532302156e-05,2.4711181317424926e-05,2.6080881867635415e-05,2.5950795551147393e-05,5.9352434959296835e-05,7.422921141552763e-05 +918,"PAH, polycyclic aromatic hydrocarbons","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.0516259187085963e-07,1.1426610240180162e-07,1.2726770011989325e-07,5.4125313226761745e-08,1.4917482854988915e-07,1.2228581642947107e-07,1.0516259187085963e-07,1.1426610240180162e-07,1.2726770011989325e-07,6.006349169886644e-08,1.4917482854988915e-07,1.2228581642947107e-07,1.0516259187085957e-07,1.1426610240180159e-07,1.2726770011989325e-07,6.006349169886644e-08,1.4917482854988915e-07,1.22285816429471e-07 +919,"PAH, polycyclic aromatic hydrocarbons","('air',)",emission,kilogram,biosphere3,5.670306773085068e-07,6.193362407417532e-07,6.935778748412748e-07,5.177367824460387e-08,4.443250380820238e-06,1.5987655083880378e-05,5.670306773085068e-07,6.193362407417532e-07,6.935778748412748e-07,6.511882751512048e-07,4.868118338157704e-06,1.650399948061716e-05,5.670306773085068e-07,6.193362407417532e-07,6.935778748412748e-07,2.2632031781373845e-07,4.443250380820238e-06,1.5987655083880375e-05 +920,"Particulates, < 2.5 um","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.014456336989472686,0.018029075480033754,0.023223313747473617,0.0004998092121265949,0.0026630873901115166,0.017992497272905833,0.014456336989472686,0.018029075480033754,0.023223313747473617,0.001854284611330797,0.0026630873901115166,0.017992497272905833,0.014456336989472686,0.018029075480033747,0.023223313747473617,0.001854284611330797,0.002663087390111517,0.017992497272905823 +921,"Particulates, < 2.5 um","('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.225627959120437e-05,2.3223305375926858e-05,2.4544026569695633e-05,1.7118988747882517e-05,4.556049997387362e-05,3.017814758065019e-05,2.225627959120437e-05,2.3223305375926858e-05,2.4544026569695633e-05,1.952157057200068e-05,4.556049997387362e-05,3.017814758065019e-05,2.225627959120437e-05,2.3223305375926858e-05,2.4544026569695633e-05,1.952157057200068e-05,4.556049997387361e-05,3.017814758065019e-05 +922,"Particulates, < 2.5 um","('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,2.6037119502345806e-11,2.713326648355697e-11,2.8603381332032024e-11,8.528774119436075e-14,8.829643990646878e-12,2.5467216652524996e-11,2.6037119502345806e-11,2.713326648355697e-11,2.8603381332032024e-11,3.478271072944309e-13,8.829643990646878e-12,2.5467216652524996e-11,2.6037119502345806e-11,2.713326648355697e-11,2.8603381332032024e-11,3.478271072944309e-13,8.829643990646876e-12,2.546721665252498e-11 +923,"Particulates, < 2.5 um","('air',)",emission,kilogram,biosphere3,0.0003978490706178491,0.0004471961488518235,0.0005180702600066428,3.249145300791189e-05,0.00043088091023742577,0.001551319642398954,0.0003978490706178491,0.0004471961488518235,0.0005180702600066428,0.00017708412931350878,0.00043088091023742577,0.001551319642398954,0.0003978490706178491,0.0004471961488518236,0.0005180702600066428,0.00017708412931350878,0.00043088091023742577,0.0015513196423989537 +924,"Particulates, > 10 um","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.057235167767158784,0.07154828014514221,0.09236032656745544,0.002246616271290179,0.0075246400976858585,0.07510467184784364,0.057235167767158784,0.07154828014514221,0.09236032656745544,0.002621998082162892,0.0075246400976858585,0.07510467184784365,0.057235167767158784,0.0715482801451422,0.09236032656745544,0.002621998082162892,0.0075246400976858585,0.07510467184784363 +925,"Particulates, > 10 um","('air', 'low population density, long-term')",emission,kilogram,biosphere3,5.564069911901292e-05,5.805826359050726e-05,6.13600665885792e-05,4.2797471910317576e-05,0.00011390125014956014,7.544536921104645e-05,5.564069911901292e-05,5.805826359050726e-05,6.13600665885792e-05,4.880392657590939e-05,0.00011390125014956014,7.544536921104645e-05,5.564069911901292e-05,5.805826359050726e-05,6.13600665885792e-05,4.880392657590939e-05,0.00011390125014956012,7.544536921104645e-05 +926,"Particulates, > 10 um","('air',)",emission,kilogram,biosphere3,0.0004006236514414601,0.00041666300578546516,0.00043859455966939047,8.34444024702017e-06,8.987289757924125e-05,0.0004681867826092472,0.0004006236514414601,0.00041666300578546516,0.00043859455966939047,2.0049662943367236e-05,8.987289757924125e-05,0.0004681867826092472,0.00040062365144146015,0.0004166630057854652,0.00043859455966939047,2.0049662943367236e-05,8.987289757924122e-05,0.00046818678260924655 +927,"Particulates, > 2.5 um, and < 10um","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.049644682973826855,0.06248097772897415,0.08115313211128271,0.0002334403433338966,0.003143909569808268,0.05929210907198418,0.049644682973826855,0.06248097772897415,0.08115313211128271,0.0014273054730490529,0.003143909569808268,0.05929210907198418,0.049644682973826855,0.06248097772897414,0.08115313211128271,0.0014273054730490529,0.003143909569808268,0.05929210907198415 +928,"Particulates, > 2.5 um, and < 10um","('air', 'low population density, long-term')",emission,kilogram,biosphere3,3.338441933820071e-05,3.483495801227612e-05,3.681603979872961e-05,2.567848310305538e-05,6.834074986604899e-05,4.5267221268400404e-05,3.338441933820071e-05,3.483495801227612e-05,3.681603979872961e-05,2.928235579142941e-05,6.834074986604899e-05,4.5267221268400404e-05,3.338441933820071e-05,3.483495801227612e-05,3.681603979872961e-05,2.928235579142941e-05,6.834074986604896e-05,4.5267221268400404e-05 +929,"Particulates, > 2.5 um, and < 10um","('air',)",emission,kilogram,biosphere3,0.00020958335246518706,0.00021925369850666316,0.00023259605315752093,5.338341370462108e-06,8.788931677910474e-05,0.000463447871176463,0.00020958335246518706,0.00021925369850666316,0.00023259605315752093,0.0002016823868896128,0.00027331896922923543,0.0006888015613711421,0.00020958335246518706,0.00021925369850666322,0.0002325960531575209,1.6252734439482137e-05,8.788931677910468e-05,0.00046344787117646134 +930,Pentane,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.0625794316358172e-06,2.1532176757617785e-06,2.2770825288972268e-06,2.5399221974815602e-06,6.296304308216005e-06,2.4915206144738165e-06,2.0625794316358172e-06,2.1532176757617785e-06,2.2770825288972268e-06,2.757729937570945e-06,6.296304308216005e-06,2.4915206144738165e-06,2.0625794316358172e-06,2.1532176757617785e-06,2.2770825288972268e-06,2.757729937570945e-06,6.296304308216005e-06,2.4915206144738165e-06 +931,Pentane,"('air',)",emission,kilogram,biosphere3,1.0462422078081085e-08,1.0899526017040122e-08,1.1490934680184661e-08,9.468510162977088e-11,1.6811564911608341e-09,4.710962961596584e-08,1.0462422078081085e-08,1.0899526017040122e-08,1.1490934680184661e-08,3.1160959959420096e-10,1.6811564911608341e-09,4.710962961596584e-08,1.0462422078081082e-08,1.089952601704012e-08,1.1490934680184661e-08,3.1160959959420096e-10,1.6811564911608281e-09,4.710962961596563e-08 +932,Phenol,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.2244806682726236e-07,2.334617218046589e-07,2.4849436907382235e-07,7.901939205084286e-09,9.239460793109353e-08,2.649258378882175e-07,2.2244806682726236e-07,2.334617218046589e-07,2.4849436907382235e-07,3.6638666457645265e-08,9.239460793109353e-08,2.649258378882175e-07,2.2244806682726257e-07,2.3346172180465859e-07,2.4849436907382246e-07,3.6638666457645265e-08,9.239460793109353e-08,2.6492583788821724e-07 +933,Phenol,"('air',)",emission,kilogram,biosphere3,1.0579075493928455e-08,1.1034696277408637e-08,1.1646831182517284e-08,3.559074215137808e-10,6.385332308580775e-09,1.3208255337007363e-08,1.0579075493928455e-08,1.1034696277408637e-08,1.1646831182517284e-08,2.879954601581378e-09,6.385332308580775e-09,1.3208255337007363e-08,1.0579075493928455e-08,1.1034696277408637e-08,1.1646831182517284e-08,2.879954601581378e-09,6.385332308580775e-09,1.320825533700736e-08 +934,"Phenol, pentachloro-","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.5776196376183066e-08,1.6460253749847627e-08,1.739420124419449e-08,1.7460789039217773e-08,4.601444205277692e-08,2.145178275810019e-08,1.5776196376183066e-08,1.6460253749847627e-08,1.739420124419449e-08,1.9096708687034722e-08,4.601444205277692e-08,2.145178275810019e-08,1.5776196376183066e-08,1.6460253749847627e-08,1.739420124419449e-08,1.9096708687034722e-08,4.601444205277692e-08,2.1451782758100188e-08 +935,Phosphorus,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,6.739274617684269e-09,7.0914533066561315e-09,7.57961840400999e-09,2.477526545489464e-09,7.777726981483422e-09,9.021088341171317e-09,6.739274617684269e-09,7.0914533066561315e-09,7.57961840400999e-09,3.0007840837312683e-09,7.777726981483422e-09,9.021088341171319e-09,6.739274617684269e-09,7.091453306656131e-09,7.57961840400999e-09,3.0007840837312683e-09,7.77772698148342e-09,9.021088341171315e-09 +936,Phosphorus,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,4.6875380662756876e-08,4.891209581138703e-08,5.16937515904753e-08,3.605540226619807e-08,9.595789673895641e-08,6.356013592451713e-08,4.6875380662756876e-08,4.891209581138703e-08,5.16937515904753e-08,4.1115634263802824e-08,9.595789673895641e-08,6.356013592451713e-08,4.6875380662756876e-08,4.891209581138703e-08,5.16937515904753e-08,4.1115634263802824e-08,9.59578967389564e-08,6.356013592451713e-08 +937,Phosphorus,"('air',)",emission,kilogram,biosphere3,3.8250687166834665e-10,4.163123458870431e-10,4.641639052006235e-10,3.279803675800279e-11,2.407074783251217e-10,5.364954911885607e-10,3.8250687166834665e-10,4.163123458870431e-10,4.641639052006235e-10,1.2957608236370096e-10,2.407074783251217e-10,5.364954911885608e-10,3.8250687166834665e-10,4.1631234588704304e-10,4.641639052006235e-10,1.2957608236370096e-10,2.407074783251217e-10,5.364954911885605e-10 +938,Platinum,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,8.175368306245382e-13,8.529573960570254e-13,9.013157043835953e-13,4.2304660678650045e-14,4.1622556458021485e-13,9.363376897003076e-13,8.175368306245382e-13,8.529573960570254e-13,9.013157043835953e-13,1.28603537653299e-13,4.1622556458021485e-13,9.363376897003082e-13,8.175368306245382e-13,8.529573960570255e-13,9.013157043835953e-13,1.28603537653299e-13,4.1622556458021485e-13,9.363376897003082e-13 +939,Plutonium-238,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,8.119456800085101e-12,8.473517425554385e-12,8.957132425182403e-12,6.272353105599975e-12,1.672729347271086e-11,9.640330452259347e-12,8.119456800085101e-12,8.473517425554385e-12,8.957132425182403e-12,7.147732163954527e-12,1.672729347271086e-11,9.64033045225935e-12,8.119456800085101e-12,8.473517425554385e-12,8.957132425182403e-12,7.147732163954527e-12,1.6727293472710864e-11,9.640330452259355e-12 +940,Plutonium-alpha,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.8612822450097976e-11,1.9424461420659178e-11,2.053308732315446e-11,1.4378572062163204e-11,3.834519366445855e-11,2.2099231936485017e-11,1.8612822450097976e-11,1.9424461420659178e-11,2.053308732315446e-11,1.638526725628453e-11,3.834519366445855e-11,2.2099231936485026e-11,1.8612822450097976e-11,1.9424461420659178e-11,2.053308732315446e-11,1.638526725628453e-11,3.834519366445856e-11,2.209923193648503e-11 +941,Polonium-210,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0005519681543405446,0.0005762125835405284,0.0006093449087010149,0.0007329677766072758,0.0017979504520923598,0.0006855262777415655,0.0005519681543405446,0.0005762125835405284,0.0006093449087010149,0.0007920251178634785,0.0017979504520923598,0.0006855262777415655,0.0005519681543405446,0.0005762125835405284,0.0006093449087010149,0.0007920251178634785,0.0017979504520923598,0.0006855262777415654 +942,Polonium-210,"('air',)",emission,kilo Becquerel,biosphere3,9.560065141688376e-06,9.921354515820712e-06,1.0409094508751099e-05,5.88432924076253e-13,1.5763834039377555e-12,6.45192911371727e-05,9.560065141688376e-06,9.921354515820712e-06,1.0409094508751099e-05,6.682950349789491e-13,1.5763834039377555e-12,6.45192911371727e-05,9.560065141688376e-06,9.92135451582071e-06,1.0409094508751099e-05,6.682950349789491e-13,1.5763834039377555e-12,6.45192911371727e-05 +943,Polychlorinated biphenyls,"('air',)",emission,kilogram,biosphere3,1.7636987043292898e-09,1.865039131188718e-09,2.006442041367549e-09,9.107607786866014e-11,6.442738949767999e-10,2.1469874891065383e-09,1.7636987043292898e-09,1.865039131188718e-09,2.006442041367549e-09,5.962618550889796e-09,6.423198178184782e-09,9.17014638181276e-09,1.7636987043292898e-09,1.8650391311887177e-09,2.0064420413675487e-09,1.8369426768181342e-10,6.442738949768001e-10,2.146987489106538e-09 +944,Potassium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,8.461118315722167e-08,8.969886606476712e-08,9.681268945802273e-08,5.708461231776826e-09,2.039471535960789e-07,3.103340046838239e-07,8.461118315722167e-08,8.969886606476712e-08,9.681268945802273e-08,1.1438677474058884e-08,2.039471535960789e-07,3.103340046838239e-07,8.461118315722167e-08,8.969886606476712e-08,9.681268945802273e-08,1.1438677474058884e-08,2.039471535960789e-07,3.1033400468382385e-07 +945,Potassium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,4.771380274219653e-06,4.978694697114079e-06,5.2618355982603634e-06,3.6700296108801143e-06,9.76742181261575e-06,6.4696984772218485e-06,4.771380274219653e-06,4.978694697114079e-06,5.2618355982603634e-06,4.185103642056184e-06,9.76742181261575e-06,6.4696984772218485e-06,4.771380274219653e-06,4.978694697114079e-06,5.2618355982603634e-06,4.185103642056184e-06,9.767421812615749e-06,6.4696984772218485e-06 +946,Potassium-40,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,6.94389415623252e-05,7.24957999238255e-05,7.667380758829485e-05,0.00011121585227891918,0.0002672810068980711,8.521280590012482e-05,6.94389415623252e-05,7.24957999238255e-05,7.667380758829485e-05,0.00011857152976613077,0.0002672810068980711,8.521280590012482e-05,6.94389415623252e-05,7.24957999238255e-05,7.667380758829485e-05,0.00011857152976613077,0.0002672810068980711,8.521280590012482e-05 +947,Potassium-40,"('air',)",emission,kilo Becquerel,biosphere3,1.286857862573518e-06,1.33549017468393e-06,1.401143706902767e-06,7.9207570606457e-14,2.1219325878101482e-13,8.684789889713804e-06,1.286857862573518e-06,1.33549017468393e-06,1.401143706902767e-06,8.995762127755526e-14,2.1219325878101482e-13,8.684789889713804e-06,1.286857862573518e-06,1.3354901746839299e-06,1.401143706902767e-06,8.995762127755526e-14,2.1219325878101482e-13,8.684789889713804e-06 +948,Propanal,"('air',)",emission,kilogram,biosphere3,1.2617468109714943e-16,1.322161709389256e-16,1.404124338014914e-16,2.889941974936608e-18,5.1311785713705327e-17,1.342858162949114e-16,1.2617468109714943e-16,1.322161709389256e-16,1.404124338014914e-16,9.510853052134132e-18,5.1311785713705327e-17,1.3428581629491143e-16,1.261746810971426e-16,1.3221617093892659e-16,1.4041243380149144e-16,9.510853052134132e-18,5.13117857137053e-17,1.3428581629490943e-16 +949,Propane,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.453627350643196e-05,5.795286481673623e-05,6.262999535714795e-05,1.0891891641612518e-05,3.401045791787173e-05,6.016929806526129e-05,5.453627350643196e-05,5.795286481673623e-05,6.262999535714795e-05,1.4583366555316556e-05,3.401045791787173e-05,6.016929806526129e-05,5.453627350643199e-05,5.7952864816736246e-05,6.262999535714795e-05,1.4583366555316556e-05,3.401045791787173e-05,6.016929806526125e-05 +950,Propane,"('air',)",emission,kilogram,biosphere3,4.042344464156624e-09,4.220682757594965e-09,4.462247821130905e-09,5.8045938410947145e-11,1.0306216218709867e-09,1.2874884732747539e-08,4.042344464156624e-09,4.220682757594965e-09,4.462247821130905e-09,1.9103006829091213e-10,1.0306216218709867e-09,1.2874884732747539e-08,4.042344464156623e-09,4.220682757594965e-09,4.462247821130905e-09,1.9103006829091213e-10,1.0306216218709832e-09,1.287488473274741e-08 +951,Propene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.623582514647509e-05,1.6928617161069914e-05,1.7864539573705324e-05,2.84983993631545e-07,7.591409545133644e-07,1.5308148221637295e-05,1.623582514647509e-05,1.6928617161069914e-05,1.7864539573705324e-05,3.175530057657818e-07,7.591409545133644e-07,1.5308148221637295e-05,1.623582514647514e-05,1.692861716106993e-05,1.7864539573705327e-05,3.175530057657818e-07,7.591409545133647e-07,1.530814822163725e-05 +952,Propene,"('air',)",emission,kilogram,biosphere3,6.91619658914173e-10,7.177871579885192e-10,7.531141870075582e-10,6.846237985413827e-14,1.2149310716764386e-12,4.6506452020251275e-09,6.91619658914173e-10,7.177871579885192e-10,7.531141870075582e-10,2.2521961730331185e-13,1.2149310716764386e-12,4.6506452020251275e-09,6.916196589141728e-10,7.177871579885191e-10,7.531141870075582e-10,2.2521961730331185e-13,1.214931071676438e-12,4.6506452020251275e-09 +953,Propionic acid,"('air',)",emission,kilogram,biosphere3,5.7515524974887405e-11,6.026948049403756e-11,6.400566874127015e-11,1.3173524534874329e-12,2.3389987989091726e-11,6.12129084974306e-11,5.7515524974887405e-11,6.026948049403756e-11,6.400566874127015e-11,4.335431531697217e-12,2.3389987989091726e-11,6.12129084974306e-11,5.751552497488738e-11,6.026948049403756e-11,6.400566874127015e-11,4.335431531697217e-12,2.3389987989091642e-11,6.121290849742767e-11 +954,Protactinium-234,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,8.272116315622644e-06,8.631549889852512e-06,9.122443457552872e-06,6.359701540265498e-06,1.6927106186937938e-05,1.1208974431641328e-05,8.272116315622644e-06,8.631549889852512e-06,9.122443457552872e-06,7.2522844866332264e-06,1.6927106186937938e-05,1.1208974431641333e-05,8.272116315622644e-06,8.631549889852512e-06,9.122443457552872e-06,7.2522844866332264e-06,1.6927106186937944e-05,1.1208974431641338e-05 +955,"Radioactive species, other beta emitters","('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,3.4101432577014996e-07,3.557990173856258e-07,3.759846533339638e-07,1.454408100008909e-08,1.678224959332047e-07,3.9013137147996493e-07,3.4101432577014996e-07,3.557990173856258e-07,3.759846533339638e-07,5.012098965155116e-08,1.678224959332047e-07,3.9013137147996493e-07,3.4101432577014996e-07,3.557990173856258e-07,3.759846533339638e-07,5.012098965155116e-08,1.6782249593320473e-07,3.9013137147996493e-07 +956,Radium-226,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.3775417084573864,0.4760210458901603,0.6192881864357478,0.0003098769602549265,0.0008033615106276724,0.42717542052419666,0.3775417084573864,0.4760210458901603,0.6192881864357478,0.00034821361710645973,0.0008033615106276724,0.42717542052419666,0.3775417084573864,0.47602104589016025,0.6192881864357478,0.00034821361710645973,0.0008033615106276722,0.4271754205241965 +957,Radium-226,"('air',)",emission,kilo Becquerel,biosphere3,1.3503352196316595e-06,1.4013664374255809e-06,1.4702584879205925e-06,8.311467443056963e-14,2.2266020141008245e-13,9.113188025077264e-06,1.3503352196316595e-06,1.4013664374255809e-06,1.4702584879205925e-06,9.439499724789546e-14,2.2266020141008245e-13,9.113188025077264e-06,1.3503352196316595e-06,1.4013664374255806e-06,1.4702584879205925e-06,9.439499724789546e-14,2.2266020141008245e-13,9.113188025077264e-06 +958,Radium-228,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,2.6323334315723744e-05,2.748042062380899e-05,2.9061733929666836e-05,3.698069051199935e-05,9.015840523512219e-05,3.2004141975714606e-05,2.6323334315723744e-05,2.748042062380899e-05,2.9061733929666836e-05,3.976176600735978e-05,9.015840523512219e-05,3.2004141975714606e-05,2.6323334315723744e-05,2.7480420623808995e-05,2.9061733929666836e-05,3.976176600735978e-05,9.015840523512219e-05,3.20041419757146e-05 +959,Radium-228,"('air',)",emission,kilo Becquerel,biosphere3,4.000993074886308e-07,4.152196676797979e-07,4.356321262262355e-07,2.4626569202984586e-14,6.597339042882677e-14,2.7002037455867363e-06,4.000993074886308e-07,4.152196676797979e-07,4.356321262262355e-07,2.7968887031622213e-14,6.597339042882677e-14,2.7002037455867363e-06,4.000993074886308e-07,4.1521966767979777e-07,4.356321262262355e-07,2.7968887031622213e-14,6.597339042882677e-14,2.7002037455867363e-06 +960,Radon-220,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0031768049421045993,0.0033166583127022917,0.003507802909949516,0.004880578661591112,0.011784016639874427,0.003890625804496839,0.0031768049421045993,0.0033166583127022917,0.003507802909949516,0.005216855954755213,0.011784016639874427,0.003890625804496839,0.0031768049421045993,0.0033166583127022917,0.0035078029099495154,0.005216855954755213,0.011784016639874427,0.0038906258044968385 +961,Radon-220,"('air',)",emission,kilo Becquerel,biosphere3,2.8083894634010755e-05,2.9145227644313684e-05,3.0578025263078756e-05,1.7285957769763674e-12,4.630824657017372e-12,0.00018953353845425975,2.8083894634010755e-05,2.9145227644313684e-05,3.0578025263078756e-05,1.9632007774608143e-12,4.630824657017372e-12,0.00018953353845425975,2.8083894634010755e-05,2.9145227644313677e-05,3.0578025263078756e-05,1.9632007774608143e-12,4.630824657017372e-12,0.00018953353845425975 +962,Radon-222,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,25.561275405553303,26.677380584604872,28.20240875455713,19.59198492061037,52.16109501336953,34.71662698616309,25.561275405553303,26.677380584604872,28.20240875455713,22.34342455322875,52.16109501336953,34.71662698616309,25.561275405553303,26.677380584604872,28.20240875455713,22.34342455322875,52.161095013369525,34.71662698616309 +963,Radon-222,"('air', 'low population density, long-term')",emission,kilo Becquerel,biosphere3,1067.0818728663098,1113.446121782219,1176.7683693905885,820.7734124263861,2184.4074797386825,1446.8974536240205,1067.0818728663098,1113.446121782219,1176.7683693905885,935.9656904387051,2184.4074797386825,1446.8974536240205,1067.0818728663098,1113.446121782219,1176.7683693905885,935.9656904387051,2184.407479738682,1446.8974536240205 +964,Radon-222,"('air',)",emission,kilo Becquerel,biosphere3,1.5773145979200895e-05,1.6369237109801393e-05,1.7173959043634024e-05,9.708551434111623e-13,2.6008740736070407e-12,0.00010645034134165524,1.5773145979200895e-05,1.6369237109801393e-05,1.7173959043634024e-05,1.1026195951803774e-12,2.6008740736070407e-12,0.00010645034134165524,1.5773145979200895e-05,1.636923710980139e-05,1.7173959043634024e-05,1.1026195951803774e-12,2.6008740736070407e-12,0.00010645034134165524 +965,Ruthenium-103,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.5913477342035145e-11,1.6590028616462388e-11,1.7512678615548383e-11,1.1937108831257177e-12,8.030303710240547e-12,1.968191256615365e-11,1.5913477342035145e-11,1.6590028616462388e-11,1.7512678615548383e-11,3.633276015410365e-12,8.030303710240547e-12,1.9681912566153794e-11,1.5913477342035148e-11,1.6590028616462388e-11,1.751267861554838e-11,3.633276015410365e-12,8.030303710240693e-12,1.9681912566153933e-11 +966,Scandium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.387502785236708e-10,3.558143039375661e-10,3.7940317646240345e-10,1.5085446915740052e-10,4.484920185109675e-10,4.5467308686116603e-10,3.387502785236708e-10,3.558143039375661e-10,3.7940317646240345e-10,1.793895484065762e-10,4.484920185109675e-10,4.5467308686116603e-10,3.387502785236708e-10,3.5581430393756605e-10,3.7940317646240345e-10,1.793895484065762e-10,4.484920185109674e-10,4.54673086861166e-10 +967,Scandium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,9.984837584215095e-08,1.0418674487002692e-07,1.1011189806893215e-07,7.68009412617992e-08,2.0439812975672104e-07,1.3538826245756298e-07,9.984837584215095e-08,1.0418674487002692e-07,1.1011189806893215e-07,8.757964724837314e-08,2.0439812975672104e-07,1.3538826245756298e-07,9.984837584215095e-08,1.0418674487002692e-07,1.1011189806893215e-07,8.757964724837314e-08,2.0439812975672102e-07,1.3538826245756298e-07 +968,Selenium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.9206236677469606e-07,3.083664741632383e-07,3.3093853906511096e-07,1.4318946351147146e-07,4.235079928433899e-07,3.5680301450202223e-07,2.9206236677469606e-07,3.083664741632383e-07,3.3093853906511096e-07,1.7739343271284295e-07,4.235079928433899e-07,3.5680301450202223e-07,2.9206236677469606e-07,3.0836647416323836e-07,3.3093853906511096e-07,1.7739343271284295e-07,4.235079928433899e-07,3.56803014502022e-07 +969,Selenium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.3948284139383314e-08,1.455433109082865e-08,1.53820433046513e-08,1.0728680805256574e-08,2.855332567988063e-08,1.8913016215998405e-08,1.3948284139383314e-08,1.455433109082865e-08,1.53820433046513e-08,1.2234408356901023e-08,2.855332567988063e-08,1.8913016215998405e-08,1.3948284139383314e-08,1.455433109082865e-08,1.53820433046513e-08,1.2234408356901023e-08,2.8553325679880622e-08,1.8913016215998405e-08 +970,Selenium,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,6.851817902640176e-15,7.140275291073342e-15,7.52714447653585e-15,2.2443952714213272e-17,2.3235716221976944e-15,6.701844664797125e-15,6.851817902640176e-15,7.140275291073342e-15,7.52714447653585e-15,9.153268092752968e-17,2.3235716221976944e-15,6.701844664797125e-15,6.851817902640176e-15,7.140275291073342e-15,7.52714447653585e-15,9.153268092752968e-17,2.323571622197694e-15,6.70184466479712e-15 +971,Selenium,"('air',)",emission,kilogram,biosphere3,1.900292631678391e-09,1.999516752685176e-09,2.1370720197770883e-09,1.0965491294856267e-10,1.1179965598500289e-09,5.244951634454969e-09,1.900292631678391e-09,1.999516752685176e-09,2.1370720197770883e-09,7.268764771494131e-10,1.1179965598500289e-09,5.244951634454969e-09,1.900292631678391e-09,1.999516752685176e-09,2.1370720197770883e-09,7.268764771494131e-10,1.1179965598500287e-09,5.244951634454969e-09 +972,Silicon,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.5723377757938436e-06,1.6818949927996181e-06,1.835889900236213e-06,1.069022904312369e-07,2.0543078638465883e-05,2.6095828750298964e-05,1.5723377757938436e-06,1.6818949927996181e-06,1.835889900236213e-06,3.116560103030901e-07,2.0543078638465883e-05,2.6095828750298964e-05,1.5723377757938436e-06,1.6818949927996181e-06,1.835889900236213e-06,3.116560103030901e-07,2.0543078638465883e-05,2.609582875029896e-05 +973,Silicon,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,6.211940882031713e-06,6.481847044389608e-06,6.850472984484471e-06,4.7780737789359075e-06,1.271637207367497e-05,8.423010147119655e-06,6.211940882031713e-06,6.481847044389608e-06,6.850472984484471e-06,5.448657394437505e-06,1.271637207367497e-05,8.423010147119655e-06,6.211940882031713e-06,6.481847044389608e-06,6.850472984484471e-06,5.448657394437505e-06,1.2716372073674969e-05,8.423010147119655e-06 +974,Silicon,"('air',)",emission,kilogram,biosphere3,3.712017663212512e-14,3.8962931071148344e-14,4.1502699432295366e-14,4.530885002578283e-15,2.8263231554415152e-14,4.9679973786589006e-14,3.712017663212512e-14,3.8962931071148344e-14,4.1502699432295366e-14,1.5281947751309512e-14,2.8263231554415152e-14,4.9679973786589006e-14,3.7120176632125026e-14,3.8962931071148363e-14,4.150269943229513e-14,1.5281947751309512e-14,2.826323155441514e-14,4.9679973786588854e-14 +975,Silicon tetrafluoride,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.887361859734392e-10,6.319573897633438e-10,6.929451973178961e-10,3.950001519532152e-10,1.1774898433131397e-09,1.5872870862424556e-09,5.887361859734392e-10,6.319573897633438e-10,6.929451973178961e-10,1.0088747373371578e-09,1.1774898433131397e-09,1.5872870862424556e-09,5.887361859734392e-10,6.319573897633438e-10,6.929451973178961e-10,1.0088747373371578e-09,1.1774898433131397e-09,1.5872870862424556e-09 +976,Silver,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.072817920509706e-12,3.3190179382642435e-12,3.638991368922799e-12,1.2028686117352103e-09,1.2024348309410874e-08,1.202463557406729e-08,3.072817920509706e-12,3.3190179382642435e-12,3.638991368922799e-12,1.2022150824783537e-08,1.2024348309410874e-08,1.202463557406729e-08,3.072817920509706e-12,3.3190179382642435e-12,3.6389913689228e-12,1.2022150824783537e-08,1.2024348309410876e-08,1.202463557406729e-08 +977,Silver,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,4.176863205426803e-09,4.3583461174572104e-09,4.606207479661548e-09,3.2127415403598306e-09,8.550394729651547e-09,5.663569869912024e-09,4.176863205426803e-09,4.3583461174572104e-09,4.606207479661548e-09,3.6636370241838166e-09,8.550394729651547e-09,5.663569869912024e-09,4.176863205426803e-09,4.3583461174572104e-09,4.606207479661548e-09,3.6636370241838166e-09,8.550394729651545e-09,5.663569869912024e-09 +978,Silver-110,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.577147506651723e-10,1.6441989205522056e-10,1.7356406032661928e-10,1.183058923659751e-11,7.958646108219019e-11,1.95062830381453e-10,1.577147506651723e-10,1.6441989205522056e-10,1.7356406032661928e-10,3.600854840431927e-11,7.958646108219019e-11,1.9506283038145448e-10,1.5771475066517233e-10,1.6441989205522056e-10,1.7356406032661925e-10,3.600854840431927e-11,7.958646108219161e-11,1.9506283038145585e-10 +979,Sodium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.262818341458593e-08,5.5511909419473945e-08,5.952201706917757e-08,1.20856417892493e-08,4.632382078919274e-08,7.242590395284466e-08,5.262818341458593e-08,5.5511909419473945e-08,5.952201706917757e-08,1.5683861912760562e-08,4.632382078919274e-08,7.242590395284467e-08,5.262818341458593e-08,5.551190941947394e-08,5.952201706917757e-08,1.5683861912760562e-08,4.632382078919274e-08,7.242590395284466e-08 +980,Sodium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.6387328978981794e-06,1.7099351381306592e-06,1.8071800195008591e-06,1.2604734739477232e-06,3.3546258190713106e-06,2.2220211157374977e-06,1.6387328978981794e-06,1.7099351381306592e-06,1.8071800195008591e-06,1.4373758994288339e-06,3.3546258190713106e-06,2.2220211157374977e-06,1.6387328978981794e-06,1.7099351381306592e-06,1.8071800195008591e-06,1.4373758994288339e-06,3.35462581907131e-06,2.2220211157374977e-06 +981,Sodium,"('air',)",emission,kilogram,biosphere3,1.0642358908038432e-10,1.138713840073035e-10,1.242811561660317e-10,4.133638564080262e-12,6.081114541835497e-11,1.4081135279023455e-10,1.0642358908038432e-10,1.138713840073035e-10,1.242811561660317e-10,2.8765754504859977e-11,6.081114541835497e-11,1.4081135279023455e-10,1.0642358908038432e-10,1.138713840073035e-10,1.242811561660317e-10,2.8765754504859977e-11,6.081114541835355e-11,1.4081135279019363e-10 +982,Strontium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.93033415607425e-07,3.0601868154722533e-07,3.237778327365327e-07,3.8310093694437444e-07,9.415462120147782e-07,3.5605197612527706e-07,2.93033415607425e-07,3.0601868154722533e-07,3.237778327365327e-07,4.1363638366563565e-07,9.415462120147782e-07,3.5605197612527706e-07,2.93033415607425e-07,3.0601868154722533e-07,3.237778327365327e-07,4.1363638366563565e-07,9.415462120147782e-07,3.5605197612527706e-07 +983,Strontium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.0137277605785297e-07,1.0577737962302261e-07,1.117929930339294e-07,7.797347275736032e-08,2.0751870677920185e-07,1.3745525555565352e-07,1.0137277605785297e-07,1.0577737962302261e-07,1.117929930339294e-07,8.891673896239679e-08,2.0751870677920185e-07,1.3745525555565352e-07,1.0137277605785297e-07,1.0577737962302261e-07,1.117929930339294e-07,8.891673896239679e-08,2.075187067792018e-07,1.3745525555565352e-07 +984,Strontium,"('air',)",emission,kilogram,biosphere3,4.7704146383818005e-09,4.950695849179943e-09,5.194075153349458e-09,2.9362446763011764e-16,7.866057782803244e-16,3.219473574051703e-08,4.7704146383818005e-09,4.950695849179943e-09,5.194075153349458e-09,3.334751783153918e-16,7.866057782803244e-16,3.219473574051703e-08,4.7704146383818005e-09,4.950695849179942e-09,5.194075153349458e-09,3.334751783153918e-16,7.866057782803244e-16,3.219473574051703e-08 +985,Styrene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.0885688243433658e-10,2.179163594090406e-10,2.3028448997663882e-10,2.2786590634881673e-10,6.009166100052133e-10,2.824793660702512e-10,2.0885688243433658e-10,2.179163594090406e-10,2.3028448997663882e-10,2.4947856961280455e-10,6.009166100052133e-10,2.824793660702512e-10,2.0885688243433658e-10,2.1791635940904064e-10,2.3028448997663882e-10,2.4947856961280455e-10,6.009166100052133e-10,2.824793660702512e-10 +986,Styrene,"('air',)",emission,kilogram,biosphere3,8.30380450696893e-18,8.701406863805693e-18,9.240819081115397e-18,1.9019278251967855e-19,3.3769297919242973e-18,8.837614315888006e-18,8.30380450696893e-18,8.701406863805693e-18,9.240819081115397e-18,6.259280031243572e-19,3.3769297919242973e-18,8.837614315888007e-18,8.30380450696848e-18,8.70140686380576e-18,9.2408190811154e-18,6.259280031243572e-19,3.376929791924296e-18,8.837614315887875e-18 +987,Sulfate,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,6.21971716331083e-07,6.489961253806098e-07,6.859048702278565e-07,4.784043619065789e-07,1.2732265508685382e-06,8.433525640632517e-07,6.21971716331083e-07,6.489961253806098e-07,6.859048702278565e-07,5.455465165788763e-07,1.2732265508685382e-06,8.433525640632517e-07,6.21971716331083e-07,6.489961253806098e-07,6.859048702278565e-07,5.455465165788763e-07,1.2732265508685377e-06,8.433525640632517e-07 +988,Sulfate,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.568618416538366e-05,2.6802237830661176e-05,2.8326494735164707e-05,1.9757187883887916e-05,5.2581806755441515e-05,3.482888743280254e-05,2.568618416538366e-05,2.6802237830661176e-05,2.8326494735164707e-05,2.253003044416334e-05,5.2581806755441515e-05,3.482888743280254e-05,2.568618416538366e-05,2.6802237830661176e-05,2.8326494735164707e-05,2.253003044416334e-05,5.25818067554415e-05,3.482888743280254e-05 +989,Sulfate,"('air',)",emission,kilogram,biosphere3,1.3414153248268945e-09,1.48189154079847e-09,1.6835915027843144e-09,1.0559655017732386e-10,5.967020047462276e-10,1.5428959497687913e-09,1.3414153248268945e-09,1.48189154079847e-09,1.6835915027843144e-09,2.0488934491591823e-10,5.967020047462276e-10,1.5428959497687923e-09,1.3414153248268941e-09,1.4818915407984704e-09,1.6835915027843144e-09,2.0488934491591823e-10,5.967020047462282e-10,1.5428959497687923e-09 +990,Sulfur dioxide,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.02243360968209779,0.03814520530256063,0.06494107595056789,0.01872004530793927,0.147126740551728,0.17820782123971832,0.02243360968209779,0.03814520530256063,0.06494107595056789,0.13593196834151397,0.147126740551728,0.17820782123971832,0.02243360968209779,0.03814520530256063,0.06494107595056789,0.13593196834151397,0.14712674055172803,0.1782078212397183 +991,Sulfur dioxide,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,6.851817927848163e-10,7.140275317341775e-10,7.527144504226372e-10,2.2443952787368592e-12,2.3235716307079232e-10,6.701844689425371e-10,6.851817927848163e-10,7.140275317341775e-10,7.527144504226372e-10,9.15326812317669e-12,2.3235716307079232e-10,6.701844689425371e-10,6.851817927848163e-10,7.140275317341775e-10,7.527144504226372e-10,9.15326812317669e-12,2.323571630707923e-10,6.701844689425367e-10 +992,Sulfur dioxide,"('air',)",emission,kilogram,biosphere3,0.0003352816943382979,0.0003562478579629276,0.0003855725798873487,2.505613270017719e-05,0.0007193680265068364,0.003406390098030428,0.0003352816943382979,0.0003562478579629276,0.0003855725798873487,0.001267645462464642,0.0018535494558876583,0.004784767111005647,0.00033528169433829784,0.0003562478579629276,0.0003855725798873487,0.00013346403308382,0.0007193680265068364,0.003406390098030428 +993,Sulfur hexafluoride,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.2821810064554384e-10,3.4207738482959423e-10,3.607662010310436e-10,1.733023149528528e-11,1.6053300369677029e-10,4.0127994804217983e-10,3.2821810064554384e-10,3.4207738482959423e-10,3.607662010310436e-10,3.933808644659322e-11,1.605330036967703e-10,4.012799480421798e-10,3.282181006455438e-10,3.420773848295943e-10,3.607662010310436e-10,3.933808644659322e-11,1.6053300369677029e-10,4.012799480421796e-10 +994,Sulfur hexafluoride,"('air',)",emission,kilogram,biosphere3,4.1635875102692646e-07,4.3295172101036024e-07,4.5555458924218826e-07,8.217326256279257e-07,1.8742599313001694e-06,2.442725839703885e-06,4.1635875102692646e-07,4.3295172101036024e-07,4.5555458924218826e-07,8.336955857738464e-07,1.8742599313001694e-06,2.4427258397038854e-06,4.1635875102692646e-07,4.329517210103602e-07,4.5555458924218826e-07,8.336955857738464e-07,1.8742599313001694e-06,2.442725839703886e-06 +995,Sulfuric acid,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.7516538849990089e-12,1.8275320181376114e-12,1.9311243009232568e-12,7.688622572199435e-14,8.622234226292213e-13,2.0093608716329172e-12,1.7516538849990089e-12,1.8275320181376114e-12,1.9311243009232568e-12,2.629202819856425e-13,8.622234226292213e-13,2.0093608716329172e-12,1.7516538849990089e-12,1.8275320181376114e-12,1.9311243009232568e-12,2.629202819856425e-13,8.622234226292211e-13,2.009360871632917e-12 +996,Terpenes,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.7540037180239763e-06,1.82860696574267e-06,1.9293391651113086e-06,1.7842178227954693e-10,2.1227204684617982e-09,1.6421942624546467e-06,1.7540037180239763e-06,1.82860696574267e-06,1.9293391651113086e-06,4.2368387772047396e-10,2.1227204684617982e-09,1.6421942624546467e-06,1.7540037180239818e-06,1.8286069657426718e-06,1.929339165111309e-06,4.236838777204737e-10,2.122720468461836e-09,1.6421942624546418e-06 +997,Thallium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.603298888625244e-11,4.862625261303969e-11,5.223967306072915e-11,9.987993981092378e-12,3.828115594305919e-11,6.126680643870546e-11,4.603298888625244e-11,4.862625261303969e-11,5.223967306072915e-11,1.2893800202371131e-11,3.828115594305919e-11,6.126680643870548e-11,4.603298888625244e-11,4.862625261303969e-11,5.223967306072915e-11,1.2893800202371131e-11,3.828115594305919e-11,6.126680643870546e-11 +998,Thallium,"('air',)",emission,kilogram,biosphere3,1.040944389719109e-09,1.0925835383451797e-09,1.1634497458311415e-09,3.13004370665337e-10,3.0129105605013125e-09,3.895367400877183e-09,1.040944389719109e-09,1.0925835383451797e-09,1.1634497458311415e-09,2.7095149390827834e-09,3.0129105605013125e-09,3.895367400877183e-09,1.040944389719109e-09,1.0925835383451793e-09,1.1634497458311417e-09,2.7095149390827834e-09,3.012910560501312e-09,3.895367400877183e-09 +999,Thorium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.5430263146710282e-10,1.6335250888414672e-10,1.7599600923585442e-10,8.978116953519028e-12,7.090494569977346e-11,2.0457323620956931e-10,1.5430263146710282e-10,1.6335250888414672e-10,1.7599600923585442e-10,1.7602634755882198e-11,7.090494569977346e-11,2.0457323620956937e-10,1.5430263146710282e-10,1.633525088841467e-10,1.7599600923585442e-10,1.7602634755882198e-11,7.090494569977346e-11,2.045732362095693e-10 +1000,Thorium-228,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.4177505812661973e-05,1.4800755578091832e-05,1.5652513996544456e-05,1.991532122822924e-05,4.855335352732783e-05,1.7239389692258384e-05,1.4177505812661973e-05,1.4800755578091832e-05,1.5652513996544456e-05,2.141466926239859e-05,4.855335352732783e-05,1.7239389692258384e-05,1.4177505812661973e-05,1.4800755578091832e-05,1.5652513996544456e-05,2.141466926239859e-05,4.855335352732782e-05,1.7239389692258384e-05 +1001,Thorium-228,"('air',)",emission,kilo Becquerel,biosphere3,2.1543808326476268e-07,2.235798154719608e-07,2.3457113903002747e-07,1.326045997297732e-14,3.5524132237988377e-14,1.4539558266795297e-06,2.1543808326476268e-07,2.235798154719608e-07,2.3457113903002747e-07,1.5060169437580572e-14,3.5524132237988377e-14,1.4539558266795297e-06,2.1543808326476268e-07,2.2357981547196073e-07,2.3457113903002747e-07,1.5060169437580572e-14,3.5524132237988377e-14,1.4539558266795297e-06 +1002,Thorium-230,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,3.2893026230190876e-05,3.4353365618070034e-05,3.635057432205576e-05,2.4206281605308782e-05,6.465917360212706e-05,4.549982678869563e-05,3.2893026230190876e-05,3.4353365618070034e-05,3.635057432205576e-05,2.86248727794259e-05,6.465917360212706e-05,4.5499826788695625e-05,3.2893026230190876e-05,3.4353365618070034e-05,3.635057432205576e-05,2.86248727794259e-05,6.465917360212705e-05,4.5499826788695625e-05 +1003,Thorium-232,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.9130348135646402,2.4114517549014174,3.136532781338025,3.12719840740597e-05,7.624515772809323e-05,2.1633145642624028,1.9130348135646402,2.4114517549014174,3.136532781338025,3.363978655697246e-05,7.624515772809323e-05,2.1633145642624028,1.91303481356464,2.411451754901417,3.136532781338025,3.363978655697246e-05,7.624515772809323e-05,2.1633145642624023 +1004,Thorium-232,"('air',)",emission,kilo Becquerel,biosphere3,3.3854555441759147e-07,3.513397048400032e-07,3.686117844619511e-07,2.0837865399126392e-14,5.582363572711458e-14,2.2847876939054565e-06,3.3854555441759147e-07,3.513397048400032e-07,3.686117844619511e-07,2.3665980319576918e-14,5.582363572711458e-14,2.2847876939054565e-06,3.3854555441759147e-07,3.5133970484000316e-07,3.686117844619511e-07,2.3665980319576918e-14,5.582363572711458e-14,2.2847876939054565e-06 +1005,Thorium-234,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,8.27382551634781e-06,8.633332075981525e-06,9.124325283961131e-06,6.361272141582509e-06,1.693111041008183e-05,1.1213008647772805e-05,8.27382551634781e-06,8.633332075981525e-06,9.124325283961131e-06,7.254028252174949e-06,1.693111041008183e-05,1.121300864777281e-05,8.27382551634781e-06,8.633332075981525e-06,9.124325283961131e-06,7.254028252174949e-06,1.6931110410081835e-05,1.1213008647772815e-05 +1006,Tin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.9812083789840644e-07,2.0766775215422064e-07,2.2066377867791148e-07,7.109569616084303e-08,6.764371331388764e-07,8.122219970613737e-07,1.9812083789840644e-07,2.0766775215422064e-07,2.2066377867791148e-07,6.052083696566165e-07,6.764371331388764e-07,8.122219970613737e-07,1.9812083789840644e-07,2.076677521542204e-07,2.2066377867791148e-07,6.052083696566165e-07,6.764371331388765e-07,8.122219970613736e-07 +1007,Tin,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,5.8155961213882396e-09,6.068281274205358e-09,6.413387518510295e-09,4.473215032711275e-09,1.1905020589556653e-08,7.885591004036644e-09,5.8155961213882396e-09,6.068281274205358e-09,6.413387518510295e-09,5.1010129367679835e-09,1.1905020589556653e-08,7.885591004036644e-09,5.8155961213882396e-09,6.068281274205358e-09,6.413387518510295e-09,5.1010129367679835e-09,1.1905020589556651e-08,7.885591004036644e-09 +1008,Tin,"('air',)",emission,kilogram,biosphere3,2.132291768892502e-08,2.3427238476284447e-08,2.6414109116116745e-08,1.4356698020339668e-09,1.5691646541978848e-08,3.1926235702576874e-08,2.132291768892502e-08,2.3427238476284447e-08,2.6414109116116745e-08,9.914190172435251e-09,1.5691646541978848e-08,3.1926235702576894e-08,2.1322917688925018e-08,2.3427238476284454e-08,2.641410911611675e-08,9.914190172435251e-09,1.5691646541978867e-08,3.192623570257691e-08 +1009,Titanium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.3773335931382647e-08,2.5167496632334155e-08,2.711525289490106e-08,1.3905693528638e-09,1.094043362455784e-08,3.1518786308812487e-08,2.3773335931382647e-08,2.5167496632334155e-08,2.711525289490106e-08,2.7197501077754836e-09,1.094043362455784e-08,3.151878630881249e-08,2.3773335931382647e-08,2.5167496632334152e-08,2.711525289490106e-08,2.7197501077754836e-09,1.094043362455784e-08,3.151878630881248e-08 +1010,Titanium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.821661149367174e-06,1.90081154385285e-06,2.008911664014621e-06,1.4011774275961837e-06,3.7290955240467095e-06,2.470060592430428e-06,1.821661149367174e-06,1.90081154385285e-06,2.008911664014621e-06,1.5978271024968528e-06,3.7290955240467095e-06,2.470060592430428e-06,1.821661149367174e-06,1.90081154385285e-06,2.008911664014621e-06,1.5978271024968528e-06,3.7290955240467086e-06,2.470060592430428e-06 +1011,Titanium,"('air',)",emission,kilogram,biosphere3,1.3919187176721897e-09,1.473502068787678e-09,1.5874915328887404e-09,8.09132579278256e-11,5.30039501058692e-10,1.7150508173417537e-09,1.3919187176721897e-09,1.473502068787678e-09,1.5874915328887404e-09,1.4558637090635781e-08,1.4932342407881695e-08,1.921824981744229e-08,1.3919187176721897e-09,1.473502068787678e-09,1.5874915328887404e-09,1.5633418381277752e-10,5.300395010586922e-10,1.7150508173417537e-09 +1012,Toluene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.910526211921427e-06,5.1406890164594185e-06,5.45546892661138e-06,2.1525818414208323e-06,5.3985389475535386e-06,5.137559680243109e-06,4.910526211921427e-06,5.1406890164594185e-06,5.45546892661138e-06,2.341575214271614e-06,5.3985389475535386e-06,5.137559680243109e-06,4.910526211921436e-06,5.140689016459421e-06,5.45546892661138e-06,2.341575214271614e-06,5.398538947553538e-06,5.1375596802431e-06 +1013,Toluene,"('air',)",emission,kilogram,biosphere3,2.328279164890136e-06,2.409160824479632e-06,2.5184145424752705e-06,5.534963759567351e-08,4.933708063701178e-07,2.7859788067041924e-06,2.328279164890136e-06,2.409160824479632e-06,2.5184145424752705e-06,9.652532152214062e-08,4.933708063701178e-07,2.7859788067041924e-06,2.328279164890136e-06,2.409160824479632e-06,2.5184145424752705e-06,9.652532152214062e-08,4.933708063701177e-07,2.785978806704192e-06 +1014,Tungsten,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.469532383571632e-11,2.5768325045480472e-11,2.7233782803842388e-11,1.8995042224309875e-11,5.0553431266548476e-11,3.3485341716778165e-11,2.469532383571632e-11,2.5768325045480472e-11,2.7233782803842388e-11,2.1660920687600657e-11,5.0553431266548476e-11,3.3485341716778165e-11,2.469532383571632e-11,2.5768325045480472e-11,2.7233782803842388e-11,2.1660920687600657e-11,5.055343126654847e-11,3.3485341716778165e-11 +1015,Tungsten,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.128057960584318e-08,1.1770715942702819e-08,1.2440122548176362e-08,8.676747362925826e-09,2.309230725581916e-08,1.5295772808976958e-08,1.128057960584318e-08,1.1770715942702819e-08,1.2440122548176362e-08,9.894494268106625e-09,2.309230725581916e-08,1.5295772808976958e-08,1.128057960584318e-08,1.1770715942702819e-08,1.2440122548176362e-08,9.894494268106625e-09,2.3092307255819158e-08,1.5295772808976958e-08 +1016,Uranium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,7.845340804176876e-11,8.305470718593475e-11,8.948313842383889e-11,4.564806958030489e-12,3.6050968956367914e-11,1.0401292670011799e-10,7.845340804176876e-11,8.305470718593475e-11,8.948313842383889e-11,8.949988052091247e-12,3.6050968956367914e-11,1.04012926700118e-10,7.845340804176876e-11,8.305470718593474e-11,8.948313842383889e-11,8.949988052091247e-12,3.6050968956367914e-11,1.0401292670011797e-10 +1017,Uranium alpha,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0004492947730138883,0.0004688170549257216,0.0004954797373873492,0.00034516991594488113,0.0009188740387785835,0.0006081399765054592,0.0004492947730138883,0.0004688170549257216,0.0004954797373873492,0.0003936778797339266,0.0009188740387785835,0.0006081399765054592,0.0004492947730138883,0.0004688170549257216,0.0004954797373873492,0.0003936778797339266,0.0009188740387785833,0.0006081399765054592 +1018,Uranium-234,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.033559234657881486,0.034984384869383545,0.036908405691113616,7.464675454656598e-05,0.00019890283918291588,0.03142662776656059,0.033559234657881486,0.034984384869383545,0.036908405691113616,8.614448820771765e-05,0.00019890283918291588,0.03142662776656059,0.03355923465788148,0.03498438486938354,0.03690840569111362,8.614448820771765e-05,0.00019890283918291585,0.031426627766560584 +1019,Uranium-235,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,4.664672221258901e-06,4.867350225307197e-06,5.144158909972986e-06,3.587952368650418e-06,9.548981336120111e-06,6.325008919851516e-06,4.664672221258901e-06,4.867350225307197e-06,5.144158909972986e-06,4.091507193594811e-06,9.548981336120111e-06,6.3250089198515166e-06,4.664672221258901e-06,4.867350225307197e-06,5.144158909972986e-06,4.091507193594811e-06,9.54898133612011e-06,6.3250089198515166e-06 +1020,Uranium-238,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.005207555469141362,0.0065336898847531575,0.00846236731394301,0.0001531442773565512,0.0003897927192226964,0.005919045272161441,0.005207555469141362,0.0065336898847531575,0.00846236731394301,0.00017043061954360382,0.0003897927192226964,0.005919045272161441,0.005207555469141362,0.006533689884753157,0.00846236731394301,0.00017043061954360382,0.0003897927192226964,0.005919045272161439 +1021,Uranium-238,"('air',)",emission,kilo Becquerel,biosphere3,1.1252793263668832e-06,1.1678053403136196e-06,1.2252153812027305e-06,6.926222726186749e-14,1.855501640343779e-13,7.594323196806631e-06,1.1252793263668832e-06,1.1678053403136196e-06,1.2252153812027305e-06,7.866249610477793e-14,1.855501640343779e-13,7.594323196806631e-06,1.1252793263668832e-06,1.1678053403136194e-06,1.2252153812027305e-06,7.866249610477793e-14,1.855501640343779e-13,7.594323196806631e-06 +1022,Vanadium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,9.360164494010167e-08,9.776515270606084e-08,1.0345478689680954e-07,7.648528301439384e-08,2.0232528520845352e-07,1.124827395691364e-07,9.360164494010167e-08,9.776515270606084e-08,1.0345478689680954e-07,8.672116930182562e-08,2.0232528520845352e-07,1.124827395691364e-07,9.360164494010167e-08,9.776515270606087e-08,1.0345478689680954e-07,8.672116930182562e-08,2.023252852084535e-07,1.124827395691364e-07 +1023,Vanadium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.730197081208422e-07,1.805373401076507e-07,1.9080459052701314e-07,1.33082549472205e-07,3.541860789175629e-07,2.3460409326209282e-07,1.730197081208422e-07,1.805373401076507e-07,1.9080459052701314e-07,1.5176015516982808e-07,3.541860789175629e-07,2.3460409326209282e-07,1.730197081208422e-07,1.805373401076507e-07,1.9080459052701314e-07,1.5176015516982808e-07,3.5418607891756277e-07,2.3460409326209282e-07 +1024,Vanadium,"('air',)",emission,kilogram,biosphere3,5.421747142046632e-09,5.710891456393101e-09,6.11224879344632e-09,3.4239708778332764e-10,5.802600338921179e-08,8.166114842270414e-08,5.421747142046632e-09,5.710891456393101e-09,6.11224879344632e-09,1.18227282737696e-08,6.837765895326703e-08,9.424157312911136e-08,5.421747142046632e-09,5.7108914563931e-09,6.11224879344632e-09,1.4710727097143756e-09,5.802600338921178e-08,8.166114842270412e-08 +1025,Xenon-131m,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0024691730210485052,0.0025751556833945514,0.0027197706566534736,0.00014643984409926612,0.0012310283870490737,0.002942723806103808,0.0024691730210485052,0.0025751556833945514,0.0027197706566534736,0.00046628402751302145,0.0012310283870490737,0.00294272380610382,0.0024691730210485052,0.0025751556833945514,0.0027197706566534736,0.00046628402751302145,0.0012310283870490854,0.0029427238061038308 +1026,Xenon-133,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.08063123411114545,0.08408767759083105,0.08880369618149749,0.004952825019048801,0.040265375161536894,0.09658476873645352,0.08063123411114545,0.08408767759083105,0.08880369618149749,0.015655872280919383,0.040265375161536894,0.09658476873645397,0.08063123411114545,0.08408767759083105,0.08880369618149749,0.015655872280919383,0.040265375161537324,0.09658476873645437 +1027,Xenon-133m,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0002933541031488644,0.0003060381179733292,0.0003233529893132771,1.3834339400059713e-05,0.00014487838346691152,0.0003393990299865719,0.0002933541031488644,0.0003060381179733292,0.0003233529893132771,4.644102169580129e-05,0.00014487838346691152,0.00033939902998657236,0.0002933541031488644,0.0003060381179733292,0.0003233529893132771,4.644102169580129e-05,0.00014487838346691193,0.0003393990299865727 +1028,Xenon-135,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.032900579152901385,0.03431126841337538,0.03623605827315693,0.0020082280133880874,0.016424881231334478,0.03937378300287293,0.032900579152901385,0.03431126841337538,0.03623605827315693,0.00635623859140701,0.016424881231334478,0.0393737830028731,0.03290057915290139,0.03431126841337538,0.03623605827315693,0.00635623859140701,0.016424881231334648,0.03937378300287327 +1029,Xenon-135m,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.019659193236861952,0.020501586581407754,0.02165093229951294,0.0012207916312485959,0.009822448464314444,0.023586800085436063,0.019659193236861952,0.020501586581407754,0.02165093229951294,0.0038503623584160633,0.009822448464314444,0.023586800085436174,0.019659193236861952,0.020501586581407754,0.02165093229951294,0.0038503623584160633,0.009822448464314551,0.023586800085436274 +1030,Xenon-137,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0004286031737689005,0.0004468680151066452,0.00047178022422883145,3.0493278384729193e-05,0.000215643037613992,0.0005253486044379247,0.0004286031737689005,0.0004468680151066452,0.00047178022422883145,9.369086137458759e-05,0.000215643037613992,0.0005253486044379281,0.00042860317376890053,0.0004468680151066452,0.0004717802242288314,9.369086137458759e-05,0.00021564303761399545,0.0005253486044379315 +1031,Xenon-138,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.003611152682718082,0.003765355859088009,0.00397570537570165,0.00024480703870552955,0.0018122025188298477,0.004391552835302558,0.003611152682718082,0.003765355859088009,0.00397570537570165,0.00075894430171086,0.0018122025188298477,0.004391552835302584,0.003611152682718082,0.003765355859088009,0.00397570537570165,0.00075894430171086,0.0018122025188298733,0.004391552835302608 +1032,Xylene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.4025403198823316e-05,1.4658378139874515e-05,1.5525071673151827e-05,1.617898225131895e-05,4.014558301262191e-05,1.6741200026085526e-05,1.4025403198823316e-05,1.4658378139874515e-05,1.5525071673151827e-05,1.756734636304925e-05,4.014558301262191e-05,1.6741200026085526e-05,1.4025403198823318e-05,1.4658378139874515e-05,1.5525071673151827e-05,1.756734636304925e-05,4.014558301262191e-05,1.674120002608552e-05 +1033,Xylene,"('air',)",emission,kilogram,biosphere3,2.2572831582649003e-06,2.335437975597545e-06,2.44100313135107e-06,4.481681384331886e-08,4.479151068773074e-07,2.888954644881649e-06,2.2572831582649003e-06,2.335437975597545e-06,2.44100313135107e-06,7.299872616093499e-08,4.479151068773074e-07,2.888954644881649e-06,2.2572831582649007e-06,2.335437975597545e-06,2.44100313135107e-06,7.299872616093499e-08,4.479151068773073e-07,2.8889546448816486e-06 +1034,Zinc,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,6.2508960702712946e-06,6.790363482495666e-06,7.5518903128522685e-06,1.4994265779989862e-06,1.1993899788087053e-05,1.59424289557947e-05,6.2508960702712946e-06,6.790363482495666e-06,7.5518903128522685e-06,9.824197490151864e-06,1.1993899788087053e-05,1.59424289557947e-05,6.2508960702712946e-06,6.790363482495661e-06,7.551890312852269e-06,9.824197490151864e-06,1.199389978808705e-05,1.5942428955794568e-05 +1035,Zinc,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.7911730881983494e-07,1.868998789454112e-07,1.9752897019818071e-07,1.3777267539993623e-07,3.666683867306305e-07,2.428720653355289e-07,1.7911730881983494e-07,1.868998789454112e-07,1.9752897019818071e-07,1.5710852183702964e-07,3.666683867306305e-07,2.428720653355289e-07,1.7911730881983494e-07,1.868998789454112e-07,1.9752897019818071e-07,1.5710852183702964e-07,3.666683867306304e-07,2.428720653355289e-07 +1036,Zinc,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,6.85181818938408e-13,7.140275589887261e-13,7.527144791537345e-13,2.2443953633128884e-15,2.32357171935722e-13,6.701844945205058e-13,6.85181818938408e-13,7.140275589887261e-13,7.527144791537345e-13,9.153268469045364e-15,2.32357171935722e-13,6.701844945205058e-13,6.85181818938408e-13,7.140275589887261e-13,7.527144791537345e-13,9.153268469045364e-15,2.32357171935722e-13,6.701844945205054e-13 +1037,Zinc,"('air',)",emission,kilogram,biosphere3,2.23460086562097e-06,2.3492947422453824e-06,2.5074454445953193e-06,7.475830721644489e-08,8.658982908113261e-07,2.6219345937227748e-06,2.23460086562097e-06,2.3492947422453824e-06,2.5074454445953193e-06,9.388378769439406e-07,1.609417216151892e-06,3.5255372880121406e-06,2.2346008656209694e-06,2.3492947422453824e-06,2.507445444595319e-06,1.9531895160337432e-07,8.658982908113264e-07,2.621934593722773e-06 +1038,Zinc-65,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,3.046647411263538e-09,3.1761736702580156e-09,3.352815718324839e-09,2.2853686112625928e-10,1.5374077856048604e-09,3.768117216031869e-09,3.046647411263538e-09,3.1761736702580156e-09,3.352815718324839e-09,6.955934702896552e-10,1.5374077856048604e-09,3.768117216031897e-09,3.0466474112635385e-09,3.1761736702580156e-09,3.3528157183248385e-09,6.955934702896552e-10,1.5374077856048882e-09,3.768117216031924e-09 +1039,Zirconium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.9013345023941555e-09,2.0128452929638626e-09,2.1686354727155925e-09,1.1062419809755251e-10,8.737566728750177e-10,2.520775265869572e-09,1.9013345023941555e-09,2.0128452929638626e-09,2.1686354727155925e-09,2.1694903230570488e-10,8.737566728750177e-10,2.5207752658695723e-09,1.9013345023941555e-09,2.0128452929638622e-09,2.1686354727155925e-09,2.1694903230570488e-10,8.737566728750177e-10,2.5207752658695715e-09 +1040,Zirconium-95,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,2.977982494147487e-09,3.1045895082663742e-09,3.277250422334216e-09,2.2338612825113245e-10,1.5027578988369202e-09,3.683191910381442e-09,2.977982494147487e-09,3.1045895082663742e-09,3.277250422334216e-09,6.799162786846618e-10,1.5027578988369202e-09,3.6831919103814696e-09,2.977982494147487e-09,3.1045895082663742e-09,3.2772504223342154e-09,6.799162786846618e-10,1.502757898836947e-09,3.6831919103814957e-09 +1041,Aluminium,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.0785095553801167e-05,1.1193956474944258e-05,1.1748664848738087e-05,2.6501254454419603e-06,9.144955962781009e-06,1.1142141978650985e-05,1.0785095553801167e-05,1.1193956474944258e-05,1.1748664848738087e-05,2.866550991317638e-06,9.144955962781009e-06,1.1142141978650985e-05,1.078509555380117e-05,1.1193956474944258e-05,1.1748664848738087e-05,2.866550991317638e-06,9.144955962781006e-06,1.1142141978650978e-05 +1042,Aluminium,"('soil', 'industrial')",emission,kilogram,biosphere3,9.744552731931862e-05,0.00010813437403792492,0.00012355407213685576,1.8043774743669866e-06,2.804058707757002e-05,0.00010627359868353767,9.744552731931862e-05,0.00010813437403792492,0.00012355407213685576,4.852142775089509e-06,2.804058707757002e-05,0.00010627359868353767,9.74455273193186e-05,0.00010813437403792488,0.00012355407213685576,4.852142775089509e-06,2.8040587077570015e-05,0.00010627359868353762 +1043,Antimony,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.1471447729674061e-11,1.1944698852630528e-11,1.2578671692878543e-11,1.9547488999258394e-13,5.040478888884531e-12,1.2298515395247708e-11,1.1471447729674061e-11,1.1944698852630528e-11,1.2578671692878543e-11,1.2195312071015298e-12,5.040478888884531e-12,1.2298515395247708e-11,1.1471447729674058e-11,1.1944698852630529e-11,1.2578671692878543e-11,1.2195312071015298e-12,5.040478888884529e-12,1.2298515395247702e-11 +1044,Arsenic,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.549391186822531e-09,2.6501944476859698e-09,2.786441605910003e-09,8.526510150503644e-10,2.611054051116417e-09,2.739705145628172e-09,2.549391186822531e-09,2.6501944476859698e-09,2.786441605910003e-09,9.189010391134423e-10,2.611054051116417e-09,2.7397051456281717e-09,2.5493911868225322e-09,2.65019444768597e-09,2.786441605910003e-09,9.189010391134423e-10,2.611054051116417e-09,2.73970514562817e-09 +1045,Arsenic,"('soil', 'industrial')",emission,kilogram,biosphere3,3.897821171946416e-08,4.3253750492924085e-08,4.942162985654066e-08,7.217510093873248e-10,1.1216235081796999e-08,4.2509440350584596e-08,3.897821171946416e-08,4.3253750492924085e-08,4.942162985654066e-08,1.9408571676883448e-09,1.1216235081796999e-08,4.2509440350584596e-08,3.897821171946415e-08,4.3253750492924065e-08,4.942162985654066e-08,1.9408571676883448e-09,1.1216235081796997e-08,4.2509440350584576e-08 +1046,Barium,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.6471781026514612e-09,1.9243565271687413e-09,2.324765981877473e-09,4.160148460787103e-11,2.998645522931524e-10,1.9168506287157907e-09,1.6471781026514612e-09,1.9243565271687413e-09,2.324765981877473e-09,1.15253571990253e-10,2.998645522931524e-10,1.9168506287157907e-09,1.6471781026514614e-09,1.9243565271687413e-09,2.324765981877473e-09,1.15253571990253e-10,2.9986455229315227e-10,1.9168506287157895e-09 +1047,Barium,"('soil', 'industrial')",emission,kilogram,biosphere3,4.872276366107202e-05,5.406718702047203e-05,6.177703607007679e-05,9.021887368179904e-07,1.4020293538284018e-05,5.3136799342322e-05,4.872276366107202e-05,5.406718702047203e-05,6.177703607007679e-05,2.4260713871026833e-06,1.4020293538284018e-05,5.3136799342322e-05,4.8722763661072006e-05,5.406718702047201e-05,6.177703607007679e-05,2.4260713871026833e-06,1.4020293538284016e-05,5.3136799342321975e-05 +1048,Boron,"('soil', 'agricultural')",emission,kilogram,biosphere3,4.1913814935368087e-10,4.948938670972458e-10,6.045080586612761e-10,1.0923762955820458e-11,6.571614164228757e-11,4.915276149530685e-10,4.1913814935368087e-10,4.948938670972458e-10,6.045080586612761e-10,2.783220194099297e-11,6.571614164228757e-11,4.915276149530685e-10,4.191381493536809e-10,4.948938670972458e-10,6.04508058661276e-10,2.783220194099297e-11,6.571614164228753e-11,4.915276149530682e-10 +1049,Boron,"('soil', 'industrial')",emission,kilogram,biosphere3,9.744552703593051e-07,1.0813437372344207e-06,1.2355407177751515e-06,1.8043774691923755e-08,2.804058699634544e-07,1.0627359837467582e-06,9.744552703593051e-07,1.0813437372344207e-06,1.2355407177751515e-06,4.8521427612318935e-08,2.804058699634544e-07,1.0627359837467582e-06,9.74455270359305e-07,1.0813437372344203e-06,1.2355407177751515e-06,4.8521427612318935e-08,2.8040586996345435e-07,1.0627359837467576e-06 +1050,Boron,"('soil',)",emission,kilogram,biosphere3,1.6897856817563793e-07,1.777700620968295e-07,1.8991750349557046e-07,1.6660849609574636e-07,4.152517024046267e-07,5.286853453597195e-07,1.6897856817563793e-07,1.777700620968295e-07,1.8991750349557046e-07,1.774583983925918e-07,4.152517024046267e-07,5.286853453597197e-07,1.6897856817563793e-07,1.777700620968295e-07,1.8991750349557046e-07,1.774583983925918e-07,4.152517024046268e-07,5.286853453597197e-07 +1051,Bromine,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1052,Cadmium,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.321597937276135e-08,1.3777678754128269e-08,1.4536858031844884e-08,1.8123923013328987e-09,5.0752481557044506e-09,1.3155186479450057e-08,1.321597937276135e-08,1.3777678754128269e-08,1.4536858031844884e-08,1.9597325513376786e-09,5.0752481557044506e-09,1.3155186479450053e-08,1.3215979372761348e-08,1.3777678754128274e-08,1.4536858031844888e-08,1.9597325513376786e-09,5.075248155704451e-09,1.3155186479450045e-08 +1053,Cadmium,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1054,Cadmium,"('soil',)",emission,kilogram,biosphere3,4.018081353910157e-10,4.186844559143521e-10,4.4168365374791595e-10,1.0765575878157806e-11,1.871547318909608e-10,4.4865933972889226e-10,4.018081353910157e-10,4.186844559143521e-10,4.4168365374791595e-10,5.167917135088578e-11,1.871547318909608e-10,4.4865933972889226e-10,4.018081353910156e-10,4.186844559143521e-10,4.4168365374791585e-10,5.167917135088578e-11,1.8715473189096075e-10,4.486593397288921e-10 +1055,Calcium,"('soil', 'agricultural')",emission,kilogram,biosphere3,6.435301459839838e-05,6.69539421131753e-05,7.048690369861712e-05,3.6042038256351474e-05,9.553354659934786e-05,7.41236423047085e-05,6.435301459839838e-05,6.69539421131753e-05,7.048690369861712e-05,3.848779472841047e-05,9.553354659934786e-05,7.41236423047085e-05,6.435301459839842e-05,6.695394211317532e-05,7.048690369861712e-05,3.848779472841047e-05,9.553354659934786e-05,7.412364230470847e-05 +1056,Calcium,"('soil', 'industrial')",emission,kilogram,biosphere3,0.000389782109466881,0.000432537496353799,0.0004942162887671013,7.217509950910596e-06,0.00011216234859485363,0.0004250943950783515,0.000389782109466881,0.000432537496353799,0.0004942162887671013,1.9408571292566955e-05,0.00011216234859485363,0.0004250943950783515,0.0003897821094668809,0.0004325374963537988,0.0004942162887671013,1.9408571292566955e-05,0.00011216234859485361,0.00042509439507835127 +1057,Carbon,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0002923365821481464,0.00032440312231669536,0.00037066221663141356,5.413132477140405e-06,8.412176151828092e-05,0.0003188207963969908,0.0002923365821481464,0.00032440312231669536,0.00037066221663141356,1.455642851785373e-05,8.412176151828092e-05,0.0003188207963969908,0.00029233658214814634,0.00032440312231669526,0.00037066221663141356,1.455642851785373e-05,8.41217615182809e-05,0.00031882079639699066 +1058,Chloride,"('soil', 'industrial')",emission,kilogram,biosphere3,0.000341059354797626,0.00037847031931511233,0.0004324392641071447,6.315321354194889e-06,9.814205752614042e-05,0.00037195760546990925,0.000341059354797626,0.00037847031931511233,0.0004324392641071447,1.6982500260134225e-05,9.814205752614042e-05,0.00037195760546990925,0.00034105935479762596,0.0003784703193151122,0.0004324392641071447,1.6982500260134225e-05,9.81420575261404e-05,0.0003719576054699091 +1059,Chloride,"('soil',)",emission,kilogram,biosphere3,0.000434376217541564,0.00045295168164427883,0.00047829203507565425,1.143803020886669e-05,0.00019869841815904393,0.00048477167246108974,0.000434376217541564,0.00045295168164427883,0.00047829203507565425,5.5562970382652895e-05,0.00019869841815904393,0.00048477167246108974,0.00043437621754156385,0.00045295168164427894,0.00047829203507565425,5.5562970382652895e-05,0.00019869841815904385,0.0004847716724610896 +1060,Chromium,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.3937407234207032e-07,1.451208630133259e-07,1.5289791213002966e-07,2.48251263287573e-08,7.136369498499146e-08,1.4030122057301388e-07,1.3937407234207032e-07,1.451208630133259e-07,1.5289791213002966e-07,2.6654796344406532e-08,7.136369498499146e-08,1.4030122057301388e-07,1.3937407234207035e-07,1.4512086301332592e-07,1.5289791213002966e-07,2.6654796344406532e-08,7.136369498499146e-08,1.4030122057301378e-07 +1061,Chromium,"('soil', 'industrial')",emission,kilogram,biosphere3,4.872276351938928e-07,5.406718686324285e-07,6.177703589042007e-07,9.021887342304372e-09,1.402029349767402e-07,5.313679918790197e-07,4.872276351938928e-07,5.406718686324285e-07,6.177703589042007e-07,2.4260713801738283e-08,1.402029349767402e-07,5.313679918790197e-07,4.872276351938927e-07,5.406718686324282e-07,6.177703589042007e-07,2.4260713801738283e-08,1.4020293497674016e-07,5.313679918790194e-07 +1062,Chromium,"('soil',)",emission,kilogram,biosphere3,1.91628104715742e-09,1.996766640549033e-09,2.106453111974721e-09,5.134293143474123e-11,8.925679091468275e-10,2.1397221743456307e-09,1.91628104715742e-09,1.996766640549033e-09,2.106453111974721e-09,2.464658854859839e-10,8.925679091468275e-10,2.1397221743456307e-09,1.9162810471574197e-09,1.996766640549033e-09,2.1064531119747207e-09,2.464658854859839e-10,8.925679091468272e-10,2.13972217434563e-09 +1063,Chromium VI,"('soil',)",emission,kilogram,biosphere3,9.541407308377842e-07,1.0037996574008636e-06,1.0724160921511825e-06,9.402917103820621e-07,2.3437056462037322e-06,2.984288142028299e-06,9.541407308377842e-07,1.0037996574008636e-06,1.0724160921511825e-06,1.001598078306836e-06,2.3437056462037322e-06,2.984288142028299e-06,9.54140730837784e-07,1.0037996574008636e-06,1.0724160921511825e-06,1.001598078306836e-06,2.343705646203733e-06,2.9842881420282997e-06 +1064,Cobalt,"('soil', 'agricultural')",emission,kilogram,biosphere3,6.691853927194298e-09,6.948271160616416e-09,7.29602581881324e-09,2.288438821250906e-09,6.9827937521294185e-09,7.15287989076032e-09,6.691853927194298e-09,6.948271160616416e-09,7.29602581881324e-09,2.4589758802246593e-09,6.9827937521294185e-09,7.15287989076032e-09,6.6918539271943015e-09,6.948271160616416e-09,7.29602581881324e-09,2.4589758802246593e-09,6.982793752129417e-09,7.152879890760314e-09 +1065,Cobalt,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1066,Copper,"('soil', 'agricultural')",emission,kilogram,biosphere3,-3.2586119483952e-07,-3.403811503525487e-07,-3.599175045994608e-07,2.1071721494527092e-08,1.1032710377302693e-07,-2.9419917418145584e-07,-3.2586119483952e-07,-3.403811503525487e-07,-3.599175045994608e-07,2.4227606279989127e-08,1.1032710377302693e-07,-2.941991741814558e-07,-3.2586119483952143e-07,-3.4038115035254943e-07,-3.5991750459946084e-07,2.4227606279989127e-08,1.103271037730269e-07,-2.9419917418145473e-07 +1067,Copper,"('soil', 'industrial')",emission,kilogram,biosphere3,1.7920108637856304e-08,7.817223527231078e-08,1.5327928300875943e-07,5.449567748834913e-10,1.3242585811260817e-08,7.596542524541874e-08,1.7920108637856304e-08,7.817223527231078e-08,1.5327928300875943e-07,2.443676388047547e-09,1.3242585811260817e-08,7.596542524541876e-08,1.79201086378563e-08,7.817223527231078e-08,1.5327928300875943e-07,2.443676388047547e-09,1.3242585811260812e-08,7.596542524541872e-08 +1068,Copper,"('soil',)",emission,kilogram,biosphere3,6.226559410112503e-07,6.547869972050892e-07,6.991624028263458e-07,5.879823991609695e-07,1.476249632076661e-06,1.8937064579649139e-06,6.226559410112503e-07,6.547869972050892e-07,6.991624028263458e-07,6.289871988704852e-07,1.476249632076661e-06,1.8937064579649143e-06,6.226559410112502e-07,6.547869972050891e-07,6.991624028263458e-07,6.289871988704852e-07,1.4762496320766611e-06,1.8937064579649143e-06 +1069,Fluoride,"('soil', 'industrial')",emission,kilogram,biosphere3,4.872276706426652e-06,5.4067190796966724e-06,6.177704038509336e-06,9.0218879981909e-08,1.402029451750856e-06,5.313680305378741e-06,4.872276706426652e-06,5.4067190796966724e-06,6.177704038509336e-06,2.4260715565066856e-07,1.402029451750856e-06,5.313680305378741e-06,4.87227670642665e-06,5.406719079696671e-06,6.177704038509336e-06,2.4260715565066856e-07,1.4020294517508558e-06,5.3136803053787386e-06 +1070,Fluoride,"('soil',)",emission,kilogram,biosphere3,6.45858628130265e-07,6.794629813520082e-07,7.258951747710015e-07,6.367444563550786e-07,1.587026016439755e-06,2.0205937144468747e-06,6.45858628130265e-07,6.794629813520082e-07,7.258951747710015e-07,6.78219245529389e-07,1.587026016439755e-06,2.020593714446875e-06,6.458586281302649e-07,6.794629813520082e-07,7.258951747710015e-07,6.78219245529389e-07,1.5870260164397555e-06,2.0205937144468756e-06 +1071,Glyphosate,"('soil', 'industrial')",emission,kilogram,biosphere3,7.240727198086663e-07,7.488017626459369e-07,7.821996854336481e-07,1.1736900007872442e-08,1.2630708233270162e-07,7.627827269959668e-07,7.240727198086663e-07,7.488017626459369e-07,7.821996854336481e-07,1.3791238903007458e-08,1.2630708233270162e-07,7.627827269959668e-07,7.240727198086663e-07,7.488017626459369e-07,7.821996854336479e-07,1.3791238903007458e-08,1.2630708233270162e-07,7.627827269959665e-07 +1072,"Heat, waste","('soil', 'agricultural')",emission,megajoule,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1073,"Heat, waste","('soil', 'industrial')",emission,megajoule,biosphere3,0.004157797746487691,0.004410031518735516,0.004762306502155444,0.0004372595637293588,0.0020628264800394815,0.004304334738988063,0.004157797746487691,0.004410031518735516,0.004762306502155444,0.0005272745035727837,0.0020628264800394815,0.004304334738988063,0.00415779774648769,0.0044100315187355155,0.004762306502155444,0.0005272745035727837,0.002062826480039481,0.0043043347389880625 +1074,"Heat, waste","('soil',)",emission,megajoule,biosphere3,0.1078780084685714,0.11372751052721564,0.12182670837556192,0.11035150729568032,0.2708773579774852,0.31065730432874195,0.1078780084685714,0.11372751052721564,0.12182670837556192,0.11623796308112919,0.2708773579774852,0.3106573043287427,0.10787800846857142,0.11372751052721564,0.1218267083755619,0.11623796308112919,0.2708773579774859,0.31065730432874333 +1075,Iron,"('soil', 'agricultural')",emission,kilogram,biosphere3,7.583521156972196e-05,7.859080077588026e-05,8.23265402613834e-05,3.015904824874315e-06,3.266333362375172e-05,7.24579948464627e-05,7.583521156972196e-05,7.859080077588026e-05,8.23265402613834e-05,3.647923951671334e-06,3.266333362375172e-05,7.24579948464627e-05,7.583521156972197e-05,7.859080077588023e-05,8.23265402613834e-05,3.647923951671334e-06,3.26633336237517e-05,7.245799484646264e-05 +1076,Iron,"('soil', 'industrial')",emission,kilogram,biosphere3,0.00019489105463594937,0.0002162687480728024,0.00024710814427014727,3.6087549470199466e-06,5.608117415040001e-05,0.0002125471973601261,0.00019489105463594937,0.0002162687480728024,0.00024710814427014727,9.7042855478071e-06,5.608117415040001e-05,0.0002125471973601261,0.00019489105463594932,0.0002162687480728023,0.00024710814427014727,9.7042855478071e-06,5.60811741504e-05,0.000212547197360126 +1077,Iron,"('soil',)",emission,kilogram,biosphere3,0.0013501627295810078,0.0013962889670677513,0.0014585904055689546,2.2290266671903074e-05,0.00023826422437829377,0.0013501818133261913,0.0013501627295810078,0.0013962889670677513,0.0014585904055689546,2.61038591871317e-05,0.00023826422437829377,0.0013501818133261913,0.0013501627295810078,0.0013962889670677515,0.0014585904055689543,2.61038591871317e-05,0.0002382642243782937,0.0013501818133261907 +1078,Lead,"('soil', 'agricultural')",emission,kilogram,biosphere3,7.618626043430431e-08,7.920479619058775e-08,8.329670696564267e-08,8.358134760057398e-09,3.568591726621938e-08,7.50598809177769e-08,7.618626043430431e-08,7.920479619058775e-08,8.329670696564267e-08,9.29986636574495e-09,3.568591726621938e-08,7.50598809177769e-08,7.618626043430433e-08,7.920479619058776e-08,8.329670696564267e-08,9.29986636574495e-09,3.5685917266219374e-08,7.505988091777682e-08 +1079,Lead,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1080,Lead,"('soil',)",emission,kilogram,biosphere3,1.6535688912543914e-08,1.723020324972495e-08,1.8176693464061422e-08,4.430415562020061e-10,7.702014203366572e-09,1.8463776064894067e-08,1.6535688912543914e-08,1.723020324972495e-08,1.8176693464061422e-08,2.126767750131059e-09,7.702014203366572e-09,1.8463776064894067e-08,1.653568891254391e-08,1.723020324972495e-08,1.8176693464061416e-08,2.126767750131059e-09,7.702014203366568e-09,1.8463776064894063e-08 +1081,Magnesium,"('soil', 'agricultural')",emission,kilogram,biosphere3,7.244053781893947e-06,7.535562741771421e-06,7.931379041146735e-06,4.073484788291408e-06,1.078943929779637e-05,8.347977726559794e-06,7.244053781893947e-06,7.535562741771421e-06,7.931379041146735e-06,4.349447875043562e-06,1.078943929779637e-05,8.347977726559794e-06,7.244053781893952e-06,7.535562741771422e-06,7.931379041146735e-06,4.349447875043562e-06,1.0789439297796368e-05,8.347977726559787e-06 +1082,Magnesium,"('soil', 'industrial')",emission,kilogram,biosphere3,7.795642730484554e-05,8.650750527724034e-05,9.884326461834394e-05,1.4435020805359312e-06,2.2432471230438078e-05,8.501888488979659e-05,7.795642730484554e-05,8.650750527724034e-05,9.884326461834394e-05,3.881714491285225e-06,2.2432471230438078e-05,8.501888488979659e-05,7.795642730484552e-05,8.650750527724031e-05,9.884326461834394e-05,3.881714491285225e-06,2.2432471230438074e-05,8.501888488979655e-05 +1083,Manganese,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.74735030423096e-06,2.86534268489067e-06,3.0256973624032763e-06,2.534950818727604e-06,6.097739089882826e-06,3.5393677773262477e-06,2.74735030423096e-06,2.86534268489067e-06,3.0256973624032763e-06,2.6960323220047894e-06,6.097739089882826e-06,3.5393677773262477e-06,2.7473503042309633e-06,2.865342684890672e-06,3.0256973624032763e-06,2.6960323220047894e-06,6.097739089882826e-06,3.539367777326245e-06 +1084,Manganese,"('soil', 'industrial')",emission,kilogram,biosphere3,3.897821083327624e-06,4.325374950952658e-06,4.942162873290872e-06,7.217509930005752e-08,1.1216234826892477e-06,4.250943938417494e-06,3.897821083327624e-06,4.325374950952658e-06,4.942162873290872e-06,1.940857123642674e-07,1.1216234826892477e-06,4.250943938417494e-06,3.8978210833276236e-06,4.325374950952656e-06,4.942162873290872e-06,1.940857123642674e-07,1.1216234826892475e-06,4.250943938417492e-06 +1085,Mercury,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.9661924759337907e-09,2.0481596746332095e-09,2.1593931655946757e-09,1.646220517626702e-11,3.1628472973076263e-10,1.8682035098049383e-09,1.9661924759337907e-09,2.0481596746332095e-09,2.1593931655946757e-09,3.1800627869350354e-11,3.162847297307626e-10,1.868203509804938e-09,1.9661924759337907e-09,2.04815967463321e-09,2.1593931655946757e-09,3.1800627869350354e-11,3.162847297307625e-10,1.868203509804937e-09 +1086,Mercury,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1087,Molybdenum,"('soil', 'agricultural')",emission,kilogram,biosphere3,3.055931126347405e-09,3.1686314502366283e-09,3.3213756632791942e-09,4.73208984954256e-10,2.030465672098846e-09,3.0506722728499587e-09,3.055931126347405e-09,3.1686314502366283e-09,3.3213756632791942e-09,5.184789324405467e-10,2.030465672098846e-09,3.0506722728499587e-09,3.0559311263474054e-09,3.1686314502366288e-09,3.3213756632791942e-09,5.184789324405467e-10,2.0304656720988453e-09,3.0506722728499567e-09 +1088,Nickel,"('soil', 'agricultural')",emission,kilogram,biosphere3,3.039629393093785e-08,3.165856283254923e-08,3.337167578864135e-08,7.082811487134993e-09,2.5543539115620962e-08,3.1932546288320856e-08,3.039629393093785e-08,3.165856283254923e-08,3.337167578864135e-08,7.878429953275395e-09,2.5543539115620962e-08,3.193254628832086e-08,3.0396293930937894e-08,3.1658562832549245e-08,3.337167578864135e-08,7.878429953275395e-09,2.554353911562096e-08,3.1932546288320817e-08 +1089,Nickel,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1090,Nickel,"('soil',)",emission,kilogram,biosphere3,5.192604773371764e-09,5.4106990280935315e-09,5.707919788096769e-09,1.39125379887168e-10,2.4186177022817506e-09,5.798069501504475e-09,5.192604773371764e-09,5.4106990280935315e-09,5.707919788096769e-09,6.678557861271081e-10,2.4186177022817506e-09,5.798069501504475e-09,5.192604773371763e-09,5.4106990280935315e-09,5.707919788096767e-09,6.678557861271081e-10,2.4186177022817498e-09,5.7980695015044735e-09 +1091,Nitrogen,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1092,"Oils, non-fossil","('soil', 'forestry')",emission,kilogram,biosphere3,1.7128906019674915e-06,1.7891654210602463e-06,1.892598534202779e-06,4.274839437962735e-07,1.7578248167538248e-06,3.958872684274719e-06,1.7128906019674915e-06,1.7891654210602463e-06,1.892598534202779e-06,7.778603561434716e-07,1.7578248167538248e-06,3.958872684274719e-06,1.7128906019674915e-06,1.7891654210602458e-06,1.8925985342027791e-06,7.778603561434716e-07,1.7578248167538248e-06,3.958872684274718e-06 +1093,"Oils, non-fossil","('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1094,"Oils, non-fossil","('soil',)",emission,kilogram,biosphere3,7.788954028189441e-06,8.054967886438975e-06,8.414234128841898e-06,1.2625551631265702e-07,1.3587033914041132e-06,8.20536312572502e-06,7.788954028189441e-06,8.054967886438975e-06,8.414234128841898e-06,1.483543359825296e-07,1.3587033914041132e-06,8.20536312572502e-06,7.788954028189441e-06,8.054967886438975e-06,8.414234128841897e-06,1.483543359825296e-07,1.358703391404113e-06,8.205363125725017e-06 +1095,"Oils, unspecified","('soil', 'forestry')",emission,kilogram,biosphere3,0.014537108396660146,0.016158125950133113,0.018500459880817784,0.00024318669772678553,0.004145161937278037,0.015805824258040307,0.014537108396660146,0.016158125950133113,0.018500459880817784,0.0006651619617917303,0.004145161937278037,0.015805824258040307,0.014537108396660146,0.016158125950133113,0.018500459880817784,0.0006651619617917303,0.004145161937278034,0.015805824258040304 +1096,"Oils, unspecified","('soil', 'industrial')",emission,kilogram,biosphere3,1.3203993745652005e-06,1.4006673500294843e-06,1.51253823749384e-06,5.251829991550329e-07,1.56569021345219e-06,2.611132239767024e-06,1.3203993745652005e-06,1.4006673500294843e-06,1.51253823749384e-06,1.3382632617542697e-06,1.56569021345219e-06,2.611132239767024e-06,1.3203993745652013e-06,1.400667350029485e-06,1.51253823749384e-06,1.3382632617542697e-06,1.56569021345219e-06,2.611132239767027e-06 +1097,"Oils, unspecified","('soil',)",emission,kilogram,biosphere3,5.958705486108746e-05,6.694025103461296e-05,7.756680585660883e-05,1.2827698539776607e-06,1.570307061845228e-05,6.605575625788504e-05,5.958705486108746e-05,6.694025103461296e-05,7.756680585660883e-05,3.169523333813985e-06,1.570307061845228e-05,6.605575625788504e-05,5.958705486108746e-05,6.694025103461296e-05,7.756680585660882e-05,3.169523333813985e-06,1.5703070618452274e-05,6.605575625788501e-05 +1098,Phosphorus,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.2748996262507516e-06,1.3299473053037813e-06,1.4047451946589145e-06,1.2419703721362315e-06,2.9629506762136836e-06,1.6668844807020454e-06,1.2748996262507516e-06,1.3299473053037813e-06,1.4047451946589145e-06,1.3204202328492535e-06,2.9629506762136836e-06,1.6668844807020454e-06,1.2748996262507533e-06,1.3299473053037822e-06,1.4047451946589145e-06,1.3204202328492535e-06,2.9629506762136836e-06,1.666884480702044e-06 +1099,Phosphorus,"('soil', 'industrial')",emission,kilogram,biosphere3,4.872276706426652e-06,5.4067190796966724e-06,6.177704038509336e-06,9.0218879981909e-08,1.402029451750856e-06,5.313680305378741e-06,4.872276706426652e-06,5.4067190796966724e-06,6.177704038509336e-06,2.4260715565066856e-07,1.402029451750856e-06,5.313680305378741e-06,4.87227670642665e-06,5.406719079696671e-06,6.177704038509336e-06,2.4260715565066856e-07,1.4020294517508558e-06,5.3136803053787386e-06 +1100,Potassium,"('soil', 'agricultural')",emission,kilogram,biosphere3,7.090002764464807e-06,7.396135254041658e-06,7.812103092769653e-06,6.906875799658394e-06,1.64776332638746e-05,9.269918454511862e-06,7.090002764464807e-06,7.396135254041658e-06,7.812103092769653e-06,7.343153067423702e-06,1.64776332638746e-05,9.269918454511862e-06,7.090002764464816e-06,7.3961352540416626e-06,7.812103092769653e-06,7.343153067423702e-06,1.64776332638746e-05,9.269918454511854e-06 +1101,Potassium,"('soil', 'industrial')",emission,kilogram,biosphere3,3.410593638715763e-05,3.784703293844472e-05,4.324392756124219e-05,6.315321521813546e-07,9.814206013541968e-06,3.7195761536480786e-05,3.410593638715763e-05,3.784703293844472e-05,4.324392756124219e-05,1.6982500710525772e-06,9.814206013541968e-06,3.7195761536480786e-05,3.4105936387157625e-05,3.784703293844471e-05,4.324392756124219e-05,1.6982500710525772e-06,9.814206013541966e-06,3.7195761536480766e-05 +1102,Selenium,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1103,Silicon,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.6828869072108374e-05,2.7867266026608107e-05,2.9275765807626883e-05,1.0495452889946403e-05,3.067070874450149e-05,2.9178784238432042e-05,2.6828869072108374e-05,2.7867266026608107e-05,2.9275765807626883e-05,1.1255752203103148e-05,3.067070874450149e-05,2.9178784238432042e-05,2.6828869072108384e-05,2.786726602660811e-05,2.9275765807626883e-05,1.1255752203103148e-05,3.067070874450149e-05,2.917878423843202e-05 +1104,Silicon,"('soil', 'industrial')",emission,kilogram,biosphere3,9.744553412568913e-06,1.0813438159089423e-05,1.2355408076686655e-05,1.8043776003686448e-07,2.804058903601314e-06,1.0627360610644839e-05,9.744553412568913e-06,1.0813438159089423e-05,1.2355408076686655e-05,4.852143113896362e-07,2.804058903601314e-06,1.0627360610644839e-05,9.74455341256891e-06,1.081343815908942e-05,1.2355408076686655e-05,4.852143113896362e-07,2.8040589036013134e-06,1.0627360610644834e-05 +1105,Silver,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1106,Sodium,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1107,Sodium,"('soil', 'industrial')",emission,kilogram,biosphere3,0.00019489105463594937,0.0002162687480728024,0.00024710814427014727,3.6087549470199466e-06,5.608117415040001e-05,0.0002125471973601261,0.00019489105463594937,0.0002162687480728024,0.00024710814427014727,9.7042855478071e-06,5.608117415040001e-05,0.0002125471973601261,0.00019489105463594932,0.0002162687480728023,0.00024710814427014727,9.7042855478071e-06,5.60811741504e-05,0.000212547197360126 +1108,Sodium,"('soil',)",emission,kilogram,biosphere3,3.2106212460092894e-06,3.3440319254839533e-06,3.523274204857176e-06,3.335353362329232e-08,1.1834063577661702e-06,3.2638595557949143e-06,3.2106212460092894e-06,3.3440319254839533e-06,3.523274204857176e-06,1.385812902636911e-07,1.1834063577661702e-06,3.2638595557949063e-06,3.210621246009281e-06,3.3440319254839613e-06,3.5232742048571667e-06,1.385812902636911e-07,1.1834063577661678e-06,3.2638595557948957e-06 +1109,Strontium,"('soil', 'agricultural')",emission,kilogram,biosphere3,5.238114728724772e-09,6.221566255346586e-09,7.645729582121941e-09,1.3889227919389887e-10,7.46909819429972e-10,6.169267163152704e-09,5.238114728724772e-09,6.221566255346586e-09,7.645729582121941e-09,3.3732719641875095e-10,7.46909819429972e-10,6.169267163152704e-09,5.238114728724773e-09,6.221566255346586e-09,7.64572958212194e-09,3.3732719641875095e-10,7.469098194299715e-10,6.169267163152701e-09 +1110,Strontium,"('soil', 'industrial')",emission,kilogram,biosphere3,9.744552703593051e-07,1.0813437372344207e-06,1.2355407177751515e-06,1.8043774691923755e-08,2.804058699634544e-07,1.0627359837467582e-06,9.744552703593051e-07,1.0813437372344207e-06,1.2355407177751515e-06,4.8521427612318935e-08,2.804058699634544e-07,1.0627359837467582e-06,9.74455270359305e-07,1.0813437372344203e-06,1.2355407177751515e-06,4.8521427612318935e-08,2.8040586996345435e-07,1.0627359837467576e-06 +1111,Sulfur,"('soil', 'industrial')",emission,kilogram,biosphere3,5.8467318278274146e-05,6.488062651321022e-05,7.413244566635284e-05,1.0826265409753342e-06,1.682435288452788e-05,6.37641613260908e-05,5.8467318278274146e-05,6.488062651321022e-05,7.413244566635284e-05,2.9112858335962266e-06,1.682435288452788e-05,6.37641613260908e-05,5.846731827827414e-05,6.48806265132102e-05,7.413244566635284e-05,2.9112858335962266e-06,1.682435288452788e-05,6.376416132609077e-05 +1112,Sulfuric acid,"('soil', 'agricultural')",emission,kilogram,biosphere3,5.061846048798945e-12,5.269357142795941e-12,5.546708340221211e-12,1.3859032599666248e-14,1.7159819715542088e-12,4.9379326171755565e-12,5.061846048798945e-12,5.269357142795941e-12,5.546708340221211e-12,6.098399895444029e-14,1.7159819715542094e-12,4.937932617175556e-12,5.061846048798945e-12,5.269357142795941e-12,5.546708340221211e-12,6.098399895444029e-14,1.7159819715542088e-12,4.9379326171755524e-12 +1113,Tin,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.0827312699479714e-08,1.1214022107693743e-08,1.1737812478841859e-08,1.8444406330185656e-11,3.836363128157511e-09,1.0185998331797133e-08,1.0827312699479714e-08,1.1214022107693743e-08,1.1737812478841859e-08,8.6161603960609e-11,3.836363128157511e-09,1.0185998331797133e-08,1.0827312699479714e-08,1.121402210769374e-08,1.1737812478841859e-08,8.6161603960609e-11,3.836363128157509e-09,1.0185998331797126e-08 +1114,Titanium,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.7952675596347721e-07,1.872783711155913e-07,1.9781113950066815e-07,1.748897104593532e-07,4.172318698042588e-07,2.347246344673132e-07,1.7952675596347721e-07,1.872783711155913e-07,1.9781113950066815e-07,1.859367394990868e-07,4.172318698042588e-07,2.347246344673132e-07,1.7952675596347745e-07,1.872783711155914e-07,1.9781113950066815e-07,1.859367394990868e-07,4.172318698042588e-07,2.34724634467313e-07 +1115,Vanadium,"('soil', 'agricultural')",emission,kilogram,biosphere3,5.138625838948593e-09,5.360501679504841e-09,5.661982956451324e-09,5.00590078391032e-09,1.1942504793869128e-08,6.71856473601864e-09,5.138625838948593e-09,5.360501679504841e-09,5.661982956451324e-09,5.32210174768337e-09,1.1942504793869128e-08,6.71856473601864e-09,5.1386258389485986e-09,5.360501679504844e-09,5.661982956451324e-09,5.32210174768337e-09,1.1942504793869128e-08,6.718564736018634e-09 +1116,Zinc,"('soil', 'agricultural')",emission,kilogram,biosphere3,3.7864181213163164e-07,3.9634605176037713e-07,4.2093316250385366e-07,2.1294607811692612e-07,6.623957450868187e-07,4.5339177106425955e-07,3.7864181213163164e-07,3.9634605176037713e-07,4.2093316250385366e-07,2.3669639443904414e-07,6.623957450868187e-07,4.5339177106425934e-07,3.7864181213163037e-07,3.9634605176037655e-07,4.2093316250385377e-07,2.3669639443904414e-07,6.623957450868186e-07,4.533917710642601e-07 +1117,Zinc,"('soil', 'industrial')",emission,kilogram,biosphere3,1.4616830110131703e-06,1.6220157229318006e-06,1.853311210487734e-06,2.706566371967998e-08,4.206088340933683e-07,1.5941040899041035e-06,1.4616830110131703e-06,1.6220157229318006e-06,1.853311210487734e-06,7.278214572218551e-08,4.206088340933683e-07,1.5941040899041035e-06,1.46168301101317e-06,1.6220157229318e-06,1.853311210487734e-06,7.278214572218551e-08,4.206088340933682e-07,1.5941040899041029e-06 +1118,Zinc,"('soil',)",emission,kilogram,biosphere3,1.1347813892113068e-06,1.182443273293238e-06,1.2473973069569252e-06,3.0404084151555065e-08,5.285599438387785e-07,1.2670981871470002e-06,1.1347813892113068e-06,1.182443273293238e-06,1.2473973069569252e-06,1.459517528093991e-07,5.285599438387785e-07,1.2670981871470002e-06,1.1347813892113066e-06,1.182443273293238e-06,1.2473973069569248e-06,1.459517528093991e-07,5.285599438387783e-07,1.2670981871469998e-06 +1119,"1,4-Butanediol","('water', 'surface water')",emission,kilogram,biosphere3,1.9577153985730325e-10,2.0404780263131e-10,2.1520460213895623e-10,1.147535870637896e-13,1.1178022044794243e-11,1.8459375971189207e-10,1.9577153985730325e-10,2.0404780263131e-10,2.1520460213895623e-10,4.483977237091987e-13,1.1178022044794243e-11,1.8459375971189207e-10,1.957715398573037e-10,2.0404780263131026e-10,2.1520460213895623e-10,4.483977237091987e-13,1.1178022044794248e-11,1.8459375971189163e-10 +1120,1-Pentanol,"('water', 'surface water')",emission,kilogram,biosphere3,2.3459840865322357e-11,2.577097129166782e-11,2.905572035436494e-11,6.979055291865158e-13,5.803558523787306e-12,2.84765527764782e-11,2.3459840865322357e-11,2.577097129166782e-11,2.905572035436494e-11,4.193153582239479e-12,5.803558523787305e-12,2.847655277647819e-11,2.345984086532235e-11,2.5770971291667826e-11,2.905572035436494e-11,4.193153582239479e-12,5.803558523787307e-12,2.8476552776478178e-11 +1121,1-Pentene,"('water', 'surface water')",emission,kilogram,biosphere3,1.772819494213058e-11,1.9474670709189728e-11,2.1956890621033907e-11,5.273922827474111e-13,4.385624879156076e-12,2.1519210436172825e-11,1.772819494213058e-11,1.9474670709189728e-11,2.1956890621033907e-11,3.1686762583512547e-12,4.385624879156075e-12,2.151921043617282e-11,1.7728194942130578e-11,1.947467070918973e-11,2.1956890621033907e-11,3.1686762583512547e-12,4.385624879156076e-12,2.1519210436172812e-11 +1122,2-Aminopropanol,"('water', 'surface water')",emission,kilogram,biosphere3,2.9262954864996625e-11,3.051476113866362e-11,3.220594577301366e-11,2.0989687419637708e-14,1.1914271885513463e-13,2.748519238654008e-11,2.9262954864996625e-11,3.051476113866362e-11,3.220594577301366e-11,5.721605899822153e-14,1.1914271885513392e-13,2.7485192386540063e-11,2.926295486499661e-11,3.051476113866363e-11,3.220594577301366e-11,5.721605899822153e-14,1.1914271885513604e-13,2.7485192386540053e-11 +1123,2-Methyl-1-propanol,"('water', 'surface water')",emission,kilogram,biosphere3,1.814051748896652e-10,1.9137934339704367e-10,2.0512922041142695e-10,1.2283376751250552e-12,1.020209824673364e-11,1.8109085580519516e-10,1.814051748896652e-10,1.9137934339704367e-10,2.0512922041142695e-10,7.271432393238717e-12,1.0202098246733639e-11,1.8109085580519513e-10,1.8140517488966552e-10,1.9137934339704386e-10,2.05129220411427e-10,7.271432393238717e-12,1.0202098246733647e-11,1.8109085580519482e-10 +1124,2-Methyl-2-butene,"('water', 'surface water')",emission,kilogram,biosphere3,3.932341205520911e-15,4.319734863264581e-15,4.8703274014631114e-15,1.1698389613445995e-16,9.728006143054267e-16,4.7732514621324004e-15,3.932341205520911e-15,4.319734863264581e-15,4.8703274014631114e-15,7.028623114980918e-16,9.728006143054267e-16,4.7732514621324004e-15,3.932341205520911e-15,4.319734863264581e-15,4.870327401463114e-15,7.028623114980918e-16,9.728006143054271e-16,4.7732514621324e-15 +1125,2-Propanol,"('water', 'surface water')",emission,kilogram,biosphere3,8.423246515562973e-11,8.807113230649638e-11,9.328635192633119e-11,2.1094255108778185e-13,1.4485229263180104e-11,9.616062202817475e-11,8.423246515562973e-11,8.807113230649638e-11,9.328635192633119e-11,9.525228198794417e-13,1.4485229263180102e-11,9.616062202817471e-11,8.42324651556297e-11,8.807113230649642e-11,9.328635192633119e-11,9.525228198794417e-13,1.4485229263180104e-11,9.616062202817465e-11 +1126,3-Methyl-1-butanol,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1127,4-Methyl-2-pentanol,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1128,4-Methyl-2-pentanone,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1129,4-Methyl-2-pentanone,"('water',)",emission,kilogram,biosphere3,1.3802955506031552e-12,1.4463867938803793e-12,1.5360503068495834e-12,3.161469491390214e-14,5.613283814349324e-13,1.4690278043507683e-12,1.3802955506031552e-12,1.4463867938803793e-12,1.5360503068495834e-12,1.0404455182933982e-13,5.613283814349324e-13,1.4690278043507685e-12,1.3802955506030804e-12,1.4463867938803902e-12,1.5360503068495836e-12,1.0404455182933982e-13,5.613283814349322e-13,1.4690278043507465e-12 +1130,Acenaphthene,"('water', 'ocean')",emission,kilogram,biosphere3,4.2355342392883187e-10,4.707831911378421e-10,5.390291412846137e-10,7.0854908468517825e-12,1.207739578562252e-10,4.6051857636626434e-10,4.2355342392883187e-10,4.707831911378421e-10,5.390291412846137e-10,1.9380159999481336e-11,1.207739578562252e-10,4.6051857636626444e-10,4.2355342392883187e-10,4.70783191137842e-10,5.390291412846137e-10,1.9380159999481336e-11,1.2077395785622514e-10,4.6051857636626413e-10 +1131,Acenaphthene,"('water', 'surface water')",emission,kilogram,biosphere3,8.466573707386161e-10,9.4034056367604e-10,1.0756668822003989e-09,1.7836408229314784e-11,2.4586617802364506e-10,9.240957683253232e-10,8.466573707386161e-10,9.4034056367604e-10,1.0756668822003989e-09,4.206509549512554e-11,2.4586617802364506e-10,9.240957683253232e-10,8.466573707386162e-10,9.4034056367604e-10,1.0756668822003987e-09,4.206509549512554e-11,2.458661780236449e-10,9.240957683253227e-10 +1132,Acenaphthylene,"('water', 'ocean')",emission,kilogram,biosphere3,2.6489113428601488e-11,2.944287224597943e-11,3.371098722742178e-11,4.4312797789061203e-13,7.553226807150174e-12,2.880092125435038e-11,2.6489113428601488e-11,2.944287224597943e-11,3.371098722742178e-11,1.2120389851134704e-12,7.553226807150174e-12,2.8800921254350382e-11,2.6489113428601488e-11,2.9442872245979423e-11,3.371098722742178e-11,1.2120389851134704e-12,7.553226807150171e-12,2.8800921254350366e-11 +1133,Acenaphthylene,"('water', 'surface water')",emission,kilogram,biosphere3,5.2950116331768816e-11,5.880908141028222e-11,6.727241564991598e-11,1.1154923997358052e-12,1.537651835327025e-11,5.7793128657380865e-11,5.2950116331768816e-11,5.880908141028222e-11,6.727241564991598e-11,2.630759118767226e-12,1.537651835327025e-11,5.7793128657380865e-11,5.295011633176882e-11,5.880908141028222e-11,6.727241564991596e-11,2.630759118767226e-12,1.5376518353270237e-11,5.779312865738083e-11 +1134,Acetaldehyde,"('water', 'surface water')",emission,kilogram,biosphere3,7.160857022915943e-08,7.458650360971564e-08,7.858297468761615e-08,1.574748929875549e-10,1.601388749053995e-08,6.906499826389928e-08,7.160857022915943e-08,7.458650360971564e-08,7.858297468761615e-08,6.35449521894402e-10,1.6013887490539948e-08,6.906499826389923e-08,7.16085702291595e-08,7.458650360971565e-08,7.858297468761625e-08,6.35449521894402e-10,1.6013887490539955e-08,6.906499826389921e-08 +1135,Acetic acid,"('water', 'surface water')",emission,kilogram,biosphere3,7.330405821876548e-07,2.2230654225742296e-06,4.08174259350429e-06,1.4595660450812226e-08,3.712941933707382e-07,2.1497416907914546e-06,7.330405821876548e-07,2.2230654225742296e-06,4.08174259350429e-06,6.56866361238482e-08,3.712941933707382e-07,2.1497416907914555e-06,7.330405821876548e-07,2.22306542257423e-06,4.08174259350429e-06,6.56866361238482e-08,3.7129419337073817e-07,2.1497416907914546e-06 +1136,Acetone,"('water', 'surface water')",emission,kilogram,biosphere3,9.716480378297904e-09,1.0130814940383421e-08,1.0690416182925348e-08,6.3287715221270135e-12,3.3659043347432924e-11,9.119840400343146e-09,9.716480378297904e-09,1.0130814940383421e-08,1.0690416182925348e-08,1.490123860659571e-11,3.365904334743269e-11,9.119840400343143e-09,9.716480378297903e-09,1.0130814940383423e-08,1.069041618292535e-08,1.490123860659571e-11,3.365904334743339e-11,9.119840400343141e-09 +1137,Acetone,"('water',)",emission,kilogram,biosphere3,3.289877398261783e-12,3.4474031450618697e-12,3.661112422421713e-12,7.53523182565966e-14,1.3379029963537116e-12,3.5013670566280888e-12,3.289877398261783e-12,3.4474031450618697e-12,3.661112422421713e-12,2.479858879975394e-13,1.3379029963537116e-12,3.501367056628089e-12,3.2898773982616055e-12,3.447403145061896e-12,3.661112422421713e-12,2.479858879975394e-13,1.337902996353711e-12,3.5013670566280367e-12 +1138,Acetonitrile,"('water', 'surface water')",emission,kilogram,biosphere3,9.849435693178805e-11,1.0267996009189354e-10,1.0833124551076284e-10,5.6596074024720805e-14,2.7881469732963625e-13,9.237512973693094e-11,9.849435693178805e-11,1.0267996009189354e-10,1.0833124551076284e-10,1.052101457493965e-13,2.7881469732963383e-13,9.23751297369309e-11,9.849435693178801e-11,1.0267996009189357e-10,1.0833124551076285e-10,1.052101457493965e-13,2.78814697329641e-13,9.237512973693087e-11 +1139,Acetyl chloride,"('water', 'surface water')",emission,kilogram,biosphere3,1.8429304487922595e-11,2.024485599398205e-11,2.2825251787507003e-11,5.48252888059575e-13,4.559095197498356e-12,2.237027857745086e-11,1.8429304487922595e-11,2.024485599398205e-11,2.2825251787507003e-11,3.2940111458499435e-12,4.559095197498356e-12,2.2370278577450855e-11,1.842930448792259e-11,2.0244855993982052e-11,2.2825251787507003e-11,3.2940111458499435e-12,4.5590951974983565e-12,2.2370278577450845e-11 +1140,"Acidity, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,5.647313186817066e-05,5.892079062341525e-05,6.22205630730809e-05,7.138596907504539e-09,6.908561301443291e-08,5.2900909743678636e-05,5.647313186817066e-05,5.892079062341525e-05,6.22205630730809e-05,3.874427754153117e-08,6.908561301442717e-08,5.2900909743678636e-05,5.647313186816973e-05,5.892079062341515e-05,6.222056307308092e-05,3.874427754153117e-08,6.908561301443004e-08,5.290090974367823e-05 +1141,"Acidity, unspecified","('water',)",emission,kilogram,biosphere3,6.922233910007697e-11,7.253683971626171e-11,7.70334984904547e-11,1.5854887878229309e-12,2.815082864419749e-11,7.367229485227066e-11,6.922233910007697e-11,7.253683971626171e-11,7.70334984904547e-11,5.217873238868042e-12,2.815082864419749e-11,7.367229485227066e-11,6.922233910007324e-11,7.253683971626226e-11,7.703349849045472e-11,5.217873238868042e-12,2.8150828644197473e-11,7.367229485226956e-11 +1142,"Acrylate, ion","('water', 'surface water')",emission,kilogram,biosphere3,9.23980063530477e-09,9.618587568300496e-09,1.0124859341217313e-08,2.529802893049229e-11,3.1323219370200915e-09,9.013611356309912e-09,9.23980063530477e-09,9.618587568300496e-09,1.0124859341217313e-08,1.1131908769028665e-10,3.1323219370200928e-09,9.01361135630991e-09,9.23980063530477e-09,9.618587568300496e-09,1.0124859341217313e-08,1.1131908769028665e-10,3.1323219370200915e-09,9.013611356309902e-09 +1143,"Actinides, radioactive, unspecified","('water', 'ocean')",emission,kilo Becquerel,biosphere3,9.667658216768222e-05,0.0001008923039804008,0.00010665060116504535,7.468352569877794e-05,0.00019916819583700376,0.00011478528942536367,9.667658216768222e-05,0.0001008923039804008,0.00010665060116504535,8.510647113339741e-05,0.00019916819583700376,0.00011478528942536373,9.667658216768222e-05,0.0001008923039804008,0.00010665060116504535,8.510647113339741e-05,0.0001991681958370038,0.00011478528942536377 +1144,Aluminium,"('water', 'ground-')",emission,kilogram,biosphere3,7.320085408128813e-06,7.639377515908307e-06,8.073964786447189e-06,2.7437443399504134e-06,1.724203405198819e-05,2.4138933774707576e-05,7.320085408128813e-06,7.639377515908307e-06,8.073964786447189e-06,1.2793209317858454e-05,1.724203405198819e-05,2.4138933774707576e-05,7.320085408128813e-06,7.639377515908307e-06,8.073964786447189e-06,1.2793209317858454e-05,1.724203405198819e-05,2.4138933774707573e-05 +1145,Aluminium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.007265874936587748,0.007587172896423468,0.008024355445894997,0.00202306812111227,0.01203654066301257,0.03209416400099659,0.007265874936587748,0.007587172896423468,0.008024355445894997,0.0082338492964685,0.01203654066301257,0.03209416400099659,0.007265874936587748,0.007587172896423466,0.008024355445894997,0.0082338492964685,0.012036540663012572,0.0320941640009966 +1146,Aluminium,"('water', 'ocean')",emission,kilogram,biosphere3,1.445299001001126e-05,1.5948644104065487e-05,1.809760115625828e-05,5.476965080993704e-06,1.5353753943941004e-05,1.607346858418208e-05,1.445299001001126e-05,1.5948644104065487e-05,1.809760115625828e-05,6.039539625909151e-06,1.5353753943941004e-05,1.607346858418208e-05,1.445299001001126e-05,1.5948644104065487e-05,1.8097601156258277e-05,6.039539625909151e-06,1.5353753943941004e-05,1.6073468584182076e-05 +1147,Aluminium,"('water', 'surface water')",emission,kilogram,biosphere3,4.2097593784926414e-05,4.343834596407873e-05,4.528509178944781e-05,9.905254968782824e-06,5.2495381238756145e-05,7.65538501866125e-05,4.2097593784926414e-05,4.343834596407873e-05,4.528509178944781e-05,1.2782674875222727e-05,5.2495381238756145e-05,7.65538501866125e-05,4.209759378492641e-05,4.343834596407872e-05,4.528509178944781e-05,1.2782674875222727e-05,5.249538123875613e-05,7.65538501866125e-05 +1148,Aluminium,"('water',)",emission,kilogram,biosphere3,5.380959555924577e-08,5.8294772633658744e-08,6.467102174233707e-08,3.4651287441260854e-09,2.2488398343679413e-08,6.247482108085804e-08,5.380959555924577e-08,5.8294772633658744e-08,6.467102174233707e-08,6.955433372756604e-09,2.2488398343679417e-08,6.247482108085806e-08,5.3809595559245433e-08,5.829477263365879e-08,6.467102174233707e-08,6.955433372756604e-09,2.2488398343679427e-08,6.247482108085808e-08 +1149,"Ammonium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,2.6754128686689247e-06,2.826686624791016e-06,3.0365760230285486e-06,5.042209794421372e-07,2.104626048502443e-06,3.2076488261841444e-06,2.6754128686689247e-06,2.826686624791016e-06,3.0365760230285486e-06,5.606212330746823e-07,2.104626048502443e-06,3.2076488261841444e-06,2.6754128686689243e-06,2.826686624791016e-06,3.0365760230285478e-06,5.606212330746823e-07,2.104626048502443e-06,3.207648826184143e-06 +1150,"Ammonium, ion","('water', 'ocean')",emission,kilogram,biosphere3,8.818741122829342e-06,9.835546802945267e-06,1.1305326013983433e-05,9.447735748663642e-08,2.327372025803416e-06,9.348844029255788e-06,8.818741122829342e-06,9.835546802945267e-06,1.1305326013983433e-05,2.6868558383657667e-07,2.327372025803416e-06,9.348844029255788e-06,8.818741122829345e-06,9.835546802945267e-06,1.1305326013983431e-05,2.6868558383657667e-07,2.327372025803415e-06,9.348844029255784e-06 +1151,"Ammonium, ion","('water', 'surface water')",emission,kilogram,biosphere3,0.00010673876629072496,0.00011260599698268869,0.00012055927297110412,4.328856201452217e-06,4.724528378732773e-05,0.0001073053718208394,0.00010673876629072496,0.00011260599698268869,0.00012055927297110412,7.513544365134878e-06,4.724528378732773e-05,0.0001073053718208394,0.00010673876629072497,0.00011260599698268868,0.00012055927297110412,7.513544365134878e-06,4.724528378732771e-05,0.00010730537182083937 +1152,"Ammonium, ion","('water',)",emission,kilogram,biosphere3,4.057861232148289e-09,4.252159542972547e-09,4.515756779897177e-09,9.294244718078104e-11,1.6502209851214478e-09,4.318720709973662e-09,4.057861232148289e-09,4.252159542972547e-09,4.515756779897177e-09,3.0587533064173216e-10,1.6502209851214478e-09,4.318720709973662e-09,4.0578612321480695e-09,4.252159542972579e-09,4.515756779897177e-09,3.0587533064173216e-10,1.650220985121447e-09,4.318720709973598e-09 +1153,Aniline,"('water', 'surface water')",emission,kilogram,biosphere3,3.3115496272292444e-09,3.456973862681408e-09,3.6539032691219195e-09,2.8197702966386845e-12,2.434190348346562e-11,3.1233554030570896e-09,3.3115496272292444e-09,3.456973862681408e-09,3.6539032691219195e-09,1.5499727786942126e-11,2.4341903483465616e-11,3.1233554030570896e-09,3.3115496272292543e-09,3.456973862681412e-09,3.6539032691219195e-09,1.5499727786942126e-11,2.4341903483465694e-11,3.1233554030570817e-09 +1154,Antimony,"('water', 'ground-')",emission,kilogram,biosphere3,2.6404020050159386e-07,2.7556848088885945e-07,2.9130917182701776e-07,1.862042861540133e-08,1.794439532364633e-07,3.455214439051918e-07,2.6404020050159386e-07,2.7556848088885945e-07,2.9130917182701776e-07,8.366052297442886e-08,1.794439532364633e-07,3.455214439051918e-07,2.6404020050159386e-07,2.7556848088885945e-07,2.9130917182701776e-07,8.366052297442886e-08,1.794439532364633e-07,3.455214439051917e-07 +1155,Antimony,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,8.776044813279847e-06,9.294010030946791e-06,9.980305586631628e-06,3.0597435971844827e-06,2.995690198382557e-05,3.712823755539774e-05,8.776044813279847e-06,9.294010030946791e-06,9.980305586631628e-06,2.5726239025941503e-05,2.995690198382557e-05,3.7128237555397744e-05,8.776044813279844e-06,9.294010030946791e-06,9.980305586631628e-06,2.5726239025941503e-05,2.9956901983825574e-05,3.712823755539774e-05 +1156,Antimony,"('water', 'surface water')",emission,kilogram,biosphere3,3.592852021075266e-06,3.7073532621893537e-06,3.85401554959729e-06,5.763069217590799e-08,4.528296189565432e-07,4.7464431606553975e-06,3.592852021075266e-06,3.7073532621893537e-06,3.85401554959729e-06,8.50170486182699e-08,4.528296189565432e-07,4.7464431606553975e-06,3.592852021075266e-06,3.707353262189354e-06,3.854015549597289e-06,8.50170486182699e-08,4.5282961895654303e-07,4.746443160655397e-06 +1157,Antimony,"('water',)",emission,kilogram,biosphere3,3.705003920772821e-12,3.8824067354370454e-12,4.123082485914412e-12,8.486050203474502e-14,1.5067235949264468e-12,3.943179985067795e-12,3.705003920772821e-12,3.8824067354370454e-12,4.123082485914412e-12,2.7927749909823305e-13,1.5067235949264468e-12,3.9431799850677955e-12,3.705003920772621e-12,3.882406735437075e-12,4.123082485914412e-12,2.7927749909823305e-13,1.506723594926446e-12,3.943179985067736e-12 +1158,Antimony-122,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,4.555084078701532e-08,4.748740554711876e-08,5.0128404894696736e-08,3.416885804135209e-09,2.2985993569824335e-08,5.633763429930966e-08,4.555084078701532e-08,4.748740554711876e-08,5.0128404894696736e-08,1.0399912941610407e-08,2.2985993569824335e-08,5.633763429931008e-08,4.5550840787015327e-08,4.748740554711876e-08,5.012840489469672e-08,1.0399912941610407e-08,2.2985993569824745e-08,5.633763429931048e-08 +1159,Antimony-124,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.633827239042435e-05,1.70506104760286e-05,1.8023602923837806e-05,1.4759146613012753e-05,3.8180245987999715e-05,1.9673887357637947e-05,1.633827239042435e-05,1.70506104760286e-05,1.8023602923837806e-05,1.6602801691759423e-05,3.8180245987999715e-05,1.967388735763797e-05,1.633827239042435e-05,1.70506104760286e-05,1.8023602923837806e-05,1.6602801691759423e-05,3.818024598799974e-05,1.967388735763799e-05 +1160,Antimony-125,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.4993921083707934e-05,1.5650635172451606e-05,1.654792239684534e-05,1.9417326280657448e-05,4.76928022061424e-05,1.840784165485979e-05,1.4993921083707934e-05,1.5650635172451606e-05,1.654792239684534e-05,2.112516585128309e-05,4.76928022061424e-05,1.8407841654859815e-05,1.4993921083707934e-05,1.5650635172451606e-05,1.654792239684534e-05,2.112516585128309e-05,4.769280220614242e-05,1.8407841654859832e-05 +1161,"AOX, Adsorbable Organic Halogen as Cl","('water', 'ocean')",emission,kilogram,biosphere3,2.924629260111135e-08,3.228415374079283e-08,3.666061143237927e-08,2.6857304232100574e-09,1.3003451730837986e-08,3.1379133075177005e-08,2.924629260111135e-08,3.228415374079283e-08,3.666061143237927e-08,3.4083471768264264e-09,1.3003451730837986e-08,3.1379133075177005e-08,2.9246292601111353e-08,3.228415374079283e-08,3.666061143237927e-08,3.4083471768264264e-09,1.3003451730837982e-08,3.1379133075177e-08 +1162,"AOX, Adsorbable Organic Halogen as Cl","('water', 'surface water')",emission,kilogram,biosphere3,2.0215215359878056e-07,2.3494924747336523e-07,2.7983955694477375e-07,1.5501612769437094e-08,9.539002857569695e-08,2.7618490484104175e-07,2.0215215359878056e-07,2.3494924747336523e-07,2.7983955694477375e-07,3.230722233366806e-08,9.539002857569695e-08,2.7618490484104175e-07,2.0215215359878056e-07,2.3494924747336517e-07,2.7983955694477375e-07,3.230722233366806e-08,9.539002857569693e-08,2.7618490484104165e-07 +1163,"AOX, Adsorbable Organic Halogen as Cl","('water',)",emission,kilogram,biosphere3,2.8224463602473326e-09,1.163235118371775e-08,2.2615587607909802e-08,9.268914879599045e-11,2.044515791347786e-09,1.1341673928725907e-08,2.8224463602473326e-09,1.163235118371775e-08,2.2615587607909802e-08,3.9643610195143717e-10,2.044515791347786e-09,1.1341673928725907e-08,2.822446360247278e-09,1.1632351183717941e-08,2.2615587607909802e-08,3.9643610195143717e-10,2.0445157913478233e-09,1.1341673928726348e-08 +1164,"Arsenic, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,2.6574399557689025e-05,2.7753751490359968e-05,2.93542356186025e-05,1.2795685973098673e-05,0.0001004426720782408,0.00011251831758923513,2.6574399557689025e-05,2.7753751490359968e-05,2.93542356186025e-05,8.377573705476629e-05,0.0001004426720782408,0.00011251831758923513,2.6574399557689018e-05,2.7753751490359968e-05,2.93542356186025e-05,8.377573705476629e-05,0.00010044267207824081,0.0001125183175892351 +1165,"Arsenic, ion","('water', 'ocean')",emission,kilogram,biosphere3,6.648452529167165e-08,7.247985702546191e-08,8.104930416163754e-08,1.029174771358669e-08,3.671322400917603e-08,7.816704208541717e-08,6.648452529167165e-08,7.247985702546191e-08,8.104930416163754e-08,1.683732258579174e-08,3.671322400917603e-08,7.816704208541717e-08,6.648452529167169e-08,7.247985702546192e-08,8.104930416163754e-08,1.683732258579174e-08,3.6713224009176025e-08,7.81670420854171e-08 +1166,"Arsenic, ion","('water', 'surface water')",emission,kilogram,biosphere3,4.58351965886705e-06,4.768594950911379e-06,5.021277221843122e-06,6.894335665398128e-07,2.7580614683958036e-06,3.4972531781084035e-05,4.58351965886705e-06,4.768594950911379e-06,5.021277221843122e-06,9.327403245522077e-07,2.7580614683958036e-06,3.497253178108404e-05,4.58351965886705e-06,4.768594950911379e-06,5.021277221843122e-06,9.327403245522077e-07,2.7580614683958027e-06,3.497253178108404e-05 +1167,"Arsenic, ion","('water',)",emission,kilogram,biosphere3,1.6051767518015546e-06,1.673468698280554e-06,1.7656851854829668e-06,4.735217058867272e-10,4.2528540050107566e-08,1.5514601347324757e-06,1.6051767518015546e-06,1.673468698280554e-06,1.7656851854829668e-06,9.168613220784741e-10,4.252854005010757e-08,1.5514601347324757e-06,1.605176751801554e-06,1.6734686982805537e-06,1.7656851854829672e-06,9.168613220784741e-10,4.252854005010756e-08,1.5514601347324752e-06 +1168,Barite,"('water', 'ocean')",emission,kilogram,biosphere3,0.0008311004129745434,0.0009183930361229646,0.0010439466540576327,0.0002826845603056275,0.0008148997706869958,0.0009203785742813636,0.0008311004129745434,0.0009183930361229646,0.0010439466540576327,0.0003139392706806297,0.0008148997706869958,0.0009203785742813636,0.0008311004129745433,0.0009183930361229646,0.0010439466540576327,0.0003139392706806297,0.0008148997706869958,0.0009203785742813631 +1169,Barium,"('water', 'ground-')",emission,kilogram,biosphere3,8.8105779842392e-08,9.193503022186044e-08,9.715958718125e-08,5.053477026860527e-08,1.679714741048404e-07,2.2680381015056068e-07,8.8105779842392e-08,9.193503022186044e-08,9.715958718125e-08,8.691806052946095e-08,1.679714741048404e-07,2.2680381015056068e-07,8.8105779842392e-08,9.193503022186043e-08,9.715958718125e-08,8.691806052946095e-08,1.6797147410484038e-07,2.2680381015056066e-07 +1170,Barium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,9.750066234907221e-05,0.00010175532539798813,0.00010756205733308243,3.443809930102976e-05,0.0001272588126533409,0.00019143021624469698,9.750066234907221e-05,0.00010175532539798813,0.00010756205733308243,6.0763410551360026e-05,0.0001272588126533409,0.00019143021624469698,9.750066234907221e-05,0.00010175532539798811,0.00010756205733308243,6.0763410551360026e-05,0.0001272588126533409,0.00019143021624469698 +1171,Barium,"('water', 'ocean')",emission,kilogram,biosphere3,5.940646619627985e-05,6.602908950702316e-05,7.559853202392878e-05,9.935975729144631e-07,1.6938778007713557e-05,6.458820230631551e-05,5.940646619627985e-05,6.602908950702316e-05,7.559853202392878e-05,2.717325332333809e-06,1.6938778007713557e-05,6.458820230631552e-05,5.940646619627985e-05,6.602908950702315e-05,7.559853202392878e-05,2.717325332333809e-06,1.693877800771355e-05,6.458820230631548e-05 +1172,Barium,"('water', 'surface water')",emission,kilogram,biosphere3,0.00011907677082787458,0.00013221976095111835,0.00015120462175433687,2.544675490397196e-06,3.460482034628314e-05,0.00012993910072217884,0.00011907677082787458,0.00013221976095111835,0.00015120462175433687,5.949694975720576e-06,3.460482034628314e-05,0.00012993910072217884,0.0001190767708278746,0.00013221976095111835,0.00015120462175433684,5.949694975720576e-06,3.460482034628312e-05,0.00012993910072217876 +1173,Barium,"('water',)",emission,kilogram,biosphere3,9.371480241276712e-08,9.820204994536695e-08,1.0428973051201245e-07,2.146471371266895e-09,3.8111242422231995e-08,9.973925537382219e-08,9.371480241276712e-08,9.820204994536695e-08,1.0428973051201245e-07,7.064077401242921e-09,3.8111242422231995e-08,9.97392553738222e-08,9.371480241276207e-08,9.820204994536769e-08,1.0428973051201247e-07,7.064077401242921e-09,3.8111242422231975e-08,9.973925537382071e-08 +1174,Barium-140,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.9953686898879468e-07,2.080200508826583e-07,2.1958903029600344e-07,1.4967773854607668e-08,1.0069085566801906e-07,2.4678875139401556e-07,1.9953686898879468e-07,2.080200508826583e-07,2.1958903029600344e-07,4.555713987256964e-08,1.0069085566801906e-07,2.467887513940174e-07,1.995368689887947e-07,2.080200508826583e-07,2.1958903029600342e-07,4.555713987256964e-08,1.0069085566802087e-07,2.4678875139401916e-07 +1175,Benzal chloride,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1176,Benzene,"('water', 'ocean')",emission,kilogram,biosphere3,5.626858175222036e-06,6.253888621251255e-06,7.1599046855449655e-06,9.413054148603989e-08,1.6043663310277706e-06,6.117223937400899e-06,5.626858175222036e-06,6.253888621251255e-06,7.1599046855449655e-06,2.574112950933303e-07,1.6043663310277706e-06,6.1172239374009e-06,5.626858175222037e-06,6.253888621251254e-06,7.1599046855449655e-06,2.574112950933303e-07,1.6043663310277698e-06,6.117223937400895e-06 +1177,Benzene,"('water', 'surface water')",emission,kilogram,biosphere3,1.3927159280672382e-05,3.193654177496434e-05,5.456929958082188e-05,3.3822095273410634e-07,6.444344437717722e-06,3.121555520049917e-05,1.3927159280672382e-05,3.193654177496434e-05,5.456929958082188e-05,1.2024060595994846e-06,6.444344437717722e-06,3.121555520049918e-05,1.3927159280672386e-05,3.193654177496434e-05,5.456929958082187e-05,1.2024060595994846e-06,6.444344437717719e-06,3.121555520049916e-05 +1178,Benzene,"('water',)",emission,kilogram,biosphere3,5.521182256974201e-10,5.785547232890032e-10,6.144201288608651e-10,1.2645878388437629e-11,2.2453135605757883e-10,5.87611128415893e-10,5.521182256974201e-10,5.785547232890032e-10,6.144201288608651e-10,4.1617822222808695e-11,2.2453135605757883e-10,5.87611128415893e-10,5.521182256973902e-10,5.785547232890075e-10,6.144201288608652e-10,4.1617822222808695e-11,2.2453135605757873e-10,5.876111284158842e-10 +1179,"Benzene, chloro-","('water', 'surface water')",emission,kilogram,biosphere3,2.4806733455028617e-07,2.5836196460578777e-07,2.7214792219106977e-07,6.895912164677716e-10,7.650379672218786e-08,2.4159682157945476e-07,2.4806733455028617e-07,2.5836196460578777e-07,2.7214792219106977e-07,3.060376999199399e-09,7.650379672218786e-08,2.415968215794547e-07,2.4806733455028617e-07,2.5836196460578777e-07,2.7214792219106977e-07,3.060376999199399e-09,7.650379672218783e-08,2.415968215794546e-07 +1180,"Benzene, ethyl-","('water', 'ocean')",emission,kilogram,biosphere3,1.63461422719378e-06,1.8168845011431582e-06,2.080260708345446e-06,2.7344582068862095e-08,4.6609758623377363e-07,1.7772695973020588e-06,1.63461422719378e-06,1.8168845011431582e-06,2.080260708345446e-06,7.479231584021775e-08,4.6609758623377363e-07,1.777269597302059e-06,1.63461422719378e-06,1.8168845011431578e-06,2.080260708345446e-06,7.479231584021775e-08,4.660975862337734e-07,1.777269597302058e-06 +1181,"Benzene, ethyl-","('water', 'surface water')",emission,kilogram,biosphere3,3.2670363462118672e-06,3.6285342236720917e-06,4.150721416337785e-06,6.882682371008739e-08,9.487340754469047e-07,3.5658501401817318e-06,3.2670363462118672e-06,3.6285342236720917e-06,4.150721416337785e-06,1.623185300352378e-07,9.487340754469047e-07,3.5658501401817318e-06,3.267036346211868e-06,3.6285342236720917e-06,4.1507214163377846e-06,1.623185300352378e-07,9.487340754469041e-07,3.5658501401817297e-06 +1182,"Benzene, ethyl-","('water',)",emission,kilogram,biosphere3,3.1030703184874525e-11,3.251651377867116e-11,3.453225732997187e-11,7.107363321122156e-13,1.2619336711638661e-11,3.302551087297937e-11,3.1030703184874525e-11,3.251651377867116e-11,3.453225732997187e-11,2.3390465427592578e-12,1.2619336711638661e-11,3.302551087297937e-11,3.1030703184872845e-11,3.2516513778671405e-11,3.453225732997188e-11,2.3390465427592578e-12,1.2619336711638655e-11,3.3025510872978877e-11 +1183,Benzyl alcohol,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1184,Beryllium,"('water', 'ground-')",emission,kilogram,biosphere3,1.439936910895503e-08,1.5032295677368853e-08,1.5892816949535104e-08,8.387014421726379e-09,4.668751178069161e-08,5.5976908650037525e-08,1.439936910895503e-08,1.5032295677368853e-08,1.5892816949535104e-08,3.504037054937666e-08,4.668751178069161e-08,5.5976908650037525e-08,1.4399369108955025e-08,1.5032295677368853e-08,1.5892816949535104e-08,3.504037054937666e-08,4.668751178069161e-08,5.597690865003751e-08 +1185,Beryllium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,5.658281310258874e-06,5.906108279079635e-06,6.243172914432182e-06,2.4390602924782704e-06,1.5563687083667237e-05,2.0134422517865226e-05,5.658281310258874e-06,5.906108279079635e-06,6.243172914432182e-06,1.1893045099562795e-05,1.5563687083667237e-05,2.0134422517865226e-05,5.658281310258873e-06,5.906108279079635e-06,6.243172914432182e-06,1.1893045099562795e-05,1.5563687083667237e-05,2.0134422517865226e-05 +1186,Beryllium,"('water', 'surface water')",emission,kilogram,biosphere3,2.6244890605040037e-08,2.6276004668592025e-08,2.6318386842948e-08,4.526668720351311e-10,1.2041727068572347e-09,2.6575979288309927e-08,2.6244890605040037e-08,2.6276004668592025e-08,2.6318386842948e-08,5.129606980707403e-10,1.2041727068572347e-09,2.6575979288309927e-08,2.6244890605040037e-08,2.6276004668592025e-08,2.6318386842948e-08,5.129606980707403e-10,1.2041727068572344e-09,2.6575979288309917e-08 +1187,Beryllium,"('water',)",emission,kilogram,biosphere3,3.300255385097079e-12,3.45827805029456e-12,3.672661478247883e-12,7.559002150549101e-14,1.3421234503353045e-12,3.5124121998238582e-12,3.300255385097079e-12,3.45827805029456e-12,3.672661478247883e-12,2.4876817380091973e-13,1.3421234503353045e-12,3.5124121998238586e-12,3.3002553850969007e-12,3.4582780502945863e-12,3.672661478247883e-12,2.4876817380091973e-13,1.342123450335304e-12,3.512412199823806e-12 +1188,"BOD5, Biological Oxygen Demand","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0012084691357630228,0.0012888186285024037,0.0013982198734478095,0.0005860644389325451,0.0022485867183939835,0.0030217278893191093,0.0012084691357630228,0.0012888186285024037,0.0013982198734478095,0.0017831179835857722,0.0022485867183939835,0.0030217278893191098,0.0012084691357630228,0.0012888186285024033,0.0013982198734478095,0.0017831179835857722,0.0022485867183939844,0.0030217278893191093 +1189,"BOD5, Biological Oxygen Demand","('water', 'ocean')",emission,kilogram,biosphere3,0.006596694624412206,0.007350333632038522,0.008438775901674469,0.0008469096300977714,0.0033977729230220033,0.0072617515776339705,0.006596694624412206,0.007350333632038522,0.008438775901674469,0.001044885086321094,0.0033977729230220033,0.0072617515776339705,0.006596694624412206,0.007350333632038521,0.008438775901674467,0.001044885086321094,0.0033977729230220024,0.007261751577633967 +1190,"BOD5, Biological Oxygen Demand","('water', 'surface water')",emission,kilogram,biosphere3,0.03738212186594801,0.04167293091202773,0.047842059567200404,0.0006436544965349495,0.010820586738974002,0.04091683940006197,0.03738212186594801,0.04167293091202773,0.047842059567200404,0.0018717767769943577,0.010820586738974002,0.04091683940006197,0.037382121865948005,0.04167293091202773,0.047842059567200404,0.0018717767769943577,0.010820586738973995,0.04091683940006195 +1191,"BOD5, Biological Oxygen Demand","('water',)",emission,kilogram,biosphere3,0.00240716328653272,0.0025113070182846728,0.002651796182822035,1.1038471512814228e-06,6.69375270981815e-05,0.0023302629030239274,0.00240716328653272,0.0025113070182846728,0.002651796182822035,2.3405002965842593e-06,6.693752709818151e-05,0.002330262903023927,0.0024071632865327194,0.0025113070182846723,0.0026517961828220354,2.3405002965842593e-06,6.693752709818139e-05,0.002330262903023927 +1192,Borate,"('water', 'surface water')",emission,kilogram,biosphere3,2.964555286212417e-09,3.1903172717425935e-09,3.507611281483405e-09,0.00020400006652159002,0.0002040004568693389,0.0002040032847732916,2.964555286212417e-09,3.1903172717425935e-09,3.507611281483405e-09,0.0002040003324803398,0.0002040004568693389,0.0002040032847732916,2.9645552862124168e-09,3.1903172717425943e-09,3.507611281483405e-09,0.0002040003324803398,0.0002040004568693389,0.0002040032847732916 +1193,Boron,"('water', 'ground-')",emission,kilogram,biosphere3,4.477720497703633e-05,4.678311987900964e-05,4.94978725324154e-05,2.0315747927351672e-05,0.00021450153713443014,0.00023632180559165114,4.477720497703633e-05,4.678311987900964e-05,4.94978725324154e-05,0.00019222012311004028,0.00021450153713443014,0.00023632180559165114,4.477720497703631e-05,4.678311987900964e-05,4.94978725324154e-05,0.00019222012311004028,0.00021450153713443017,0.00023632180559165112 +1194,Boron,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0005062344656037637,0.0005289267444835467,0.0005596599498240076,0.00021693038203736208,0.002257923512634766,0.002539280806554548,0.0005062344656037637,0.0005289267444835467,0.0005596599498240076,0.002008422083396515,0.002257923512634766,0.002539280806554548,0.0005062344656037635,0.0005289267444835467,0.0005596599498240076,0.002008422083396515,0.0022579235126347665,0.002539280806554547 +1195,Boron,"('water', 'ocean')",emission,kilogram,biosphere3,6.545062630587435e-07,7.20741275356173e-07,8.160551443263613e-07,9.544213288356312e-09,1.825421237723687e-07,6.999296246867837e-07,6.545062630587435e-07,7.20741275356173e-07,8.160551443263613e-07,2.5712896288724915e-08,1.825421237723687e-07,6.999296246867837e-07,6.545062630587434e-07,7.207412753561729e-07,8.160551443263612e-07,2.5712896288724915e-08,1.8254212377236865e-07,6.999296246867834e-07 +1196,Boron,"('water', 'surface water')",emission,kilogram,biosphere3,1.801004267975174e-06,1.928747460153824e-06,2.1089678347941646e-06,2.254407183410782e-06,0.00046960868425191505,0.0005665130868398408,1.801004267975174e-06,1.928747460153824e-06,2.1089678347941646e-06,2.3859496150224667e-06,0.00046960868425191505,0.0005665130868398408,1.801004267975174e-06,1.928747460153824e-06,2.1089678347941646e-06,2.3859496150224667e-06,0.00046960868425191516,0.0005665130868398408 +1197,Boron,"('water',)",emission,kilogram,biosphere3,1.0336649390896255e-09,1.08315883253787e-09,1.1503053429773583e-09,2.3675365632358475e-11,4.2036320969430606e-10,1.1001140557600704e-09,1.0336649390896255e-09,1.08315883253787e-09,1.1503053429773583e-09,7.791607083146902e-11,4.2036320969430606e-10,1.1001140557600704e-09,1.0336649390895697e-09,1.0831588325378782e-09,1.1503053429773585e-09,7.791607083146902e-11,4.2036320969430585e-10,1.100114055760054e-09 +1198,Bromate,"('water', 'surface water')",emission,kilogram,biosphere3,0.00012830026707138457,0.0001315518102501583,0.0001359133025669282,1.319213997067466e-07,4.47234712557376e-05,0.00011881991974601884,0.00012830026707138457,0.0001315518102501583,0.0001359133025669282,3.0398749165449433e-07,4.47234712557376e-05,0.00011881991974601884,0.00012830026707138457,0.00013155181025015824,0.0001359133025669282,3.0398749165449433e-07,4.4723471255737557e-05,0.00011881991974601878 +1199,Bromide,"('water', 'surface water')",emission,kilogram,biosphere3,9.432522994699593e-07,9.884925108047326e-07,1.0502178781109988e-06,2.851063912647866e-09,2.3819521978893028e-08,9.086745338363609e-07,9.432522994699593e-07,9.884925108047326e-07,1.0502178781109988e-06,1.6638362830767926e-08,2.3819521978893025e-08,9.086745338363607e-07,9.432522994699616e-07,9.884925108047337e-07,1.0502178781109988e-06,1.6638362830767926e-08,2.3819521978893058e-08,9.086745338363588e-07 +1200,Bromine,"('water', 'ground-')",emission,kilogram,biosphere3,5.924265173669815e-07,6.182654140853067e-07,6.535576985149353e-07,2.5437342086200635e-08,2.939267348195761e-07,6.795545323646539e-07,5.924265173669815e-07,6.182654140853067e-07,6.535576985149353e-07,9.01008931788766e-08,2.939267348195761e-07,6.795545323646539e-07,5.924265173669815e-07,6.182654140853067e-07,6.535576985149353e-07,9.01008931788766e-08,2.9392673481957605e-07,6.795545323646537e-07 +1201,Bromine,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.6813514493223863e-06,1.7896385614613363e-06,1.9330426561268026e-06,2.5747223366608997e-07,1.947168937187092e-06,8.947012095269518e-06,1.6813514493223863e-06,1.7896385614613363e-06,1.9330426561268026e-06,1.3476753548676612e-06,1.947168937187092e-06,8.94701209526952e-06,1.6813514493223861e-06,1.7896385614613365e-06,1.9330426561268035e-06,1.3476753548676612e-06,1.947168937187092e-06,8.947012095269521e-06 +1202,Bromine,"('water', 'ocean')",emission,kilogram,biosphere3,4.7666784771909546e-05,5.298203196689755e-05,6.066244448051923e-05,7.974025173530087e-07,1.3591924718081066e-05,5.182685021771548e-05,4.7666784771909546e-05,5.298203196689755e-05,6.066244448051923e-05,2.1810469730277335e-06,1.3591924718081066e-05,5.182685021771549e-05,4.7666784771909546e-05,5.2982031966897535e-05,6.066244448051923e-05,2.1810469730277335e-06,1.3591924718081061e-05,5.1826850217715453e-05 +1203,Bromine,"('water', 'surface water')",emission,kilogram,biosphere3,0.00020412689121613467,0.00021508182190948329,0.0002308562287432123,2.568998795122924e-06,8.113653860363815e-05,0.00022746862787300482,0.00020412689121613467,0.00021508182190948329,0.0002308562287432123,5.729681133807385e-06,8.113653860363815e-05,0.00022746862787300482,0.00020412689121613467,0.00021508182190948329,0.00023085622874321224,5.729681133807385e-06,8.11365386036381e-05,0.0002274686278730047 +1204,Bromine,"('water',)",emission,kilogram,biosphere3,7.057150039699645e-08,7.395060148695301e-08,7.853490130286966e-08,1.6163903807776553e-09,2.8699495590531575e-08,7.510818695070185e-08,7.057150039699645e-08,7.395060148695301e-08,7.853490130286966e-08,5.319570942712165e-09,2.8699495590531575e-08,7.510818695070187e-08,7.057150039699263e-08,7.395060148695357e-08,7.853490130286967e-08,5.319570942712165e-09,2.869949559053156e-08,7.510818695070074e-08 +1205,Butanol,"('water', 'surface water')",emission,kilogram,biosphere3,2.5582793745143826e-08,2.6631888403094146e-08,2.8034190838670508e-08,7.043599926446541e-11,8.620070920263238e-09,2.4953562132732216e-08,2.5582793745143826e-08,2.6631888403094146e-08,2.8034190838670508e-08,3.090523923233732e-10,8.620070920263237e-09,2.4953562132732183e-08,2.5582793745143826e-08,2.6631888403094136e-08,2.8034190838670554e-08,3.090523923233732e-10,8.620070920263241e-09,2.49535621327322e-08 +1206,Butene,"('water', 'surface water')",emission,kilogram,biosphere3,7.026390736547499e-09,7.331802115210694e-09,7.739440197923193e-09,2.2099035219706058e-10,2.7478078461305665e-09,7.04137093902239e-09,7.026390736547499e-09,7.331802115210694e-09,7.739440197923193e-09,3.3123718674772945e-10,2.7478078461305665e-09,7.04137093902239e-09,7.026390736547499e-09,7.331802115210692e-09,7.739440197923191e-09,3.312371867477295e-10,2.747807846130566e-09,7.041370939022386e-09 +1207,Butyl acetate,"('water', 'surface water')",emission,kilogram,biosphere3,3.304546337242257e-08,3.440026556606435e-08,3.621107888260117e-08,9.152346301481351e-11,1.1205643279503859e-08,3.224090487899862e-08,3.304546337242257e-08,3.440026556606435e-08,3.621107888260117e-08,4.0167867516810646e-10,1.1205643279503856e-08,3.224090487899858e-08,3.304546337242257e-08,3.4400265566064335e-08,3.6211078882601235e-08,4.0167867516810646e-10,1.1205643279503862e-08,3.224090487899861e-08 +1208,Butyrolactone,"('water', 'surface water')",emission,kilogram,biosphere3,5.606390328510196e-11,5.836247963513893e-11,6.143478905615009e-11,1.575504057201054e-13,1.9020927196563586e-11,5.470835610609185e-11,5.606390328510196e-11,5.836247963513893e-11,6.143478905615009e-11,6.890341346091926e-13,1.9020927196563586e-11,5.470835610609185e-11,5.606390328510196e-11,5.836247963513893e-11,6.143478905615009e-11,6.890341346091926e-13,1.902092719656358e-11,5.4708356106091825e-11 +1209,"Cadmium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.3111570602144475e-05,1.3699109329278609e-05,1.4494955230586342e-05,5.976332672722599e-06,5.817356460859191e-05,6.468917361211786e-05,1.3111570602144475e-05,1.3699109329278609e-05,1.4494955230586342e-05,5.119536954377109e-05,5.817356460859191e-05,6.468917361211786e-05,1.311157060214447e-05,1.3699109329278609e-05,1.4494955230586342e-05,5.119536954377109e-05,5.8173564608591915e-05,6.468917361211785e-05 +1210,"Cadmium, ion","('water', 'ocean')",emission,kilogram,biosphere3,2.8182025137850425e-08,3.064165170408365e-08,3.4151259275275284e-08,2.043823512305518e-09,1.0697981704294929e-08,3.248892970447811e-08,2.8182025137850425e-08,3.064165170408365e-08,3.4151259275275284e-08,4.5065558234580515e-09,1.0697981704294929e-08,3.248892970447811e-08,2.8182025137850425e-08,3.064165170408366e-08,3.4151259275275284e-08,4.5065558234580515e-09,1.0697981704294927e-08,3.2488929704478064e-08 +1211,"Cadmium, ion","('water', 'surface water')",emission,kilogram,biosphere3,1.3957537034521915e-07,1.4539951372190993e-07,1.534082822749721e-07,9.27300711454155e-09,9.783951801187988e-08,1.4762457634439399e-07,1.3957537034521915e-07,1.4539951372190993e-07,1.534082822749721e-07,1.568595182198043e-08,9.783951801187988e-08,1.4762457634439399e-07,1.3957537034521913e-07,1.4539951372190995e-07,1.5340828227497213e-07,1.568595182198043e-08,9.783951801187986e-08,1.4762457634439364e-07 +1212,"Cadmium, ion","('water',)",emission,kilogram,biosphere3,1.6261330929359832e-06,1.6958016245639724e-06,1.7899538374369063e-06,1.633770702226874e-09,5.049815442725502e-08,1.576739875296711e-06,1.6261330929359832e-06,1.6958016245639724e-06,1.7899538374369063e-06,3.2756790546559777e-09,5.049815442725503e-08,1.576739875296711e-06,1.6261330929359828e-06,1.6958016245639722e-06,1.7899538374369067e-06,3.2756790546559777e-09,5.049815442725502e-08,1.5767398752967106e-06 +1213,"Calcium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.06654671401134757,0.06947557375371857,0.0734630396936885,0.0234148983801084,0.14260821613090008,0.17969248327424758,0.06654671401134757,0.06947557375371857,0.0734630396936885,0.1026493947142311,0.14260821613090008,0.17969248327424758,0.06654671401134754,0.06947557375371857,0.0734630396936885,0.1026493947142311,0.14260821613090008,0.17969248327424753 +1214,"Calcium, ion","('water', 'ocean')",emission,kilogram,biosphere3,0.002448618271107368,0.0027011012449047415,0.003064709515247837,9.232728887883868e-05,0.0007753744973464915,0.002761360184008729,0.002448618271107368,0.0027011012449047415,0.003064709515247837,0.00024218621787107147,0.0007753744973464915,0.0027613601840087293,0.0024486182711073684,0.0027011012449047415,0.003064709515247837,0.00024218621787107147,0.0007753744973464911,0.0027613601840087276 +1215,"Calcium, ion","('water', 'surface water')",emission,kilogram,biosphere3,0.04291319714503113,0.04500902745140371,0.047881384498990764,0.00150298955537299,0.028981082297201338,0.05138711121830387,0.04291319714503113,0.04500902745140371,0.047881384498990764,0.01106702291817848,0.028981082297201338,0.05138711121830387,0.04291319714503113,0.04500902745140372,0.04788138449899077,0.01106702291817848,0.028981082297201328,0.05138711121830384 +1216,"Calcium, ion","('water',)",emission,kilogram,biosphere3,1.0585725504367993e-06,1.109259068966977e-06,1.178023569173389e-06,2.4245857213815155e-08,4.3049245397047237e-07,1.1266228530220287e-06,1.0585725504367993e-06,1.109259068966977e-06,1.178023569173389e-06,7.979356926064783e-08,4.3049245397047237e-07,1.126622853022029e-06,1.0585725504367421e-06,1.1092590689669852e-06,1.1780235691733892e-06,7.979356926064783e-08,4.3049245397047216e-07,1.126622853022012e-06 +1217,Carbon disulfide,"('water', 'surface water')",emission,kilogram,biosphere3,3.656175826677791e-10,4.4479971310845086e-10,5.596673281362453e-10,3.344458764222732e-11,3.176020109291982e-10,7.034165756664142e-10,3.656175826677791e-10,4.4479971310845086e-10,5.596673281362453e-10,2.0237907025837736e-10,3.176020109291982e-10,7.034165756664142e-10,3.6561758266777907e-10,4.4479971310845086e-10,5.596673281362453e-10,2.0237907025837736e-10,3.176020109291982e-10,7.03416575666414e-10 +1218,Carbonate,"('water', 'surface water')",emission,kilogram,biosphere3,6.6531338445979056e-06,9.892329603298317e-06,1.3954250345047466e-05,9.052676323547558e-07,4.415561681105233e-06,9.88608608306369e-06,6.6531338445979056e-06,9.892329603298317e-06,1.3954250345047466e-05,1.2646736308533412e-06,4.415561681105233e-06,9.88608608306369e-06,6.653133844597898e-06,9.892329603298323e-06,1.3954250345047466e-05,1.2646736308533412e-06,4.415561681105233e-06,9.88608608306369e-06 +1219,"Carboxylic acids, unspecified","('water', 'ocean')",emission,kilogram,biosphere3,0.00038455243521170535,0.0004273682247684851,0.0004892290436122015,9.262075908619477e-06,0.00011573458722984617,0.00041829416698046856,0.00038455243521170535,0.0004273682247684851,0.0004892290436122015,2.0510797064933714e-05,0.00011573458722984617,0.0004182941669804686,0.00038455243521170535,0.00042736822476848504,0.0004892290436122015,2.0510797064933714e-05,0.00011573458722984612,0.0004182941669804684 +1220,"Carboxylic acids, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,0.0005009173745725799,0.0005563441400546472,0.0006364086580632033,1.0552772054992596e-05,0.00014546483019615077,0.0005467332204336245,0.0005009173745725799,0.0005563441400546472,0.0006364086580632033,2.4887595474297896e-05,0.00014546483019615077,0.0005467332204336245,0.00050091737457258,0.0005563441400546472,0.0006364086580632032,2.4887595474297896e-05,0.0001454648301961507,0.0005467332204336241 +1221,Cerium-141,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,7.977809903202885e-08,8.316981370386141e-08,8.779528062292133e-08,5.984360490130725e-09,4.025784881237784e-08,9.867017347608889e-08,7.977809903202885e-08,8.316981370386141e-08,8.779528062292133e-08,1.821448875082198e-08,4.025784881237784e-08,9.867017347608963e-08,7.977809903202886e-08,8.316981370386141e-08,8.779528062292131e-08,1.821448875082198e-08,4.0257848812378566e-08,9.867017347609031e-08 +1222,Cerium-144,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,2.4287064506832664e-08,2.5319613464875236e-08,2.6727756988097954e-08,1.8218352061932112e-09,1.2255806842176888e-08,3.0038430318853945e-08,2.4287064506832664e-08,2.5319613464875236e-08,2.6727756988097954e-08,5.545086550340465e-09,1.2255806842176888e-08,3.003843031885417e-08,2.4287064506832667e-08,2.5319613464875236e-08,2.672775698809795e-08,5.545086550340465e-09,1.2255806842177106e-08,3.003843031885438e-08 +1223,Cesium,"('water', 'ocean')",emission,kilogram,biosphere3,6.809540576903876e-08,7.56886159318856e-08,8.66606336413595e-08,1.1391464282774697e-09,1.9417034979078424e-08,7.403835629379523e-08,6.809540576903876e-08,7.56886159318856e-08,8.66606336413595e-08,3.1157813155433306e-09,1.9417034979078424e-08,7.403835629379523e-08,6.809540576903876e-08,7.568861593188559e-08,8.66606336413595e-08,3.1157813155433306e-09,1.9417034979078418e-08,7.403835629379519e-08 +1224,Cesium,"('water', 'surface water')",emission,kilogram,biosphere3,1.361185482635727e-07,1.5118015484143142e-07,1.7293679768596946e-07,2.867589707403004e-09,3.9528324243375666e-08,1.4856845129901402e-07,1.361185482635727e-07,1.5118015484143142e-07,1.7293679768596946e-07,6.762876948598903e-09,3.9528324243375666e-08,1.4856845129901402e-07,1.361185482635727e-07,1.5118015484143142e-07,1.7293679768596943e-07,6.762876948598903e-09,3.952832424337564e-08,1.485684512990139e-07 +1225,Cesium-134,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.3303018961843896e-05,1.3887948104620066e-05,1.4687347702572933e-05,1.9460482485663425e-05,4.720704290935478e-05,1.6324511089399004e-05,1.3303018961843896e-05,1.3887948104620066e-05,1.4687347702572933e-05,2.090843756020894e-05,4.720704290935478e-05,1.632451108939901e-05,1.3303018961843896e-05,1.3887948104620066e-05,1.4687347702572933e-05,2.090843756020894e-05,4.720704290935479e-05,1.632451108939902e-05 +1226,Cesium-136,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.4159056358915179e-08,1.4761019551300885e-08,1.5581949700857825e-08,1.0621072499807692e-09,7.14498285415743e-09,1.7512031044365774e-08,1.4159056358915179e-08,1.4761019551300885e-08,1.5581949700857825e-08,3.2327164404182604e-09,7.14498285415743e-09,1.7512031044365903e-08,1.4159056358915182e-08,1.4761019551300885e-08,1.5581949700857822e-08,3.2327164404182604e-09,7.144982854157558e-09,1.751203104436603e-08 +1227,Cesium-137,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.011078241649320078,0.011561324355804444,0.012221171924566027,0.008558040907042805,0.022822832095351714,0.013153331919057269,0.011078241649320078,0.011561324355804444,0.012221171924566027,0.009752413997050343,0.022822832095351714,0.013153331919057274,0.011078241649320078,0.011561324355804444,0.012221171924566027,0.009752413997050343,0.022822832095351714,0.013153331919057279 +1228,Cesium-137,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,5.121701140086936e-05,5.3437047901554614e-05,5.6468374759129554e-05,4.53384872568058e-05,0.00011679016912194048,6.318364782771886e-05,5.121701140086936e-05,5.3437047901554614e-05,5.6468374759129554e-05,5.1925595869380105e-05,0.00011679016912194048,6.318364782771908e-05,5.121701140086936e-05,5.3437047901554614e-05,5.646837475912955e-05,5.1925595869380105e-05,0.00011679016912194068,6.318364782771929e-05 +1229,Chloramine,"('water', 'surface water')",emission,kilogram,biosphere3,5.35367439740694e-10,5.752723310941233e-10,6.312957212281863e-10,9.240211754217857e-12,7.64052795077869e-11,5.86610379686169e-10,5.35367439740694e-10,5.752723310941233e-10,6.312957212281863e-10,5.49757608541298e-11,7.64052795077869e-11,5.866103796861685e-10,5.353674397406939e-10,5.752723310941234e-10,6.312957212281863e-10,5.49757608541298e-11,7.640527950778694e-11,5.866103796861683e-10 +1230,Chlorate,"('water', 'surface water')",emission,kilogram,biosphere3,0.000980145212655555,0.0010051864443426557,0.0010387598179134342,1.0863944648372744e-06,0.00034212027430448934,0.0009083240414244587,0.000980145212655555,0.0010051864443426557,0.0010387598179134342,2.7441097116615424e-06,0.00034212027430448934,0.0009083240414244587,0.000980145212655555,0.0010051864443426553,0.0010387598179134342,2.7441097116615424e-06,0.0003421202743044891,0.0009083240414244584 +1231,Chloride,"('water', 'ground-')",emission,kilogram,biosphere3,0.01140381063472118,0.011855966853419782,0.012471801231229084,0.008525846622474943,0.021344331532822645,0.07848219788748585,0.01140381063472118,0.011855966853419782,0.012471801231229084,0.00922773067546327,0.021344331532822645,0.07848219788748585,0.01140381063472118,0.01185596685341978,0.012471801231229084,0.00922773067546327,0.021344331532822645,0.07848219788748585 +1232,Chloride,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.007410277123187873,0.007744287327926848,0.008200429322729904,0.001934643748065854,0.0062375664629969714,0.011227022416532426,0.007410277123187873,0.007744287327926848,0.008200429322729904,0.0024567465270941575,0.0062375664629969714,0.011227022416532426,0.007410277123187878,0.0077442873279268505,0.008200429322729902,0.0024567465270941575,0.006237566462996971,0.011227022416532423 +1233,Chloride,"('water', 'ocean')",emission,kilogram,biosphere3,0.03418453690513514,0.03799501506528244,0.043500987131108504,0.0005737397964137232,0.009751359602309793,0.037165762358538426,0.03418453690513514,0.03799501506528244,0.043500987131108504,0.0015655236360398806,0.009751359602309793,0.03716576235853843,0.03418453690513514,0.03799501506528243,0.043500987131108504,0.0015655236360398806,0.00975135960230979,0.03716576235853841 +1234,Chloride,"('water', 'surface water')",emission,kilogram,biosphere3,0.18122099792639837,0.19353978213855208,0.21085316927599526,0.0032602460505739526,0.07340733013354188,0.1810783717073376,0.18122099792639837,0.19353978213855208,0.21085316927599526,0.005497490214217606,0.07340733013354188,0.1810783717073376,0.18122099792639837,0.1935397821385521,0.21085316927599526,0.005497490214217606,0.07340733013354185,0.1810783717073375 +1235,Chloride,"('water',)",emission,kilogram,biosphere3,3.238741005385836e-05,3.5153062158713744e-05,3.9077665711970804e-05,1.8997780476633023e-06,1.3898906306527197e-05,3.627755163946685e-05,3.238741005385836e-05,3.5153062158713744e-05,3.9077665711970804e-05,4.027646561369988e-06,1.3898906306527197e-05,3.627755163946687e-05,3.238741005385771e-05,3.5153062158713845e-05,3.9077665711970804e-05,4.027646561369988e-06,1.3898906306527203e-05,3.627755163946668e-05 +1236,"Chlorinated solvents, unspecified","('water', 'ocean')",emission,kilogram,biosphere3,2.4275076625027353e-15,2.530149491491002e-15,2.6686657090753738e-15,1.2349327655017907e-16,1.180765157706679e-15,2.9578849769655386e-15,2.4275076625027353e-15,2.530149491491002e-15,2.6686657090753738e-15,2.922375269063884e-16,1.1807651577066791e-15,2.9578849769655382e-15,2.4275076625027353e-15,2.530149491491002e-15,2.6686657090753738e-15,2.922375269063884e-16,1.1807651577066787e-15,2.9578849769655374e-15 +1237,"Chlorinated solvents, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,2.866274074719381e-07,3.055714045310154e-07,3.2987397384469814e-07,5.616371007963697e-10,1.0192916592682374e-07,2.778880588119896e-07,2.866274074719381e-07,3.055714045310154e-07,3.2987397384469814e-07,1.7947336343450812e-09,1.0192916592682374e-07,2.778880588119896e-07,2.8662740747193815e-07,3.055714045310153e-07,3.2987397384469814e-07,1.7947336343450812e-09,1.0192916592682364e-07,2.7788805881198956e-07 +1238,Chlorine,"('water', 'surface water')",emission,kilogram,biosphere3,5.779787265323052e-07,6.099088206810995e-07,6.528864568278927e-07,3.586411459424839e-08,1.0551789195189721e-07,7.615764772206375e-07,5.779787265323052e-07,6.099088206810995e-07,6.528864568278927e-07,5.500782884451978e-08,1.0551789195189721e-07,7.615764772206375e-07,5.779787265323051e-07,6.099088206810994e-07,6.528864568278927e-07,5.500782884451978e-08,1.0551789195189718e-07,7.615764772206374e-07 +1239,Chloroacetic acid,"('water', 'surface water')",emission,kilogram,biosphere3,1.991179446992385e-06,2.0758521107248226e-06,2.190184159634578e-06,1.2180662667696856e-09,6.340572553568386e-09,1.8680984334437852e-06,1.991179446992385e-06,2.0758521107248226e-06,2.190184159634578e-06,2.4054809961954607e-09,6.340572553568337e-09,1.8680984334437844e-06,1.991179446992385e-06,2.075852110724823e-06,2.190184159634578e-06,2.4054809961954607e-09,6.34057255356848e-09,1.8680984334437842e-06 +1240,Chloroacetyl chloride,"('water', 'surface water')",emission,kilogram,biosphere3,3.902715038578565e-11,4.0696648299564567e-11,4.295213250153246e-11,2.799352277898741e-14,1.588987140998141e-13,3.665620211983977e-11,3.902715038578565e-11,4.0696648299564567e-11,4.295213250153246e-11,7.630852354426332e-14,1.5889871409981317e-13,3.6656202119839753e-11,3.9027150385785634e-11,4.069664829956458e-11,4.295213250153246e-11,7.630852354426332e-14,1.58898714099816e-13,3.6656202119839734e-11 +1241,Chloroform,"('water', 'surface water')",emission,kilogram,biosphere3,5.46395759706948e-10,5.69383435985448e-10,6.002005798656281e-10,1.7145723475573271e-12,1.7747891696243375e-10,5.34565031505674e-10,5.46395759706948e-10,5.69383435985448e-10,6.002005798656281e-10,7.977191442576587e-12,1.774789169624338e-10,5.345650315056739e-10,5.46395759706948e-10,5.69383435985448e-10,6.002005798656281e-10,7.977191442576587e-12,1.7747891696243378e-10,5.345650315056736e-10 +1242,Chlorosulfonic acid,"('water', 'surface water')",emission,kilogram,biosphere3,3.581640137691047e-10,3.7338450430596415e-10,3.9393478892382617e-10,2.0580546649978082e-13,1.0138793275299124e-12,3.3591210978164647e-10,3.581640137691047e-10,3.7338450430596415e-10,3.9393478892382617e-10,3.8258524514287513e-13,1.0138793275299038e-12,3.359121097816463e-10,3.581640137691046e-10,3.7338450430596426e-10,3.939347889238262e-10,3.8258524514287513e-13,1.0138793275299294e-12,3.3591210978164616e-10 +1243,Chromium VI,"('water', 'ground-')",emission,kilogram,biosphere3,7.653693194658989e-07,7.986890954162295e-07,8.441896891110643e-07,4.6242622194057556e-08,4.2573465040110194e-07,9.202280504284036e-07,7.653693194658989e-07,7.986890954162295e-07,8.441896891110643e-07,1.4928055791365847e-07,4.2573465040110194e-07,9.202280504284036e-07,7.653693194658989e-07,7.986890954162295e-07,8.441896891110643e-07,1.4928055791365847e-07,4.2573465040110183e-07,9.202280504284035e-07 +1244,Chromium VI,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,3.6442595584675986e-05,3.841259085087078e-05,4.1116796923561495e-05,1.0069545603166526e-05,4.637285872296906e-05,8.035158767857252e-05,3.6442595584675986e-05,3.841259085087078e-05,4.1116796923561495e-05,2.671259810396689e-05,4.637285872296906e-05,8.035158767857253e-05,3.6442595584675986e-05,3.8412590850870764e-05,4.1116796923561495e-05,2.671259810396689e-05,4.6372858722969064e-05,8.035158767857252e-05 +1245,Chromium VI,"('water', 'surface water')",emission,kilogram,biosphere3,5.585983712387295e-06,5.95010615181889e-06,6.452389703706644e-06,4.391468763730842e-07,2.4961206861441015e-06,9.960208723318664e-06,5.585983712387295e-06,5.95010615181889e-06,6.452389703706644e-06,7.968965568873735e-07,2.4961206861441015e-06,9.960208723318666e-06,5.585983712387295e-06,5.950106151818889e-06,6.452389703706643e-06,7.968965568873735e-07,2.496120686144102e-06,9.960208723318664e-06 +1246,Chromium VI,"('water',)",emission,kilogram,biosphere3,1.6092573884439962e-06,1.677820310152786e-06,1.770418106151047e-06,7.033120713075798e-10,4.407472908575562e-08,1.556400078636632e-06,1.6092573884439962e-06,1.677820310152786e-06,1.770418106151047e-06,1.3793859602472994e-09,4.4074729085755626e-08,1.556400078636632e-06,1.6092573884439958e-06,1.6778203101527857e-06,1.7704181061510474e-06,1.3793859602472994e-09,4.407472908575561e-08,1.5564000786366313e-06 +1247,"Chromium, ion","('water', 'ocean')",emission,kilogram,biosphere3,3.7313397165067685e-07,4.1166471809637894e-07,4.670897670470857e-07,9.105862713394693e-09,1.0905720373544392e-07,4.029834154699913e-07,3.7313397165067685e-07,4.1166471809637894e-07,4.670897670470857e-07,1.9658416640525547e-08,1.0905720373544392e-07,4.0298341546999134e-07,3.731339716506768e-07,4.1166471809637894e-07,4.670897670470857e-07,1.9658416640525547e-08,1.0905720373544388e-07,4.0298341546999113e-07 +1248,"Chromium, ion","('water', 'surface water')",emission,kilogram,biosphere3,4.472023708836928e-07,4.7543492782252907e-07,5.157631601916508e-07,5.7313239136003824e-08,4.221839938230183e-07,5.234803611837868e-07,4.472023708836928e-07,4.7543492782252907e-07,5.157631601916508e-07,1.0467199350480856e-07,4.221839938230183e-07,5.234803611837868e-07,4.4720237088369206e-07,4.7543492782252865e-07,5.157631601916507e-07,1.0467199350480856e-07,4.221839938230182e-07,5.234803611837862e-07 +1249,"Chromium, ion","('water',)",emission,kilogram,biosphere3,7.688198616811509e-08,8.19138545292066e-08,8.898743059488454e-08,4.223410280836511e-09,2.9349869304435023e-08,9.268592090576126e-08,7.688198616811509e-08,8.19138545292066e-08,8.898743059488454e-08,8.697743047106997e-09,2.9349869304435023e-08,9.268592090576129e-08,7.688198616811506e-08,8.191385452920657e-08,8.898743059488454e-08,8.697743047106997e-09,2.9349869304435033e-08,9.268592090576118e-08 +1250,Chromium-51,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,2.1632909695240278e-05,2.2565149643208552e-05,2.383760439610563e-05,1.5230459290151196e-05,4.063616033873335e-05,2.6884839519399506e-05,2.1632909695240278e-05,2.2565149643208552e-05,2.383760439610563e-05,1.822604594164772e-05,4.063616033873335e-05,2.6884839519399645e-05,2.163290969524028e-05,2.2565149643208552e-05,2.3837604396105628e-05,1.822604594164772e-05,4.063616033873348e-05,2.6884839519399774e-05 +1251,Cobalt,"('water', 'ground-')",emission,kilogram,biosphere3,1.376647592361822e-07,1.4372181657194673e-07,1.5196224197987905e-07,6.509046922229164e-08,3.8682634714603553e-07,4.6341654657617745e-07,1.376647592361822e-07,1.4372181657194673e-07,1.5196224197987905e-07,2.898351867758211e-07,3.8682634714603553e-07,4.6341654657617745e-07,1.3766475923618218e-07,1.4372181657194673e-07,1.5196224197987905e-07,2.898351867758211e-07,3.8682634714603553e-07,4.6341654657617735e-07 +1252,Cobalt,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,8.603740380135793e-05,8.98637627820516e-05,9.507032526705293e-05,8.649643915068636e-05,0.00037606860640265673,0.000426537079106035,8.603740380135793e-05,8.98637627820516e-05,9.507032526705293e-05,0.00032608720807770147,0.00037606860640265673,0.000426537079106035,8.603740380135793e-05,8.986376278205154e-05,9.507032526705293e-05,0.00032608720807770147,0.00037606860640265684,0.000426537079106035 +1253,Cobalt,"('water', 'ocean')",emission,kilogram,biosphere3,3.337234166300538e-10,3.4827590758161525e-10,3.6815330258060254e-10,2.578043285727698e-10,6.875200726832912e-10,3.9623389791971995e-10,3.337234166300538e-10,3.4827590758161525e-10,3.6815330258060254e-10,2.9378388953525747e-10,6.875200726832912e-10,3.9623389791972016e-10,3.337234166300538e-10,3.4827590758161525e-10,3.681533025806025e-10,2.9378388953525747e-10,6.875200726832913e-10,3.962338979197203e-10 +1254,Cobalt,"('water', 'surface water')",emission,kilogram,biosphere3,1.6792220939205429e-06,1.801207789357129e-06,1.9545110474918212e-06,9.954106658474583e-08,4.467801128177782e-07,1.9444324322935057e-06,1.6792220939205429e-06,1.801207789357129e-06,1.9545110474918212e-06,3.1329921654102567e-07,4.467801128177782e-07,1.9444324322935057e-06,1.6792220939205429e-06,1.8012077893571292e-06,1.9545110474918212e-06,3.1329921654102567e-07,4.467801128177782e-07,1.9444324322935053e-06 +1255,Cobalt,"('water',)",emission,kilogram,biosphere3,7.295847488117436e-12,7.645186896845388e-12,8.119122581123586e-12,1.6710623920330875e-13,2.967021290311875e-12,7.764860814354979e-12,7.295847488117436e-12,7.645186896845388e-12,8.119122581123586e-12,5.499497563387513e-13,2.967021290311875e-12,7.764860814354979e-12,7.29584748811704e-12,7.645186896845446e-12,8.119122581123586e-12,5.499497563387513e-13,2.9670212903118736e-12,7.764860814354862e-12 +1256,Cobalt-57,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,4.4946185246374905e-07,4.685704346047725e-07,4.946298538397752e-07,3.3715289906835793e-08,2.2680870387146012e-07,5.558979149856393e-07,4.4946185246374905e-07,4.685704346047725e-07,4.946298538397752e-07,1.02618612190051e-07,2.2680870387146012e-07,5.558979149856435e-07,4.494618524637491e-07,4.685704346047725e-07,4.946298538397751e-07,1.02618612190051e-07,2.2680870387146417e-07,5.558979149856475e-07 +1257,Cobalt-58,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.0001451811643989248,0.0001514748224530068,0.000160068460819883,0.000121663445163427,0.0003165995216105623,0.00017811449722417267,0.0001451811643989248,0.0001514748224530068,0.000160068460819883,0.0001400252602025797,0.0003165995216105623,0.00017811449722417323,0.00014518116439892482,0.0001514748224530068,0.00016006846081988298,0.0001400252602025797,0.0003165995216105629,0.00017811449722417378 +1258,Cobalt-60,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00011604874057716112,0.00012107230202270651,0.0001279310776622557,9.177112158128577e-05,0.0002409398008267989,0.0001426290469201609,0.00011604874057716112,0.00012107230202270651,0.0001279310776622557,0.00010673215956026117,0.0002409398008267989,0.00014262904692016143,0.00011604874057716112,0.00012107230202270651,0.0001279310776622557,0.00010673215956026117,0.0002409398008267994,0.00014262904692016192 +1259,"COD, Chemical Oxygen Demand","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0029222458765402817,0.003121511215530036,0.003392984033364186,0.001799697556307139,0.006564313973233133,0.008485109349726468,0.0029222458765402817,0.003121511215530036,0.003392984033364186,0.00544613433739776,0.006564313973233133,0.008485109349726468,0.0029222458765402813,0.0031215112155300343,0.0033929840333641855,0.00544613433739776,0.0065643139732331325,0.008485109349726466 +1260,"COD, Chemical Oxygen Demand","('water', 'ocean')",emission,kilogram,biosphere3,0.006697514084443598,0.007463558115813846,0.008569964560774326,0.0008480087530912215,0.0034241357715430686,0.007369488457023927,0.006697514084443598,0.007463558115813846,0.008569964560774326,0.001048077008114095,0.0034241357715430686,0.007369488457023927,0.006697514084443598,0.007463558115813845,0.008569964560774326,0.001048077008114095,0.0034241357715430677,0.0073694884570239235 +1261,"COD, Chemical Oxygen Demand","('water', 'surface water')",emission,kilogram,biosphere3,0.03780187344209337,0.04213331010683663,0.0483589433722202,0.0006579439874949564,0.010976186373944503,0.04137318249012207,0.03780187344209337,0.04213331010683663,0.0483589433722202,0.0019028570688546312,0.010976186373944503,0.04137318249012207,0.03780187344209336,0.04213331010683663,0.0483589433722202,0.0019028570688546312,0.010976186373944498,0.041373182490122055 +1262,"COD, Chemical Oxygen Demand","('water',)",emission,kilogram,biosphere3,0.0024080526097851507,0.0025149278063414044,0.0026588222486791566,1.1334876818586525e-06,6.75792801546727e-05,0.002333790547727729,0.0024080526097851507,0.0025149278063414044,0.0026588222486791566,2.464271906612251e-06,6.757928015467272e-05,0.0023337905477277283,0.0024080526097851503,0.0025149278063414044,0.002658822248679157,2.464271906612251e-06,6.757928015467262e-05,0.0023337905477277287 +1263,"Copper, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.00013000065733466363,0.00013608594500532988,0.00014432096151882005,6.394400649062996e-05,0.0005092483847700872,0.0005774961652333679,0.00013000065733466363,0.00013608594500532988,0.00014432096151882005,0.0004375326248584604,0.0005092483847700872,0.0005774961652333679,0.0001300006573346636,0.00013608594500532988,0.00014432096151882005,0.0004375326248584604,0.0005092483847700872,0.0005774961652333678 +1264,"Copper, ion","('water', 'ocean')",emission,kilogram,biosphere3,3.282042754700087e-07,3.463578524359113e-07,3.7141082120449247e-07,1.7807234184430972e-08,1.4095562154926842e-07,3.300558313000645e-07,3.282042754700087e-07,3.463578524359113e-07,3.7141082120449247e-07,2.3270430854744617e-08,1.4095562154926842e-07,3.300558313000645e-07,3.28204275470008e-07,3.463578524359113e-07,3.7141082120449247e-07,2.3270430854744617e-08,1.409556215492684e-07,3.300558313000616e-07 +1265,"Copper, ion","('water', 'surface water')",emission,kilogram,biosphere3,1.7050345200647705e-06,1.7862755120592972e-06,1.8943811056462215e-06,1.8512176777646482e-07,1.4732212979298035e-06,1.9008556515309832e-06,1.7050345200647705e-06,1.7862755120592972e-06,1.8943811056462215e-06,2.790985298322736e-07,1.4732212979298035e-06,1.9008556515309823e-06,1.7050345200647689e-06,1.786275512059298e-06,1.8943811056462207e-06,2.790985298322736e-07,1.473221297929803e-06,1.9008556515309779e-06 +1266,"Copper, ion","('water',)",emission,kilogram,biosphere3,8.09246499627186e-06,8.437682518562994e-06,8.904001918533456e-06,5.313704916747898e-09,2.401918345680369e-07,7.835308993901997e-06,8.09246499627186e-06,8.437682518562994e-06,8.904001918533456e-06,1.2504218713421149e-08,2.401918345680369e-07,7.835308993901997e-06,8.092464996271859e-06,8.437682518562992e-06,8.904001918533457e-06,1.2504218713421149e-08,2.4019183456803683e-07,7.835308993901995e-06 +1267,Cumene,"('water', 'surface water')",emission,kilogram,biosphere3,5.549971069482304e-06,2.2451028661125938e-05,4.35230441994163e-05,1.7063884402950262e-07,4.050653071610822e-06,2.195824115061779e-05,5.549971069482304e-06,2.2451028661125938e-05,4.35230441994163e-05,8.356653407970485e-07,4.050653071610822e-06,2.1958241150617798e-05,5.549971069482304e-06,2.2451028661125938e-05,4.35230441994163e-05,8.356653407970485e-07,4.0506530716108214e-06,2.195824115061778e-05 +1268,Cyanide,"('water', 'ocean')",emission,kilogram,biosphere3,7.14861114168678e-07,7.612124311688695e-07,8.260996832341162e-07,5.312720828838087e-09,2.2533055316726234e-07,7.239502015678637e-07,7.14861114168678e-07,7.612124311688695e-07,8.260996832341162e-07,1.6331077922423827e-08,2.2533055316726234e-07,7.239502015678639e-07,7.148611141686768e-07,7.612124311688695e-07,8.260996832341161e-07,1.6331077922423827e-08,2.2533055316726231e-07,7.239502015678588e-07 +1269,Cyanide,"('water', 'surface water')",emission,kilogram,biosphere3,1.7727995213919686e-06,1.8649428850643427e-06,1.9913374054738937e-06,2.950186538361049e-06,2.9351342080970115e-05,3.057551993250394e-05,1.7727995213919686e-06,1.8649428850643427e-06,1.9913374054738937e-06,2.8746964346288545e-05,2.9351342080970115e-05,3.057551993250394e-05,1.7727995213919675e-06,1.8649428850643431e-06,1.991337405473894e-06,2.8746964346288545e-05,2.935134208097012e-05,3.0575519932503936e-05 +1270,Cyanide,"('water',)",emission,kilogram,biosphere3,1.6051040897800018e-05,1.673392556595935e-05,1.7656043230462926e-05,4.718554682796103e-09,4.24989566945578e-07,1.5513827923071303e-05,1.6051040897800018e-05,1.673392556595935e-05,1.7656043230462926e-05,9.113776780432933e-09,4.249895669455781e-07,1.5513827923071303e-05,1.6051040897800015e-05,1.6733925565959346e-05,1.765604323046293e-05,9.113776780432933e-09,4.2498956694557793e-07,1.55138279230713e-05 +1271,Cyclohexane,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1272,Dichromate,"('water', 'surface water')",emission,kilogram,biosphere3,2.4902121854352946e-08,2.6197798883301815e-08,2.7988034617722613e-08,2.4520726907017736e-08,6.110623483560365e-08,7.781308414951379e-08,2.4902121854352946e-08,2.6197798883301815e-08,2.7988034617722613e-08,2.6111941604129154e-08,6.110623483560365e-08,7.78130841495138e-08,2.490212185435294e-08,2.6197798883301815e-08,2.7988034617722613e-08,2.6111941604129154e-08,6.110623483560367e-08,7.781308414951386e-08 +1273,Diethylamine,"('water', 'surface water')",emission,kilogram,biosphere3,1.4803360776092185e-09,1.5453348558497154e-09,1.6333532931271089e-09,1.2612077982298022e-12,1.086152315423967e-11,1.3961842633946194e-09,1.4803360776092185e-09,1.5453348558497154e-09,1.6333532931271089e-09,6.910364676708571e-12,1.0861523154239666e-11,1.3961842633946191e-09,1.4803360776092228e-09,1.5453348558497175e-09,1.6333532931271089e-09,6.910364676708571e-12,1.0861523154239703e-11,1.3961842633946156e-09 +1274,Diethylene glycol,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1275,Diisobutyl ketone,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1276,Dimethyl ether,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1277,Dimethylamine,"('water', 'surface water')",emission,kilogram,biosphere3,1.5282049891482944e-09,1.593991155337015e-09,1.6829182769029297e-09,1.0399005043970338e-12,7.012485457571069e-12,1.4364029488966577e-09,1.5282049891482944e-09,1.593991155337015e-09,1.6829182769029297e-09,3.7759174233629725e-12,7.012485457571046e-12,1.4364029488966573e-09,1.5282049891482958e-09,1.593991155337016e-09,1.68291827690293e-09,3.7759174233629725e-12,7.012485457571127e-12,1.4364029488966555e-09 +1278,Dipropylamine,"('water', 'surface water')",emission,kilogram,biosphere3,9.293840693101345e-10,9.70210420380603e-10,1.0254978915221663e-09,7.940562470899704e-13,6.873516060063067e-12,8.76616999679305e-10,9.293840693101345e-10,9.70210420380603e-10,1.0254978915221663e-09,4.383684996588991e-12,6.873516060063066e-12,8.76616999679305e-10,9.293840693101372e-10,9.702104203806043e-10,1.0254978915221663e-09,4.383684996588991e-12,6.873516060063086e-12,8.766169996793028e-10 +1279,Dissolved solids,"('water', 'surface water')",emission,kilogram,biosphere3,0.003269412585333634,0.003413673198133016,0.0036082287309387564,1.880231717068812e-05,0.0007673415630680549,0.0032559240367696298,0.003269412585333634,0.003413673198133016,0.0036082287309387564,9.884711927939608e-05,0.0007673415630680548,0.0032559240367696298,0.003269412585333631,0.003413673198133017,0.003608228730938756,9.884711927939608e-05,0.0007673415630680548,0.0032559240367696285 +1280,Dissolved solids,"('water',)",emission,kilogram,biosphere3,1.4633208518695893e-05,1.5333875085148838e-05,1.6284443158206327e-05,3.351633148698842e-07,5.950924995192118e-06,1.5573903862835023e-05,1.4633208518695893e-05,1.5333875085148838e-05,1.6284443158206327e-05,1.103028734729962e-06,5.950924995192118e-06,1.5573903862835023e-05,1.4633208518695102e-05,1.5333875085148953e-05,1.628444315820633e-05,1.103028734729962e-06,5.950924995192115e-06,1.5573903862834792e-05 +1281,"DOC, Dissolved Organic Carbon","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0013435494622944027,0.0014331572187283946,0.0015554869724406257,0.0007449940271198834,0.0027395441919660863,0.003580064366838115,0.0013435494622944027,0.0014331572187283946,0.0015554869724406257,0.0021920569848847948,0.0027395441919660863,0.0035800643668381154,0.0013435494622944025,0.001433157218728394,0.0015554869724406252,0.0021920569848847948,0.0027395441919660863,0.003580064366838114 +1282,"DOC, Dissolved Organic Carbon","('water', 'ocean')",emission,kilogram,biosphere3,0.0022095165697756545,0.00246083957715376,0.002823842355362135,0.00023986344105401047,0.0010478987766852318,0.002427020472569286,0.0022095165697756545,0.00246083957715376,0.002823842355362135,0.0003058253934256091,0.0010478987766852318,0.0024270204725692864,0.0022095165697756545,0.0024608395771537595,0.0028238423553621347,0.0003058253934256091,0.0010478987766852313,0.0024270204725692847 +1283,"DOC, Dissolved Organic Carbon","('water', 'surface water')",emission,kilogram,biosphere3,0.01108452267561924,0.012355409993626202,0.014182784100353375,0.00019656406814301387,0.0032456205267593014,0.012151969006804705,0.01108452267561924,0.012355409993626202,0.014182784100353375,0.0005759850948110531,0.0032456205267593014,0.012151969006804705,0.01108452267561924,0.012355409993626202,0.014182784100353375,0.0005759850948110531,0.0032456205267592996,0.0121519690068047 +1284,"DOC, Dissolved Organic Carbon","('water',)",emission,kilogram,biosphere3,8.959831700326255e-05,9.555017448917898e-05,0.00010337620753863871,1.7062891824989304e-07,3.703072883666805e-06,8.928603085930022e-05,8.959831700326255e-05,9.555017448917898e-05,0.00010337620753863871,4.3868136225164695e-07,3.7030728836668053e-06,8.928603085929999e-05,8.959831700326251e-05,9.555017448917901e-05,0.00010337620753863872,4.3868136225164695e-07,3.703072883666785e-06,8.928603085930032e-05 +1285,"Ethane, 1,1,1-trichloro-, HCFC-140","('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1286,"Ethane, 1,2-dichloro-","('water', 'surface water')",emission,kilogram,biosphere3,1.2416515904681745e-08,1.4163849826591139e-08,1.6438685179549043e-08,4.770929486735183e-09,1.3988670832738435e-08,2.0570278826927238e-08,1.2416515904681745e-08,1.4163849826591139e-08,1.6438685179549043e-08,9.021120220241886e-09,1.3988670832738435e-08,2.0570278826927238e-08,1.2416515904681759e-08,1.4163849826591142e-08,1.6438685179549046e-08,9.021120220241886e-09,1.3988670832738434e-08,2.0570278826927225e-08 +1287,Ethanol,"('water', 'surface water')",emission,kilogram,biosphere3,9.215673391681764e-08,9.599558666867367e-08,1.0114738660448816e-07,1.8240707044024172e-10,2.000048064601572e-08,8.872663070464027e-08,9.215673391681764e-08,9.599558666867367e-08,1.0114738660448816e-07,7.710657218063818e-10,2.0000480646015718e-08,8.87266307046402e-08,9.215673391681764e-08,9.599558666867367e-08,1.0114738660448826e-07,7.710657218063818e-10,2.000048064601573e-08,8.87266307046402e-08 +1288,Ethene,"('water', 'surface water')",emission,kilogram,biosphere3,2.1548677753814266e-06,9.23877681853926e-06,1.8069606549291255e-05,6.402233218943989e-08,1.5785500452929213e-06,8.985972801737935e-06,2.1548677753814266e-06,9.23877681853926e-06,1.8069606549291255e-05,2.947854510785986e-07,1.5785500452929213e-06,8.985972801737937e-06,2.154867775381426e-06,9.23877681853926e-06,1.8069606549291255e-05,2.947854510785986e-07,1.578550045292921e-06,8.985972801737932e-06 +1289,"Ethene, chloro-","('water', 'surface water')",emission,kilogram,biosphere3,1.0420263504896643e-09,1.4515027178690704e-09,1.9664184155122423e-09,7.371252193982552e-11,6.571272085421841e-10,1.6693165857857039e-09,1.0420263504896643e-09,1.4515027178690704e-09,1.9664184155122423e-09,2.598477677527131e-10,6.571272085421842e-10,1.669316585785704e-09,1.0420263504896643e-09,1.4515027178690704e-09,1.9664184155122423e-09,2.598477677527131e-10,6.571272085421841e-10,1.6693165857857033e-09 +1290,Ethyl acetate,"('water', 'surface water')",emission,kilogram,biosphere3,1.5521956119163388e-09,1.6203663504258247e-09,1.7126813721007106e-09,1.3454744572005233e-12,1.2937287287419037e-11,1.4642901775928404e-09,1.5521956119163388e-09,1.6203663504258247e-09,1.7126813721007106e-09,7.371796099493939e-12,1.2937287287419037e-11,1.4642901775928404e-09,1.5521956119163431e-09,1.6203663504258267e-09,1.7126813721007106e-09,7.371796099493939e-12,1.2937287287419073e-11,1.4642901775928365e-09 +1291,Ethylamine,"('water', 'surface water')",emission,kilogram,biosphere3,8.014713413375234e-11,8.506989497841092e-11,9.190607711396377e-11,8.744915166209028e-13,2.497481296367279e-11,1.0459574027405627e-10,8.014713413375234e-11,8.506989497841092e-11,9.190607711396377e-11,4.9532549084682136e-12,2.497481296367279e-11,1.0459574027405625e-10,8.014713413375233e-11,8.506989497841093e-11,9.190607711396377e-11,4.9532549084682136e-12,2.497481296367279e-11,1.045957402740562e-10 +1292,Ethylene diamine,"('water', 'surface water')",emission,kilogram,biosphere3,1.8143162854665021e-10,2.214534451575493e-10,2.7953124523311674e-10,1.696686464559696e-11,1.5144986300809756e-10,3.41819899384699e-10,1.8143162854665021e-10,2.214534451575493e-10,2.7953124523311674e-10,1.0210139344540724e-10,1.5144986300809756e-10,3.41819899384699e-10,1.814316285466502e-10,2.214534451575493e-10,2.7953124523311674e-10,1.0210139344540724e-10,1.5144986300809756e-10,3.4181989938469894e-10 +1293,Ethylene glycol monoethyl ether,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1294,Ethylene oxide,"('water', 'surface water')",emission,kilogram,biosphere3,2.5410462050368774e-06,2.5414768353220323e-06,2.542056035390227e-06,3.0626468459333735e-10,1.2461423633795092e-06,2.280450172274114e-06,2.5410462050368774e-06,2.5414768353220323e-06,2.542056035390227e-06,3.5740684996547383e-10,1.2461423633795092e-06,2.280450172274114e-06,2.5410462050368774e-06,2.5414768353220323e-06,2.542056035390227e-06,3.5740684996547383e-10,1.2461423633795085e-06,2.280450172274114e-06 +1295,Fluoride,"('water', 'ground-')",emission,kilogram,biosphere3,6.918196315756755e-06,7.2150506931945986e-06,7.618714268398239e-06,4.204774015361447e-06,2.056998823768149e-05,3.243189177738352e-05,6.918196315756755e-06,7.2150506931945986e-06,7.618714268398239e-06,1.4729662816027964e-05,2.056998823768149e-05,3.243189177738352e-05,6.918196315756753e-06,7.2150506931945986e-06,7.618714268398239e-06,1.4729662816027964e-05,2.056998823768149e-05,3.2431891777383514e-05 +1296,Fluoride,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0016176965708978742,0.001689288690242776,0.0017859330275715448,0.0004756083510012657,0.004961713696227063,0.005844846100659767,0.0016176965708978742,0.001689288690242776,0.0017859330275715448,0.004084598029919717,0.004961713696227063,0.005844846100659767,0.001617696570897874,0.001689288690242776,0.0017859330275715448,0.004084598029919717,0.004961713696227064,0.005844846100659776 +1297,Fluoride,"('water', 'ocean')",emission,kilogram,biosphere3,1.1338456239471216e-05,1.2324161655124156e-05,1.3731969564791578e-05,7.051350473667972e-07,3.987883608756898e-06,1.323297756802504e-05,1.1338456239471216e-05,1.2324161655124156e-05,1.3731969564791578e-05,1.818168625075157e-06,3.987883608756898e-06,1.323297756802504e-05,1.1338456239471221e-05,1.232416165512416e-05,1.3731969564791576e-05,1.818168625075157e-06,3.987883608756897e-06,1.323297756802503e-05 +1298,Fluoride,"('water', 'surface water')",emission,kilogram,biosphere3,5.645085943896154e-05,6.459462080358275e-05,7.505335916680109e-05,2.1580883908383726e-06,4.285635269741003e-05,7.815818638851002e-05,5.645085943896154e-05,6.459462080358275e-05,7.505335916680109e-05,3.45379082983531e-06,4.285635269741003e-05,7.815818638851002e-05,5.6450859438961536e-05,6.459462080358275e-05,7.505335916680108e-05,3.45379082983531e-06,4.285635269741002e-05,7.815818638851053e-05 +1299,Fluoride,"('water',)",emission,kilogram,biosphere3,3.5537275749669174e-07,3.8158605959239416e-07,4.185818435971593e-07,2.420301779749202e-07,7.199720505279392e-07,9.682947524623912e-07,3.5537275749669174e-07,3.8158605959239416e-07,4.185818435971593e-07,6.198839684646238e-07,7.199720505279392e-07,9.682947524623912e-07,3.5537275749669174e-07,3.8158605959239416e-07,4.185818435971593e-07,6.198839684646238e-07,7.199720505279383e-07,9.682947524623912e-07 +1300,Fluosilicic acid,"('water', 'surface water')",emission,kilogram,biosphere3,2.820980065126921e-07,3.069544255250516e-07,3.4213060230534365e-07,2.3691227082078002e-08,9.210528942851934e-06,1.1374657364643442e-05,2.820980065126921e-07,3.069544255250516e-07,3.4213060230534365e-07,9.523632037293592e-08,9.210528942851936e-06,1.1374657364643446e-05,2.8209800651269214e-07,3.069544255250516e-07,3.421306023053437e-07,9.523632037293592e-08,9.210528942851934e-06,1.1374657364643439e-05 +1301,Formaldehyde,"('water', 'surface water')",emission,kilogram,biosphere3,2.107491952201139e-08,2.224418869648363e-08,2.3857694414669134e-08,7.168155110152127e-10,1.0929817824201927e-08,2.5537811438131914e-08,2.107491952201139e-08,2.224418869648363e-08,2.3857694414669134e-08,5.266460625986564e-09,1.0929817824201927e-08,2.5537811438131914e-08,2.1074919522011403e-08,2.2244188696483635e-08,2.3857694414669138e-08,5.266460625986564e-09,1.0929817824201926e-08,2.55378114381319e-08 +1302,Formaldehyde,"('water',)",emission,kilogram,biosphere3,2.8224462960833936e-07,1.1632350919241566e-06,2.261558709370634e-06,9.268914669045649e-09,2.044515744871975e-07,1.1341673670865307e-06,2.8224462960833936e-07,1.1632350919241566e-06,2.261558709370634e-06,3.964360929456061e-08,2.044515744871975e-07,1.1341673670865307e-06,2.8224462960833385e-07,1.1632350919241757e-06,2.261558709370634e-06,3.964360929456061e-08,2.0445157448720118e-07,1.134167367086575e-06 +1303,Formamide,"('water', 'surface water')",emission,kilogram,biosphere3,4.29061092912408e-11,4.713305007052577e-11,5.314069415174193e-11,1.2764502221068203e-12,1.0614553093688432e-11,5.208162672220358e-11,4.29061092912408e-11,4.713305007052577e-11,5.314069415174193e-11,7.669166922193243e-12,1.061455309368843e-11,5.2081626722203565e-11,4.290610929124079e-11,4.7133050070525774e-11,5.314069415174194e-11,7.669166922193243e-12,1.0614553093688433e-11,5.2081626722203545e-11 +1304,Formate,"('water', 'surface water')",emission,kilogram,biosphere3,2.7855804060055266e-08,2.9056380400724208e-08,3.067946574347061e-08,2.6566045446310796e-11,1.0004036594343343e-09,2.7235344572362687e-08,2.7855804060055266e-08,2.9056380400724208e-08,3.067946574347061e-08,8.575900890187247e-11,1.0004036594343337e-09,2.7235344572362674e-08,2.7855804060055256e-08,2.9056380400724214e-08,3.067946574347061e-08,8.575900890187247e-11,1.0004036594343354e-09,2.7235344572362668e-08 +1305,Formic acid,"('water', 'surface water')",emission,kilogram,biosphere3,1.2455091222574765e-11,1.3682106242702045e-11,1.5426031055325945e-11,3.705310891184602e-13,3.0812180263818167e-12,1.5118569274495388e-11,1.2455091222574765e-11,1.3682106242702045e-11,1.5426031055325945e-11,2.2262240320934652e-12,3.0812180263818167e-12,1.5118569274495385e-11,1.2455091222574762e-11,1.3682106242702046e-11,1.5426031055325945e-11,2.2262240320934652e-12,3.081218026381817e-12,1.511856927449538e-11 +1306,Glutaraldehyde,"('water', 'ocean')",emission,kilogram,biosphere3,1.0260498689801832e-07,1.133818537084591e-07,1.2888230001496025e-07,3.489932762864983e-08,1.0060490758649085e-07,1.1362698180405885e-07,1.0260498689801832e-07,1.133818537084591e-07,1.2888230001496025e-07,3.8757933695596496e-08,1.0060490758649085e-07,1.1362698180405885e-07,1.0260498689801831e-07,1.133818537084591e-07,1.2888230001496025e-07,3.8757933695596496e-08,1.0060490758649085e-07,1.1362698180405881e-07 +1307,"Heat, waste","('water', 'ground-, long-term')",emission,megajoule,biosphere3,0.04908882645245597,0.05202346653083281,0.0561118272879705,0.009594238512861722,0.04033003255614381,0.060160712528603076,0.04908882645245597,0.05202346653083281,0.0561118272879705,0.010710095586656181,0.04033003255614381,0.060160712528603076,0.049088826452455964,0.05202346653083281,0.056111827287970484,0.010710095586656181,0.04033003255614381,0.060160712528603055 +1308,"Heat, waste","('water', 'ocean')",emission,megajoule,biosphere3,0.00038345367200712244,0.0004000901978546719,0.0004227673781777025,0.0002837202188352479,0.0007600727731025925,0.0004507332191021952,0.00038345367200712244,0.0004000901978546719,0.0004227673781777025,0.00032222672431977517,0.0007600727731025925,0.0004507332191021955,0.0003834536720071224,0.00040009019785467196,0.0004227673781777025,0.00032222672431977517,0.0007600727731025927,0.00045073321910219584 +1309,"Heat, waste","('water', 'surface water')",emission,megajoule,biosphere3,5.964789738840009,6.38351665370208,6.97542614481297,2.8082665188682165,7.98291677271964,7.735752506419003,5.964789738840009,6.38351665370208,6.97542614481297,3.178353746648627,7.98291677271964,7.735752506419003,5.964789738840011,6.38351665370208,6.975426144812969,3.178353746648627,7.98291677271964,7.735752506419002 +1310,"Heat, waste","('water',)",emission,megajoule,biosphere3,0.8849992097261438,0.9159507865406258,0.9573733444472062,0.0001633146521962125,0.002561291677687187,13.405872473985381,0.8849992097261438,0.9159507865406258,0.9573733444472062,0.0006631972582874599,0.002561291677687187,13.405872473985383,0.8849992097261438,0.9159507865406257,0.9573733444472062,0.0006631972582874599,0.002561291677687201,13.405872473985385 +1311,Hexane,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1312,"Hydrocarbons, aliphatic, alkanes, unspecified","('water', 'ocean')",emission,kilogram,biosphere3,8.852402546751154e-06,9.839519845260868e-06,1.126588211474875e-05,1.4808903227924366e-07,2.5242144893448236e-06,9.624986097243487e-06,8.852402546751154e-06,9.839519845260868e-06,1.126588211474875e-05,4.0505156173328356e-07,2.5242144893448236e-06,9.624986097243489e-06,8.852402546751154e-06,9.839519845260866e-06,1.126588211474875e-05,4.0505156173328356e-07,2.5242144893448223e-06,9.624986097243484e-06 +1313,"Hydrocarbons, aliphatic, alkanes, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,1.769541087363004e-05,1.9653419684194606e-05,2.2481783189609378e-05,3.7278665482449105e-07,5.13868204098117e-06,1.931389823509885e-05,1.769541087363004e-05,1.9653419684194606e-05,2.2481783189609378e-05,8.791739878217961e-07,5.13868204098117e-06,1.931389823509885e-05,1.7695410873630043e-05,1.9653419684194606e-05,2.248178318960937e-05,8.791739878217961e-07,5.138682040981166e-06,1.9313898235098836e-05 +1314,"Hydrocarbons, aliphatic, unsaturated","('water', 'ocean')",emission,kilogram,biosphere3,8.171448885734905e-07,9.082634126849415e-07,1.0399276283158669e-06,1.3669757462636897e-08,2.3300442526390115e-07,8.884602965581454e-07,8.171448885734905e-07,9.082634126849415e-07,1.0399276283158669e-06,3.738937667074516e-08,2.3300442526390115e-07,8.884602965581455e-07,8.171448885734905e-07,9.082634126849413e-07,1.0399276283158669e-06,3.738937667074516e-08,2.3300442526390105e-07,8.88460296558145e-07 +1315,"Hydrocarbons, aliphatic, unsaturated","('water', 'surface water')",emission,kilogram,biosphere3,1.6340164610386823e-06,1.8147814363429865e-06,2.0758959019005766e-06,3.4411507798760595e-08,4.74343038018613e-07,1.7833801115300795e-06,1.6340164610386823e-06,1.8147814363429865e-06,2.0758959019005766e-06,8.115632216807607e-08,4.74343038018613e-07,1.7833801115300795e-06,1.6340164610386828e-06,1.8147814363429865e-06,2.075895901900576e-06,8.115632216807607e-08,4.743430380186127e-07,1.7833801115300784e-06 +1316,"Hydrocarbons, aliphatic, unsaturated","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1317,"Hydrocarbons, aromatic","('water', 'ocean')",emission,kilogram,biosphere3,3.777132918839694e-05,4.1963345219212745e-05,4.801917501172265e-05,1.0126016500267534e-06,1.1587006708208661e-05,4.10706287412303e-05,3.777132918839694e-05,4.1963345219212745e-05,4.801917501172265e-05,2.1140861688406828e-06,1.1587006708208661e-05,4.107062874123031e-05,3.777132918839694e-05,4.196334521921274e-05,4.801917501172265e-05,2.1140861688406828e-06,1.1587006708208654e-05,4.107062874123029e-05 +1318,"Hydrocarbons, aromatic","('water', 'surface water')",emission,kilogram,biosphere3,7.159780586474428e-05,7.951274806669063e-05,9.09454686736561e-05,1.509143414735206e-06,2.0790222971736753e-05,7.813681286441945e-05,7.159780586474428e-05,7.951274806669063e-05,9.09454686736561e-05,3.5551427090854104e-06,2.0790222971736753e-05,7.813681286441945e-05,7.159780586474429e-05,7.951274806669063e-05,9.094546867365607e-05,3.5551427090854104e-06,2.079022297173674e-05,7.81368128644194e-05 +1319,"Hydrocarbons, unspecified","('water', 'ocean')",emission,kilogram,biosphere3,1.57687449564688e-05,1.7408391524450413e-05,1.9766482295163794e-05,5.24246546764488e-06,1.522588954742613e-05,1.7441284409653646e-05,1.57687449564688e-05,1.7408391524450413e-05,1.9766482295163794e-05,5.8331048538997445e-06,1.522588954742613e-05,1.7441284409653646e-05,1.57687449564688e-05,1.7408391524450413e-05,1.9766482295163794e-05,5.8331048538997445e-06,1.522588954742613e-05,1.744128440965364e-05 +1320,"Hydrocarbons, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,1.9675808952709e-06,4.763835294746236e-06,8.256391591006536e-06,1.5976619587178846e-07,1.26411633670716e-06,4.8641908553570755e-06,1.9675808952709e-06,4.763835294746236e-06,8.256391591006536e-06,3.2762925195721527e-07,1.26411633670716e-06,4.864190855357077e-06,1.967580895270898e-06,4.76383529474624e-06,8.256391591006536e-06,3.2762925195721527e-07,1.2641163367071601e-06,4.8641908553570755e-06 +1321,"Hydrocarbons, unspecified","('water',)",emission,kilogram,biosphere3,2.6069020894944257e-07,2.7791369094339514e-07,3.021394084763902e-07,1.453636788242295e-08,9.876485072717173e-08,3.1481300643485687e-07,2.6069020894944257e-07,2.7791369094339514e-07,3.021394084763902e-07,2.9253883059694393e-08,9.876485072717173e-08,3.14813006434857e-07,2.6069020894944257e-07,2.7791369094339504e-07,3.021394084763902e-07,2.9253883059694393e-08,9.876485072717179e-08,3.148130064348569e-07 +1322,Hydrogen peroxide,"('water', 'surface water')",emission,kilogram,biosphere3,9.418607235538177e-08,9.878851790235187e-08,1.0501885313481746e-07,9.443729771991211e-10,3.388552775101216e-08,9.634230804568613e-08,9.418607235538177e-08,9.878851790235187e-08,1.0501885313481746e-07,3.994171374806534e-09,3.388552775101216e-08,9.634230804568615e-08,9.418607235538176e-08,9.878851790235186e-08,1.0501885313481746e-07,3.994171374806534e-09,3.388552775101215e-08,9.63423080456861e-08 +1323,Hydrogen sulfide,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,4.80030167828729e-06,5.061628093725631e-06,5.4227948696364655e-06,1.2655445416268553e-06,4.2373536858106435e-06,7.695291539342597e-06,4.80030167828729e-06,5.061628093725631e-06,5.4227948696364655e-06,1.4005608509192597e-06,4.2373536858106435e-06,7.695291539342597e-06,4.800301678287289e-06,5.06162809372563e-06,5.4227948696364655e-06,1.4005608509192597e-06,4.2373536858106435e-06,7.695291539342596e-06 +1324,Hydrogen sulfide,"('water', 'surface water')",emission,kilogram,biosphere3,1.0843960976521925e-07,1.1459490758453603e-07,1.231759702675641e-07,2.035163155149494e-08,8.273382019326114e-08,1.4422329254553814e-07,1.0843960976521925e-07,1.1459490758453603e-07,1.231759702675641e-07,2.7051975167214685e-08,8.273382019326114e-08,1.4422329254553817e-07,1.0843960976521925e-07,1.1459490758453602e-07,1.231759702675641e-07,2.7051975167214685e-08,8.273382019326114e-08,1.4422329254553812e-07 +1325,"Hydrogen-3, Tritium","('water', 'ocean')",emission,kilo Becquerel,biosphere3,23.042451049232383,24.04692401491004,25.41893107973942,17.780526002604812,47.41762328918205,27.72141867165496,23.042451049232383,24.04692401491004,25.41893107973942,20.26200305081534,47.41762328918205,27.72141867165497,23.042451049232383,24.04692401491004,25.41893107973942,20.26200305081534,47.41762328918206,27.721418671654984 +1326,"Hydrogen-3, Tritium","('water', 'surface water')",emission,kilo Becquerel,biosphere3,2.4676097667341836,2.575299611724313,2.7224016810282405,2.0719908450476967,5.440296874981254,2.941957943472682,2.4676097667341836,2.575299611724313,2.7224016810282405,2.339321023795614,5.440296874981254,2.941957943472684,2.4676097667341836,2.575299611724313,2.7224016810282405,2.339321023795614,5.4402968749812555,2.941957943472685 +1327,Hydroxide,"('water', 'surface water')",emission,kilogram,biosphere3,2.9162650073889266e-07,3.035884265509748e-07,3.1957876435481874e-07,8.690804409823524e-10,9.911260785119782e-08,2.8478764152704917e-07,2.9162650073889266e-07,3.035884265509748e-07,3.1957876435481874e-07,3.753928354481807e-09,9.911260785119782e-08,2.8478764152704917e-07,2.9162650073889266e-07,3.035884265509748e-07,3.1957876435481874e-07,3.753928354481807e-09,9.911260785119778e-08,2.8478764152704906e-07 +1328,Hypochlorite,"('water', 'ocean')",emission,kilogram,biosphere3,7.924599229489438e-07,8.259512400219054e-07,8.71667459497845e-07,2.991554288567209e-07,9.196897939436244e-07,2.354680777123998e-06,7.924599229489438e-07,8.259512400219054e-07,8.71667459497845e-07,3.7225591340246805e-07,9.196897939436244e-07,2.3546807771239986e-06,7.924599229489438e-07,8.259512400219054e-07,8.71667459497845e-07,3.7225591340246805e-07,9.196897939436244e-07,2.3546807771239986e-06 +1329,Hypochlorite,"('water', 'surface water')",emission,kilogram,biosphere3,7.494208013547373e-07,7.811239488214084e-07,8.243978937912601e-07,2.7047276546223587e-07,8.453959948655354e-07,2.1490480358553194e-06,7.494208013547373e-07,7.811239488214084e-07,8.243978937912601e-07,3.400164283257861e-07,8.453959948655354e-07,2.1490480358553203e-06,7.494208013547373e-07,7.811239488214084e-07,8.243978937912601e-07,3.400164283257861e-07,8.453959948655353e-07,2.14904803585532e-06 +1330,Iodide,"('water', 'ground-')",emission,kilogram,biosphere3,7.192719791464607e-08,7.506514114956709e-08,7.935126700845529e-08,3.0525348058116493e-09,3.5309316362475074e-08,8.214715888033755e-08,7.192719791464607e-08,7.506514114956709e-08,7.935126700845529e-08,1.0573157470809493e-08,3.5309316362475074e-08,8.214715888033755e-08,7.192719791464607e-08,7.506514114956709e-08,7.935126700845529e-08,1.0573157470809493e-08,3.530931636247507e-08,8.214715888033753e-08 +1331,Iodide,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.1101480963402884e-11,1.1592836862712244e-11,1.225877850205508e-11,1.572527851663904e-12,6.250965446663686e-12,1.1376812294208898e-11,1.1101480963402884e-11,1.1592836862712244e-11,1.225877850205508e-11,1.7780980134365112e-12,6.250965446663686e-12,1.1376812294208898e-11,1.1101480963402883e-11,1.1592836862712242e-11,1.2258778502055076e-11,1.7780980134365112e-12,6.250965446663684e-12,1.1376812294208894e-11 +1332,Iodide,"('water', 'ocean')",emission,kilogram,biosphere3,6.809540325302746e-06,7.568861313531834e-06,8.666063043939525e-06,1.1391463861841559e-07,1.9417034261633866e-06,7.403835355819117e-06,6.809540325302746e-06,7.568861313531834e-06,8.666063043939525e-06,3.115781200406213e-07,1.9417034261633866e-06,7.403835355819119e-06,6.809540325302746e-06,7.568861313531833e-06,8.666063043939525e-06,3.115781200406213e-07,1.941703426163386e-06,7.4038353558191145e-06 +1333,Iodide,"('water', 'surface water')",emission,kilogram,biosphere3,1.8064688542030624e-05,1.9583810349000642e-05,2.1777101235364413e-05,3.312459328889057e-07,6.117587088250857e-06,2.1441827567869325e-05,1.8064688542030624e-05,1.9583810349000642e-05,2.1777101235364413e-05,7.31471801043521e-07,6.117587088250857e-06,2.1441827567869325e-05,1.8064688542030627e-05,1.9583810349000642e-05,2.1777101235364413e-05,7.31471801043521e-07,6.117587088250853e-06,2.1441827567869315e-05 +1334,Iodine-131,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,3.0351629627571033e-06,3.1674303144823014e-06,3.3480908620980693e-06,2.8351546724663826e-06,7.284692038966253e-06,3.6792045911171892e-06,3.0351629627571033e-06,3.1674303144823014e-06,3.3480908620980693e-06,3.1870555407393454e-06,7.284692038966253e-06,3.6792045911171956e-06,3.0351629627571033e-06,3.1674303144823014e-06,3.3480908620980693e-06,3.1870555407393454e-06,7.284692038966259e-06,3.679204591117201e-06 +1335,Iodine-133,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.2526481151754127e-07,1.3059036456942886e-07,1.3785311272163127e-07,9.396435809231139e-09,6.321148150312237e-08,1.549284932320724e-07,1.2526481151754127e-07,1.3059036456942886e-07,1.3785311272163127e-07,2.8599760057471395e-08,6.321148150312237e-08,1.549284932320736e-07,1.252648115175413e-07,1.3059036456942886e-07,1.3785311272163125e-07,2.8599760057471395e-08,6.321148150312351e-08,1.5492849323207468e-07 +1336,"Iron, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.00927872901805334,0.009690929124769643,0.010251411063208137,0.004363467645840151,0.028164096305081945,0.033126656590784544,0.00927872901805334,0.009690929124769643,0.010251411063208137,0.022453427695305145,0.028164096305081945,0.033126656590784544,0.00927872901805334,0.009690929124769642,0.010251411063208137,0.022453427695305145,0.02816409630508195,0.03312665659078454 +1337,"Iron, ion","('water', 'ocean')",emission,kilogram,biosphere3,3.764440261991202e-06,4.175562264738532e-06,4.769112551292661e-06,6.843552954989445e-08,1.0851389926599306e-06,4.080444960883691e-06,3.764440261991202e-06,4.175562264738532e-06,4.769112551292661e-06,1.7582623461026601e-07,1.0851389926599306e-06,4.080444960883692e-06,3.764440261991202e-06,4.175562264738531e-06,4.769112551292661e-06,1.7582623461026601e-07,1.0851389926599301e-06,4.08044496088369e-06 +1338,"Iron, ion","('water', 'surface water')",emission,kilogram,biosphere3,5.704035890864023e-05,6.029905882658577e-05,6.484543398638377e-05,6.26644562811813e-06,3.507329319343878e-05,6.66700640239478e-05,5.704035890864023e-05,6.029905882658577e-05,6.484543398638377e-05,1.3614790111203698e-05,3.507329319343878e-05,6.66700640239478e-05,5.7040358908640136e-05,6.029905882658571e-05,6.484543398638377e-05,1.3614790111203698e-05,3.5073293193438774e-05,6.667006402394771e-05 +1339,"Iron, ion","('water',)",emission,kilogram,biosphere3,6.583985614057237e-05,6.922519830650134e-05,7.388094910165556e-05,8.605993054989645e-07,6.1738395589294795e-06,6.573979957938571e-05,6.583985614057237e-05,6.922519830650134e-05,7.388094910165556e-05,1.8315794331242498e-06,6.1738395589294795e-06,6.573979957938571e-05,6.583985614057234e-05,6.922519830650134e-05,7.388094910165556e-05,1.8315794331242498e-06,6.173839558929483e-06,6.57397995793857e-05 +1340,Iron-59,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,3.443797426857254e-08,3.5902082639218766e-08,3.7898767351684244e-08,2.583281070540247e-09,1.7378187493253178e-08,4.259315448192781e-08,3.443797426857254e-08,3.5902082639218766e-08,3.7898767351684244e-08,7.862685414498092e-09,1.7378187493253178e-08,4.2593154481928136e-08,3.443797426857255e-08,3.5902082639218766e-08,3.789876735168424e-08,7.862685414498092e-09,1.7378187493253492e-08,4.2593154481928434e-08 +1341,Isopropylamine,"('water', 'surface water')",emission,kilogram,biosphere3,3.6512236764431367e-11,3.817618689649374e-11,4.0436832744078796e-11,9.143946283694708e-14,6.2791035173448645e-12,4.168296590550354e-11,3.6512236764431367e-11,3.817618689649374e-11,4.0436832744078796e-11,4.1290172354131624e-13,6.2791035173448645e-12,4.168296590550351e-11,3.651223676443136e-11,3.817618689649375e-11,4.0436832744078796e-11,4.1290172354131624e-13,6.2791035173448645e-12,4.16829659055035e-11 +1342,Lactic acid,"('water', 'surface water')",emission,kilogram,biosphere3,7.280249679807704e-10,7.60005936646335e-10,8.033148985084881e-10,6.220170604089066e-13,5.384308870534418e-12,6.866903400866456e-10,7.280249679807704e-10,7.60005936646335e-10,8.033148985084881e-10,3.4339213425628025e-12,5.384308870534418e-12,6.866903400866456e-10,7.280249679807726e-10,7.60005936646336e-10,8.033148985084881e-10,3.4339213425628025e-12,5.384308870534434e-12,6.866903400866439e-10 +1343,Lanthanum-140,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,2.1252325148164738e-07,2.2155854108255578e-07,2.3388045999045153e-07,1.5941915790871974e-08,1.0724408039753195e-07,2.628504102001817e-07,2.1252325148164738e-07,2.2155854108255578e-07,2.3388045999045153e-07,4.852211787892041e-08,1.0724408039753195e-07,2.628504102001836e-07,2.125232514816474e-07,2.2155854108255578e-07,2.338804599904515e-07,4.852211787892041e-08,1.0724408039753389e-07,2.628504102001855e-07 +1344,Lead,"('water', 'ground-')",emission,kilogram,biosphere3,1.7017209954847893e-08,1.7777105203693945e-08,1.880637824847074e-08,7.942348993311669e-09,7.500618581026649e-08,8.397339329898592e-08,1.7017209954847893e-08,1.7777105203693945e-08,1.880637824847074e-08,6.580624764297422e-08,7.500618581026649e-08,8.397339329898592e-08,1.7017209954847887e-08,1.777710520369395e-08,1.880637824847074e-08,6.580624764297422e-08,7.500618581026649e-08,8.397339329898589e-08 +1345,Lead,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.582851530311031e-05,1.6616990926721183e-05,1.7685595513446102e-05,6.644940646465012e-06,5.099165047515113e-05,5.693504793073101e-05,1.582851530311031e-05,1.6616990926721183e-05,1.7685595513446102e-05,4.174201932361781e-05,5.099165047515113e-05,5.693504793073101e-05,1.5828515303110307e-05,1.6616990926721183e-05,1.7685595513446102e-05,4.174201932361781e-05,5.099165047515113e-05,5.6935047930731e-05 +1346,Lead,"('water', 'ocean')",emission,kilogram,biosphere3,5.789902447422447e-07,6.388866321071858e-07,7.250437173887707e-07,3.1278566579476077e-08,2.0683072544308737e-07,6.26084245311612e-07,5.789902447422447e-07,6.388866321071858e-07,7.250437173887707e-07,4.767525782387205e-08,2.0683072544308737e-07,6.26084245311612e-07,5.789902447422446e-07,6.388866321071857e-07,7.250437173887707e-07,4.767525782387205e-08,2.0683072544308732e-07,6.260842453116116e-07 +1347,Lead,"('water', 'surface water')",emission,kilogram,biosphere3,7.83705669685313e-06,8.138298647480981e-06,8.547891626278187e-06,4.384157066821798e-07,5.387220759563707e-06,7.664586585174705e-06,7.83705669685313e-06,8.138298647480981e-06,8.547891626278187e-06,5.607748594771525e-07,5.387220759563707e-06,7.664586585174705e-06,7.83705669685313e-06,8.138298647480983e-06,8.54789162627819e-06,5.607748594771525e-07,5.387220759563704e-06,7.664586585174698e-06 +1348,Lead,"('water',)",emission,kilogram,biosphere3,3.2682413163822573e-06,3.408252857403751e-06,3.5974767721158706e-06,3.6986885858885198e-09,1.0842130509192378e-07,3.1713305519102512e-06,3.2682413163822573e-06,3.408252857403751e-06,3.5974767721158706e-06,8.602666114751278e-09,1.0842130509192381e-07,3.1713305519102512e-06,3.2682413163822565e-06,3.4082528574037506e-06,3.5974767721158714e-06,8.602666114751278e-09,1.0842130509192378e-07,3.1713305519102504e-06 +1349,Lead-210,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,1.880685012705559e-07,2.0187527451626612e-07,2.213574905544617e-07,1.2618060248172306e-07,3.7614258375687056e-07,5.070500347192473e-07,1.880685012705559e-07,2.0187527451626612e-07,2.213574905544617e-07,3.2227942568134015e-07,3.7614258375687056e-07,5.070500347192473e-07,1.880685012705559e-07,2.0187527451626612e-07,2.213574905544617e-07,3.2227942568134015e-07,3.7614258375687056e-07,5.070500347192473e-07 +1350,Lead-210,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.0008442681046586492,0.0008870533574580798,0.0009458171023385779,0.00014837283779957111,0.00044305961861922945,0.0011797282203013643,0.0008442681046586492,0.0008870533574580798,0.0009458171023385779,0.0003790055342235996,0.00044305961861922945,0.0011797282203013643,0.0008442681046586507,0.0008870533574580806,0.0009458171023385779,0.0003790055342235996,0.00044305961861922945,0.0011797282203013628 +1351,Lead-210,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00013716682246032915,0.00014323722923694962,0.0001515368577469612,0.00031376406154153344,0.0007308878409116626,0.0001738419254630553,0.00013716682246032915,0.00014323722923694962,0.0001515368577469612,0.00032838685956144227,0.0007308878409116626,0.0001738419254630553,0.00013716682246032915,0.00014323722923694962,0.0001515368577469612,0.00032838685956144227,0.0007308878409116626,0.0001738419254630553 +1352,Lead-210,"('water',)",emission,kilo Becquerel,biosphere3,9.527152670380044e-08,9.983331323606302e-08,1.0602211807092449e-07,2.1821271168503913e-09,3.874431984035769e-08,1.0139605384629457e-07,9.527152670380044e-08,9.983331323606302e-08,1.0602211807092449e-07,7.1814211308846735e-09,3.874431984035769e-08,1.0139605384629458e-07,9.527152670379529e-08,9.983331323606377e-08,1.060221180709245e-07,7.1814211308846735e-09,3.874431984035767e-08,1.0139605384629306e-07 +1353,"Lithium, ion","('water', 'surface water')",emission,kilogram,biosphere3,8.184398714695819e-10,8.990681219776056e-10,1.013662950510276e-09,2.434782616458996e-11,2.0246871927299632e-10,9.934581046054106e-10,8.184398714695819e-10,8.990681219776056e-10,1.013662950510276e-09,1.4628653309912183e-10,2.024687192729963e-10,9.934581046054104e-10,8.184398714695816e-10,8.990681219776058e-10,1.013662950510276e-09,1.4628653309912183e-10,2.0246871927299635e-10,9.9345810460541e-10 +1354,"Lithium, ion","('water',)",emission,kilogram,biosphere3,3.5389530749604434e-07,3.7084050509265453e-07,3.938294196446291e-07,8.105721931432262e-09,1.4391952431603474e-07,3.766454550692803e-07,3.5389530749604434e-07,3.7084050509265453e-07,3.938294196446291e-07,2.667608231984576e-08,1.4391952431603474e-07,3.7664545506928036e-07,3.5389530749602523e-07,3.7084050509265734e-07,3.9382941964462917e-07,2.667608231984576e-08,1.439195243160347e-07,3.766454550692747e-07 +1355,Magnesium,"('water', 'ground-')",emission,kilogram,biosphere3,0.00030683002836486245,0.00032026513266177406,0.0003385744364687297,0.00013649747069563456,0.0006492374355064714,0.0008169242402559175,0.00030683002836486245,0.00032026513266177406,0.0003385744364687297,0.00042475477740578385,0.0006492374355064714,0.0008169242402559175,0.00030683002836486245,0.00032026513266177406,0.00033857443646872966,0.00042475477740578385,0.0006492374355064714,0.0008169242402559173 +1356,Magnesium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.03428340657218199,0.035787973316186494,0.037835859622382055,0.013321174053110436,0.08337239500737674,0.10338950091590537,0.03428340657218199,0.035787973316186494,0.037835859622382055,0.06189611192099911,0.08337239500737674,0.10338950091590537,0.034283406572181985,0.035787973316186494,0.037835859622382055,0.06189611192099911,0.08337239500737674,0.10338950091590536 +1357,Magnesium,"('water', 'ocean')",emission,kilogram,biosphere3,0.0003812908957538159,0.0004233873394952565,0.0004841911692530469,6.2909161115600555e-06,0.0001084680255536632,0.00041383836276530795,0.0003812908957538159,0.0004233873394952565,0.0004841911692530469,1.7182380006513834e-05,0.0001084680255536632,0.000413838362765308,0.0003812908957538159,0.0004233873394952564,0.0004841911692530469,1.7182380006513834e-05,0.00010846802555366315,0.0004138383627653078 +1358,Magnesium,"('water', 'surface water')",emission,kilogram,biosphere3,0.001795050292635897,0.0018770427288396217,0.0019951536311022203,8.491232528988082e-05,0.001796191569596899,0.0017662230192774758,0.001795050292635897,0.0018770427288396217,0.0019951536311022203,0.00010907240928371068,0.001796191569596899,0.0017662230192774758,0.0017950502926358971,0.0018770427288396217,0.0019951536311022203,0.00010907240928371068,0.0017961915695968987,0.001766223019277475 +1359,Magnesium,"('water',)",emission,kilogram,biosphere3,2.065254232373783e-07,2.1641426333673543e-07,2.2983008211284125e-07,4.730319042472246e-09,8.398823124081431e-08,2.198019033915425e-07,2.065254232373783e-07,2.1641426333673543e-07,2.2983008211284125e-07,1.5567568382368975e-08,8.398823124081431e-08,2.1980190339154253e-07,2.0652542323736714e-07,2.1641426333673707e-07,2.2983008211284127e-07,1.5567568382368975e-08,8.398823124081427e-08,2.1980190339153925e-07 +1360,Manganese,"('water', 'ground-')",emission,kilogram,biosphere3,1.5017608110983937e-05,1.567072342772851e-05,1.656126014420338e-05,7.514065394303572e-06,2.972319711251289e-05,4.1139547385030525e-05,1.5017608110983937e-05,1.567072342772851e-05,1.656126014420338e-05,1.7504158307880518e-05,2.972319711251289e-05,4.1139547385030525e-05,1.5017608110983934e-05,1.567072342772851e-05,1.6561260144203376e-05,1.7504158307880518e-05,2.972319711251289e-05,4.1139547385030525e-05 +1361,Manganese,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.003058908032716506,0.003193906316474983,0.0033775134182477146,0.0012525448070484213,0.008585496365455114,0.010183132299810983,0.003058908032716506,0.003193906316474983,0.0033775134182477146,0.006686982144612304,0.008585496365455114,0.010183132299810983,0.0030589080327165052,0.003193906316474983,0.0033775134182477146,0.006686982144612304,0.008585496365455114,0.010183132299810983 +1362,Manganese,"('water', 'ocean')",emission,kilogram,biosphere3,3.062481421360233e-06,3.399887226485531e-06,3.887191418040018e-06,5.2403372044281376e-08,8.740319966917536e-07,3.327567775606839e-06,3.062481421360233e-06,3.399887226485531e-06,3.887191418040018e-06,1.4276285784254296e-07,8.740319966917536e-07,3.3275677756068396e-06,3.062481421360233e-06,3.39988722648553e-06,3.887191418040017e-06,1.4276285784254296e-07,8.740319966917533e-07,3.3275677756068375e-06 +1363,Manganese,"('water', 'surface water')",emission,kilogram,biosphere3,5.587960977884647e-05,5.6598826407566635e-05,5.763079804764467e-05,1.3954005939764161e-06,7.393592077898843e-05,5.237731255671646e-05,5.587960977884647e-05,5.6598826407566635e-05,5.763079804764467e-05,2.0738920060328646e-06,7.393592077898843e-05,5.237731255671646e-05,5.587960977884647e-05,5.6598826407566635e-05,5.763079804764467e-05,2.0738920060328646e-06,7.393592077898842e-05,5.237731255671644e-05 +1364,Manganese,"('water',)",emission,kilogram,biosphere3,8.470557401505927e-08,9.029628577356476e-08,9.815927726101738e-08,4.716409751205365e-09,3.208461986315072e-08,1.0224768214577137e-07,8.470557401505927e-08,9.029628577356476e-08,9.815927726101738e-08,9.483961734077519e-09,3.208461986315072e-08,1.0224768214577142e-07,8.470557401505925e-08,9.029628577356473e-08,9.815927726101738e-08,9.483961734077519e-09,3.208461986315074e-08,1.0224768214577142e-07 +1365,Manganese-54,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,8.908541385609166e-06,9.295199065167607e-06,9.823200559633902e-06,8.244585867816186e-06,2.111076351135647e-05,1.0968348638580024e-05,8.908541385609166e-06,9.295199065167607e-06,9.823200559633902e-06,9.369206052908105e-06,2.111076351135647e-05,1.096834863858006e-05,8.908541385609166e-06,9.295199065167607e-06,9.823200559633902e-06,9.369206052908105e-06,2.1110763511356504e-05,1.0968348638580091e-05 +1366,Mercury,"('water', 'ground-')",emission,kilogram,biosphere3,1.4380789317256398e-09,1.500629542856092e-09,1.5859994275489671e-09,6.764360259842824e-10,2.1508915491066456e-09,3.021387812161459e-09,1.4380789317256398e-09,1.500629542856092e-09,1.5859994275489671e-09,9.826964545159045e-10,2.1508915491066456e-09,3.021387812161459e-09,1.4380789317256398e-09,1.5006295428560922e-09,1.5859994275489671e-09,9.826964545159045e-10,2.1508915491066456e-09,3.021387812161459e-09 +1367,Mercury,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,6.835557277995907e-07,7.146709619106965e-07,7.571117882008219e-07,2.474157003324169e-07,8.884210605386051e-07,1.260768160198855e-06,6.835557277995907e-07,7.146709619106965e-07,7.571117882008219e-07,4.1487184587859464e-07,8.884210605386051e-07,1.260768160198855e-06,6.835557277995907e-07,7.146709619106965e-07,7.571117882008219e-07,4.1487184587859464e-07,8.88421060538605e-07,1.260768160198855e-06 +1368,Mercury,"('water', 'ocean')",emission,kilogram,biosphere3,1.630916109172751e-09,1.8011530389693839e-09,2.0459972882622688e-09,4.897103005143308e-10,1.459836123896406e-09,1.7981498595958437e-09,1.630916109172751e-09,1.8011530389693839e-09,2.0459972882622688e-09,5.484698013879421e-10,1.459836123896406e-09,1.7981498595958437e-09,1.6309161091727506e-09,1.8011530389693839e-09,2.0459972882622688e-09,5.484698013879421e-10,1.4598361238964058e-09,1.7981498595958425e-09 +1369,Mercury,"('water', 'surface water')",emission,kilogram,biosphere3,9.160715663643477e-08,9.41643580327737e-08,9.75934467561221e-08,2.5036146012909973e-09,3.7600254313780736e-08,8.759381939410069e-08,9.160715663643477e-08,9.41643580327737e-08,9.75934467561221e-08,3.6100056019811483e-09,3.7600254313780736e-08,8.75938193941007e-08,9.160715663643477e-08,9.416435803277365e-08,9.75934467561221e-08,3.6100056019811483e-09,3.760025431378071e-08,8.759381939410065e-08 +1370,Mercury,"('water',)",emission,kilogram,biosphere3,1.6464644671602269e-07,1.7174857954790333e-07,1.8135415560733734e-07,2.7802098618625003e-10,5.816093658222342e-09,1.6013319511601245e-07,1.6464644671602269e-07,1.7174857954790333e-07,1.8135415560733734e-07,5.548280543604415e-10,5.816093658222342e-09,1.6013319511601245e-07,1.6464644671602266e-07,1.7174857954790333e-07,1.813541556073374e-07,5.548280543604415e-10,5.816093658222341e-09,1.601331951160124e-07 +1371,"Methane, dichloro-, HCC-30","('water', 'surface water')",emission,kilogram,biosphere3,2.4674507475206083e-06,2.7380769091555225e-06,3.1284795993490953e-06,4.5682120190554637e-08,7.099005629085358e-07,2.690927902116243e-06,2.4674507475206083e-06,2.7380769091555225e-06,3.1284795993490953e-06,1.2284696273048083e-07,7.099005629085358e-07,2.690927902116243e-06,2.4674507475206083e-06,2.7380769091555217e-06,3.1284795993490953e-06,1.2284696273048083e-07,7.099005629085356e-07,2.690927902116242e-06 +1372,Methanol,"('water', 'ocean')",emission,kilogram,biosphere3,4.5176209190063884e-07,4.763001946335388e-07,5.090252119843425e-07,1.3261680508383327e-08,1.3969839450730985e-07,5.028524738028941e-07,4.5176209190063884e-07,4.763001946335388e-07,5.090252119843425e-07,6.035088128902311e-08,1.3969839450730985e-07,5.028524738028941e-07,4.517620919006386e-07,4.7630019463353883e-07,5.090252119843425e-07,6.035088128902311e-08,1.3969839450730983e-07,5.02852473802894e-07 +1373,Methanol,"('water', 'surface water')",emission,kilogram,biosphere3,2.1720315749069797e-07,2.262094001633855e-07,2.382789579515498e-07,7.788258895388289e-10,5.6396493568484e-08,2.100204861986778e-07,2.1720315749069797e-07,2.262094001633855e-07,2.382789579515498e-07,2.402935409011571e-09,5.639649356848401e-08,2.1002048619867773e-07,2.1720315749069805e-07,2.2620940016338551e-07,2.3827895795154987e-07,2.402935409011571e-09,5.6396493568484004e-08,2.1002048619867757e-07 +1374,Methanol,"('water',)",emission,kilogram,biosphere3,8.467338889568948e-08,3.4897052759135964e-07,6.78467612826604e-07,2.7806744018249087e-09,6.133547235259056e-08,3.402502101419678e-07,8.467338889568948e-08,3.4897052759135964e-07,6.78467612826604e-07,1.18930827901411e-08,6.133547235259056e-08,3.402502101419678e-07,8.467338889568784e-08,3.4897052759136536e-07,6.78467612826604e-07,1.18930827901411e-08,6.133547235259167e-08,3.402502101419811e-07 +1375,Methyl acetate,"('water', 'surface water')",emission,kilogram,biosphere3,1.1702042279718598e-11,1.219905937468772e-11,1.2870083376641497e-11,6.511643064406673e-15,3.213266236320851e-14,1.097347057831679e-11,1.1702042279718598e-11,1.219905937468772e-11,1.2870083376641497e-11,1.1516391910351569e-14,3.213266236320823e-14,1.0973470578316785e-11,1.1702042279718591e-11,1.2199059374687723e-11,1.2870083376641497e-11,1.1516391910351569e-14,3.213266236320908e-14,1.0973470578316782e-11 +1376,Methyl acrylate,"('water', 'surface water')",emission,kilogram,biosphere3,8.653056879778174e-08,9.007790169444751e-08,9.481912785103e-08,2.369155749796159e-10,2.9334139236373095e-08,8.441231014967062e-08,8.653056879778174e-08,9.007790169444751e-08,9.481912785103e-08,1.042501228349926e-09,2.93341392363731e-08,8.44123101496706e-08,8.653056879778174e-08,9.007790169444751e-08,9.481912785103e-08,1.042501228349926e-09,2.9334139236373095e-08,8.441231014967054e-08 +1377,Methyl amine,"('water', 'surface water')",emission,kilogram,biosphere3,6.188300234496475e-10,6.451160716190524e-10,6.805969334879068e-10,1.6264265509728728e-13,7.734599613907398e-12,5.803353862242906e-10,6.188300234496475e-10,6.451160716190524e-10,6.805969334879068e-10,4.711678669471481e-13,7.734599613907397e-12,5.803353862242906e-10,6.18830023449649e-10,6.45116071619053e-10,6.80596933487907e-10,4.71167866947148e-13,7.734599613907413e-12,5.803353862242893e-10 +1378,Methyl formate,"('water', 'surface water')",emission,kilogram,biosphere3,8.7458505903797e-12,9.212934198595008e-12,9.852968390272249e-12,7.490148888783832e-14,2.791903294911826e-12,8.981428280042891e-12,8.7458505903797e-12,9.212934198595008e-12,9.852968390272249e-12,4.198762748567465e-13,2.791903294903973e-12,8.981428279938174e-12,8.745850590379703e-12,9.21293419855315e-12,9.852968390439777e-12,4.198762748567465e-13,2.791903294932777e-12,8.981428280063806e-12 +1379,Methyl pentane,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1380,Molybdenum,"('water', 'ground-')",emission,kilogram,biosphere3,1.9609021212991086e-06,2.0466359641776195e-06,2.163579152717138e-06,2.0658696973445204e-07,2.1330149913319814e-06,3.3616420618699593e-06,1.9609021212991086e-06,2.0466359641776195e-06,2.163579152717138e-06,1.4033024775338393e-06,2.1330149913319814e-06,3.3616420618699593e-06,1.9609021212991086e-06,2.0466359641776195e-06,2.163579152717138e-06,1.4033024775338393e-06,2.133014991331981e-06,3.361642061869958e-06 +1381,Molybdenum,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,2.0459094315359845e-05,2.1363956897257014e-05,2.259342786525244e-05,9.254951971634073e-06,6.651717169827288e-05,7.665535217572611e-05,2.0459094315359845e-05,2.1363956897257014e-05,2.259342786525244e-05,5.3477859522117546e-05,6.651717169827288e-05,7.665535217572611e-05,2.0459094315359845e-05,2.1363956897257014e-05,2.2593427865252436e-05,5.3477859522117546e-05,6.65171716982729e-05,7.66553521757261e-05 +1382,Molybdenum,"('water', 'ocean')",emission,kilogram,biosphere3,1.6362457947470995e-08,1.801833171275421e-08,2.040117633482022e-08,2.3860698269985766e-10,4.5634651274391305e-09,1.749806561266241e-08,1.6362457947470995e-08,1.801833171275421e-08,2.040117633482022e-08,6.428265789834568e-10,4.5634651274391305e-09,1.749806561266241e-08,1.6362457947470995e-08,1.8018331712754206e-08,2.0401176334820218e-08,6.428265789834568e-10,4.563465127439129e-09,1.74980656126624e-08 +1383,Molybdenum,"('water', 'surface water')",emission,kilogram,biosphere3,1.574206008258376e-06,1.6308611390868703e-06,1.7074366895039975e-06,5.995535470279608e-07,1.6166706975534285e-06,9.355167686328193e-06,1.574206008258376e-06,1.6308611390868703e-06,1.7074366895039975e-06,6.79731400178455e-07,1.6166706975534285e-06,9.355167686328193e-06,1.574206008258376e-06,1.6308611390868703e-06,1.7074366895039975e-06,6.79731400178455e-07,1.616670697553428e-06,9.355167686328193e-06 +1384,Molybdenum,"('water',)",emission,kilogram,biosphere3,7.565680087522863e-12,7.927939607434029e-12,8.419403522371405e-12,1.732865640606732e-13,3.0767548142477585e-12,8.05203959271432e-12,7.565680087522863e-12,7.927939607434029e-12,8.419403522371405e-12,5.702893211551296e-13,3.0767548142477585e-12,8.052039592714321e-12,7.565680087522454e-12,7.927939607434089e-12,8.419403522371405e-12,5.702893211551296e-13,3.076754814247757e-12,8.0520395927142e-12 +1385,Molybdenum-99,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,7.327345499266568e-08,7.638862889628971e-08,8.063696203504606e-08,5.496430378443627e-09,3.697545691439403e-08,9.062517905743314e-08,7.327345499266568e-08,7.638862889628971e-08,8.063696203504606e-08,1.6729384758701877e-08,3.697545691439403e-08,9.062517905743382e-08,7.32734549926657e-08,7.638862889628971e-08,8.063696203504604e-08,1.6729384758701877e-08,3.697545691439469e-08,9.062517905743447e-08 +1386,Monochloroethane,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1387,m-Xylene,"('water', 'surface water')",emission,kilogram,biosphere3,4.1534501853064675e-11,4.589195828544536e-11,5.209942954148455e-11,1.3740519449132986e-12,1.143470947569939e-11,5.1725539383335395e-11,4.1534501853064675e-11,4.589195828544536e-11,5.209942954148455e-11,8.266619494048555e-12,1.1434709475699386e-11,5.1725539383335376e-11,4.153450185306466e-11,4.589195828544537e-11,5.209942954148455e-11,8.266619494048555e-12,1.143470947569939e-11,5.1725539383335357e-11 +1388,m-Xylene,"('water',)",emission,kilogram,biosphere3,9.973413826860624e-12,1.0450960334308163e-11,1.1098829784780961e-11,2.28434001647541e-13,4.0559141413917925e-12,1.0614554405500984e-11,9.973413826860624e-12,1.0450960334308163e-11,1.1098829784780961e-11,7.517805680358148e-13,4.0559141413917925e-12,1.0614554405500984e-11,9.973413826860085e-12,1.0450960334308242e-11,1.1098829784780963e-11,7.517805680358148e-13,4.055914141391791e-12,1.0614554405500825e-11 +1389,"Nickel, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.00027310890045289247,0.0002854166829737681,0.000302211137770349,0.0013735481492948695,0.002041160963314242,0.0022239525206846225,0.00027310890045289247,0.0002854166829737681,0.000302211137770349,0.0018753270857336302,0.002041160963314242,0.0022239525206846225,0.00027310890045289247,0.0002854166829737679,0.00030221113777034893,0.0018753270857336302,0.002041160963314242,0.0022239525206846225 +1390,"Nickel, ion","('water', 'ocean')",emission,kilogram,biosphere3,6.535350438804969e-08,7.016797181840183e-08,7.696799992609651e-08,3.5834516060373483e-09,2.436449213302696e-08,7.239867806153614e-08,6.535350438804969e-08,7.016797181840183e-08,7.696799992609651e-08,8.098304505226369e-09,2.436449213302696e-08,7.239867806153614e-08,6.535350438804963e-08,7.016797181840184e-08,7.696799992609651e-08,8.098304505226369e-09,2.436449213302696e-08,7.239867806153588e-08 +1391,"Nickel, ion","('water', 'surface water')",emission,kilogram,biosphere3,1.5654714622366692e-06,1.653747089179872e-06,1.7695059771689722e-06,4.4016839081909996e-07,2.735022868672376e-06,3.095037439886514e-06,1.5654714622366692e-06,1.653747089179872e-06,1.7695059771689722e-06,1.5113932909233172e-06,2.735022868672376e-06,3.095037439886514e-06,1.5654714622366687e-06,1.653747089179872e-06,1.7695059771689722e-06,1.5113932909233172e-06,2.735022868672376e-06,3.0950374398865127e-06 +1392,"Nickel, ion","('water',)",emission,kilogram,biosphere3,1.6287201922938017e-07,1.732054033893646e-07,1.877081717107591e-07,9.031703759381132e-09,2.592745123767922e-07,4.366865915118521e-07,1.6287201922938017e-07,1.732054033893646e-07,1.877081717107591e-07,1.8359331656121193e-08,2.592745123767922e-07,4.3668659151185216e-07,1.6287201922938017e-07,1.7320540338936458e-07,1.877081717107591e-07,1.8359331656121193e-08,2.592745123767922e-07,4.36686591511852e-07 +1393,Niobium-95,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.2839599301267693e-06,1.3408752868705124e-06,1.418701653303412e-06,2.9964711869134847e-06,6.957273058277576e-06,1.6590613823347896e-06,1.2839599301267693e-06,1.3408752868705124e-06,1.418701653303412e-06,3.1473747475155963e-06,6.957273058277576e-06,1.6590613823347921e-06,1.2839599301267693e-06,1.3408752868705124e-06,1.418701653303412e-06,3.1473747475155963e-06,6.9572730582775775e-06,1.659061382334794e-06 +1394,Nitrate,"('water', 'ground-')",emission,kilogram,biosphere3,0.002131893273242655,0.0022242998520979078,0.002349304653187272,2.797436854606256e-05,0.00016298079000228583,0.002134236117059741,0.002131893273242655,0.0022242998520979078,0.002349304653187272,0.00011873492025280663,0.0001629807900022858,0.0021342361170597407,0.0021318932732426565,0.002224299852097909,0.002349304653187272,0.00011873492025280663,0.00016298079000228593,0.002134236117059738 +1395,Nitrate,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.002504628591992502,0.00261201368519479,0.0027584374401524933,0.000859724033344477,0.003328605250003542,0.004707942120474784,0.002504628591992502,0.00261201368519479,0.0027584374401524933,0.001638098419365119,0.003328605250003542,0.004707942120474784,0.002504628591992502,0.00261201368519479,0.002758437440152493,0.001638098419365119,0.0033286052500035414,0.004707942120474784 +1396,Nitrate,"('water', 'ocean')",emission,kilogram,biosphere3,2.064590888136263e-05,2.2319151390170705e-05,2.470395473839856e-05,5.7770420134465335e-06,1.86275586281235e-05,2.2930675377586727e-05,2.064590888136263e-05,2.2319151390170705e-05,2.470395473839856e-05,6.8875316832782405e-06,1.86275586281235e-05,2.2930675377586734e-05,2.0645908881362627e-05,2.23191513901707e-05,2.470395473839856e-05,6.8875316832782405e-06,1.86275586281235e-05,2.2930675377586727e-05 +1397,Nitrate,"('water', 'surface water')",emission,kilogram,biosphere3,0.00047887443021380356,0.0004989715729189545,0.0005265370408362439,3.80084440097594e-05,0.00025367421321867027,0.0004692795751057841,0.00047887443021380356,0.0004989715729189545,0.0005265370408362439,4.9008406753776496e-05,0.00025367421321867027,0.0004692795751057841,0.00047887443021380356,0.0004989715729189544,0.0005265370408362438,4.9008406753776496e-05,0.00025367421321867016,0.0004692795751057843 +1398,Nitrite,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.456767024026788e-07,1.5390818782633516e-07,1.6532859176846319e-07,2.7430031340176715e-08,1.1448381498193157e-07,1.7456604468374726e-07,1.456767024026788e-07,1.5390818782633516e-07,1.6532859176846319e-07,3.049982966501343e-08,1.1448381498193157e-07,1.7456604468374726e-07,1.4567670240267877e-07,1.5390818782633516e-07,1.653285917684631e-07,3.049982966501343e-08,1.1448381498193154e-07,1.7456604468374718e-07 +1399,Nitrite,"('water', 'ocean')",emission,kilogram,biosphere3,1.5000352193371738e-07,1.5654464187478786e-07,1.6547922394990686e-07,1.1587906435382826e-07,3.090296549389233e-07,1.7810101770379684e-07,1.5000352193371738e-07,1.5654464187478786e-07,1.6547922394990686e-07,1.320513211753137e-07,3.090296549389233e-07,1.7810101770379692e-07,1.5000352193371738e-07,1.5654464187478786e-07,1.6547922394990686e-07,1.320513211753137e-07,3.0902965493892334e-07,1.7810101770379697e-07 +1400,Nitrite,"('water', 'surface water')",emission,kilogram,biosphere3,5.12305559152045e-06,5.312889245218528e-06,5.570649821712213e-06,1.859101037945496e-08,1.8259887760815726e-06,4.849555051132025e-06,5.12305559152045e-06,5.312889245218528e-06,5.570649821712213e-06,6.584086612426425e-08,1.8259887760815726e-06,4.849555051132025e-06,5.12305559152045e-06,5.312889245218526e-06,5.570649821712213e-06,6.584086612426425e-08,1.8259887760815715e-06,4.849555051132022e-06 +1401,Nitrobenzene,"('water', 'surface water')",emission,kilogram,biosphere3,7.447073077382703e-09,7.774012580843661e-09,8.216733667944135e-09,6.317592696281992e-12,5.4426309583589514e-11,7.023491056088168e-09,7.447073077382703e-09,7.774012580843661e-09,8.216733667944135e-09,3.4608557272531046e-11,5.442630958358951e-11,7.023491056088168e-09,7.4470730773827245e-09,7.774012580843671e-09,8.216733667944135e-09,3.4608557272531046e-11,5.4426309583589676e-11,7.02349105608815e-09 +1402,Nitrogen,"('water', 'ocean')",emission,kilogram,biosphere3,2.9954355021108416e-07,3.324565141956059e-07,3.799543418395825e-07,1.7987859953848756e-07,4.6168363371749364e-07,3.352384024434633e-07,2.9954355021108416e-07,3.324565141956059e-07,3.799543418395825e-07,1.8925218942610422e-07,4.6168363371749364e-07,3.3523840244346336e-07,2.9954355021108416e-07,3.3245651419560586e-07,3.799543418395825e-07,1.8925218942610422e-07,4.616836337174936e-07,3.3523840244346315e-07 +1403,Nitrogen,"('water', 'surface water')",emission,kilogram,biosphere3,0.0001609488626946508,0.00016884837425369518,0.00017961424340924096,7.437663485269435e-06,6.070535692716601e-05,0.00019058414775388242,0.0001609488626946508,0.00016884837425369518,0.00017961424340924096,1.132486437713918e-05,6.070535692716601e-05,0.00019058414775388242,0.0001609488626946505,0.00016884837425369537,0.00017961424340924098,1.132486437713918e-05,6.070535692716598e-05,0.00019058414775388233 +1404,"Nitrogen, organic bound","('water', 'ground-, long-term')",emission,kilogram,biosphere3,4.368111719449021e-06,4.61511852118309e-06,4.957838422146581e-06,8.232649695805788e-07,3.4364008549932543e-06,5.2373821990986086e-06,4.368111719449021e-06,4.61511852118309e-06,4.957838422146581e-06,9.153532039409191e-07,3.4364008549932543e-06,5.2373821990986086e-06,4.36811171944902e-06,4.615118521183089e-06,4.95783842214658e-06,9.153532039409191e-07,3.4364008549932535e-06,5.237382199098606e-06 +1405,"Nitrogen, organic bound","('water', 'ocean')",emission,kilogram,biosphere3,1.8217965820665904e-05,1.9332110331569067e-05,2.092375451176031e-05,3.646674663052244e-07,6.5138185018024005e-06,1.9145312224833597e-05,1.8217965820665904e-05,1.9332110331569067e-05,2.092375451176031e-05,9.357266020870428e-07,6.5138185018024005e-06,1.9145312224833597e-05,1.82179658206659e-05,1.9332110331569067e-05,2.0923754511760307e-05,9.357266020870428e-07,6.513818501802398e-06,1.914531222483359e-05 +1406,"Nitrogen, organic bound","('water', 'surface water')",emission,kilogram,biosphere3,1.656017135287879e-05,1.7500260104247966e-05,1.882268150370731e-05,3.5423171274368585e-05,0.0003534888173736778,0.00036488118438596565,1.656017135287879e-05,1.7500260104247966e-05,1.882268150370731e-05,0.0003480280520866226,0.0003534888173736778,0.00036488118438596565,1.6560171352878793e-05,1.7500260104247966e-05,1.882268150370731e-05,0.0003480280520866226,0.00035348881737367786,0.00036488118438596565 +1407,o-Dichlorobenzene,"('water', 'surface water')",emission,kilogram,biosphere3,1.2861200748156734e-08,1.3397845474305557e-08,1.4117167031006239e-08,3.496118564628207e-11,3.7164764022213857e-09,1.2505382101463213e-08,1.2861200748156734e-08,1.3397845474305557e-08,1.4117167031006239e-08,1.5568009632251374e-10,3.7164764022213857e-09,1.2505382101463211e-08,1.2861200748156733e-08,1.3397845474305559e-08,1.4117167031006239e-08,1.5568009632251374e-10,3.7164764022213845e-09,1.2505382101463204e-08 +1408,"Oils, unspecified","('water', 'ocean')",emission,kilogram,biosphere3,0.002102662365886783,0.0023426908928205698,0.0026893503171747653,0.0002689720994231281,0.0010812079173761118,0.002314421897400812,0.002102662365886783,0.0023426908928205698,0.0026893503171747653,0.0003320690613849931,0.0010812079173761118,0.002314421897400812,0.002102662365886783,0.002342690892820569,0.002689350317174765,0.0003320690613849931,0.0010812079173761113,0.002314421897400811 +1409,"Oils, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,0.011731622695058104,0.013036582734320625,0.014921835841088192,0.00019651037282753816,0.0033320808536132,0.012749600391006742,0.011731622695058104,0.013036582734320625,0.014921835841088192,0.0005355112292421158,0.0033320808536132,0.012749600391006742,0.011731622695058104,0.013036582734320625,0.014921835841088192,0.0005355112292421158,0.003332080853613198,0.012749600391006739 +1410,"Oils, unspecified","('water',)",emission,kilogram,biosphere3,0.0001622952275796041,0.00016930253357135537,0.00017878003485990873,6.794961081086656e-07,6.0980666946615156e-06,0.0001571733317579458,0.0001622952275796041,0.00016930253357135537,0.00017878003485990873,8.029901046614046e-07,6.098066694661517e-06,0.0001571733317579458,0.00016229522757960408,0.00016930253357135537,0.0001787800348599088,8.029901046614046e-07,6.0980666946615156e-06,0.00015717333175794575 +1411,o-Xylene,"('water',)",emission,kilogram,biosphere3,7.26471316546329e-12,7.612561801780321e-12,8.084475010939644e-12,1.663931232408682e-13,2.9543597896893357e-12,7.731725005283544e-12,7.26471316546329e-12,7.612561801780321e-12,8.084475010939644e-12,5.47602878869789e-13,2.9543597896893357e-12,7.731725005283546e-12,7.264713165462898e-12,7.61256180178038e-12,8.084475010939646e-12,5.47602878869789e-13,2.954359789689334e-12,7.73172500528343e-12 +1412,"PAH, polycyclic aromatic hydrocarbons","('water', 'ocean')",emission,kilogram,biosphere3,5.433657020199892e-07,6.037236304664792e-07,6.909254774974778e-07,9.03167074196101e-09,1.5474839615899927e-07,5.902517801727039e-07,5.433657020199892e-07,6.037236304664792e-07,6.909254774974778e-07,2.4688768739853847e-08,1.5474839615899927e-07,5.90251780172704e-07,5.433657020199892e-07,6.037236304664791e-07,6.909254774974778e-07,2.4688768739853847e-08,1.547483961589992e-07,5.902517801727036e-07 +1413,"PAH, polycyclic aromatic hydrocarbons","('water', 'surface water')",emission,kilogram,biosphere3,6.806388792797711e-07,7.540761218876544e-07,8.600553430111418e-07,1.465855804549977e-08,1.9852322193895052e-07,7.438026367609404e-07,6.806388792797711e-07,7.540761218876544e-07,8.600553430111418e-07,3.47164921811834e-08,1.9852322193895052e-07,7.438026367609404e-07,6.806388792797712e-07,7.540761218876544e-07,8.600553430111415e-07,3.47164921811834e-08,1.985232219389504e-07,7.4380263676094e-07 +1414,Paraffins,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1415,"Perchlorate, ion","('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1416,Phenol,"('water', 'ocean')",emission,kilogram,biosphere3,8.585626664344453e-06,9.53938864919731e-06,1.0917164117415776e-05,1.4513480607517224e-07,2.4440903922453743e-06,9.339147952371766e-06,8.585626664344453e-06,9.53938864919731e-06,1.0917164117415776e-05,3.961215579772926e-07,2.4440903922453743e-06,9.339147952371766e-06,8.585626664344453e-06,9.539388649197309e-06,1.0917164117415774e-05,3.961215579772926e-07,2.444090392245373e-06,9.339147952371762e-06 +1417,Phenol,"('water', 'surface water')",emission,kilogram,biosphere3,1.1196438390238644e-05,1.2453127486035964e-05,1.4262145937050808e-05,2.401192754522069e-07,3.292699739684691e-06,1.2267676405777244e-05,1.1196438390238644e-05,1.2453127486035964e-05,1.4262145937050808e-05,5.872890131607548e-07,3.292699739684691e-06,1.2267676405777244e-05,1.1196438390238645e-05,1.2453127486035964e-05,1.4262145937050804e-05,5.872890131607548e-07,3.2926997396846883e-06,1.2267676405777236e-05 +1418,Phenol,"('water',)",emission,kilogram,biosphere3,2.837183290563275e-08,1.1647793550673117e-07,2.2631987036456233e-07,9.302668757077509e-10,2.050508878266746e-08,1.135735803576791e-07,2.837183290563275e-08,1.1647793550673117e-07,2.2631987036456233e-07,3.97546947447594e-09,2.050508878266746e-08,1.135735803576791e-07,2.83718329056322e-08,1.1647793550673307e-07,2.2631987036456233e-07,3.97546947447594e-09,2.0505088782667826e-08,1.1357358035768352e-07 +1419,Phosphate,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.008252229248766611,0.008617272994675506,0.009114781532022321,0.003052085540312237,0.014930766192110987,0.019595323012840015,0.008252229248766611,0.008617272994675506,0.009114781532022321,0.009487526809242058,0.014930766192110987,0.019595323012840015,0.008252229248766611,0.008617272994675506,0.009114781532022321,0.009487526809242058,0.014930766192110988,0.019595323012840015 +1420,Phosphate,"('water', 'ocean')",emission,kilogram,biosphere3,1.4242585747919026e-05,1.4964361956627635e-05,1.5955691216454407e-05,2.503011605996165e-06,7.474301791755646e-06,1.990171160420167e-05,1.4242585747919026e-05,1.4964361956627635e-05,1.5955691216454407e-05,6.393725866660941e-06,7.474301791755646e-06,1.990171160420167e-05,1.424258574791905e-05,1.4964361956627647e-05,1.5955691216454407e-05,6.393725866660941e-06,7.474301791755646e-06,1.9901711604201645e-05 +1421,Phosphate,"('water', 'surface water')",emission,kilogram,biosphere3,3.072701739032758e-05,3.203867257283732e-05,3.380359240990424e-05,1.4673804490396804e-07,1.0093330621027244e-05,2.967529567103895e-05,3.072701739032758e-05,3.203867257283732e-05,3.380359240990424e-05,4.2694733254126136e-07,1.0093330621027244e-05,2.9675295671038945e-05,3.072701739032758e-05,3.2038672572837315e-05,3.380359240990424e-05,4.2694733254126136e-07,1.009333062102724e-05,2.967529567103893e-05 +1422,Phosphate,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1423,Phosphorus,"('water', 'ground-')",emission,kilogram,biosphere3,3.3880663858637744e-07,3.532171368691549e-07,3.7267474905152934e-07,3.447214122058198e-11,4.1103325593673236e-10,3.172094318747907e-07,3.3880663858637744e-07,3.532171368691549e-07,3.7267474905152934e-07,8.187473494219765e-11,4.1103325593673236e-10,3.172094318747907e-07,3.388066385863785e-07,3.5321713686915535e-07,3.7267474905152934e-07,8.187473494219759e-11,4.1103325593673965e-10,3.172094318747898e-07 +1424,Phosphorus,"('water', 'ocean')",emission,kilogram,biosphere3,6.353218588007651e-07,6.994496721818882e-07,7.917220549215514e-07,1.1444423086941661e-08,1.8231495297881874e-07,6.797527771116767e-07,6.353218588007651e-07,6.994496721818882e-07,7.917220549215514e-07,2.737821685695925e-08,1.8231495297881874e-07,6.797527771116767e-07,6.353218588007652e-07,6.994496721818879e-07,7.917220549215513e-07,2.737821685695925e-08,1.8231495297881866e-07,6.797527771116763e-07 +1425,Phosphorus,"('water', 'surface water')",emission,kilogram,biosphere3,2.274428832654439e-05,2.4090135848363704e-05,2.5874929344912986e-05,7.665308294519172e-08,1.0841771580833939e-05,2.4213614095635207e-05,2.274428832654439e-05,2.4090135848363704e-05,2.5874929344912986e-05,2.679522219954742e-07,1.0841771580833939e-05,2.421361409563521e-05,2.274428832654439e-05,2.409013584836371e-05,2.587492934491299e-05,2.679522219954742e-07,1.0841771580833937e-05,2.4213614095635193e-05 +1426,Phosphorus,"('water',)",emission,kilogram,biosphere3,2.8385114787768705e-08,1.164915509331147e-07,2.2633390842151793e-07,9.283322544698845e-10,2.0506051201567095e-08,1.1358309333805864e-07,2.8385114787768705e-08,1.164915509331147e-07,2.2633390842151793e-07,3.973457090180316e-09,2.0506051201567095e-08,1.1358309333805864e-07,2.838511478776816e-08,1.164915509331166e-07,2.2633390842151793e-07,3.973457090180316e-09,2.0506051201567462e-08,1.1358309333806305e-07 +1427,Polonium-210,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,2.861912094098958e-07,3.07201517391774e-07,3.3684836911071924e-07,1.9201396816879326e-07,5.723909119193246e-07,7.715979106891664e-07,2.861912094098958e-07,3.07201517391774e-07,3.3684836911071924e-07,4.904252332701568e-07,5.723909119193246e-07,7.715979106891664e-07,2.861912094098958e-07,3.07201517391774e-07,3.3684836911071924e-07,4.904252332701568e-07,5.723909119193246e-07,7.715979106891664e-07 +1428,Polonium-210,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.0012884265522478376,0.0013537205689851124,0.0014433991542629524,0.00022642985419579024,0.0006761475102621714,0.0018003678631122709,0.0012884265522478376,0.0013537205689851124,0.0014433991542629524,0.0005783954067522235,0.0006761475102621714,0.0018003678631122709,0.0012884265522478398,0.0013537205689851135,0.0014433991542629524,0.0005783954067522235,0.0006761475102621714,0.0018003678631122687 +1429,Polonium-210,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00013716682246032915,0.00014323722923694962,0.0001515368577469612,0.00031376406154153344,0.0007308878409116626,0.0001738419254630553,0.00013716682246032915,0.00014323722923694962,0.0001515368577469612,0.00032838685956144227,0.0007308878409116626,0.0001738419254630553,0.00013716682246032915,0.00014323722923694962,0.0001515368577469612,0.00032838685956144227,0.0007308878409116626,0.0001738419254630553 +1430,"Potassium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.019963580351021276,0.020847615059037757,0.022050296103293253,0.008703826442787953,0.04972958498785359,0.06200713138080331,0.019963580351021276,0.020847615059037757,0.022050296103293253,0.03609701568375324,0.04972958498785359,0.06200713138080331,0.019963580351021273,0.020847615059037757,0.022050296103293253,0.03609701568375324,0.04972958498785359,0.062007131380803306 +1431,"Potassium, ion","('water', 'ocean')",emission,kilogram,biosphere3,0.00028952816369395585,0.00032163936940402704,0.0003680289301481902,5.0738490287043435e-06,8.302620315724802e-05,0.0003145211842508986,0.00028952816369395585,0.00032163936940402704,0.0003680289301481902,1.3414565575384332e-05,8.302620315724802e-05,0.00031452118425089867,0.00028952816369395585,0.000321639369404027,0.0003680289301481902,1.3414565575384332e-05,8.302620315724798e-05,0.00031452118425089845 +1432,"Potassium, ion","('water', 'surface water')",emission,kilogram,biosphere3,0.0007453622375950577,0.0008199479698959795,0.0009266147202952934,7.590750318194865e-05,0.0003419873593014778,0.0016084924794276924,0.0007453622375950577,0.0008199479698959795,0.0009266147202952934,9.920493664380109e-05,0.0003419873593014778,0.0016084924794276926,0.0007453622375950578,0.0008199479698959795,0.0009266147202952933,9.920493664380109e-05,0.0003419873593014777,0.0016084924794276924 +1433,Potassium-40,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,2.2732092347507758e-08,2.4400935574272222e-08,2.675577719434234e-08,1.5251618911942475e-08,4.546485932918811e-08,6.128781876258394e-08,2.2732092347507758e-08,2.4400935574272222e-08,2.675577719434234e-08,3.895434708607469e-08,4.546485932918811e-08,6.128781876258394e-08,2.2732092347507758e-08,2.4400935574272222e-08,2.675577719434234e-08,3.895434708607469e-08,4.546485932918811e-08,6.128781876258394e-08 +1434,Potassium-40,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.00010204781478255807,0.00010721932550133914,0.00011432217792452148,1.793402330864277e-05,5.355320854322239e-05,0.00014259532753179574,0.00010204781478255807,0.00010721932550133914,0.00011432217792452148,4.581090572040435e-05,5.355320854322239e-05,0.00014259532753179574,0.00010204781478255824,0.00010721932550133924,0.00011432217792452148,4.581090572040435e-05,5.355320854322239e-05,0.00014259532753179555 +1435,Potassium-40,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00017218814572187032,0.00017980844389292795,0.00019022712690387362,0.00039387405058111504,0.0009174975394112893,0.00021822710668204697,0.00017218814572187032,0.00017980844389292795,0.00019022712690387362,0.0004122303296994709,0.0009174975394112893,0.00021822710668204697,0.00017218814572187032,0.00017980844389292795,0.00019022712690387362,0.0004122303296994709,0.0009174975394112893,0.00021822710668204697 +1436,Propanal,"('water', 'surface water')",emission,kilogram,biosphere3,3.3961115106019056e-11,3.73068481872115e-11,4.2062055006326366e-11,1.0103473171232396e-12,8.40172676933314e-12,4.1223824008724944e-11,3.3961115106019056e-11,3.73068481872115e-11,4.2062055006326366e-11,6.070368470680296e-12,8.40172676933314e-12,4.122382400872494e-11,3.396111510601905e-11,3.7306848187211505e-11,4.2062055006326366e-11,6.070368470680296e-12,8.401726769333141e-12,4.122382400872491e-11 +1437,Propanol,"('water', 'surface water')",emission,kilogram,biosphere3,1.727147825037039e-10,1.8181041296655188e-10,1.943106461165091e-10,1.013747948224735e-12,8.154699803723784e-12,1.7063502901705903e-10,1.727147825037039e-10,1.8181041296655188e-10,1.943106461165091e-10,5.753749002555112e-12,8.15469980372378e-12,1.7063502901705896e-10,1.7271478250370383e-10,1.8181041296655193e-10,1.9431064611650914e-10,5.753749002555112e-12,8.154699803723792e-12,1.706350290170589e-10 +1438,Propene,"('water', 'surface water')",emission,kilogram,biosphere3,2.255358061953989e-06,8.489870562402014e-06,1.6264149922681368e-05,7.021739223475406e-08,1.5779951766088935e-06,8.315122667469013e-06,2.255358061953989e-06,8.489870562402014e-06,1.6264149922681368e-05,3.30404843304542e-07,1.5779951766088935e-06,8.315122667469018e-06,2.2553580619539885e-06,8.489870562402014e-06,1.6264149922681368e-05,3.30404843304542e-07,1.5779951766088933e-06,8.31512266746901e-06 +1439,Propionic acid,"('water', 'surface water')",emission,kilogram,biosphere3,6.006260614562107e-10,6.261851840028548e-10,6.606978881393591e-10,1.2516050333578263e-13,9.953615398917012e-13,5.626120328717774e-10,6.006260614562107e-10,6.261851840028548e-10,6.606978881393591e-10,2.9560479477847203e-13,9.953615398916986e-13,5.626120328717774e-10,6.006260614562121e-10,6.261851840028555e-10,6.606978881393593e-10,2.9560479477847193e-13,9.953615398917174e-13,5.62612032871776e-10 +1440,Propylamine,"('water', 'surface water')",emission,kilogram,biosphere3,1.358746069371885e-11,1.492601427119475e-11,1.682846504394903e-11,4.042095220544869e-13,3.36127653404834e-12,1.6493008390825027e-11,1.358746069371885e-11,1.492601427119475e-11,1.682846504394903e-11,2.428569999036641e-12,3.3612765340483397e-12,1.6493008390825023e-11,1.3587460693718849e-11,1.492601427119475e-11,1.682846504394903e-11,2.428569999036641e-12,3.3612765340483405e-12,1.6493008390825014e-11 +1441,Propylene oxide,"('water', 'surface water')",emission,kilogram,biosphere3,1.7639362761036123e-07,1.8487821050242928e-07,1.9650754290781834e-07,2.468185310837195e-09,6.891376758753443e-08,1.8462439861201528e-07,1.7639362761036123e-07,1.8487821050242928e-07,1.9650754290781834e-07,1.1738918207051775e-08,6.891376758753443e-08,1.8462439861201528e-07,1.7639362761036123e-07,1.8487821050242928e-07,1.9650754290781832e-07,1.1738918207051768e-08,6.89137675875344e-08,1.8462439861201517e-07 +1442,Protactinium-234,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00015244026697631722,0.00015906373106905193,0.00016810976638809144,0.00011725334445406448,0.00031205821047876667,0.0002066996351463125,0.00015244026697631722,0.00015906373106905193,0.00016810976638809144,0.00013370938373276136,0.00031205821047876667,0.0002066996351463126,0.00015244026697631722,0.00015906373106905193,0.00016810976638809144,0.00013370938373276136,0.0003120582104787668,0.00020669963514631268 +1443,"Radioactive species, alpha emitters","('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.1256492296154732e-06,1.194000229736133e-06,1.2892571569507783e-06,4.473382438779249e-07,1.335645492636099e-06,2.2225443075484185e-06,1.1256492296154732e-06,1.194000229736133e-06,1.2892571569507783e-06,1.1392103129477233e-06,1.335645492636099e-06,2.222544307548418e-06,1.1256492296154739e-06,1.1940002297361335e-06,1.2892571569507783e-06,1.1392103129477233e-06,1.335645492636099e-06,2.2225443075484176e-06 +1444,"Radioactive species, Nuclides, unspecified","('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.057818565069700685,0.060339586631061266,0.06378306616372517,0.04465064819214709,0.11907564561825959,0.06891592737862128,0.057818565069700685,0.060339586631061266,0.06378306616372517,0.05088215991810194,0.11907564561825959,0.0689159273786213,0.057818565069700685,0.060339586631061266,0.06378306616372517,0.05088215991810194,0.1190756456182596,0.06891592737862133 +1445,"Radioactive species, Nuclides, unspecified","('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00017716044234039006,0.0001848360889214631,0.0001953155468167129,4.847728306324407e-05,0.00017446638449738553,0.0002049485322596938,0.00017716044234039006,0.0001848360889214631,0.0001953155468167129,6.728433281718709e-05,0.00017446638449738553,0.00020494853225969386,0.00017716044234039006,0.0001848360889214631,0.0001953155468167129,6.728433281718709e-05,0.00017446638449738558,0.0002049485322596939 +1446,Radium-224,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.0034047701743995995,0.003784430669741979,0.004333031536715332,5.695732003815465e-05,0.0009708517188013966,0.003701917692137705,0.0034047701743995995,0.003784430669741979,0.004333031536715332,0.0001557890624279101,0.0009708517188013966,0.0037019176921377055,0.0034047701743995995,0.003784430669741978,0.004333031536715332,0.0001557890624279101,0.0009708517188013961,0.0037019176921377034 +1447,Radium-224,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.006805927182749984,0.007559007486096855,0.008646839591419757,0.00014337948077827994,0.0019764161464283594,0.007428422314154274,0.006805927182749984,0.007559007486096855,0.008646839591419757,0.0003381438369026064,0.0019764161464283594,0.007428422314154274,0.006805927182749986,0.007559007486096855,0.008646839591419755,0.0003381438369026064,0.0019764161464283577,0.00742842231415427 +1448,Radium-226,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,0.014522180956568001,0.01831306669470343,0.02382807531289087,1.4154395400199985e-07,4.219405163539224e-07,0.016428979435095924,0.014522180956568001,0.01831306669470343,0.02382807531289087,3.615191504438784e-07,4.219405163539224e-07,0.016428979435095924,0.014522180956568001,0.018313066694703426,0.02382807531289087,3.615191504438784e-07,4.219405163539224e-07,0.016428979435095914 +1449,Radium-226,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.0063983519700220835,0.007053988720621676,0.007997923256420817,0.0002582124375796314,0.002052286521726155,0.007251545296429741,0.0063983519700220835,0.007053988720621676,0.007997923256420817,0.0006760557105938204,0.002052286521726155,0.007251545296429742,0.006398351970022085,0.007053988720621676,0.007997923256420817,0.0006760557105938204,0.002052286521726154,0.0072515452964297365 +1450,Radium-226,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.11678357754912089,0.12211204813116451,0.12948433706419799,0.07335461780170728,0.19771352969955308,0.15042048505744243,0.11678357754912089,0.12211204813116451,0.12948433706419799,0.0839109243520318,0.19771352969955308,0.15042048505744243,0.11678357754912089,0.12211204813116451,0.12948433706419799,0.0839109243520318,0.19771352969955303,0.15042048505744243 +1451,Radium-226,"('water',)",emission,kilo Becquerel,biosphere3,4.3588278323427893e-07,4.5675370110375115e-07,4.85068493235288e-07,9.983587464802652e-09,1.7726158555859443e-07,4.6390349382415277e-07,4.3588278323427893e-07,4.5675370110375115e-07,4.85068493235288e-07,3.2856172971395114e-08,1.7726158555859443e-07,4.639034938241528e-07,4.3588278323425537e-07,4.5675370110375464e-07,4.85068493235288e-07,3.2856172971395114e-08,1.7726158555859435e-07,4.639034938241459e-07 +1452,Radium-228,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.006809540345135363,0.007568861335575302,0.008666063069177585,0.00011391463895458921,0.0019417034318380177,0.007403835377394624,0.006809540345135363,0.007568861335575302,0.008666063069177585,0.0003115781209634142,0.0019417034318380177,0.007403835377394625,0.006809540345135363,0.007568861335575301,0.008666063069177585,0.0003115781209634142,0.0019417034318380169,0.007403835377394621 +1453,Radium-228,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.013611854363055127,0.015118014969575615,0.017293679179976013,0.0002867589609850275,0.0039528322898180765,0.014856844624237623,0.013611854363055127,0.015118014969575615,0.017293679179976013,0.0006762876718581981,0.0039528322898180765,0.014856844624237623,0.01361185436305513,0.015118014969575615,0.01729367917997601,0.0006762876718581981,0.003952832289818073,0.014856844624237614 +1454,Radium-228,"('water',)",emission,kilo Becquerel,biosphere3,6.13349349472661e-07,6.427177126877858e-07,6.825606704759072e-07,1.4048333905251277e-08,2.4943237589895487e-07,6.527784925699485e-07,6.13349349472661e-07,6.427177126877858e-07,6.825606704759072e-07,4.623332955033479e-08,2.4943237589895487e-07,6.527784925699486e-07,6.133493494726278e-07,6.427177126877906e-07,6.825606704759074e-07,4.623332955033479e-08,2.494323758989547e-07,6.527784925699388e-07 +1455,Rubidium,"('water', 'ocean')",emission,kilogram,biosphere3,6.809540480146993e-07,7.568861485641913e-07,8.666063240998306e-07,1.1391464121282343e-08,1.941703470334433e-07,7.40383552418835e-07,6.809540480146993e-07,7.568861485641913e-07,8.666063240998306e-07,3.115781271399268e-08,1.941703470334433e-07,7.403835524188351e-07,6.809540480146993e-07,7.568861485641911e-07,8.666063240998306e-07,3.115781271399268e-08,1.9417034703344323e-07,7.403835524188347e-07 +1456,Rubidium,"('water', 'surface water')",emission,kilogram,biosphere3,1.361185463293837e-06,1.5118015269321527e-06,1.7293679522858841e-06,2.8675896667102547e-08,3.95283236819398e-07,1.4856844918806805e-06,1.361185463293837e-06,1.5118015269321527e-06,1.7293679522858841e-06,6.762876852695211e-08,3.95283236819398e-07,1.4856844918806805e-06,1.3611854632938373e-06,1.5118015269321527e-06,1.7293679522858837e-06,6.762876852695211e-08,3.9528323681939767e-07,1.4856844918806794e-06 +1457,Ruthenium-103,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.5461358933442898e-08,1.61186886838241e-08,1.7015125238605215e-08,1.159796315839756e-09,7.802154437845977e-09,1.9122728995778905e-08,1.5461358933442898e-08,1.61186886838241e-08,1.7015125238605215e-08,3.530050865860881e-09,7.802154437845977e-09,1.9122728995779048e-08,1.5461358933442898e-08,1.61186886838241e-08,1.701512523860521e-08,3.530050865860881e-09,7.802154437846116e-09,1.9122728995779183e-08 +1458,Scandium,"('water', 'ground-')",emission,kilogram,biosphere3,1.0477220854483784e-07,1.0934813466267503e-07,1.1559005141907464e-07,1.7332996818474026e-08,1.2418316089323827e-07,1.8150720074015978e-07,1.0477220854483784e-07,1.0934813466267503e-07,1.1559005141907464e-07,7.767396536810403e-08,1.2418316089323827e-07,1.8150720074015978e-07,1.0477220854483784e-07,1.0934813466267503e-07,1.1559005141907464e-07,7.767396536810403e-08,1.2418316089323827e-07,1.8150720074015975e-07 +1459,Scandium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.0107753785547201e-05,1.0542436537281426e-05,1.113325669918995e-05,4.528538603444277e-06,2.7621955497499595e-05,4.3115197411356525e-05,1.0107753785547201e-05,1.0542436537281426e-05,1.113325669918995e-05,2.100498985569207e-05,2.7621955497499595e-05,4.311519741135653e-05,1.0107753785547201e-05,1.0542436537281426e-05,1.113325669918995e-05,2.100498985569207e-05,2.762195549749959e-05,4.3115197411356525e-05 +1460,Scandium,"('water', 'surface water')",emission,kilogram,biosphere3,2.2954154171865373e-07,2.3781833589315915e-07,2.49036461715682e-07,7.727721357030198e-08,2.053158678193457e-07,2.18238443590452e-06,2.2954154171865373e-07,2.3781833589315915e-07,2.49036461715682e-07,8.551935550675206e-08,2.053158678193457e-07,2.1823844359045203e-06,2.2954154171865373e-07,2.3781833589315915e-07,2.49036461715682e-07,8.551935550675206e-08,2.053158678193457e-07,2.1823844359045203e-06 +1461,Selenium,"('water', 'ground-')",emission,kilogram,biosphere3,2.2255391379295264e-07,2.3227992733447432e-07,2.45547157793151e-07,3.059366720114115e-08,2.5180603201456503e-07,3.8999335443750846e-07,2.2255391379295264e-07,2.3227992733447432e-07,2.45547157793151e-07,1.6030732086783912e-07,2.5180603201456503e-07,3.8999335443750846e-07,2.2255391379295264e-07,2.3227992733447432e-07,2.45547157793151e-07,1.6030732086783912e-07,2.51806032014565e-07,3.899933544375083e-07 +1462,Selenium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.5620541142295924e-05,1.631205591222964e-05,1.725133034260503e-05,6.685494416938574e-06,5.037732957130137e-05,6.107121962011297e-05,1.5620541142295924e-05,1.631205591222964e-05,1.725133034260503e-05,4.094730275517038e-05,5.037732957130137e-05,6.107121962011297e-05,1.562054114229592e-05,1.631205591222964e-05,1.725133034260503e-05,4.094730275517038e-05,5.037732957130137e-05,6.107121962011296e-05 +1463,Selenium,"('water', 'ocean')",emission,kilogram,biosphere3,2.4525319930936354e-08,2.7007269686596848e-08,3.0578858811327544e-08,3.5763954536879347e-10,6.840078268309556e-09,2.622744225316359e-08,2.4525319930936354e-08,2.7007269686596848e-08,3.0578858811327544e-08,9.63510506428093e-10,6.840078268309556e-09,2.622744225316359e-08,2.4525319930936357e-08,2.7007269686596848e-08,3.0578858811327544e-08,9.63510506428093e-10,6.840078268309553e-09,2.6227442253163575e-08 +1464,Selenium,"('water', 'surface water')",emission,kilogram,biosphere3,4.964804182254852e-07,5.090234045398653e-07,5.261076478131446e-07,8.918781960231127e-08,2.574654800281307e-07,2.0087598893924755e-06,4.964804182254852e-07,5.090234045398653e-07,5.261076478131446e-07,1.0618409622614776e-07,2.574654800281307e-07,2.008759889392476e-06,4.964804182254852e-07,5.090234045398653e-07,5.261076478131447e-07,1.0618409622614776e-07,2.5746548002813066e-07,2.0087598893924755e-06 +1465,Selenium,"('water',)",emission,kilogram,biosphere3,7.316604263065952e-13,7.666937546457443e-13,8.142221583209272e-13,1.6758165493468088e-14,2.975462487954131e-13,7.786951927941953e-13,7.316604263065952e-13,7.666937546457443e-13,8.142221583209272e-13,5.5151435846018754e-14,2.975462487954131e-13,7.786951927941954e-13,7.316604263065557e-13,7.666937546457501e-13,8.142221583209273e-13,5.5151435846018754e-14,2.97546248795413e-13,7.786951927941838e-13 +1466,Silicon,"('water', 'ground-')",emission,kilogram,biosphere3,0.00012881824438937912,0.000134437653441502,0.0001421115928505782,1.7411978527579196e-05,9.65058026060202e-05,0.00017695124440644404,0.00012881824438937912,0.000134437653441502,0.0001421115928505782,3.9307838089823264e-05,9.65058026060202e-05,0.00017695124440644404,0.00012881824438937912,0.000134437653441502,0.0001421115928505782,3.9307838089823264e-05,9.650580260602019e-05,0.000176951244406444 +1467,Silicon,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.062488841219952074,0.0653557719993731,0.06923320678669413,0.060029992856265264,0.201195391615233,0.29946716682209523,0.062488841219952074,0.0653557719993731,0.06923320678669413,0.1702833943672819,0.201195391615233,0.29946716682209523,0.062488841219952074,0.06535577199937306,0.06923320678669413,0.1702833943672819,0.20119539161523303,0.29946716682209523 +1468,Silicon,"('water', 'ocean')",emission,kilogram,biosphere3,2.2835323034611155e-08,2.5203913214021083e-08,2.8607668347262125e-08,8.720909572810322e-09,2.4404109417360516e-08,2.539967126247774e-08,2.2835323034611155e-08,2.5203913214021083e-08,2.8607668347262125e-08,9.604784889751786e-09,2.4404109417360516e-08,2.539967126247774e-08,2.2835323034611155e-08,2.5203913214021083e-08,2.8607668347262118e-08,9.604784889751786e-09,2.4404109417360516e-08,2.539967126247773e-08 +1469,Silicon,"('water', 'surface water')",emission,kilogram,biosphere3,0.002973748716976903,0.0031006704070145074,0.0032720216323125126,0.00011706176112289215,0.00038330574215872664,0.0032773482024934563,0.002973748716976903,0.0031006704070145074,0.0032720216323125126,0.00035261879786662495,0.00038330574215872664,0.0032773482024934563,0.0029737487169769028,0.0031006704070145065,0.0032720216323125126,0.00035261879786662495,0.00038330574215872664,0.0032773482024934554 +1470,"Silver, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,7.188849655527295e-07,7.512352615298775e-07,7.950320959289799e-07,3.361533982659794e-07,3.225046166494966e-06,3.533587453979743e-06,7.188849655527295e-07,7.512352615298775e-07,7.950320959289799e-07,2.8340334209416897e-06,3.225046166494966e-06,3.533587453979743e-06,7.188849655527292e-07,7.512352615298775e-07,7.950320959289799e-07,2.8340334209416897e-06,3.225046166494966e-06,3.5335874539797427e-06 +1471,"Silver, ion","('water', 'ocean')",emission,kilogram,biosphere3,4.0857241542981604e-08,4.54131674259798e-08,5.199637774136732e-08,6.834878301976527e-10,1.1650220464129777e-08,4.442301170499013e-08,4.0857241542981604e-08,4.54131674259798e-08,5.199637774136732e-08,1.869468720275731e-09,1.1650220464129777e-08,4.4423011704990135e-08,4.0857241542981604e-08,4.541316742597979e-08,5.199637774136732e-08,1.869468720275731e-09,1.1650220464129772e-08,4.442301170499011e-08 +1472,"Silver, ion","('water', 'surface water')",emission,kilogram,biosphere3,3.7035427734150837e-07,3.8421150143315265e-07,4.0419765089938607e-07,2.905294940526571e-09,3.787016365713331e-08,3.568669026656004e-07,3.7035427734150837e-07,3.8421150143315265e-07,4.0419765089938607e-07,6.408666900398701e-09,3.787016365713331e-08,3.568669026656004e-07,3.7035427734150837e-07,3.8421150143315265e-07,4.04197650899386e-07,6.408666900398701e-09,3.787016365713328e-08,3.568669026656003e-07 +1473,"Silver, ion","('water',)",emission,kilogram,biosphere3,6.901477814959297e-10,7.231934034389396e-10,7.680251603378439e-10,1.5807347857777214e-11,2.8066419433125303e-10,7.345139095106167e-10,6.901477814959297e-10,7.231934034389396e-10,7.680251603378439e-10,5.202227729277853e-11,2.8066419433125303e-10,7.345139095106168e-10,6.901477814958924e-10,7.231934034389451e-10,7.68025160337844e-10,5.202227729277853e-11,2.806641943312529e-10,7.345139095106059e-10 +1474,Silver-110,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00010884600922436705,0.00011354454691395428,0.00011995837933153942,6.459173431116638e-05,0.00017954451664972646,0.00013271226735272408,0.00010884600922436705,0.00011354454691395428,0.00011995837933153942,7.869015874387526e-05,0.00017954451664972646,0.00013271226735272457,0.00010884600922436705,0.00011354454691395428,0.00011995837933153942,7.869015874387526e-05,0.00017954451664972692,0.00013271226735272505 +1475,Sodium formate,"('water', 'surface water')",emission,kilogram,biosphere3,1.0329669987060403e-08,1.091852431380033e-08,1.1732538427858292e-08,4.65573874542855e-10,8.530941849548893e-09,1.4275899631404825e-08,1.0329669987060403e-08,1.091852431380033e-08,1.1732538427858292e-08,4.260115302083355e-09,8.530941849548893e-09,1.4275899631404825e-08,1.0329669987060403e-08,1.091852431380033e-08,1.1732538427858293e-08,4.260115302083355e-09,8.53094184954889e-09,1.427589963140482e-08 +1476,"Sodium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.025469999821685938,0.026601237160527445,0.02814531144488654,0.009450951801096799,0.03793739685445485,0.054514713203197854,0.025469999821685938,0.026601237160527445,0.02814531144488654,0.02059562623993117,0.03793739685445485,0.054514713203197854,0.025469999821685938,0.026601237160527445,0.02814531144488654,0.02059562623993117,0.03793739685445485,0.054514713203197854 +1477,"Sodium, ion","('water', 'ocean')",emission,kilogram,biosphere3,0.020917661770214636,0.023245114919238596,0.026607937747443765,0.0003488752632789897,0.00596150403180994,0.022734486781706528,0.020917661770214636,0.023245114919238596,0.026607937747443765,0.0009539468024143911,0.00596150403180994,0.022734486781706528,0.020917661770214636,0.023245114919238592,0.026607937747443765,0.0009539468024143911,0.005961504031809939,0.022734486781706514 +1478,"Sodium, ion","('water', 'surface water')",emission,kilogram,biosphere3,0.04738091197905368,0.05222811614148258,0.059203152241616895,0.0010301809850897354,0.014023414956843946,0.052499716145783845,0.04738091197905368,0.05222811614148258,0.059203152241616895,0.0022838637040512077,0.014023414956843946,0.052499716145783845,0.04738091197905369,0.05222811614148258,0.05920315224161688,0.0022838637040512077,0.014023414956843937,0.05249971614578382 +1479,"Sodium, ion","('water',)",emission,kilogram,biosphere3,0.0003103351085608819,0.0003244979922984061,0.0003439056421433725,9.563441608312154e-06,0.0001496945560992102,0.0003571622933126004,0.0003103351085608819,0.0003244979922984061,0.0003439056421433725,4.452222538863982e-05,0.0001496945560992102,0.0003571622933126004,0.0003103351085608816,0.0003244979922984062,0.0003439056421433725,4.452222538863982e-05,0.00014969455609921013,0.00035716229331259986 +1480,Sodium-24,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,5.544065012709531e-07,5.779767377951693e-07,6.10120759289128e-07,4.158745815562205e-08,2.797661682127315e-07,6.856942732532097e-07,5.544065012709531e-07,5.779767377951693e-07,6.10120759289128e-07,1.2657898689283844e-07,2.797661682127315e-07,6.856942732532148e-07,5.544065012709533e-07,5.779767377951693e-07,6.101207592891279e-07,1.2657898689283844e-07,2.797661682127365e-07,6.856942732532196e-07 +1481,"Solids, inorganic","('water', 'surface water')",emission,kilogram,biosphere3,0.03781194425676936,0.03940137199474527,0.0415471926991651,1.8590245166289515e-05,0.016236196588368546,0.03545094969322617,0.03781194425676936,0.03940137199474527,0.0415471926991651,6.022505056677624e-05,0.016236196588368546,0.03545094969322617,0.03781194425676936,0.03940137199474528,0.041547192699165104,6.022505056677624e-05,0.016236196588368536,0.03545094969322615 +1482,Strontium,"('water', 'ground-')",emission,kilogram,biosphere3,1.1175804735431892e-05,1.1650775565684979e-05,1.2298428705040385e-05,6.757353977020032e-06,2.17624947635174e-05,4.14436524566627e-05,1.1175804735431892e-05,1.1650775565684979e-05,1.2298428705040385e-05,1.1326566503565044e-05,2.17624947635174e-05,4.14436524566627e-05,1.1175804735431892e-05,1.1650775565684976e-05,1.2298428705040385e-05,1.1326566503565044e-05,2.17624947635174e-05,4.14436524566627e-05 +1483,Strontium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0009565241998499072,0.0009982519139416042,0.0010551316117481263,0.0003589332710947166,0.0017680248059597599,0.0024645655244240334,0.0009565241998499072,0.0009982519139416042,0.0010551316117481263,0.0011369227255075636,0.0017680248059597599,0.0024645655244240334,0.0009565241998499071,0.0009982519139416042,0.0010551316117481263,0.0011369227255075636,0.0017680248059597599,0.002464565524424033 +1484,Strontium,"('water', 'ocean')",emission,kilogram,biosphere3,0.00012371526686498672,0.00013749877039170478,0.00015741493382816148,2.0671391297990473e-06,3.526959356947647e-05,0.00013449194226164388,0.00012371526686498672,0.00013749877039170478,0.00015741493382816148,5.653331692726353e-06,3.526959356947647e-05,0.00013449194226164388,0.00012371526686498672,0.00013749877039170478,0.00015741493382816148,5.653331692726353e-06,3.526959356947646e-05,0.0001344919422616438 +1485,Strontium,"('water', 'surface water')",emission,kilogram,biosphere3,0.00024646373024544483,0.00027372700262823983,0.00031310835171801396,5.205530207001305e-06,7.158929813985393e-05,0.0002693105734617611,0.00024646373024544483,0.00027372700262823983,0.00031310835171801396,1.2258921728158798e-05,7.158929813985393e-05,0.0002693105734617611,0.0002464637302454449,0.00027372700262823983,0.0003131083517180139,1.2258921728158798e-05,7.158929813985388e-05,0.0002693105734617609 +1486,Strontium,"('water',)",emission,kilogram,biosphere3,1.795421932847611e-08,1.881390237061746e-08,1.9980202137129842e-08,4.1122871768344856e-10,7.3014890775442325e-09,1.910840572923944e-08,1.795421932847611e-08,1.881390237061746e-08,1.9980202137129842e-08,1.3533613960250553e-09,7.3014890775442325e-09,1.910840572923944e-08,1.795421932847514e-08,1.8813902370617603e-08,1.9980202137129842e-08,1.3533613960250553e-09,7.301489077544229e-09,1.9108405729239154e-08 +1487,Strontium-89,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,2.0476110023064247e-06,2.136507891102869e-06,2.257905948741897e-06,2.4454758907489136e-06,6.019559142378235e-06,2.5882454336610165e-06,2.0476110023064247e-06,2.136507891102869e-06,2.257905948741897e-06,2.7228647462997955e-06,6.019559142378235e-06,2.588245433661028e-06,2.047611002306425e-06,2.136507891102869e-06,2.2579059487418967e-06,2.7228647462997955e-06,6.019559142378247e-06,2.5882454336610385e-06 +1488,Strontium-90,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.0012316802822186427,0.00128538947748278,0.0013587514120692607,0.0009514840512660598,0.002537445307849565,0.0014623890764844532,0.0012316802822186427,0.00128538947748278,0.0013587514120692607,0.0010842746000451825,0.002537445307849565,0.0014623890764844539,0.0012316802822186427,0.00128538947748278,0.0013587514120692607,0.0010842746000451825,0.002537445307849565,0.0014623890764844545 +1489,Strontium-90,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.07940684388767186,0.08285039837815385,0.0875519738629345,0.0033553695663299564,0.039069833769004476,0.09074851931248855,0.07940684388767186,0.08285039837815385,0.0875519738629345,0.01158917122224048,0.039069833769004476,0.09074851931248855,0.07940684388767186,0.08285039837815385,0.0875519738629345,0.01158917122224048,0.039069833769004476,0.09074851931248853 +1490,Sulfate,"('water', 'ground-')",emission,kilogram,biosphere3,0.017454091508825806,0.01822454079451047,0.01927164927566941,0.006201402737473286,0.05161573258386959,0.06254005450680374,0.017454091508825806,0.01822454079451047,0.01927164927566941,0.042313624444377806,0.05161573258386959,0.06254005450680374,0.017454091508825802,0.01822454079451047,0.01927164927566941,0.042313624444377806,0.05161573258386959,0.06254005450680372 +1491,Sulfate,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.23728880040713612,0.24772769792006058,0.2619463619973986,0.08975772651269867,0.5009687607270811,0.6323933776663507,0.23728880040713612,0.24772769792006058,0.2619463619973986,0.34859116903930387,0.5009687607270811,0.6323933776663507,0.23728880040713612,0.24772769792006058,0.2619463619973986,0.34859116903930387,0.5009687607270811,0.6323933776663507 +1492,Sulfate,"('water', 'ocean')",emission,kilogram,biosphere3,0.0009901273426098944,0.0010576825475960545,0.001152688199450921,0.00012736952139908114,0.0004702137142264401,0.0012943675606487206,0.0009901273426098944,0.0010576825475960545,0.001152688199450921,0.0003321899029754468,0.0004702137142264401,0.0012943675606487206,0.0009901273426098952,0.001057682547596055,0.0011526881994509206,0.0003321899029754468,0.00047021371422644,0.0012943675606487193 +1493,Sulfate,"('water', 'surface water')",emission,kilogram,biosphere3,0.018806872923261338,0.019636875505303675,0.020740840733976813,0.00447799337696877,0.04433716658096202,0.05558168532910772,0.018806872923261338,0.019636875505303675,0.020740840733976813,0.0370063109864874,0.04433716658096202,0.05558168532910772,0.018806872923261338,0.01963687550530367,0.020740840733976813,0.0370063109864874,0.04433716658096202,0.0555816853291077 +1494,Sulfate,"('water',)",emission,kilogram,biosphere3,1.541724367339151e-07,1.6921256633360055e-07,1.9073199822856484e-07,1.0918228107079507e-08,6.738086769076599e-08,1.7539226819568307e-07,1.541724367339151e-07,1.6921256633360055e-07,1.9073199822856484e-07,2.174140363286444e-08,6.738086769076599e-08,1.753922681956832e-07,1.5417243673391377e-07,1.6921256633360076e-07,1.9073199822856484e-07,2.174140363286444e-08,6.738086769076604e-08,1.7539226819568283e-07 +1495,Sulfide,"('water', 'ocean')",emission,kilogram,biosphere3,1.7331650856478823e-07,1.904160473602054e-07,2.1500228498238517e-07,1.1885917188994815e-08,7.02210719646823e-08,1.86262834024875e-07,1.7331650856478823e-07,1.904160473602054e-07,2.1500228498238517e-07,1.7058003974062466e-08,7.02210719646823e-08,1.8626283402487501e-07,1.7331650856478823e-07,1.9041604736020538e-07,2.1500228498238514e-07,1.7058003974062466e-08,7.022107196468227e-08,1.8626283402487493e-07 +1496,Sulfide,"('water', 'surface water')",emission,kilogram,biosphere3,8.18282126820949e-07,8.558047631984892e-07,9.073346064661589e-07,4.73213886756331e-08,2.786571735637423e-07,1.0124755717518324e-06,8.18282126820949e-07,8.558047631984892e-07,9.073346064661589e-07,6.062179945133925e-08,2.786571735637423e-07,1.0124755717518324e-06,8.182821268209495e-07,8.558047631984903e-07,9.07334606466159e-07,6.062179945133925e-08,2.7865717356374225e-07,1.0124755717518305e-06 +1497,Sulfite,"('water', 'surface water')",emission,kilogram,biosphere3,4.161884599024244e-06,4.338326756718185e-06,4.579197096534384e-06,2.1315167937642385e-06,6.0539914066390876e-06,1.1857239961367825e-05,4.161884599024244e-06,4.338326756718185e-06,4.579197096534384e-06,2.5195155741172926e-06,6.0539914066390876e-06,1.1857239961367827e-05,4.161884599024244e-06,4.338326756718185e-06,4.579197096534384e-06,2.5195155741172926e-06,6.0539914066390876e-06,1.1857239961367827e-05 +1498,Sulfur,"('water', 'ocean')",emission,kilogram,biosphere3,9.804769483983503e-07,1.0885025293162666e-06,1.2444286832888487e-06,6.045882753132016e-07,1.5452354851767486e-06,1.0980275024038938e-06,9.804769483983503e-07,1.0885025293162666e-06,1.2444286832888487e-06,6.348875509536231e-07,1.5452354851767486e-06,1.0980275024038938e-06,9.804769483983503e-07,1.0885025293162664e-06,1.2444286832888487e-06,6.348875509536231e-07,1.5452354851767484e-06,1.0980275024038932e-06 +1499,Sulfur,"('water', 'surface water')",emission,kilogram,biosphere3,5.200834531124316e-05,5.671662277046153e-05,6.345530265237657e-05,6.245639299904657e-07,1.0441572794925217e-05,5.4220405107322334e-05,5.200834531124316e-05,5.671662277046153e-05,6.345530265237657e-05,1.7042594800638154e-06,1.0441572794925217e-05,5.4220405107322334e-05,5.200834531124321e-05,5.6716622770461554e-05,6.345530265237657e-05,1.7042594800638154e-06,1.0441572794925214e-05,5.422040510732229e-05 +1500,Sulfur,"('water',)",emission,kilogram,biosphere3,8.728034347879097e-10,9.145949657068425e-10,9.712919695619042e-10,1.999094695062748e-11,3.5494524525387684e-10,9.289115763706322e-10,8.728034347879097e-10,9.145949657068425e-10,9.712919695619042e-10,6.57905801259291e-11,3.5494524525387684e-10,9.289115763706323e-10,8.728034347878625e-10,9.145949657068495e-10,9.712919695619042e-10,6.57905801259291e-11,3.5494524525387663e-10,9.289115763706185e-10 +1501,"Suspended solids, unspecified","('water', 'ocean')",emission,kilogram,biosphere3,0.003001853768507132,0.0033174805199047723,0.003771495553469414,0.0009958941604763022,0.0028892684896441234,0.003322462329743582,0.003001853768507132,0.0033174805199047723,0.003771495553469414,0.0011080467162302356,0.0028892684896441234,0.003322462329743582,0.0030018537685071313,0.0033174805199047723,0.003771495553469414,0.0011080467162302356,0.0028892684896441234,0.00332246232974358 +1502,"Suspended solids, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,0.005219330245018252,0.005363331993886344,0.005558854458015012,3.8559505468677346e-05,0.0043629073868176075,0.005514693538960895,0.005219330245018252,0.005363331993886344,0.005558854458015012,5.102431914471286e-05,0.0043629073868176075,0.005514693538960895,0.005219330245018251,0.005363331993886344,0.0055588544580150116,5.102431914471286e-05,0.004362907386817607,0.005514693538960894 +1503,"Suspended solids, unspecified","('water',)",emission,kilogram,biosphere3,2.4445144952115863e-05,2.628652993494692e-05,2.8850156715819507e-05,1.4316840169976716e-06,1.0375308750553535e-05,3.0756735085859195e-05,2.4445144952115863e-05,2.628652993494692e-05,2.8850156715819507e-05,3.2978832844786504e-06,1.0375308750553535e-05,3.075673508585921e-05,2.444514495211586e-05,2.6286529934946913e-05,2.8850156715819507e-05,3.2978832844786504e-06,1.037530875055354e-05,3.0756735085859216e-05 +1504,t-Butyl methyl ether,"('water', 'ocean')",emission,kilogram,biosphere3,5.184560366009857e-07,5.70923030274006e-07,6.464243675482477e-07,7.560261776054471e-09,1.445974240391051e-07,5.544373876726096e-07,5.184560366009857e-07,5.70923030274006e-07,6.464243675482477e-07,2.0367970440757513e-08,1.445974240391051e-07,5.544373876726096e-07,5.184560366009857e-07,5.709230302740059e-07,6.464243675482476e-07,2.0367970440757513e-08,1.4459742403910506e-07,5.544373876726094e-07 +1505,t-Butyl methyl ether,"('water', 'surface water')",emission,kilogram,biosphere3,5.078182333153737e-11,5.307325112142175e-11,5.618377001609321e-11,7.614054544084317e-12,6.258181768954124e-11,1.1645960265622153e-10,5.078182333153737e-11,5.307325112142175e-11,5.618377001609321e-11,2.0896084439870624e-11,6.258181768954124e-11,1.1645960265622122e-10,5.078182333153737e-11,5.307325112142175e-11,5.618377001609322e-11,2.0896084439870624e-11,6.258181768954118e-11,1.1645960265622153e-10 +1506,t-Butylamine,"('water', 'surface water')",emission,kilogram,biosphere3,2.1690606336930576e-10,2.2625464457466604e-10,2.3889319524027426e-10,2.06862104852163e-13,7.789807433847268e-12,2.1207460492703144e-10,2.1690606336930576e-10,2.2625464457466604e-10,2.3889319524027426e-10,6.677786324715394e-13,7.789807433847263e-12,2.1207460492703136e-10,2.169060633693057e-10,2.2625464457466611e-10,2.3889319524027426e-10,6.677786324715394e-13,7.789807433847277e-12,2.1207460492703128e-10 +1507,Technetium-99m,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.6925980333730893e-06,1.7645655288277497e-06,1.8627121633405186e-06,1.2666676886870393e-07,8.540079963180897e-07,2.092560222348158e-06,1.6925980333730893e-06,1.7645655288277497e-06,1.8627121633405186e-06,3.856921086469074e-07,8.540079963180897e-07,2.092560222348174e-06,1.6925980333730897e-06,1.7645655288277497e-06,1.8627121633405184e-06,3.856921086469074e-07,8.540079963181051e-07,2.0925602223481886e-06 +1508,Tellurium-123m,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.7260638113559103e-06,1.801717322996905e-06,1.9050886902911723e-06,2.117546234038641e-06,5.244973193349195e-06,2.0969193284414884e-06,1.7260638113559103e-06,1.801717322996905e-06,1.9050886902911723e-06,2.3061241205413393e-06,5.244973193349195e-06,2.0969193284414893e-06,1.7260638113559103e-06,1.801717322996905e-06,1.9050886902911723e-06,2.3061241205413393e-06,5.244973193349196e-06,2.09691932844149e-06 +1509,Tellurium-132,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,4.242678075641683e-09,4.423052810571275e-09,4.6690397080913556e-09,3.182541983106429e-10,2.14095214260993e-09,5.247377244209895e-09,4.242678075641683e-09,4.423052810571275e-09,4.6690397080913556e-09,9.686644911705484e-10,2.14095214260993e-09,5.2473772442099335e-09,4.242678075641683e-09,4.423052810571275e-09,4.669039708091355e-09,9.686644911705484e-10,2.140952142609968e-09,5.2473772442099715e-09 +1510,Thallium,"('water', 'ground-')",emission,kilogram,biosphere3,2.0972089992045655e-09,2.1907838597027547e-09,2.317571163290029e-09,9.647711532411576e-10,9.130463920539357e-09,1.018316792610534e-08,2.0972089992045655e-09,2.1907838597027547e-09,2.317571163290029e-09,7.98525539401896e-09,9.130463920539357e-09,1.018316792610534e-08,2.0972089992045646e-09,2.1907838597027547e-09,2.317571163290029e-09,7.98525539401896e-09,9.130463920539357e-09,1.0183167926105339e-08 +1511,Thallium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.3631258593088793e-06,1.4232254149827594e-06,1.504670607783171e-06,5.975318616774413e-07,5.5342116344371985e-06,7.096507277341276e-06,1.3631258593088793e-06,1.4232254149827594e-06,1.504670607783171e-06,4.811399175572646e-06,5.5342116344371985e-06,7.096507277341276e-06,1.3631258593088786e-06,1.4232254149827594e-06,1.504670607783171e-06,4.811399175572646e-06,5.534211634437199e-06,7.096507277341275e-06 +1512,Thallium,"('water', 'surface water')",emission,kilogram,biosphere3,1.1668738760708574e-06,1.1672168663813512e-06,1.1676850025717067e-06,3.062864920674915e-09,9.395119346533102e-09,1.0648217932977513e-06,1.1668738760708574e-06,1.1672168663813512e-06,1.1676850025717067e-06,3.803588497222783e-09,9.395119346533102e-09,1.0648217932977513e-06,1.1668738760708574e-06,1.1672168663813512e-06,1.1676850025717067e-06,3.803588497222783e-09,9.3951193465331e-09,1.064821793297751e-06 +1513,Thallium,"('water',)",emission,kilogram,biosphere3,7.825133772918505e-13,8.199816441085139e-13,8.708134375651102e-13,1.7922916340360506e-14,3.1822675030964983e-13,8.328172238138365e-13,7.825133772918505e-13,8.199816441085139e-13,8.708134375651102e-13,5.898465267472405e-14,3.1822675030964983e-13,8.328172238138366e-13,7.825133772918082e-13,8.199816441085201e-13,8.708134375651104e-13,5.898465267472405e-14,3.182267503096497e-13,8.328172238138242e-13 +1514,Thorium-228,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,2.3058500919151283e-09,2.47513069518453e-09,2.7139961581887323e-09,1.5470615846620363e-09,4.611768612467938e-09,6.2167846331631865e-09,2.3058500919151283e-09,2.47513069518453e-09,2.7139961581887323e-09,3.951368985271362e-09,4.611768612467938e-09,6.2167846331631865e-09,2.3058500919151283e-09,2.47513069518453e-09,2.7139961581887323e-09,3.951368985271362e-09,4.611768612467938e-09,6.2167846331631865e-09 +1515,Thorium-228,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.013629432012336925,0.015148598570744725,0.01734372252314045,0.000229648434846753,0.0038888390978741847,0.014822135059335904,0.013629432012336925,0.015148598570744725,0.01734372252314045,0.0006278031232667226,0.0038888390978741847,0.014822135059335906,0.013629432012336925,0.015148598570744722,0.01734372252314045,0.0006278031232667226,0.003888839097874183,0.014822135059335897 +1516,Thorium-228,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.027223708731437257,0.030236029944869656,0.03458735836622603,0.0005735179231289001,0.007905664585867679,0.029713689257118394,0.027223708731437257,0.030236029944869656,0.03458735836622603,0.0013525753476589858,0.007905664585867679,0.029713689257118394,0.027223708731437264,0.030236029944869656,0.03458735836622602,0.0013525753476589858,0.007905664585867672,0.029713689257118377 +1517,Thorium-230,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.020798986530902074,0.021702693560693362,0.022936936790109233,0.015998074337026633,0.04257729691288679,0.028202147791778022,0.020798986530902074,0.021702693560693362,0.022936936790109233,0.01824334036732977,0.04257729691288679,0.028202147791778022,0.020798986530902074,0.021702693560693362,0.022936936790109233,0.01824334036732977,0.042577296912886774,0.028202147791778022 +1518,Thorium-232,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,0.07355283452671701,0.09275334605750896,0.12068639571644252,-5.934685293374858e-25,2.9693530856102756e-23,0.08320883260510951,0.07355283452671701,0.09275334605750896,0.12068639571644252,1.8316570922996522e-24,2.969353089992523e-23,0.08320883260510951,0.07355283452671701,0.09275334605750894,0.12068639571644252,1.8316570922996522e-24,2.4678003145960666e-23,0.08320883260510947 +1519,Thorium-232,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.05570903418178698,0.055710454915325065,0.055712397381622744,7.343414416188762e-05,0.00017105886122326664,0.04998834494716254,0.05570903418178698,0.055710454915325065,0.055712397381622744,7.685650119994049e-05,0.00017105886122326664,0.04998834494716254,0.05570903418178698,0.055710454915325065,0.055712397381622744,7.685650119994049e-05,0.00017105886122326664,0.049988344947162526 +1520,Thorium-232,"('water',)",emission,kilo Becquerel,biosphere3,1.5209436942178225,1.5855273496723363,1.6727151660903143,0.0,0.0,1.4223732667057545,1.5209436942178225,1.5855273496723363,1.6727151660903143,0.0,0.0,1.4223732667057545,1.520943694217822,1.585527349672336,1.6727151660903148,0.0,0.0,1.422373266705754 +1521,Thorium-234,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00015245853848779438,0.00015908278281630554,0.00016812988332133515,0.00011727013389728335,0.0003121010155473984,0.0002067427610050631,0.00015245853848779438,0.00015908278281630554,0.00016812988332133515,0.00013372802488145885,0.0003121010155473984,0.0002067427610050632,0.00015245853848779438,0.00015908278281630554,0.00016812988332133515,0.00013372802488145885,0.0003121010155473985,0.0002067427610050633 +1522,"Tin, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.2020812015232944e-05,1.2573694956422002e-05,1.3321370100022969e-05,5.023605390375983e-06,5.166019163442065e-05,6.0054348869562536e-05,1.2020812015232944e-05,1.2573694956422002e-05,1.3321370100022969e-05,4.576144080329699e-05,5.166019163442065e-05,6.0054348869562536e-05,1.202081201523294e-05,1.2573694956422002e-05,1.3321370100022969e-05,4.576144080329699e-05,5.166019163442065e-05,6.005434886956253e-05 +1523,"Tin, ion","('water', 'surface water')",emission,kilogram,biosphere3,2.219751851299435e-08,2.3111901069604254e-08,2.4355872899347014e-08,2.356021233454765e-08,8.348988413072505e-08,6.015510946449183e-08,2.219751851299435e-08,2.3111901069604254e-08,2.4355872899347014e-08,5.299159613450683e-08,8.348988413072505e-08,6.015510946449183e-08,2.219751851299435e-08,2.3111901069604248e-08,2.4355872899347014e-08,5.299159613450683e-08,8.348988413072505e-08,6.015510946449182e-08 +1524,"Tin, ion","('water',)",emission,kilogram,biosphere3,3.6243505099743e-11,3.7978751460572056e-11,4.033287562083742e-11,8.296534779296883e-13,1.473763510786896e-11,3.8571311854686626e-11,3.6243505099743e-11,3.7978751460572056e-11,4.033287562083742e-11,2.7304771408501888e-12,1.473763510786896e-11,3.857131185468663e-11,3.624350509974104e-11,3.7978751460572346e-11,4.033287562083742e-11,2.7304771408501888e-12,1.4737635107868954e-11,3.857131185468606e-11 +1525,"Titanium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0002633098601704839,0.00027791482870966955,0.0002981945339008575,6.326393182820579e-05,0.0002723175305651054,0.0011501889039012133,0.0002633098601704839,0.00027791482870966955,0.0002981945339008575,0.00013257859000660898,0.0002723175305651054,0.0011501889039012135,0.0002633098601704839,0.00027791482870966955,0.0002981945339008574,0.00013257859000660898,0.0002723175305651054,0.0011501889039012133 +1526,"Titanium, ion","('water', 'ocean')",emission,kilogram,biosphere3,3.4894816818731582e-09,3.849494767222325e-09,4.366636561883622e-09,1.2702725198812653e-09,3.5943101947530505e-09,3.87951567517075e-09,3.4894816818731582e-09,3.849494767222325e-09,4.366636561883622e-09,1.4076722371443256e-09,3.5943101947530505e-09,3.87951567517075e-09,3.4894816818731582e-09,3.849494767222325e-09,4.366636561883621e-09,1.4076722371443256e-09,3.59431019475305e-09,3.879515675170748e-09 +1527,"Titanium, ion","('water', 'surface water')",emission,kilogram,biosphere3,3.415009853890996e-07,3.6159576898364137e-07,3.896058482982605e-07,9.127786873342144e-08,3.376886750885559e-07,1.7314551756909565e-06,3.415009853890996e-07,3.6159576898364137e-07,3.896058482982605e-07,1.4537866869955007e-07,3.376886750885559e-07,1.7314551756909567e-06,3.4150098538909957e-07,3.6159576898364137e-07,3.896058482982603e-07,1.4537866869955007e-07,3.376886750885559e-07,1.7314551756909567e-06 +1528,"Titanium, ion","('water',)",emission,kilogram,biosphere3,5.6872327430883634e-11,5.959548540169799e-11,6.328989177005707e-11,1.3026205316443285e-12,2.312841744518777e-11,6.052836320769966e-11,5.6872327430883634e-11,5.959548540169799e-11,6.328989177005707e-11,4.286948528480029e-12,2.312841744518777e-11,6.052836320769966e-11,5.6872327430880564e-11,5.959548540169844e-11,6.328989177005709e-11,4.286948528480029e-12,2.312841744518776e-11,6.052836320769876e-11 +1529,"TOC, Total Organic Carbon","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0013435494622944027,0.0014331572187283946,0.0015554869724406257,0.0007449940271198834,0.0027395441919660863,0.003580064366838115,0.0013435494622944027,0.0014331572187283946,0.0015554869724406257,0.0021920569848847948,0.0027395441919660863,0.0035800643668381154,0.0013435494622944025,0.001433157218728394,0.0015554869724406252,0.0021920569848847948,0.0027395441919660863,0.003580064366838114 +1530,"TOC, Total Organic Carbon","('water', 'ocean')",emission,kilogram,biosphere3,0.0022094331750583257,0.002460746055811262,0.002823734167502432,0.00023986344087814805,0.001047881723122844,0.0024269386518044624,0.0022094331750583257,0.002460746055811262,0.002823734167502432,0.0003058249434629665,0.001047881723122844,0.002426938651804463,0.0022094331750583257,0.002460746055811262,0.0028237341675024317,0.0003058249434629665,0.0010478817231228438,0.002426938651804461 +1531,"TOC, Total Organic Carbon","('water', 'surface water')",emission,kilogram,biosphere3,0.011133259026550957,0.012408705256814817,0.014242313078513593,0.00019798632630253982,0.0032913948256108163,0.012207193864706796,0.011133259026550957,0.012408705256814817,0.014242313078513593,0.0005788065414775342,0.0032913948256108163,0.012207193864706796,0.011133259026550957,0.012408705256814817,0.014242313078513591,0.0005788065414775342,0.003291394825610815,0.012207193864706792 +1532,"TOC, Total Organic Carbon","('water',)",emission,kilogram,biosphere3,8.959831335801291e-05,9.555017068864523e-05,0.0001033762035273528,1.706266524195981e-07,3.703069596963767e-06,8.92860264081626e-05,8.959831335801291e-05,9.555017068864523e-05,0.0001033762035273528,4.386802024330336e-07,3.703069596963767e-06,8.928602640816239e-05,8.959831335801287e-05,9.555017068864527e-05,0.00010337620352735282,4.386802024330336e-07,3.703069596963747e-06,8.92860264081627e-05 +1533,Toluene,"('water', 'ocean')",emission,kilogram,biosphere3,1.029896336830027e-05,1.145482057616883e-05,1.3125195848627974e-05,1.6390586200951098e-07,2.9065087345697526e-06,1.1161199847562102e-05,1.029896336830027e-05,1.145482057616883e-05,1.3125195848627974e-05,4.5018666508060345e-07,2.9065087345697526e-06,1.1161199847562104e-05,1.029896336830027e-05,1.1454820576168828e-05,1.3125195848627972e-05,4.5018666508060345e-07,2.9065087345697514e-06,1.1161199847562097e-05 +1534,Toluene,"('water', 'surface water')",emission,kilogram,biosphere3,1.56794881580509e-05,1.7402865321232058e-05,1.989162304044846e-05,3.3156499936710494e-07,4.546432939700779e-06,1.70975695867176e-05,1.56794881580509e-05,1.7402865321232058e-05,1.989162304044846e-05,7.75342456243277e-07,4.546432939700779e-06,1.70975695867176e-05,1.56794881580509e-05,1.7402865321232058e-05,1.9891623040448457e-05,7.75342456243277e-07,4.546432939700776e-06,1.709756958671759e-05 +1535,Toluene,"('water',)",emission,kilogram,biosphere3,5.220215424033674e-10,5.470169520602461e-10,5.809272876303118e-10,1.1956534586673491e-11,2.1229185738506938e-10,5.55579679314203e-10,5.220215424033674e-10,5.470169520602461e-10,5.809272876303118e-10,3.9349178735981044e-11,2.1229185738506938e-10,5.55579679314203e-10,5.220215424033392e-10,5.470169520602503e-10,5.809272876303118e-10,3.9349178735981044e-11,2.1229185738506928e-10,5.555796793141948e-10 +1536,"Toluene, 2-chloro","('water', 'surface water')",emission,kilogram,biosphere3,1.1730018793034243e-09,1.224473422425435e-09,1.2941699611444363e-09,9.945643242126903e-13,8.508672500449685e-12,1.1062044311094532e-09,1.1730018793034243e-09,1.224473422425435e-09,1.2941699611444363e-09,5.395326886410703e-12,8.508672500449683e-12,1.106204431109453e-09,1.1730018793034274e-09,1.2244734224254364e-09,1.2941699611444363e-09,5.395326886410703e-12,8.508672500449711e-12,1.1062044311094503e-09 +1537,Tributyltin compounds,"('water', 'ocean')",emission,kilogram,biosphere3,2.1772774173506222e-07,2.407505758181478e-07,2.7390081527005234e-07,5.0316247669135906e-08,1.6481786960661245e-07,2.4462325490216185e-07,2.1772774173506222e-07,2.407505758181478e-07,2.7390081527005234e-07,5.871000112862156e-08,1.6481786960661245e-07,2.4462325490216185e-07,2.1772774173506214e-07,2.407505758181477e-07,2.739008152700523e-07,5.871000112862156e-08,1.6481786960661243e-07,2.446232549021617e-07 +1538,Triethylene glycol,"('water', 'ocean')",emission,kilogram,biosphere3,3.756899847611375e-07,3.9641903010715457e-07,4.2403548588250844e-07,1.1288601186028999e-08,1.1680485038020457e-07,4.195478585366784e-07,3.756899847611375e-07,3.9641903010715457e-07,4.2403548588250844e-07,5.044081127498674e-08,1.1680485038020457e-07,4.195478585366784e-07,3.756899847611374e-07,3.9641903010715457e-07,4.2403548588250844e-07,5.044081127498674e-08,1.1680485038020455e-07,4.1954785853667836e-07 +1539,Trimethylamine,"('water', 'surface water')",emission,kilogram,biosphere3,2.0762816476016407e-11,2.1644697601478682e-11,2.2835330764105074e-11,1.1543364024379277e-14,5.722687548037742e-14,1.9470186945417295e-11,2.0762816476016407e-11,2.1644697601478682e-11,2.2835330764105074e-11,2.048162936644557e-14,5.722687548037691e-14,1.9470186945417285e-11,2.0762816476016398e-11,2.164469760147869e-11,2.2835330764105074e-11,2.048162936644557e-14,5.722687548037843e-14,1.9470186945417272e-11 +1540,Tungsten,"('water', 'ground-')",emission,kilogram,biosphere3,3.673195464188542e-07,3.836130779675194e-07,4.057394930390892e-07,1.1092857544484236e-07,1.1698587598321739e-06,1.3702732338097902e-06,3.673195464188542e-07,3.836130779675194e-07,4.057394930390892e-07,1.0072474571521093e-06,1.1698587598321739e-06,1.3702732338097902e-06,3.673195464188541e-07,3.836130779675194e-07,4.057394930390892e-07,1.0072474571521093e-06,1.1698587598321739e-06,1.3702732338097898e-06 +1541,Tungsten,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.6501219917401594e-05,1.723737080875817e-05,1.823389521461147e-05,7.51110537013282e-06,7.666216164299335e-05,8.685436237397732e-05,1.6501219917401594e-05,1.723737080875817e-05,1.823389521461147e-05,6.825023768032523e-05,7.666216164299335e-05,8.685436237397732e-05,1.6501219917401587e-05,1.723737080875817e-05,1.823389521461147e-05,6.825023768032523e-05,7.666216164299336e-05,8.68543623739773e-05 +1542,Tungsten,"('water', 'surface water')",emission,kilogram,biosphere3,1.740063507773709e-07,1.8039908560826645e-07,1.890712900745995e-07,9.166338305331639e-08,2.301870624061056e-07,1.5371644242755144e-06,1.740063507773709e-07,1.8039908560826645e-07,1.890712900745995e-07,9.892579881184315e-08,2.301870624061056e-07,1.5371644242755146e-06,1.740063507773709e-07,1.8039908560826647e-07,1.890712900745995e-07,9.892579881184315e-08,2.3018706240610556e-07,1.5371644242755146e-06 +1543,Uranium alpha,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00878234984634466,0.009163939926929173,0.009685098851660615,0.006754629233705508,0.01797708725226063,0.011906990277075223,0.00878234984634466,0.009163939926929173,0.009685098851660615,0.007702697888435563,0.01797708725226063,0.011906990277075223,0.00878234984634466,0.009163939926929173,0.009685098851660615,0.007702697888435563,0.017977087252260625,0.011906990277075223 +1544,Uranium-234,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.0001829283248144436,0.00019087648193838921,0.000201731724614033,0.00014070401637471404,0.00037446986123419696,0.0002480395685863566,0.0001829283248144436,0.00019087648193838921,0.000201731724614033,0.00016045126448645077,0.00037446986123419696,0.00024803956858635674,0.0001829283248144436,0.00019087648193838921,0.000201731724614033,0.00016045126448645077,0.000374469861234197,0.00024803956858635685 +1545,Uranium-235,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.000301831724013486,0.00031494618274099674,0.0003328573324348912,0.00023216161797960771,0.0006178752468882705,0.0004092652719932942,0.000301831724013486,0.00031494618274099674,0.0003328573324348912,0.0002647445760345403,0.0006178752468882705,0.0004092652719932942,0.000301831724013486,0.00031494618274099674,0.0003328573324348912,0.0002647445760345403,0.0006178752468882704,0.0004092652719932942 +1546,Uranium-238,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,0.00019472860860466994,0.000245543200899688,0.00031946834492784957,6.473613861727663e-08,1.929775097364959e-07,0.00022044351715855867,0.00019472860860466994,0.000245543200899688,0.00031946834492784957,1.65343366323228e-07,1.929775097364959e-07,0.00022044351715855867,0.00019472860860466994,0.000245543200899688,0.00031946834492784957,1.65343366323228e-07,1.929775097364959e-07,0.00022044351715855856 +1547,Uranium-238,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.00043314622763498224,0.0004550969216715069,0.00048524527653506533,7.612171372641342e-05,0.00022730883873069691,0.0006052518452809596,0.00043314622763498224,0.0004550969216715069,0.00048524527653506533,0.00019444630977854358,0.00022730883873069691,0.0006052518452809596,0.000433146227634983,0.0004550969216715073,0.00048524527653506533,0.00019444630977854358,0.00022730883873069691,0.0006052518452809588 +1548,Uranium-238,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.0006748014012499621,0.0006977748874942042,0.0007291554346213379,0.0005076492193500239,0.0013000843234161638,0.0008414538243889001,0.0006748014012499621,0.0006977748874942042,0.0007291554346213379,0.0005645022966712695,0.0013000843234161638,0.0008414538243889002,0.0006748014012499621,0.0006977748874942042,0.0007291554346213379,0.0005645022966712695,0.0013000843234161638,0.0008414538243889004 +1549,Urea,"('water', 'surface water')",emission,kilogram,biosphere3,4.999939229616874e-11,5.4310114262047773e-11,6.040366116081965e-11,1.1670921780183324e-12,9.684677530399084e-12,5.7661726651152693e-11,4.999939229616874e-11,5.4310114262047773e-11,6.040366116081965e-11,6.9862898638276e-12,9.684677530399083e-12,5.7661726651152674e-11,4.999939229616873e-11,5.431011426204779e-11,6.040366116081965e-11,6.9862898638276e-12,9.684677530399086e-12,5.766172665115265e-11 +1550,"Vanadium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,3.513548926326134e-05,3.6805992048399426e-05,3.9097112684250306e-05,1.0318741862211744e-05,5.156144507795254e-05,0.00014188396028984445,3.513548926326134e-05,3.6805992048399426e-05,3.9097112684250306e-05,3.26449133718471e-05,5.156144507795254e-05,0.00014188396028984445,3.5135489263261336e-05,3.6805992048399426e-05,3.9097112684250306e-05,3.26449133718471e-05,5.1561445077952544e-05,0.00014188396028984445 +1551,"Vanadium, ion","('water', 'ocean')",emission,kilogram,biosphere3,4.890407215819866e-08,5.38530897340147e-08,6.097485219632041e-08,7.131340863358008e-10,1.3639371099555987e-08,5.229806196616944e-08,4.890407215819866e-08,5.38530897340147e-08,6.097485219632041e-08,1.921242017319141e-09,1.3639371099555987e-08,5.229806196616945e-08,4.890407215819865e-08,5.38530897340147e-08,6.09748521963204e-08,1.921242017319141e-09,1.363937109955598e-08,5.2298061966169414e-08 +1552,"Vanadium, ion","('water', 'surface water')",emission,kilogram,biosphere3,5.79049687777193e-07,5.961203460668766e-07,6.196793383445097e-07,1.9611273181901575e-07,5.441568105050367e-07,1.0209820114317582e-06,5.79049687777193e-07,5.961203460668766e-07,6.196793383445097e-07,2.285018547049209e-07,5.441568105050367e-07,1.0209820114317582e-06,5.79049687777193e-07,5.961203460668766e-07,6.196793383445097e-07,2.285018547049209e-07,5.441568105050365e-07,1.0209820114317582e-06 +1553,"Vanadium, ion","('water',)",emission,kilogram,biosphere3,8.945975175837617e-12,9.374325916875595e-12,9.955453314728157e-12,2.0490124803908097e-13,3.63808300592343e-12,9.521066903979442e-12,8.945975175837617e-12,9.374325916875595e-12,9.955453314728157e-12,6.743338365525732e-13,3.63808300592343e-12,9.521066903979443e-12,8.945975175837132e-12,9.374325916875666e-12,9.955453314728159e-12,6.743338365525732e-13,3.638083005923428e-12,9.521066903979301e-12 +1554,"VOC, volatile organic compounds, unspecified origin","('water', 'ocean')",emission,kilogram,biosphere3,2.383339240264048e-05,2.6491016001216043e-05,3.0331222259543535e-05,3.987012646481178e-07,6.7959623882940095e-06,2.5913425142390274e-05,2.383339240264048e-05,2.6491016001216043e-05,3.0331222259543535e-05,1.0905235063624737e-06,6.7959623882940095e-06,2.5913425142390277e-05,2.383339240264048e-05,2.6491016001216036e-05,3.0331222259543535e-05,1.0905235063624737e-06,6.795962388294007e-06,2.591342514239026e-05 +1555,"VOC, volatile organic compounds, unspecified origin","('water', 'surface water')",emission,kilogram,biosphere3,4.802176713715765e-05,5.3309859873618185e-05,6.094726183261313e-05,1.2983885892068577e-06,1.4618459035513896e-05,5.2508958163207725e-05,4.802176713715765e-05,5.3309859873618185e-05,6.094726183261313e-05,2.702725997332048e-06,1.4618459035513896e-05,5.2508958163207725e-05,4.802176713715766e-05,5.3309859873618185e-05,6.094726183261312e-05,2.702725997332048e-06,1.4618459035513886e-05,5.250895816320769e-05 +1556,Xylene,"('water', 'ocean')",emission,kilogram,biosphere3,8.065467392139148e-06,8.963438955804653e-06,1.0260870525912648e-05,1.3488499188329152e-07,2.298255869034392e-06,8.76785084772312e-06,8.065467392139148e-06,8.963438955804653e-06,1.0260870525912648e-05,3.687585498056694e-07,2.298255869034392e-06,8.767850847723121e-06,8.065467392139148e-06,8.963438955804653e-06,1.0260870525912647e-05,3.687585498056694e-07,2.2982558690343912e-06,8.767850847723116e-06 +1557,Xylene,"('water', 'surface water')",emission,kilogram,biosphere3,1.289151738882926e-05,1.431693794099175e-05,1.6375911752859357e-05,2.7173849329410875e-07,3.7434779102327366e-06,1.4069281399061002e-05,1.289151738882926e-05,1.431693794099175e-05,1.6375911752859357e-05,6.40202122952564e-07,3.7434779102327366e-06,1.4069281399061002e-05,1.2891517388829261e-05,1.431693794099175e-05,1.6375911752859354e-05,6.40202122952564e-07,3.743477910232734e-06,1.4069281399060993e-05 +1558,Xylene,"('water',)",emission,kilogram,biosphere3,2.636053085187696e-10,2.762272448671859e-10,2.93350952901918e-10,6.0376935421817844e-12,1.0720105681642623e-10,2.805511673194327e-10,2.636053085187696e-10,2.762272448671859e-10,2.93350952901918e-10,1.9870162353403687e-11,1.0720105681642623e-10,2.805511673194327e-10,2.636053085187554e-10,2.76227244867188e-10,2.9335095290191804e-10,1.9870162353403687e-11,1.0720105681642618e-10,2.805511673194285e-10 +1559,"Zinc, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0008438034564256225,0.0008816600234748117,0.0009329942151126197,0.0003773572673475832,0.003260208047244053,0.0036914284214892286,0.0008438034564256225,0.0008816600234748117,0.0009329942151126197,0.002776396001708125,0.003260208047244053,0.003691428421489274,0.0008438034564256336,0.0008816600234747889,0.0009329942151126197,0.002776396001708125,0.003260208047243966,0.0036914284214892 +1560,"Zinc, ion","('water', 'ocean')",emission,kilogram,biosphere3,4.5392895848495404e-05,5.015581951117725e-05,5.7007721980986604e-05,1.3639129422821048e-05,4.0677906057407274e-05,5.009989770327934e-05,4.5392895848495404e-05,5.015581951117725e-05,5.7007721980986604e-05,1.529000739609914e-05,4.0677906057407274e-05,5.009989770327934e-05,4.53928958484954e-05,5.015581951117725e-05,5.7007721980986604e-05,1.529000739609914e-05,4.067790605740727e-05,5.009989770327931e-05 +1561,"Zinc, ion","('water', 'surface water')",emission,kilogram,biosphere3,1.7141502561584966e-05,1.843713957835188e-05,2.0283424520910828e-05,4.6049991719824747e-07,1.0852914226685116e-05,1.901781402148877e-05,1.7141502561584966e-05,1.843713957835188e-05,2.0283424520910828e-05,1.924757462217961e-06,1.0852914226685116e-05,1.9017814021488776e-05,1.7141502561584962e-05,1.8437139578351874e-05,2.0283424520910824e-05,1.924757462217961e-06,1.0852914226685093e-05,1.9017814021488722e-05 +1562,"Zinc, ion","('water',)",emission,kilogram,biosphere3,3.327117034949944e-05,3.4686796497319414e-05,3.659906453676618e-05,4.159548241376757e-08,1.3914805603826771e-06,3.233553824958122e-05,3.327117034949944e-05,3.4686796497319414e-05,3.659906453676618e-05,1.6779749116563672e-07,1.3914805603826771e-06,3.233553824958122e-05,3.3271170349499433e-05,3.468679649731941e-05,3.659906453676619e-05,1.6779749116563672e-07,1.3914805603826767e-06,3.233553824958121e-05 +1563,Zinc-65,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,7.516497809175037e-06,7.836056888618925e-06,8.27185709400292e-06,5.638318400423195e-07,3.792996265420554e-06,9.296462955998196e-06,7.516497809175037e-06,7.836056888618925e-06,8.27185709400292e-06,1.7161246742679609e-06,3.792996265420554e-06,9.296462955998265e-06,7.5164978091750385e-06,7.836056888618925e-06,8.271857094002919e-06,1.7161246742679609e-06,3.792996265420622e-06,9.296462955998331e-06 +1564,Zirconium-95,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,8.704315160395657e-08,9.074373531924591e-08,9.579042385621162e-08,6.52933075619775e-09,4.392395997417462e-08,1.0765564694764162e-07,8.704315160395657e-08,9.074373531924591e-08,9.579042385621162e-08,1.9873204774553067e-08,4.392395997417462e-08,1.0765564694764244e-07,8.704315160395658e-08,9.074373531924591e-08,9.579042385621161e-08,1.9873204774553067e-08,4.3923959974175405e-08,1.076556469476432e-07 +1565,Sodium tetrahydridoborate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1566,Water,"('air',)",emission,cubic meter,biosphere3,4.614139094493618e-06,5.767469305687051e-06,7.444346709007677e-06,4.836263023496173e-07,3.302496225828702e-06,8.163170286331507e-06,4.614139094493618e-06,5.767469305687051e-06,7.444346709007677e-06,2.9043360749066942e-06,3.302496225828702e-06,8.163170286331508e-06,4.614139094493617e-06,5.767469305687051e-06,7.444346709007677e-06,2.9043360749066942e-06,3.3024962258287026e-06,8.163170286331505e-06 +1567,Water,"('air', 'lower stratosphere + upper troposphere')",emission,cubic meter,biosphere3,8.496050734471917e-10,8.853729330366508e-10,9.333435632228772e-10,2.782983437283057e-12,2.881159811913204e-10,8.310088371852692e-10,8.496050734471917e-10,8.853729330366508e-10,9.333435632228772e-10,1.134978056973679e-11,2.881159811913204e-10,8.310088371852692e-10,8.496050734471917e-10,8.853729330366508e-10,9.333435632228772e-10,1.134978056973679e-11,2.8811598119132037e-10,8.310088371852687e-10 +1568,Water,"('air', 'non-urban air or from high stacks')",emission,cubic meter,biosphere3,1.39800559337803e-10,1.4568607830813156e-10,1.535795350936805e-10,4.579335163247643e-13,4.7408821542674664e-11,1.3674059145276082e-10,1.39800559337803e-10,1.4568607830813156e-10,1.535795350936805e-10,1.8675802522548743e-12,4.7408821542674664e-11,1.3674059145276082e-10,1.39800559337803e-10,1.4568607830813156e-10,1.535795350936805e-10,1.8675802522548743e-12,4.740882154267466e-11,1.3674059145276074e-10 +1569,Water,"('air', 'urban air close to ground')",emission,cubic meter,biosphere3,3.075741691987868e-11,3.206975753974982e-11,3.385129279595455e-11,9.95192776888342e-13,1.3819348458417187e-11,3.380309227287191e-11,3.075741691987868e-11,3.206975753974982e-11,3.385129279595455e-11,3.4265215175212794e-12,1.381934845841719e-11,3.380309227287191e-11,3.075741691987868e-11,3.206975753974982e-11,3.385129279595455e-11,3.4265215175212794e-12,1.3819348458417187e-11,3.380309227287188e-11 +1570,"Carbon dioxide, from soil or biomass stock","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.030068304838241522,0.031347327986215694,0.03307441309850831,0.00021346221829639172,0.0005550515930074415,0.028195797084024213,0.030068304838241522,0.031347327986215694,0.03307441309850831,0.00023397977619904093,0.0005550515930074415,0.028195797084024213,0.030068304838241616,0.03134732798621573,0.033074413098508317,0.00023397977619904093,0.0005550515930074422,0.02819579708402413 +1571,"Bromine, 0.23% in water","('natural resource', 'in water')",natural resource,kilogram,biosphere3,8.846486998167006e-07,9.283716249065297e-07,9.88170232097519e-07,3.3670441226527833e-09,2.805743990789997e-08,8.586626752219907e-07,8.846486998167006e-07,9.283716249065297e-07,9.88170232097519e-07,1.974439728556523e-08,2.8057439907899966e-08,8.586626752219907e-07,8.846486998167027e-07,9.283716249065305e-07,9.881702320975193e-07,1.974439728556523e-08,2.8057439907899996e-08,8.586626752219888e-07 +1572,Sulfur trioxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.501666076463843e-08,1.5675814953196782e-08,1.6568388102305855e-08,1.2729621338897159e-11,1.0944853336150068e-10,1.4162180128733274e-08,1.501666076463843e-08,1.5675814953196782e-08,1.6568388102305855e-08,6.954333327555006e-11,1.0944853336150067e-10,1.4162180128733274e-08,1.5016660764638475e-08,1.56758149531968e-08,1.6568388102305855e-08,6.954333327555006e-11,1.0944853336150102e-10,1.416218012873324e-08 +1573,"Copper, Cu 0.38%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1574,"Gold, Au 9.7E-4%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.891108308121055e-09,3.0096296735736288e-09,3.1680406716277025e-09,7.915184488943625e-12,9.800930929848273e-10,2.8203322207379877e-09,2.891108308121055e-09,3.0096296735736288e-09,3.1680406716277025e-09,3.482976148380635e-11,9.800930929848273e-10,2.8203322207379877e-09,2.8911083081210465e-09,3.0096296735736288e-09,3.1680406716277025e-09,3.482976148380635e-11,9.800930929848273e-10,2.820332220737954e-09 +1575,"Lead, Pb 0.014%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1576,"Silver, Ag 9.7E-4%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.99369697395349e-08,3.116457686059232e-08,3.280552859399389e-08,8.793091689847062e-11,1.0170943100654499e-08,2.9228990088602313e-08,2.99369697395349e-08,3.116457686059232e-08,3.280552859399389e-08,3.8068504638879965e-10,1.0170943100654499e-08,2.9228990088602313e-08,2.993696973953491e-08,3.116457686059233e-08,3.280552859399389e-08,3.8068504638879965e-10,1.0170943100654496e-08,2.92289900886023e-08 +1577,"Zinc, Zn 0.63%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1578,"Energy, geothermal, converted","('natural resource', 'in ground')",natural resource,megajoule,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1579,"Energy, kinetic (in wind), converted","('natural resource', 'in air')",natural resource,megajoule,biosphere3,0.32869298394534313,0.3429353638288131,0.3623795446101954,0.1141618804905022,0.37748050091930513,0.4058799449563607,0.32869298394534313,0.3429353638288131,0.3623795446101954,0.14809160957100406,0.37748050091930513,0.4058799449563607,0.32869298394534313,0.3429353638288131,0.3623795446101954,0.14809160957100406,0.3774805009193051,0.4058799449563606 +1580,"Energy, potential (in hydropower reservoir), converted","('natural resource', 'in water')",natural resource,megajoule,biosphere3,2.9592849946751363,3.0952127441334945,3.2805122339292576,0.7725553510487176,5.185954359460553,12.937345940721737,2.9592849946751363,3.0952127441334945,3.2805122339292576,3.905889642114014,5.185954359460553,12.937345940721743,2.9592849946751363,3.0952127441334945,3.2805122339292576,3.905889642114014,5.185954359460554,12.937345940721745 +1581,"Energy, solar, converted","('natural resource', 'in air')",natural resource,megajoule,biosphere3,0.00479994117163287,0.005007844810123337,0.005291682875136571,0.00021116060020265248,0.0023620241526083087,0.005506403093108169,0.00479994117163287,0.005007844810123337,0.005291682875136571,0.0007216541036121468,0.0023620241526083087,0.005506403093108169,0.00479994117163287,0.005007844810123337,0.005291682875136571,0.0007216541036121468,0.0023620241526083083,0.005506403093108168 +1582,"Energy, gross calorific value, in biomass","('natural resource', 'biotic')",natural resource,megajoule,biosphere3,3.7826537844972954,3.951397580088484,4.1797399629154075,1.1546800685652656,3.07510028055345,5.015121837619384,3.7826537844972954,3.951397580088484,4.1797399629154075,1.3477220544253403,3.07510028055345,5.015121837619384,3.7826537844973,3.9513975800884884,4.1797399629154075,1.3477220544253403,3.0751002805534497,5.015121837619379 +1583,"Energy, gross calorific value, in biomass, primary forest","('natural resource', 'biotic')",natural resource,megajoule,biosphere3,0.21609888070208622,0.22529023996950454,0.2377007698392697,2.1982135486132486e-05,0.00026152596612128787,0.2023235973589742,0.21609888070208622,0.22529023996950454,0.2377007698392697,5.219921176728755e-05,0.00026152596612128787,0.2023235973589742,0.21609888070208688,0.22529023996950476,0.23770076983926974,5.2199211767287516e-05,0.00026152596612129253,0.20232359735897362 +1584,"Cobalt, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.8457478002187276e-08,4.7284001876663846e-08,6.010394733798093e-08,3.1770584019384674e-10,2.8683781908136777e-09,4.437926236031778e-08,3.8457478002187276e-08,4.7284001876663846e-08,6.010394733798093e-08,1.181122121588118e-09,2.868378190814023e-09,4.437926236031778e-08,3.845747800218676e-08,4.7284001876664944e-08,6.010394733798092e-08,1.181122121588118e-09,2.8683781908137344e-09,4.437926236031638e-08 +1585,"Uranium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.374169808141687e-05,3.536251458186096e-05,3.7557380321074235e-05,2.5859609080378416e-05,6.888362476464784e-05,4.586921571817764e-05,3.374169808141687e-05,3.536251458186096e-05,3.7557380321074235e-05,2.950292824866661e-05,6.888362476464784e-05,4.586921571817764e-05,3.374169808141687e-05,3.536251458186096e-05,3.7557380321074235e-05,2.950292824866661e-05,6.888362476464782e-05,4.586921571817764e-05 diff --git a/data/results/LCIs/Inventory_versions_CML.csv b/data/results/LCIs/Inventory_versions_CML.csv new file mode 100644 index 0000000..41d365a --- /dev/null +++ b/data/results/LCIs/Inventory_versions_CML.csv @@ -0,0 +1,2196 @@ +,name,categories,type,unit,database,"Pulse magnetising and testing +of magnet, recycled, hand +picking | Magnetised NdFeB +magnet, recycled, hand picking +| | REM2_2","Pulse magnetising and testing +of magnet, recycling, shredded +| Magnetised NdFeB magnet, +recycled, shredded | | REM2_2","pulse magnetising and testing +of magnet, primary, baseline | +Magnetised NdFeB magnet, +primary, baseline | | REM2_2","Pulse magnetising and testing +of magnet, recycled, hand +picking | Magnetised NdFeB +magnet, recycled, hand picking +| | REM3_1","Pulse magnetising and testing +of magnet, recycling, shredded +| Magnetised NdFeB magnet, +recycled, shredded | | REM3_1","pulse magnetising and testing +of magnet, primary, baseline | +Magnetised NdFeB magnet, +primary, baseline | | REM3_1","Pulse magnetising and testing +of magnet, recycled, hand +picking | Magnetised NdFeB +magnet, recycled, hand picking +| | REM3_2","Pulse magnetising and testing +of magnet, recycling, shredded +| Magnetised NdFeB magnet, +recycled, shredded | | REM3_2","pulse magnetising and testing +of magnet, primary, baseline | +Magnetised NdFeB magnet, +primary, baseline | | REM3_2","Pulse magnetising and testing +of magnet, recycled, hand +picking | Magnetised NdFeB +magnet, recycled, hand picking +| | REM3_3","Pulse magnetising and testing +of magnet, recycling, shredded +| Magnetised NdFeB magnet, +recycled, shredded | | REM3_3","pulse magnetising and testing +of magnet, primary, baseline | +Magnetised NdFeB magnet, +primary, baseline | | REM3_3","Pulse magnetising and testing +of magnet, recycled, hand +picking | Magnetised NdFeB +magnet, recycled, hand picking +| | REM3_4","Pulse magnetising and testing +of magnet, recycling, shredded +| Magnetised NdFeB magnet, +recycled, shredded | | REM3_4","pulse magnetising and testing +of magnet, primary, baseline | +Magnetised NdFeB magnet, +primary, baseline | | REM3_4","Pulse magnetising and testing +of magnet, recycled, hand +picking | Magnetised NdFeB +magnet, recycled, hand picking +| | REM3_5","Pulse magnetising and testing +of magnet, recycling, shredded +| Magnetised NdFeB magnet, +recycled, shredded | | REM3_5","pulse magnetising and testing +of magnet, primary, baseline | +Magnetised NdFeB magnet, +primary, baseline | | REM3_5","Pulse magnetising and testing +of magnet, recycled, hand +picking | Magnetised NdFeB +magnet, recycled, hand picking +| | REM3_6","Pulse magnetising and testing +of magnet, recycling, shredded +| Magnetised NdFeB magnet, +recycled, shredded | | REM3_6","pulse magnetising and testing +of magnet, primary, baseline | +Magnetised NdFeB magnet, +primary, baseline | | REM3_6","REO solvent extraction, Hi- +tech_1 | NdO from solvent +extraction, primary, Hi-tech | +| REM2_2","REO solvent extraction, +baseline_1 | NdO from solvent +extraction, baseline | | +REM2_2","REO solvent extraction, Low- +tech_1 | NdO from solvent +extraction, Low-tech | | +REM2_2","REO solvent extraction, Hi- +tech_1 | NdO from solvent +extraction, primary, Hi-tech | +| REM3_6","REO solvent extraction, +baseline_1 | NdO from solvent +extraction, baseline | | +REM3_6","REO solvent extraction, Low- +tech_1 | NdO from solvent +extraction, Low-tech | | +REM3_6","REO solvent extraction, Hi- +tech_1 | NdO from solvent +extraction, primary, Hi-tech | +| REM3_5","REO solvent extraction, +baseline_1 | NdO from solvent +extraction, baseline | | +REM3_5","REO solvent extraction, Low- +tech_1 | NdO from solvent +extraction, Low-tech | | +REM3_5" +0,"1,4-Butanediol","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.1209862073733768e-12,2.7944853185614207e-11,4.614810645203592e-10,2.5093041303996677e-11,5.849719038093196e-11,1.040442354118288e-09,1.921058538998336e-11,4.619510064244348e-11,6.380744796605361e-10,2.345438818922075e-11,5.567699674255154e-11,6.235286190462754e-10,1.4400145400293248e-11,3.456658329098931e-11,9.309056637276432e-10,1.4423914722312378e-11,1.4897357401976852e-10,1.3069052393556007e-09,2.1859532065288613e-11,1.5729891110599949e-10,1.0567069896204666e-09,4.894253129391193e-10,5.101158203600623e-10,5.380076175771094e-10,1.0991672064989209e-09,1.1448958832291101e-09,1.2067763233795481e-09,1.3766684142258076e-09,1.4328641489614301e-09,1.508734094345679e-09 +1,1-Pentanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.7471472015943744e-12,2.4181490777161073e-12,1.1865139040439692e-11,4.114418356539777e-12,7.117831440825998e-12,9.538939509292981e-11,3.4234272355452475e-12,5.938815274267396e-12,6.772335084806759e-11,4.145182850544548e-12,7.574080774712773e-12,8.129686550723127e-11,2.1134132854614443e-12,2.988678049252431e-12,8.476377880252853e-11,2.0732711720533326e-12,2.8702353034024574e-12,8.389998227436812e-11,3.735578249265531e-12,5.04390263499137e-12,1.3755668738185516e-10,9.77483639740183e-12,1.0737803266894006e-11,1.2106443117125472e-11,1.4176356982440803e-10,1.4861041825789539e-10,1.5795688314315785e-10,8.682387786261996e-11,9.105981256043269e-11,9.684723852798463e-11 +2,1-Pentene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.320285514598547e-12,1.8273487009517775e-12,8.966245660502694e-12,2.482284122135814e-11,8.802405832565807e-11,1.9834299351882084e-10,2.3428483630925537e-11,8.618912645511154e-11,1.754514087974993e-10,2.491287612543038e-11,8.957757810435544e-11,1.880774412889473e-10,2.0491889547739715e-11,8.311751466990198e-11,1.9872759936504293e-10,2.0677118444194015e-11,8.288098215832419e-11,1.9652369971811536e-10,2.574195344752912e-11,8.72916520765239e-11,2.4004714643737155e-10,7.386643395529122e-12,8.114338405220903e-12,9.148592497201369e-12,1.7528312769393416e-10,1.837426112573647e-10,1.9524705151823135e-10,1.3361207496822304e-10,1.4003969716247654e-10,1.487786482463534e-10 +3,"2,4-D","('soil', 'agricultural')",emission,kilogram,biosphere3,1.7062756581413793e-10,8.56684610381358e-10,6.610523577084281e-07,5.175623204414905e-08,1.198350281247346e-07,5.104387763421403e-06,2.6734174477401264e-08,6.390983675902435e-08,2.9646836727179238e-06,4.646623491295907e-08,1.0768151384501708e-07,2.966376478327044e-06,1.1016588664937114e-08,2.771958902524046e-08,4.534414098181294e-06,9.09756794183889e-09,2.3067604925590943e-08,4.499405977098171e-06,6.717644999209883e-09,1.6954873652416332e-08,3.0287660460986493e-06,7.060600994909019e-07,7.360910272456798e-07,7.766399473249368e-07,3.231131652351842e-06,3.3685209785785757e-06,3.554031492636934e-06,4.801410783839419e-06,5.005452764854532e-06,5.280947045503704e-06 +4,2-Aminopropanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.3299159904159568e-14,4.814492622539095e-14,1.0930041242867179e-11,9.737629359303607e-12,2.1563808394168625e-11,1.0821230196569512e-10,1.1211464106161632e-11,2.5288898591749317e-11,7.461949061271126e-11,1.996612871148989e-11,4.478596712423573e-11,6.219485147605516e-11,2.886401771894712e-13,6.942048232615931e-13,8.363419303762591e-11,2.3380926275237704e-13,5.6211463407728e-13,8.282026904723602e-11,3.785747024445848e-12,5.110401922033372e-12,1.4801101124145351e-10,1.1636099170137004e-11,1.2134040561100931e-11,1.280677873100822e-11,1.5286328969361517e-10,1.6018950022603244e-10,1.7018412363930927e-10,8.832939379841211e-11,9.208421267387864e-11,9.715410181437388e-11 +5,2-Methyl pentane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.0353498726249944e-09,7.788414571821255e-09,1.1755625508048872e-08,1.8308956394690576e-09,7.435055123234186e-09,1.1040710936541155e-08,1.8474331424720022e-09,7.492798662096626e-09,1.1022681340903654e-08,1.5975942287827017e-09,7.2450851739096775e-09,1.1785680976417802e-08,1.6126552139088832e-09,7.231268259911444e-09,1.16575518871427e-08,1.9358862699089644e-09,7.46526502756193e-09,1.1896443412836497e-08,0.0,0.0,0.0,5.6893049377966815e-09,5.962932842662454e-09,6.332508828481076e-09,5.679432380994222e-09,5.949462585901042e-09,6.314690938106467e-09 +6,2-Methyl-1-propanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.0298261237672044e-12,4.250960627599078e-12,7.545452980267591e-11,9.966203919226825e-12,1.8763594287658832e-11,3.379157614623916e-10,7.977837477316552e-12,1.501309613185181e-11,2.4785906475265395e-10,1.0343631566405498e-11,2.042319630096379e-11,7.948530587094124e-10,4.0618217263637405e-12,6.257540858112607e-12,3.4042964291818575e-10,3.92576965723082e-12,5.881910447234911e-12,3.3784909986488335e-10,1.1776103353264235e-11,1.6127342230217277e-11,5.126387014222153e-10,7.558539242223712e-11,7.974131144555664e-11,8.54704502194853e-11,5.313377846867025e-10,5.56474226687197e-10,5.907297166584878e-10,3.5586804134337274e-10,3.719423580164128e-10,3.937642814903827e-10 +7,2-Methyl-2-butene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.928548990521319e-16,4.0532750306604e-16,1.988824911977005e-15,2.5163690323496516e-12,3.871892055624582e-12,5.587790092432245e-12,2.160110871907446e-12,3.832340483103801e-12,5.880274533015117e-12,2.1662706283732827e-12,2.412654893523148e-12,2.7653413341173256e-12,1.3023090216876678e-15,3.612290153231725e-15,4.2632484601130246e-14,1.9580561346412316e-15,8.068943807283674e-15,5.036749316868814e-14,3.209577712056814e-15,1.0024486824926393e-14,7.773474138103617e-14,1.638450899490336e-15,1.799862499807228e-15,2.02927261258696e-15,7.032756007651034e-14,7.781402888973611e-14,8.753387240528514e-14,4.471599882816597e-14,4.8980757456891e-14,5.454865837338733e-14 +8,2-Nitrobenzoic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.072262721139976e-14,5.781964814985344e-14,1.9745702640216333e-11,4.829570173622376e-12,1.0843727529483273e-11,2.3172346738628915e-10,3.4743908271791913e-12,7.919927909810508e-12,1.5981858639704672e-10,4.8766565509695485e-12,1.1105620446512735e-11,1.248583186976075e-10,5.176560323177006e-13,1.2846793985384435e-12,1.9766746838328733e-10,4.304428707844959e-13,1.068277800408134e-12,1.956024079972729e-10,8.811808123389134e-12,1.191688781997991e-11,3.4741671558677284e-10,2.105669721265407e-11,2.1951031571244556e-11,2.315847458762667e-11,3.588949273586648e-10,3.7608260106896216e-10,3.9952904563383697e-10,2.0870910129494362e-10,2.1757745256659418e-10,2.2955128840608697e-10 +9,2-Propanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.8166705962048125e-08,5.115337280217254e-07,1.4720331908799323e-06,2.788321997542053e-08,4.792902981901213e-07,1.3735158713993414e-06,2.5091972089847006e-08,4.6109468689256416e-07,1.2930275163793029e-06,2.5380646986333333e-08,4.6159551108566047e-07,1.2942504906547578e-06,2.485684440562917e-08,5.38695313458566e-07,1.506078297198293e-06,2.6851809751175873e-08,5.326071121911935e-07,1.4790138947311505e-06,3.3421034652461025e-08,5.418563286191696e-07,1.494435648356602e-06,1.5089865897477567e-06,1.5708475644094913e-06,1.6535284175412108e-06,1.5066870638915584e-06,1.573039866658311e-06,1.6619611060285726e-06,1.4987705529325581e-06,1.563533940051967e-06,1.6503831342320507e-06 +10,4-Methyl-2-pentanone,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.801536756625966e-11,2.347554452548125e-10,3.769908690534652e-10,0.0,0.0,0.0,2.0291424968529625e-10,2.127965396573573e-10,2.2624163035384508e-10,0.0,0.0,0.0 +11,Abamectin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.903557689938196e-12,1.3087502724651824e-11,7.788978368166758e-12,0.0,0.0,0.0,4.9713312429427845e-12,5.268445666644146e-12,5.681964899017861e-12,0.0,0.0,0.0 +12,Acenaphthene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.4686476953498363e-11,3.258090928281065e-11,7.306186463708498e-12,1.5559870416346933e-11,3.428140625739258e-11,5.793577233108215e-12,1.8171584007202088e-13,4.1865041137565336e-13,1.3472775740969153e-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.034070404577334e-19,2.7619705089653743e-18,8.128034473308815e-18,5.478986193035659e-12,5.71803051883206e-12,6.044544585706382e-12,8.058474369391083e-18,8.351116668564692e-18,8.74546451039011e-18,0.0,0.0,0.0 +13,Acephate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.06250335361144e-11,1.4089568419126537e-10,3.346910168262356e-10,8.268529227333152e-11,2.0738969273583407e-10,4.3482580424535947e-10,1.0644467842321245e-10,2.542827364225621e-10,4.5658431794631765e-10,2.1787552261551563e-10,4.91272261759789e-10,5.613862931805174e-10,1.552215634084282e-10,3.5446531145132913e-10,5.506767949228231e-10,2.3732838647412542e-09,5.8278889257646175e-09,8.271841246029261e-07,0.0,0.0,0.0,8.822095555165548e-07,9.197255510989445e-07,9.70382903231248e-07,4.867559704640617e-10,5.113279894204452e-10,5.450851588008984e-10 +14,Acetaldehyde,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.96103200877091e-07,1.3785688640860752e-06,4.70563281453667e-06,5.711680923531925e-07,1.322090535841513e-06,2.021714276525313e-06,3.535369404782321e-07,9.182639652906562e-07,1.6038853736852344e-06,4.036516036282199e-07,9.496479635438259e-07,1.4906250201644568e-06,5.394706289029186e-07,1.2691661778598018e-06,1.2327329589734778e-06,6.382459610692821e-07,1.4040271758780717e-06,1.9771202142723837e-06,7.56745238376431e-07,1.5718808006347796e-06,2.028445840144702e-06,3.34614624011517e-06,3.49208661869379e-06,3.6895344138641153e-06,1.3466659114916955e-06,1.5706696812161428e-06,1.8571967923490784e-06,1.3699965447516674e-06,1.5958597338953816e-06,1.8850234267735268e-06 +15,Acetamide,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.73764915795467e-12,2.1083242219503084e-11,5.035986303549195e-11,1.1824987180220907e-11,3.014716294578318e-11,6.421641165512685e-11,1.5308261083001675e-11,3.7042203524492434e-11,6.74049557999239e-11,3.059348552680523e-11,6.961667145100887e-11,8.316308014253191e-11,2.180018148297566e-11,5.0225509166430144e-11,8.10402638933269e-11,8.863683858885396e-14,3.3924538190456805e-13,3.33779968385239e-11,0.0,0.0,0.0,3.5537583385281744e-11,3.704993068620861e-11,3.9091977737820506e-11,7.2244382448445e-11,7.586069928191342e-11,8.082422903251963e-11 +16,Acetic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.152504651846152e-06,1.1138453728204462e-05,2.677269743204532e-05,4.623680188680313e-06,1.0837602043609162e-05,1.4155485877380158e-05,1.2563797223574137e-06,3.6076665701991877e-06,1.1228868062651984e-05,1.30521449168359e-06,3.4890958390172338e-06,1.0952154262293462e-05,1.0275372092606838e-06,3.008263806521696e-06,9.993332942970398e-06,9.24616563766354e-07,2.766428329223965e-06,9.924709738922896e-06,1.012678611071844e-06,2.7645196532208964e-06,9.786320028165514e-06,1.7300110460438628e-05,2.1706661562043644e-05,2.727508833441345e-05,5.561443042775543e-06,9.472712810640713e-06,1.4368303319238502e-05,5.780005296448144e-06,9.707757646586403e-06,1.4626732337440685e-05 +17,Acetochlor,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.3139278333137367e-11,7.626659618434367e-11,1.6450428294994241e-10,1.2274186177704896e-11,5.975333832606796e-11,1.1138283256244562e-10,1.994130738707098e-11,7.574194065513582e-11,1.1184063564589231e-10,2.707682928197235e-12,4.3272482697210196e-11,1.1936036293422914e-10,2.1454229999390092e-12,3.0848158731021595e-11,8.454626967677715e-11,1.3381344748196965e-11,1.3712780409183493e-10,2.1986496378728818e-10,0.0,0.0,0.0,8.666885041229853e-11,9.284938117340595e-11,1.0146513444603994e-10,8.470037210262333e-11,8.838168808537167e-11,9.332134372113115e-11 +18,Acetone,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.387417686812128e-07,1.822524123826006e-06,6.384680481280548e-06,5.276531127453055e-07,1.7275827949686125e-06,3.3534699679757038e-06,2.82055806597823e-07,1.2133132887796053e-06,2.776249994524706e-06,2.9948053905955433e-07,1.1802127078349536e-06,2.6571566409924892e-06,2.190844502671093e-07,1.1308111414200166e-06,2.6619128762269413e-06,2.097628720633556e-07,1.0947900405740045e-06,2.643182917427189e-06,2.3635711194184842e-07,1.114840852680073e-06,2.648656913414548e-06,5.09520960600126e-06,5.309064140027554e-06,5.597552177812511e-06,2.4839700658104653e-06,2.59827138362821e-06,2.7516024626339015e-06,2.5043442568611317e-06,2.6183119023857674e-06,2.771395455237061e-06 +19,Aclonifen,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.7461373822130207e-10,4.835005092537332e-10,1.6851197006540626e-07,0.0,0.0,0.0,0.0,0.0,0.0,5.873156934654769e-14,1.3594371990288629e-13,3.326760000651711e-12,1.3559692425780405e-14,3.402219599494322e-14,5.4498893296333564e-12,1.1305893616506615e-14,2.84435118205354e-14,5.407717882360397e-12,7.694691940028261e-15,1.935795725341285e-14,3.3539665622808106e-12,1.7970350470213786e-07,1.8733466277762711e-07,1.9763735542440475e-07,3.578171064749573e-12,3.730304834453473e-12,3.935725007971115e-12,5.77080486272354e-12,6.015990864547194e-12,6.347032200162324e-12 +20,Acrolein,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.5907743139389273e-10,7.253818613654804e-10,1.590447539681922e-09,3.5977423543380105e-10,1.4911277480479074e-09,2.2993497149152074e-09,3.3413737825477506e-10,1.4282523780414687e-09,2.1484480432453897e-09,3.6932164080937233e-10,1.5206204950649801e-09,2.184065526980602e-09,2.6099471691129046e-10,1.3194301851016363e-09,2.237525533526369e-09,2.634306123472054e-10,1.3122646635232375e-09,2.2111340993178763e-09,3.6425118644168494e-10,1.5192981827170365e-09,2.775969513266248e-09,1.2278604992011984e-09,1.3934161398729834e-09,1.61060209956906e-09,1.8424858454194204e-09,1.9324139492576095e-09,2.057354445075008e-09,1.3860262156244403e-09,1.4347069594133178e-09,1.5012611639936692e-09 +21,Acrylic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.703455747053051e-11,1.3234688039561623e-09,3.808431439405676e-09,1.966378449765063e-12,3.3787809812902915e-11,9.680810005976702e-11,1.7698137786961048e-12,3.250603981586377e-11,9.11414942679881e-11,1.7898623993949606e-12,3.254071646013591e-11,9.122838599926879e-11,2.0811539722403572e-10,4.5079988102885545e-09,1.2601577513856718e-08,2.248221916939361e-10,4.4570957277378075e-09,1.2375187305532702e-08,2.7979402770913744e-10,4.534546550879251e-09,1.2503571816748642e-08,3.904000932242789e-09,4.064046002458425e-09,4.277955972419439e-09,1.2605511738120923e-08,1.3160642186987545e-08,1.3904587334504036e-08,1.2539966127009107e-08,1.3081841865031572e-08,1.3808511276791588e-08 +22,Alachlor,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.907190786933084e-11,4.5276867555676004e-11,2.0847158417998754e-10,1.1092438362551126e-11,2.255654666930936e-11,1.7999212381990784e-10,1.796857817535927e-11,4.1583715838930835e-11,2.149864425798562e-10,1.1113295147690984e-12,5.0626138354905515e-12,2.880695641556942e-10,9.501209784052053e-13,3.8754595007750035e-12,2.82201998801819e-10,1.5204465952871523e-12,3.5950221463838667e-12,4.185932439063541e-10,0.0,0.0,0.0,4.4561027429646625e-10,4.645671471926581e-10,4.9016444130277e-10,3.0046242978318545e-10,3.132367582043505e-10,3.3048241162128916e-10 +23,"Aldehydes, unspecified","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.121510521615737e-08,5.7420682740419345e-08,3.1400536457733613e-07,1.3170892713300498e-08,5.958059401651548e-08,3.1464273351421097e-07,1.2388546815071435e-08,5.919765645355563e-08,3.140671931612078e-07,1.2438683061914134e-08,5.923992664908016e-08,3.139679154872704e-07,9.701443301649346e-09,4.658496511448641e-08,2.486094786853461e-07,8.522170294080594e-09,3.923400650126209e-08,2.0214581156813564e-07,7.547821337183062e-09,3.209153220120971e-08,1.6666858198386658e-07,8.039215126078973e-08,3.2169200737170706e-07,6.225205965590827e-07,4.088078664936588e-08,1.6963134463301308e-07,3.3013059435156064e-07,5.4454623525015514e-08,2.0611317388350175e-07,3.952372412876706e-07 +24,Aldicarb,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.976688355128047e-10,4.5984303007052686e-10,8.698928486813447e-10,2.6805336076097716e-10,6.741636238847139e-10,9.20054859445703e-10,3.391321148982133e-10,8.122018434331706e-10,9.414410789069442e-10,7.306627055557318e-10,1.646908329490295e-09,9.215987903861503e-10,5.202645405766918e-10,1.187616748332111e-09,8.972915158238081e-10,1.4842811922299783e-09,1.7766894611035717e-09,3.891513625470915e-09,0.0,0.0,0.0,2.0477262315298613e-09,2.508920898823993e-09,3.1781911703847016e-09,6.180654656503993e-10,6.574173794760983e-10,7.125034702041705e-10 +25,Aldrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.211487606072933e-12,3.4038900002140625e-11,9.794716727637235e-11,5.642702265370156e-08,1.2213264561963362e-07,1.959631028365615e-07,2.559835889200314e-08,5.3396037572986573e-08,8.700889769839257e-08,2.567559147415027e-08,5.8304591108846914e-08,9.912878488566621e-08,4.246263089404515e-10,6.263030641368625e-10,1.0673698944438522e-09,4.171142085006728e-10,5.651875197672503e-10,9.426328497882345e-10,2.34426255446125e-12,3.589107268609505e-11,9.867171023891087e-11,1.0040270475608407e-10,1.0451875913211543e-10,1.1002013286554695e-10,9.898621187735938e-11,1.0335000428166638e-10,1.0919880998426538e-10,4.3734421963223813e-10,4.610980604648111e-10,4.937644483577336e-10 +26,Aluminium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.498830377749507e-06,2.1099994217477808e-05,4.7373590434702746e-05,2.4568058394241038e-05,3.9069164014389155e-05,6.502098797430504e-05,2.5587462284787694e-05,4.011603587445856e-05,6.606604280215749e-05,2.5881999570256456e-05,4.049489336633613e-05,6.532617837813978e-05,2.5157966841475732e-05,3.8490919225265674e-05,8.171163116283278e-05,2.4738794492532177e-05,3.6817833777537786e-05,8.01953673714833e-05,2.9211263990151603e-05,4.056887202078543e-05,8.348536008077809e-05,4.111192523481288e-05,4.2872217039331696e-05,4.524989633989714e-05,5.014662108747142e-05,5.265425453941777e-05,5.608745291164715e-05,5.168264716534644e-05,5.4263326410627665e-05,5.7799456180984094e-05 +27,"Aluminium, 24% in bauxite, 11% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0019510893834558387,0.004778372986371004,0.009544055781912527,3.467544558732981e-07,1.1137086812313021e-06,4.606125680194382e-06,3.521252136558322e-07,1.1666947058371681e-06,4.6318311309431055e-06,3.5421776725900304e-07,1.168998493942993e-06,4.622825199020036e-06,2.8006377974274956e-07,9.593311972770425e-07,4.022428220471515e-06,3.2971229500250496e-07,1.0530964682973844e-06,3.897953825422531e-06,0.0,0.0,0.0,0.005845166175486562,0.006354312888278717,0.00707353584609851,0.0,0.0,0.0,1.3429562108642862e-06,3.78242999118247e-06,6.826012015966455e-06 +28,Ametryn,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.569034613857156e-11,7.456357329994956e-11,1.068782492572735e-10,0.0,0.0,0.0,2.7993027895231338e-11,2.983130214086873e-11,3.2396125586765755e-11,0.0,0.0,0.0 +29,Amidosulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.1264368141689204e-13,3.7691732242187694e-13,5.473883781837453e-13,2.9739589879352934e-13,3.680717002502927e-13,5.528394749487229e-13,7.388929063482309e-15,9.359645703453212e-15,1.4338454701353224e-14,7.392880209478857e-15,9.509529059516157e-15,1.459809502770157e-14,8.592626277527418e-15,3.342819422998168e-14,8.155222597898215e-14,1.0939922069204952e-13,1.3644683360765887e-13,2.1320139693153314e-13,0.0,0.0,0.0,8.29915552923847e-14,8.766019531269501e-14,9.408611371153733e-14,7.328882127965513e-14,7.654516593085649e-14,8.092681270784247e-14 +30,Ammonia,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.875592380912988e-05,0.0003543612776393026,0.0007772640941301605,4.821349791952339e-05,0.0003501393602302698,0.0007496511164169442,5.806619245288842e-05,0.000477327347198139,0.0009620355293320302,6.732631949378027e-05,0.0004954231057270814,0.0009625379461293004,0.00012780099745288476,0.0006229371431805517,0.0009554514227791081,0.00010016925755266868,0.0005376285595384909,0.0008978564194559047,0.00012168694049509241,0.0005785576408596124,0.000914164222694031,0.000797761299968634,0.0008443880709769734,0.0009069176487961449,0.0008973835848482306,0.0009538145400871374,0.0010302570854831615,0.000894339626736304,0.0009505262934617392,0.0010266475080577754 +31,Ammonium carbonate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2759040423109351e-09,3.1074274504005166e-09,4.9082909882123124e-09,6.486296229395638e-10,1.6216915675059694e-09,2.926190726754775e-09,6.576932527799867e-10,1.6818942653210248e-09,3.0228230461787195e-09,6.547047914846926e-10,1.6762457568278306e-09,3.144813030621037e-09,6.457701690869553e-10,1.6790265871936914e-09,3.092718005516771e-09,6.455528838494217e-10,1.6662792825872113e-09,3.0433789938495217e-09,6.187264410985551e-09,1.3705735240451116e-08,2.373560628053821e-08,1.4824534678405087e-09,2.5029893526723787e-09,3.7835383817219756e-09,1.2545170076339182e-08,1.3998216867353324e-08,1.5876080681784752e-08,9.321674345894144e-10,1.866615591425425e-09,3.0349273263482626e-09 +32,"Ammonium, ion","('water', 'ground-')",emission,kilogram,biosphere3,7.850184237294125e-07,1.8035950531655424e-06,4.956767694889127e-06,1.037511840777362e-06,2.2466676112798046e-06,5.0695052935347335e-06,1.0881366621141534e-06,2.357121543317799e-06,5.2261957469069144e-06,1.0895726353391656e-06,2.361155775258736e-06,5.232603869990521e-06,1.2622898399892255e-06,2.7365698728115577e-06,5.265857894331074e-06,1.978968063303355e-06,4.46145998428091e-06,1.0178973080955985e-05,6.033562743714841e-06,8.848006782651705e-06,1.6503576732372482e-05,7.980588886709634e-07,8.302792115022324e-07,8.741898593121962e-07,6.245793311258025e-06,6.579416656470216e-06,7.0317629603660864e-06,4.42390298850458e-06,4.670076207619248e-06,5.002777250370446e-06 +33,"Anhydrite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.8974310750406576e-08,1.1794633333530196e-07,4.998650221714294e-07,2.134517174600307e-08,1.2185033250997374e-07,4.975547375744851e-07,1.9325854067460907e-08,1.8291610521601342e-07,7.050409625258227e-07,1.9577325576817997e-08,1.8349755213991135e-07,7.054649192417512e-07,1.8629071959006422e-08,1.236628175873157e-07,5.013383385257559e-07,1.9159305060357322e-08,1.243435322580236e-07,4.967771642232956e-07,2.483509691753782e-08,1.325607805995052e-07,5.116625676381608e-07,2.562884812870837e-07,5.178693124393562e-07,8.446434865574759e-07,2.9082016521264696e-07,5.2542751040511e-07,8.187549044838475e-07,2.876557390777606e-07,5.166919269204382e-07,8.031362632733739e-07 +34,Aniline,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.454394051794755e-12,1.013240735568225e-11,1.2980506986478075e-09,3.344569581119596e-11,6.815257696179564e-11,1.6397128198140902e-09,3.290577807015586e-11,6.928278175252181e-11,1.4584890710049177e-09,5.005895247724896e-11,1.0743229496833718e-10,1.3588399338717081e-09,1.1900725774111877e-11,2.157522058209495e-11,1.5802608753265611e-09,1.0597700728801944e-11,1.8624744653850387e-11,1.5667915581265189e-09,1.5022474315253966e-10,1.8312585540049245e-10,2.269243598404588e-09,1.3762432063404637e-09,1.4366849335594825e-09,1.5185340223789148e-09,2.2102853960894507e-09,2.34157484186347e-09,2.5234832196464137e-09,1.6616416147222351e-09,1.7342518512355618e-09,1.8325370517722707e-09 +35,Anthranilic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.5128718337944053e-14,4.223331587270456e-14,1.4403035224506049e-11,3.75676989006202e-12,8.434498666596734e-12,1.7984176533066511e-10,2.7055440351832235e-12,6.167110680201451e-12,1.2427251666635e-10,3.799193489356363e-12,8.651819135486341e-12,9.715284614974978e-11,4.029005433830881e-13,9.998945416244165e-13,1.5384775570246012e-10,3.3503176410808505e-13,8.315331014701374e-13,1.5223163265775935e-10,6.773636003917508e-12,9.175749946632015e-12,2.7000985499898056e-10,1.535928946891751e-11,1.6011647443377338e-11,1.6892398441841675e-11,2.790383756726685e-10,2.9238141397301647e-10,3.1058098572157423e-10,1.6243212152925803e-10,1.6933408939302706e-10,1.7865296064194432e-10 +36,Anthraquinone,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.446758151402397e-16,6.655978227525315e-16,9.80250980270071e-16,5.173977749628836e-16,6.473903155844888e-16,9.821883151361379e-16,5.467765811357145e-13,6.693815359971906e-13,9.937650589179972e-13,5.471032961677281e-13,6.763766940589057e-13,1.0018872800355209e-12,3.2300201802794674e-13,3.806354487624393e-13,5.678220868430039e-13,2.3147470366203526e-13,2.627398097677744e-13,3.7699348128733206e-13,0.0,0.0,0.0,9.904098687699494e-14,1.0556120498526626e-13,1.146596954630539e-13,1.7095276024792757e-13,1.8217073369633957e-13,1.978540599706202e-13 +37,Antimony,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.396173613490404e-10,3.647505228283018e-09,1.8984677118772472e-07,6.232744039405326e-09,1.2701411285429532e-08,1.9673085517633597e-07,4.546186147561323e-09,8.889982442236083e-09,2.0984780740617358e-08,4.6129041139687815e-09,9.00290281382053e-09,2.0872062204561865e-08,4.39449574572276e-09,8.602820176771336e-09,2.332670476441231e-08,4.322444018365061e-09,8.302669039883839e-09,2.2963512685089413e-08,5.169584696359722e-09,9.194302804740693e-09,2.412163303296429e-08,1.951122620607365e-08,2.0230487888681676e-08,2.1198131141717067e-08,1.1570037665288271e-08,1.2139956803183996e-08,1.2916422216284338e-08,1.145115589365359e-08,1.2040687227934063e-08,1.2841647487556492e-08 +38,Antimony-122,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,0.0,0.0,0.18430869857080032,0.0,0.0,0.18430869857080032,0.0,0.0,0.18430869857080034,0.0,0.0,0.18430869857080026,0.0,0.0,0.18430869857080032,0.0,0.0,0.18430869857080032,0.0,0.0,0.18430869857080034,0.20544992598414136,0.20544992598414138,0.20544992598414138,0.20544992598414136,0.20544992598414138,0.2054499259841413,0.20544992598414136,0.20544992598414138,0.20544992598414138 +39,Arsenic,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.402090515287532e-08,1.4444558185742168e-07,1.5734597450157271e-06,9.916485932827309e-08,2.0935919962737123e-07,1.6711747157942713e-06,7.76623584137163e-08,1.6412714731927597e-07,5.843627002524517e-07,7.917809882109986e-08,1.5993005007594238e-07,5.68672181939888e-07,7.719707103409246e-08,1.564908897942856e-07,5.888653820421024e-07,7.362309970317107e-08,1.4663903117525567e-07,5.842883628469369e-07,8.511436107911873e-08,1.452197938455846e-07,5.417177828747804e-07,4.775480292832992e-07,5.000740948592847e-07,5.309838548082168e-07,4.3101541668123313e-07,4.500429786587035e-07,4.7582650749145124e-07,4.846598432399097e-07,5.094180665083847e-07,5.434598618112093e-07 +40,"Arsenic, ion","('water', 'ground-')",emission,kilogram,biosphere3,3.3451084853389974e-07,8.034669225507493e-07,1.6348608758040266e-06,1.7523826650914148e-07,2.121095070850856e-07,2.3656749939398736e-07,3.741472038561013e-07,8.039099193433086e-07,1.2436128853005869e-06,3.7104253979082185e-07,7.891613992966797e-07,1.2119633642079183e-06,3.079828398537206e-07,6.692670372473917e-07,1.2174541754145753e-06,4.913495834424567e-06,1.0759025942513864e-05,2.8782187519777227e-06,2.0461010257465854e-06,4.487265158662564e-06,2.449564252525417e-06,1.3062224680237098e-06,1.3632142702805323e-06,1.441039328891481e-06,1.856929741087053e-06,1.9365781041027332e-06,2.0438706462613673e-06,2.140178904703967e-06,2.2344111467980835e-06,2.362192952964791e-06 +41,Arsine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.482497186630234e-16,1.5426779236459308e-14,4.4392305848586627e-14,2.2827109394166962e-17,3.9222952659879283e-16,1.1238062742862e-15,2.054524354750682e-17,3.7734993259501644e-16,1.0580248510253142e-15,2.077798032483994e-17,3.777524820844426e-16,1.0590335357134726e-15,2.42605267634633e-15,5.255085455017278e-14,1.4689969773351625e-13,2.6208078995852056e-15,5.1957464761491473e-14,1.4426061123348733e-13,3.261628205727565e-15,5.2860328192511185e-14,1.457572212986042e-13,4.55062949464264e-14,4.737183193655583e-14,4.986523558088015e-14,1.4694555939144302e-13,1.534168519543042e-13,1.620892040296187e-13,1.461814779280382e-13,1.5249825705151121e-13,1.609692216060676e-13 +42,Asulam,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.3780685524291449e-15,2.204860736215041e-14,6.305300815299745e-14,4.803996333799466e-17,8.243942932984423e-16,2.3057204640446266e-15,4.897809649718642e-17,8.258286782863085e-16,2.3072093180441843e-15,4.78753107315535e-17,9.615177953274878e-16,2.6736435768474763e-15,2.8102243904544495e-17,5.25187599865775e-16,1.452544313037329e-15,6.674437860348999e-18,1.0218681944489534e-16,2.809319277445473e-16,0.0,0.0,0.0,2.818273571573515e-16,2.942516742130164e-16,3.1090402833840004e-16,1.466462916782815e-15,1.5299006331900602e-15,1.6149811565854557e-15 +43,Atrazine,"('soil', 'agricultural')",emission,kilogram,biosphere3,3.178226886093411e-13,8.929792066249063e-12,2.5695537494986314e-11,1.536043541019347e-08,3.496239531329824e-08,5.5990891670004256e-08,7.15563448687459e-09,1.661941700857477e-08,2.6708916704111236e-08,1.2469892649251554e-08,2.9267653322378092e-08,4.6649819499593535e-08,4.733286230646065e-10,2.354801360301194e-09,3.627900910000523e-09,3.508620328433823e-10,1.7209497665492342e-09,2.6901281854322877e-09,5.620293489242729e-10,5.334744123038316e-09,7.580429438784499e-09,2.6339725081549274e-11,2.7419534048441474e-11,2.8862768793774054e-11,1.4566859471442888e-09,1.6284123054635315e-09,1.8738266506034656e-09,8.256272808137229e-10,8.923541298595299e-10,9.863636688705154e-10 +44,Azinphos-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3880091356081093e-10,1.6300561791472084e-10,3.6791995461715456e-10,0.0,0.0,0.0,1.931455096293993e-10,2.370751891503653e-10,3.0083367022450964e-10,0.0,0.0,0.0 +45,Azoxystrobin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2415097611924992e-11,1.866748106101915e-11,1.8253815340498822e-09,1.2377923256264525e-11,1.9813396809191906e-11,1.849128030143422e-09,5.61253565445445e-12,1.2390385148364134e-11,1.8388723645037141e-09,5.736545664808457e-12,1.2495439621548854e-11,1.9878312374072697e-09,4.76067869252782e-12,9.865487003394187e-12,2.141625308292539e-09,1.0379647516969173e-09,1.725147766135862e-09,1.464456355194489e-07,0.0,0.0,0.0,1.551519131044514e-07,1.619281493555787e-07,1.7110015705010097e-07,2.2852067721964996e-09,2.382473151907888e-09,2.513815089006236e-09 +46,"Barite, 15% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0014578867391574677,0.006915955179874017,0.020461125078470983,0.0013561204943084713,0.006454938782503738,0.01760926047560509,0.0008737692817620748,0.005521627655245154,0.01771408616140948,0.0008744087381561728,0.005480233139719932,0.01758949959030032,0.0009340152475972112,0.005515981218637923,0.01687633929005743,0.0008540357686734071,0.0053389803166304225,0.016983193395303305,0.0,0.0,0.0,0.019065493698771346,0.020961870512775583,0.02369105930506907,0.0,0.0,0.0,0.016448444844659467,0.018043458835949367,0.020337611332023983 +47,Barium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.110444319509342e-08,2.483103511733703e-07,1.173036980442529e-05,4.067468840837444e-07,7.135332268622171e-07,1.197703382205737e-05,3.090744783148428e-07,4.877964001777486e-07,1.1688051074527723e-06,3.112977185264324e-07,4.90300702880161e-07,1.1611581150801846e-06,3.0539518567087627e-07,4.725761053169027e-07,1.3496947819408569e-06,3.006278332546115e-07,4.5212523660087976e-07,1.3277210073632125e-06,3.55467836109178e-07,4.981163302362906e-07,1.3690569847412485e-06,1.2181037553856975e-06,1.2615589791162592e-06,1.320239814083725e-06,6.323636787722659e-07,6.638284958325822e-07,7.068478606943668e-07,6.504296259230182e-07,6.827267670466661e-07,7.269240035129116e-07 +48,"Basalt, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.00024496104857611527,0.0006174767840426088,0.001359779980785688,0.00030039136576318905,0.0006677407176836813,0.0013682793241482536,0.0002671548976588265,0.0006253471138051033,0.0012872877622102986,0.0002736025026078744,0.0006366550525562901,0.0012970789234172408,0.00027359454411795674,0.0006816826372593094,0.001406901523029805,0.00026929134615299126,0.0006644881236557289,0.0013904852387771462,0.0003112077625009261,0.0007037286797285242,0.0014223809350047303,0.001047551628622993,0.0011024909827756012,0.0011777531224701002,0.0010659163054782797,0.0011242140930362435,0.0012039756936703333,0.001077086943165631,0.0011354806607877452,0.001215492679841938 +49,Benomyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.0872521447387079e-12,5.4472980828097285e-12,4.214177881006152e-09,3.1624472753219483e-12,1.0072977785654369e-11,3.537607690333551e-09,3.4642029382031316e-12,1.140128782279541e-11,3.5379963679219413e-09,4.040370431603416e-12,1.2367097218577193e-11,3.4244777027265435e-09,6.8699092326993476e-12,1.834721957278072e-11,3.651718668895215e-09,5.135944625451697e-12,1.4655765595157477e-11,3.6242214212788475e-09,6.369182401116691e-12,1.6659170480170952e-11,3.6235437541950937e-09,4.5011018736864065e-09,4.692547772369118e-09,4.951045452083184e-09,3.866199835432708e-09,4.0306395594489535e-09,4.252669690901011e-09,3.867587007133283e-09,4.03217828084622e-09,4.254429076752335e-09 +50,Bensulfuron methyl ester,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3955155970302477e-13,4.1568535606184207e-13,6.171207199968553e-13,3.3975445854217603e-13,4.2002857651236764e-13,6.221624617180827e-13,3.346196289888561e-13,3.9432127044893114e-13,5.882318143472829e-13,3.271618947254458e-13,3.7135051368378964e-13,5.328328225051354e-13,0.0,0.0,0.0,1.399800291924024e-13,1.4919546616665782e-13,1.6205494505796867e-13,1.7708758085116142e-13,1.887084380921342e-13,2.049550520957656e-13 +51,Bentazone,"('soil', 'agricultural')",emission,kilogram,biosphere3,8.911478011066229e-11,2.467563084444382e-10,8.600071918474583e-08,9.693568991920311e-12,1.2511496311552028e-11,4.758078952537442e-11,1.8717845044072103e-11,3.48481003398044e-11,9.253753630869952e-10,2.1425612214127894e-11,4.804225104939534e-11,1.041296491626925e-09,5.538419465386316e-12,1.2242909288545344e-11,1.7028428838305137e-09,4.868612909375505e-12,1.1140365164828777e-11,1.699024638424148e-09,6.706381558680289e-12,1.1462156966678504e-11,1.112868684546482e-09,9.17123610762891e-08,9.560695136829307e-08,1.0086496939999092e-07,1.181764787881571e-09,1.2320531799257674e-09,1.2999604222382547e-09,1.8112539371151808e-09,1.8882273245369515e-09,1.9921554967879064e-09 +52,Benzaldehyde,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.3517083337669598e-10,3.7846010158654217e-10,8.297987175661125e-10,1.1875567194118213e-10,5.137173340475153e-10,7.985401789628655e-10,1.1303012474243353e-10,4.944232119505567e-10,7.468230697108103e-10,1.3143093901936346e-10,5.425098652791289e-10,7.698406657070884e-10,8.30296811953837e-11,4.4589938112410413e-10,7.732363688219214e-10,8.445091429143625e-11,4.440314555143693e-10,7.638081304080745e-10,1.1014423231415317e-10,4.962540880339452e-10,9.435133412153107e-10,6.406228704097903e-10,7.269997266360819e-10,8.403141406786683e-10,6.803599522562885e-10,7.13996314989279e-10,7.611671281941194e-10,5.328444071859933e-10,5.492293400545723e-10,5.717559609230194e-10 +53,Benzene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.3091328310463077e-06,1.217588077664067e-05,6.233417506279201e-05,3.852867442070854e-06,2.2837465796024695e-05,9.814197457681818e-05,3.919949477454113e-06,1.888499014018045e-05,6.29793083181662e-05,4.466593138018578e-06,2.0029474131861533e-05,6.308364357927694e-05,7.609826820709815e-06,2.1864797136176185e-05,4.6819224124521215e-05,6.7119321513565275e-06,1.984999120098913e-05,4.908145389430291e-05,7.430535005068872e-06,1.6976805303603093e-05,2.98212061039306e-05,3.18739224999164e-05,4.3486839865312025e-05,5.842047553389692e-05,1.8506479896685923e-05,2.728495983710443e-05,3.8334020160779136e-05,3.762952293152686e-05,4.8494953159057975e-05,6.255223372277633e-05 +54,"Benzene, dichloro","('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.284255388721066e-12,5.0384758544809474e-12,3.616754728919073e-10,3.115964906493623e-11,6.688752130807836e-11,1.667936857387414e-09,2.0716128721425078e-11,4.444205129854041e-11,1.0305198765429332e-09,2.8596044819636235e-11,6.214675633934713e-11,8.892708294746101e-10,6.650399064680941e-12,1.2713486217284173e-11,1.3324326550970298e-09,6.062603868235531e-12,1.1220069971702147e-11,1.3206010313819181e-09,3.408587763308385e-11,4.585667118786234e-11,1.3840177270375254e-09,3.8086943910137036e-10,3.9796286756443576e-10,4.2115547693333355e-10,1.431414169284136e-09,1.4998014471634794e-09,1.5930744098507081e-09,1.404592848747786e-09,1.4651924137001503e-09,1.5471267658255233e-09 +55,"Benzene, ethyl-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.4658072980585155e-07,1.320584018909739e-06,4.743408451924358e-06,2.2246204136411806e-07,1.4684916570162778e-06,5.3627208346459875e-06,1.9201769582775704e-07,1.432273052117981e-06,5.256945063058975e-06,2.0750743915760394e-07,1.441607921534076e-06,5.2103001425684605e-06,3.030279069883743e-07,1.5996734252762062e-06,4.976634319590721e-06,4.446153524260312e-07,1.8514027717697625e-06,5.60687425325241e-06,3.650235578403432e-07,6.982517335714296e-07,7.706874428549455e-07,4.313372461895037e-06,4.814512962235773e-06,5.53291328002298e-06,4.724304960395697e-07,5.104445109921927e-07,5.609307522592151e-07,5.171593564798274e-06,5.7194614176910435e-06,6.505740755063736e-06 +56,"Benzene, hexachloro-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.391605063700897e-12,1.6315354297848602e-11,3.169927366754348e-11,1.6210002052603596e-12,4.7124740000269156e-12,1.1171101876392637e-11,4.997975716963136e-13,1.7268920171023995e-12,3.658138948285479e-12,4.986523266720255e-13,1.3231897453269388e-12,2.6396948000736053e-12,5.81860736389789e-13,1.4819693863596187e-12,2.4913537603266868e-12,1.1651792348597565e-12,2.143169910367693e-12,3.3145403945111465e-12,1.4943820867996817e-12,3.027737941775147e-12,4.3608373531897945e-12,2.4445941445088093e-11,2.5745056975156908e-11,2.7498167603623976e-11,2.2613707737313745e-12,2.379317171248044e-12,2.5410603468198184e-12,1.9603547245567537e-12,2.0592179225954694e-12,2.194792856898156e-12 +57,"Benzene, pentachloro-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.8536596016323118e-11,4.0914863814980726e-11,7.955149532078839e-11,4.078728240483429e-12,1.1869156186899164e-11,2.8168428376531983e-11,1.2342523940569178e-12,4.293019754581964e-12,9.183206476147385e-12,1.2204431871458587e-12,3.2513124134931543e-12,6.608406378804524e-12,1.3662612053646453e-12,3.5155352515526716e-12,6.235663814503793e-12,2.8694735354230213e-12,5.249702762493425e-12,8.318539610136795e-12,3.6808545351420035e-12,7.436260526498334e-12,1.0943697237880691e-11,6.134900227253699e-11,6.460941656726829e-11,6.900922339981807e-11,5.660894853676734e-12,5.956601911930962e-12,6.3621375710209244e-12,4.906912716476926e-12,5.154773082355462e-12,5.4946972305649634e-12 +58,Benzo(a)pyrene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.364642555402906e-10,1.3972569492716239e-09,1.5908297184335329e-09,7.182338086667187e-10,1.4351951253004325e-09,2.1049972336854614e-09,1.0261473711014515e-09,2.3806100191338387e-09,2.2823040650924404e-09,1.3814356442002386e-09,3.0807718846137653e-09,2.23013323744866e-09,2.94795281111958e-09,6.4181397177147865e-09,2.114966568976246e-09,2.121717154517378e-09,4.630789904697106e-09,2.0665591270667125e-09,2.608387025705255e-09,5.63507820403028e-09,2.1848678791165047e-09,1.2769023905344533e-09,1.3332791833984927e-09,1.4095766379556706e-09,1.7160259644771251e-09,1.801365368642859e-09,1.91794511560196e-09,1.687603241278268e-09,1.7752433096852779e-09,1.895505013253149e-09 +59,Beryllium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.667716743274255e-10,2.6210028626942094e-09,5.929617081003984e-09,2.9771215475307685e-09,4.789940927755761e-09,7.840913562228153e-09,3.0548009953514056e-09,4.819708735947558e-09,7.877333206772323e-09,3.0954355336875174e-09,4.878832011161072e-09,7.802041873535228e-09,2.990803187353571e-09,4.601224315096569e-09,9.705780221553722e-09,2.9366217463016323e-09,4.3929591980690025e-09,9.524909019898915e-09,3.4638506022793694e-09,4.831957643945961e-09,9.904583920224098e-09,4.9580181120091814e-09,5.170007016843257e-09,5.456433482217871e-09,5.958496092600637e-09,6.25631941455153e-09,6.664025577032845e-09,6.146714888515562e-09,6.453614530393932e-09,6.8741174673028965e-09 +60,Bifenox,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.216870054119833e-16,2.6934027931973576e-16,3.9432065097546777e-16,2.1071340481207551e-16,2.6298626177021363e-16,3.980683931090492e-16,3.6468476174339216e-13,4.4645622509033267e-13,6.628060208503247e-13,3.6490267546292016e-13,4.511213371618223e-13,6.682220608153219e-13,2.1543202741139275e-13,2.538700740601987e-13,3.787145999649412e-13,1.54334382780752e-13,1.751799943191879e-13,2.5135755732027943e-13,0.0,0.0,0.0,6.603436384583329e-14,7.038165307953487e-14,7.644798077778033e-14,1.1401527893863778e-13,1.2149710442926183e-13,1.319571080416723e-13 +61,Bifenthrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.787584940827114e-14,2.778941090713703e-13,5.99407516796058e-13,4.472369527583044e-14,2.177244269032444e-13,4.0584784768038084e-13,7.266054219395356e-14,2.759824222802044e-13,4.075159448109898e-13,9.86603881906226e-15,1.576728186832635e-13,4.349157639859641e-13,7.817320875550786e-15,1.1240205642029698e-13,3.080629434010198e-13,1.9963339622176163e-11,4.791960871949999e-11,5.3166654395261305e-09,0.0,0.0,0.0,5.6676524666140325e-09,5.908738497143321e-09,6.234283636208203e-09,3.086244495990898e-13,3.220381346958332e-13,3.400368572979833e-13 +62,Bitertanol,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.0195636697502415e-17,4.9473580507486265e-17,7.339353026988842e-17,3.815340629357612e-17,4.789044518830242e-17,7.286579647227128e-17,8.134315725519679e-15,9.958887723050769e-15,1.4785824264955722e-14,8.139175336743588e-15,1.0063058761872077e-14,1.4906941916016926e-14,4.805549608337329e-15,5.663371528206394e-15,8.448967031061243e-15,3.455578973707364e-15,3.922369383001327e-15,5.628098845969349e-15,0.0,0.0,0.0,1.4786789216475553e-15,1.576022465073351e-15,1.71185795693557e-15,2.544472562136285e-15,2.7114173203521813e-15,2.9448123354682803e-15 +63,"BOD5, Biological Oxygen Demand","('water', 'ground-')",emission,kilogram,biosphere3,1.5608203485317306e-07,3.594772269975249e-07,5.318498237483643e-07,1.0375118555692642e-07,2.2466676433800482e-07,5.069505365840168e-07,1.0881366776228148e-07,2.3571215769911797e-07,5.226195821438796e-07,1.0895726508674661e-07,2.361155808988564e-07,5.232603944608752e-07,1.2622898579653987e-07,2.736569911867638e-07,5.265857969436601e-07,1.1426373748858276e-06,2.5698395642114096e-06,4.768398415403572e-06,1.2592735093916489e-06,2.563053942277759e-06,4.997554376226694e-06,1.2898781114682982e-07,1.3447470835218274e-07,1.4196426025138932e-07,3.147558187864595e-06,3.318371081726739e-06,3.5498797600629286e-06,3.1436635785936976e-06,3.3145446282731113e-06,3.545663119162053e-06 +64,"Borax, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.7296569252211214e-08,4.219524600164983e-08,6.186360157846336e-08,6.340056498517205e-07,1.4711153088511326e-06,1.8357812796902438e-06,8.254212120311306e-07,1.981330605644225e-06,2.6423074294895955e-06,8.356984713837825e-07,2.0110046717889155e-06,2.6790009683625494e-06,7.942767882434678e-07,1.979796047945155e-06,2.901491159998e-06,8.978790828006643e-07,2.9399365508408253e-06,3.9790386126187875e-06,1.1686580828570029e-06,3.8408725766441325e-06,5.650178813088672e-06,4.887261463715194e-08,5.144255834920991e-08,5.4972071302235554e-08,2.668687548225112e-06,2.846900621434971e-06,3.0962276772484157e-06,1.4945867867442177e-06,1.57789746416532e-06,1.6931467712653221e-06 +65,Boric acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,-1.245214275177746e-30,-7.471285651066477e-31,-6.685193235500956e-23,6.113774900316859e-18,1.250712465755788e-17,1.619341188156071e-17,6.293851870362449e-18,1.3629923907364425e-17,1.5900792415328452e-17,8.63291051630754e-18,1.8392214148715727e-17,1.3828780319100048e-17,2.4594570437919057e-18,4.6947536598336774e-18,1.0370114435618222e-17,2.6966024235814374e-18,5.367625398667986e-18,1.1022699860298429e-17,2.487141286795045e-18,4.8835199791592275e-18,1.063624204306663e-17,-2.0891228860940487e-24,-2.0891228860940487e-24,-2.0891228860940487e-24,7.529183578743585e-18,8.181443159862008e-18,9.103667249390694e-18,7.90360628816503e-18,8.552415758469507e-18,9.469707690663638e-18 +66,Boron,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.6068535262631931e-07,2.0287930883201845e-05,8.973115539582747e-05,1.7719002064464103e-06,2.2540131467141594e-05,9.072636400419091e-05,1.2021225183783567e-06,2.1257525158811572e-05,2.8769428416355755e-05,1.214936704827304e-06,2.127392707493433e-05,2.8737557091339577e-05,1.1849686979313008e-06,2.119004076368887e-05,2.9427028057440778e-05,1.1607548228840775e-06,2.1100818145172884e-05,2.9326290032896734e-05,1.3651911737811619e-06,2.1263344039850658e-05,2.9474726275072125e-05,6.047178761696956e-06,6.257802572103342e-06,6.542089522933632e-06,2.4861571241490044e-06,2.610048608713277e-06,2.779374062999658e-06,2.560988856782087e-06,2.6884657799870676e-06,2.862880786305046e-06 +67,Boron trifluoride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.503192060348859e-18,2.1112659366879773e-16,6.0709274705713e-16,4.0967055331577217e-14,8.381525124455761e-14,1.0853239183995886e-13,4.2173644894174927e-14,9.13384521017567e-14,1.0657015853194276e-13,5.784696909637431e-14,1.2324911636672542e-13,9.268625977550628e-14,1.6534635323308838e-14,3.264001368441625e-14,7.279083879014749e-14,1.812805438672592e-14,3.7135376398443804e-14,7.71042601399905e-14,1.6738931595924186e-14,3.391183949777109e-14,7.454838377715854e-14,6.227724510280543e-16,6.483036695031428e-16,6.824276957335843e-16,5.375565857970713e-14,5.827179448918843e-14,6.464638343619064e-14,5.6247366365300736e-14,6.073690903317648e-14,6.70739197701618e-14 +68,Bromine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.679058649835365e-08,1.732261162362795e-07,5.2445644229238475e-05,6.32073300132169e-07,1.3495432934677968e-06,5.2708227348783114e-05,1.5817922233231288e-07,3.500489660788358e-07,2.0852408415699953e-06,1.9027520885034592e-07,4.1379198619706487e-07,2.083735832894406e-06,4.034194196425898e-07,8.691807813754492e-07,2.0685620361133283e-06,3.023052655608154e-07,6.46369442947205e-07,2.0379113222304016e-06,3.7407797090977995e-07,7.787221958077131e-07,2.067316666473471e-06,3.5656698474187104e-06,3.676954560136396e-06,3.827224907490278e-06,3.974246707119951e-07,4.149327478981435e-07,4.3859569257123337e-07,3.9325289638715375e-07,4.1065017369566687e-07,4.3421842397375043e-07 +69,Bromoxynil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.4435336384118638e-13,8.345621740128903e-13,1.799507681550013e-12,1.3486818679898324e-13,6.540605842735913e-13,1.2189105017675967e-12,1.5964106907265255e-12,2.5154674827996315e-12,3.727847498139643e-12,1.4088508262355078e-12,2.1781740171847278e-12,3.830524468580565e-12,8.377373892013491e-13,1.2967867630397526e-12,2.355668660937481e-12,2.151297884126694e-12,1.6609833130268492e-11,2.575609301852825e-11,0.0,0.0,0.0,8.927414669501819e-12,9.611727695684045e-12,1.0569960225973746e-11,1.3568490501618488e-12,1.4253707478987135e-12,1.5189047519925214e-12 +70,Bromuconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,9.017266536602581e-18,1.0847691634504216e-17,1.5718304346001972e-17,8.579797887792026e-18,1.0662185821757152e-17,1.6075058680305572e-17,2.4647664011244047e-14,3.0174177231440927e-14,4.479623175183717e-14,2.4662392139258137e-14,3.0489454980392346e-14,4.5162228517724404e-14,1.4560181499327514e-14,1.715798612751841e-14,2.5595598275010505e-14,1.0428653676129538e-14,1.1837220450048187e-14,1.6984659727407367e-14,0.0,0.0,0.0,4.462035163683076e-15,4.755788212001006e-15,5.16569940930051e-15,7.705632505206e-15,8.211290289084095e-15,8.918228184911598e-15 +71,Buprofezin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7297435297767518e-14,1.9633960634486232e-14,2.8172130485157194e-14,0.0,0.0,0.0,7.401560695316547e-15,7.888820291932896e-15,8.56875438259697e-15,0.0,0.0,0.0 +72,Butadiene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.1260018513016023e-12,1.5584493636636795e-12,7.646888462341646e-12,2.5231282473810236e-12,4.30808207026259e-12,6.129574862293637e-11,2.043539195623777e-12,3.4615373418874983e-12,4.342062667361856e-11,2.3982298699760744e-12,4.265030258466743e-12,3.4721124182851454e-11,1.3039254208213377e-12,1.794667396305867e-12,5.297485885258502e-11,1.2937989196135594e-12,1.7526279984292467e-12,5.241948588110907e-11,2.3807369175559986e-12,3.1929117291596487e-12,8.747032408330425e-11,6.299732487567739e-12,6.920347445420827e-12,7.802411265455404e-12,9.012147850469566e-11,9.448071862168852e-11,1.004321259137473e-10,5.42201937294601e-11,5.687485780018577e-11,6.050283841903466e-11 +73,Butane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.7600887291811446e-05,9.375108577764028e-05,0.00022207827804131562,2.6445631661936354e-05,0.00010024282318260836,0.00024082155962202098,6.322911263982958e-06,5.658967333194237e-05,0.00022740451894444634,6.158795124872698e-06,5.557669163074957e-05,0.0002261510821869628,5.872316861202662e-06,5.3177349218499796e-05,0.00021895030013897542,6.893471502419338e-06,5.5419477492305595e-05,0.0002216665710750077,1.1751741567801017e-06,5.062263402352876e-06,2.5120272289299923e-05,0.00020049303758689932,0.00022159925814189355,0.00025199997086976526,2.3380054747939573e-05,2.6068279620245657e-05,2.9739541399601312e-05,0.00021280978267516657,0.0002359870625453988,0.0002692245466921484 +74,Butanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.9809317410712887e-14,1.8871531065885077e-13,6.395570720210664e-11,7.792895350936681e-12,1.7815610980125185e-11,5.634550409377889e-10,4.879490955067688e-12,1.1417923859076882e-11,3.447133687225526e-10,7.452008406452146e-12,1.717219428487523e-11,3.2299053992322437e-10,1.4988591213770804e-12,3.739720512848448e-12,4.983631780310775e-10,1.7547428034571295e-11,8.158042317394913e-11,7.074185168871077e-10,2.7169363936833654e-11,9.779854236297512e-11,6.745194246254829e-10,6.827757641845102e-11,7.118041999277842e-11,7.509973254345229e-11,6.843695644323017e-10,7.137949092954454e-10,7.53679072608742e-10,7.352933596567997e-10,7.657691949472126e-10,8.069691283336641e-10 +75,Butene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.135272070958818e-07,1.2435283545284448e-06,4.667469534311992e-06,1.828304543713315e-07,1.393535628764379e-06,5.236174474439591e-06,1.3434520200904895e-07,1.3012355767499333e-06,5.11813207127175e-06,1.335781059864649e-07,1.278920349858191e-06,5.074424617714947e-06,1.2279958220677361e-07,1.2148877344181842e-06,4.869449301002244e-06,1.4753600384756315e-07,1.2691635309661697e-06,4.93492107014466e-06,5.1285758000805355e-09,1.9873418689983622e-08,5.135582486916529e-08,4.27529279571012e-06,4.747913071291262e-06,5.430605491921817e-06,4.6288037242959396e-08,4.8643526168979853e-08,5.1849849444367645e-08,4.74967233410437e-06,5.261539353746057e-06,6.000059528738788e-06 +76,Butyrolactone,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.870923799313492e-13,7.925241960240183e-12,2.2794732989718444e-11,2.1778190776910685e-12,1.390093975724907e-11,3.0718104811487144e-11,1.9537342575564343e-12,1.3313750944208604e-11,2.8889713710391995e-11,1.9665625030136988e-12,1.3351864017740183e-11,2.8850541381468707e-11,1.7465282141787505e-12,1.42898601761127e-11,3.2663284433711736e-11,0.0,0.0,0.0,0.0,0.0,0.0,2.335953397334468e-11,2.4317256665723396e-11,2.5597362262783225e-11,0.0,0.0,0.0,0.0,0.0,0.0 +77,Cadmium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.92395483965846e-08,1.768095535647236e-07,9.194962699582008e-07,2.50404017617968e-08,1.323510964185005e-07,9.571407639045879e-07,1.8269278574935454e-08,1.1926126407618633e-07,8.48232414751533e-07,1.753935254883375e-08,1.0016011937981188e-07,8.102571390615741e-07,1.7846122812560386e-08,9.970275540782952e-08,8.05917782145583e-07,1.6655003433995267e-08,9.701305067990946e-08,8.066029327388886e-07,1.570433408202053e-08,6.752771717557153e-08,6.817187882237372e-07,7.498350913895244e-07,7.890453238174229e-07,8.43215323068693e-07,6.934678579807454e-07,7.22341471828566e-07,7.612679964314689e-07,8.156465872590629e-07,8.581589383468648e-07,9.16776133675374e-07 +78,"Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.1173547976507423e-07,3.861000174992886e-07,8.805033130495683e-07,2.588161548240902e-06,1.4217959007550267e-05,3.3994166987375825e-05,2.817898600802421e-06,1.8825068296653635e-05,4.032073550809289e-05,2.9402903142825493e-06,1.9052120072601157e-05,4.077256322479473e-05,2.773588559349086e-06,2.1428598974728295e-05,4.922872222377228e-05,3.032003636834686e-06,1.8500582578091507e-05,3.645308854396172e-05,0.0,0.0,0.0,7.889471761053364e-07,8.223430780846384e-07,8.67878380847269e-07,0.0,0.0,0.0,2.5695610537209914e-05,2.6999062893334167e-05,2.877473628129187e-05 +79,"Cadmium, ion","('water', 'ground-')",emission,kilogram,biosphere3,1.1623832915720627e-07,1.369135087796026e-07,1.550707530095743e-07,1.383523933435739e-07,1.6050818678035378e-07,1.8751098910832909e-07,1.2194901292400108e-07,1.4394578873060902e-07,1.6792574380429967e-07,1.2248245375031663e-07,1.4490491406291148e-07,1.6986163493000333e-07,1.2340200426073434e-07,1.4780967937157628e-07,1.7270913214672494e-07,1.2334622881989452e-07,1.4737370863150418e-07,1.7280984709559915e-07,1.6033494336733097e-07,1.8359898822978914e-07,2.2391668475433924e-07,3.1329035911164495e-08,3.2721865454854906e-08,3.460959936462761e-08,5.075547304676604e-08,5.324525488548131e-08,5.6623921941032894e-08,4.051079073301006e-08,4.2442106895269916e-08,4.5061104367032666e-08 +80,"Calcite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.4542920041751142,0.7265512297446424,1.0952968051191034,0.5514316143519901,0.8011426225149887,1.1417826470499188,0.47959015002011723,0.7771199120172156,1.1688432643017506,0.481935676090089,0.7825580403245107,1.1733975517487694,0.4840884760288174,0.7828758119019764,1.1663531651180357,0.4815432333669002,0.7613886470989787,1.1363953961128772,0.5814558384700192,0.851587810875274,1.2582881045067982,0.6618247479112422,0.6908122729485905,0.7301516566297779,0.6634365457587369,0.6942328762402119,0.7362512686073672,0.6560126173285743,0.6863040855576433,0.7276172555823496 +81,Calcium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.7370731477536335e-06,1.6642070814984235e-05,1.5829070630611176e-05,8.476073333595435e-06,1.608089130526108e-05,2.6459955487148985e-05,1.2313684779404898e-05,2.7298803116665014e-05,2.9041009464618683e-05,1.5584270574208497e-05,3.367896471764045e-05,2.8594667516249806e-05,3.604521606695843e-05,7.738364448107151e-05,3.0123472413437446e-05,2.6339479987956932e-05,5.618739337343534e-05,2.9019191814383202e-05,3.251319194161655e-05,6.827921314207597e-05,3.077897290320896e-05,1.2930937091423144e-05,1.351695502115636e-05,1.431499201447665e-05,2.3022426652805595e-05,2.405335012544592e-05,2.5454719046232577e-05,2.2876833451123098e-05,2.3930240298462304e-05,2.5368077677666442e-05 +82,"Calcium, ion","('water', 'ground-')",emission,kilogram,biosphere3,0.0013799430002171009,0.0019737774030508942,0.002425955052230786,0.0015906343783743614,0.002125754226003053,0.0025293581253232706,0.0014504173670762432,0.0020114668718020402,0.0024004323378259856,0.0014556721504114711,0.0020216207985943673,0.002417801406218825,0.001498371391998065,0.002130011818042743,0.002468111568697789,0.0014949748235447606,0.0021204539739981135,0.0025523552045642385,0.0007912372254432528,0.0011124784462100818,0.0018427772606238622,0.0008406592212139209,0.0008775487640691466,0.0009277900602900676,0.0006059138602460963,0.0006354461457776459,0.0006752281438592268,0.0007916570441183633,0.0008294237257448811,0.0008805571177123697 +83,Captan,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.280708332775534e-14,9.399205440017093e-14,1.3486535430364546e-13,0.0,0.0,0.0,3.543146877721311e-14,3.7764029191941895e-14,4.1018945667123403e-14,0.0,0.0,0.0 +84,Carbaryl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.601868018061391e-12,1.4515263864405888e-11,1.2940836564451588e-11,8.455531072951166e-12,1.901735494698071e-11,2.512001756711785e-11,1.1845601500199934e-11,2.615521517072211e-11,2.803802208124293e-11,4.901190941434883e-13,7.254556015093145e-13,3.617097808391587e-11,4.695996351248916e-13,6.59076014584428e-13,3.5686347073681694e-11,2.1770613789049736e-11,2.5631487853855057e-11,8.26696453690815e-11,0.0,0.0,0.0,5.705465972861226e-11,6.498029624090731e-11,7.636595952263102e-11,3.75381667075458e-11,3.9149458752140874e-11,4.1327059916298896e-11 +85,Carbendazim,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0048551078583292e-09,2.2153535609386245e-09,1.2600442825941816e-08,1.2731674054889508e-09,2.868821199944627e-09,1.297510592345188e-08,1.696369430592176e-09,3.805373682104666e-09,1.3048457526407255e-08,3.130700035162574e-11,7.541380585579269e-11,1.3132055728287169e-08,2.670116352470346e-11,5.578725348956791e-11,1.4149385124578368e-08,1.822440606061762e-09,4.56841848692959e-09,7.944635859568873e-07,0.0,0.0,0.0,8.475766367961901e-07,8.836142709383746e-07,9.322745139807926e-07,1.5103335756666976e-08,1.574792449653898e-08,1.6618555111615558e-08 +86,Carbetamide,"('soil', 'agricultural')",emission,kilogram,biosphere3,7.890057288145299e-11,1.5262086616296632e-10,3.0583995254001854e-08,2.2666842251821343e-08,4.997239282979374e-08,7.179978875987285e-09,2.8909832553075025e-08,6.507726005348955e-08,1.586434073575868e-08,5.351523751102003e-08,1.1983554046937072e-07,2.7363520355852592e-08,1.5290804820961304e-13,2.451262386871571e-13,1.9082841364271548e-11,1.473852833379055e-13,2.1984077464623352e-13,2.028979644715045e-11,2.5460950624969818e-11,2.8345217081950702e-11,5.485769929244655e-11,3.2536871575175715e-08,3.393346677649926e-08,3.582085091434902e-08,2.8370706662112312e-11,2.965334929501373e-11,3.139990976967608e-11,2.1500669249696196e-11,2.2450242508855303e-11,2.3736784452446348e-11 +87,Carbofuran,"('soil', 'agricultural')",emission,kilogram,biosphere3,5.960730552831235e-10,2.9864163901385966e-09,2.3103729089296283e-06,1.7501415218542822e-09,5.558375789041564e-09,1.9394948309719037e-06,1.9199852035976283e-09,6.297314157665754e-09,1.939714074117026e-06,2.243173714575264e-09,6.842631431512321e-09,1.8774806851783137e-06,3.76686066486889e-09,1.0059413806175891e-08,2.002053334799486e-06,2.816215174487573e-09,8.035529197319818e-09,1.986980944447669e-06,3.734698147383471e-09,9.41999121236151e-09,1.9872482028182685e-06,2.467675575865604e-06,2.5726335131743355e-06,2.7143517920644192e-06,2.119978064574279e-06,2.2102081970349816e-06,2.3320465817679804e-06,2.1204056663824333e-06,2.210642912867567e-06,2.3324920249842285e-06 +88,Carbon,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.4725500251194542e-06,3.730483154236321e-05,9.165122367387251e-05,4.659164003123887e-06,2.4033485209914295e-05,5.7168794644817076e-05,6.709312848958265e-06,3.85053751126858e-05,7.560497927344565e-05,8.493485812087505e-06,4.2096814746315985e-05,7.62845256484083e-05,1.7802247622841628e-05,5.142643644853487e-05,5.5996165029486154e-05,1.3194149891609363e-05,4.1247472968308324e-05,5.4117004124927956e-05,1.6762014259097846e-05,0.0001150602085579834,0.00014840011750004843,9.659447860691655e-05,0.00010013856150503134,0.0001049490124235435,6.290053262144787e-05,6.5487859054138e-05,6.903926551281983e-05,5.2086252662013635e-05,5.3999505708067953e-05,5.662952039338225e-05 +89,"Carbon dioxide, fossil","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.5578404790132976,4.410124418886821,14.546481834483968,1.6753168275665113,4.573625830726937,13.812161657758816,0.39823890709202486,1.7949346933014652,4.766781807493823,0.3728223483743162,1.7163547304869835,4.6980248568731735,0.3890798204014947,1.7462465301512744,4.909277589334413,0.36929592098725217,1.6950825033962718,4.886056802865097,0.4112222593974183,1.5862749787524701,4.256805047046461,5.496083133824893,5.8050486298088755,6.222378282466592,3.5622637192526208,3.7420712143759625,3.980696895542065,4.219482207202735,4.472432093657444,4.816028384070536 +90,"Carbon dioxide, in air","('natural resource', 'in air')",natural resource,kilogram,biosphere3,0.12349178790280357,0.2837836330477194,0.391926745427665,0.11579971847622571,0.24796099196474128,0.5440073464136477,0.18341615673277403,0.4401210239483302,0.5924623892184234,0.23493340493552795,0.5408029457396953,0.6283354127452168,0.5730208163065362,1.2659507083039192,0.6047630590608822,0.4037215058521238,0.8975363920386943,0.590267968765092,0.49185646705202446,1.0774811357921639,0.6125830677554486,0.27329275118466667,0.28530738342767425,0.3016177856078627,0.44339027382780477,0.46273744354772556,0.4889268109477249,0.4375714314664822,0.45665950865514376,0.48253007747641036 +91,"Carbon dioxide, non-fossil","('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.11203005550649572,0.2506111356444777,0.20731746162689357,0.1075551878441597,0.21189282457116038,0.32726045381608343,0.15540707831972272,0.3705267387496558,0.32221482306982335,0.2105166362221173,0.4795667104712507,0.33131881431206234,0.5484853971797937,1.2026829450284364,0.3261761072252277,0.38666702223584476,0.851045355131879,0.3018314391745627,0.48153975186934656,1.0483856314787359,0.33382539372747555,0.1684066808956409,0.17597970601072577,0.18623666818912674,0.265228443718676,0.27669340174246126,0.2922228073626178,0.2524766185582358,0.26334835550264973,0.27809515942030893 +92,Carbon disulfide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,9.227433309825045e-11,1.4803838409375382e-10,3.45386003312267e-10,1.3346649770582525e-10,2.3486762737137105e-10,7.160004062325089e-10,1.236116385694003e-10,2.2893959842323795e-10,6.349462701919434e-10,1.2490599397926707e-10,2.2970135535222447e-10,5.933893415059856e-10,1.0869871216923617e-10,1.8721056374554343e-10,6.324357791928831e-10,9.693587047484414e-11,1.4713463074713896e-10,5.455364533549982e-10,9.218802498612961e-11,1.388784953827899e-10,6.621029219835148e-10,1.8255979184217926e-10,2.3256778272553516e-10,3.021495114746133e-10,5.40951046739712e-10,5.883914025530987e-10,6.550519422341079e-10,4.099824941143604e-10,4.575608259901048e-10,5.251312233976765e-10 +93,"Carbon monoxide, fossil","('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.00031574732758617993,0.001198451300919514,0.002462973823775204,0.000969605735753057,0.00225198259533748,0.003681558292417191,0.0007407589126177888,0.0018233651597755441,0.0029333485378070295,0.0009101980187613797,0.002187648791187089,0.0029067826332999694,0.0004963328368098665,0.001244851659918399,0.002757418608500211,0.000501433924925789,0.0012605382680740246,0.002806760736929599,0.0005336585372242787,0.001239578890969033,0.00260296033283702,0.0010308553323165814,0.0011679723504828532,0.0013459788314191565,0.0014374132628631451,0.0015988154507723168,0.0018121569000366883,0.0016740925350587992,0.001864676215217593,0.0021200749984494546 +94,"Carbon monoxide, non-fossil","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.0079435517333344e-05,2.2809481318556065e-05,2.209915225820171e-05,0.0002246427889821748,0.0004054897282081357,0.0005726665375325852,0.00022882024223360258,0.0004931143626992515,0.00045606359754308043,0.00028486801652202753,0.0006068228941364795,0.0004602374173886295,0.0006120815290987672,0.0013035283538319312,0.00038481066171566075,0.00046373519573513947,0.000972395320917599,0.0004259947117254771,0.0005707316258848192,0.0011826567268117063,0.00046888878927637997,1.7121146518151176e-05,1.8045524647648446e-05,1.928370283403555e-05,0.0003131970591116959,0.00032790758298010744,0.0003479687103123157,0.00029791473179108984,0.00031154448464415464,0.00033011578501093394 +95,"Carbon, organic, in soil or biomass stock","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,7.529174716935809e-07,3.772230700624272e-06,0.002918300223537057,0.00010983151423078347,0.0002739660650151567,0.03338944471310832,7.611749762764579e-05,0.0002032060320948271,0.02923771311463848,0.0002444225195819902,0.0005700166614782336,0.019936850527237693,6.0351475713452976e-05,0.00015279923778125168,0.025327800833215248,4.919274658529458e-05,0.00012835931289424608,0.024870217725954224,4.041607852504555e-05,0.00010068430012086834,0.015970612112394797,0.0031169938657232598,0.0032495693346989533,0.0034285778762922882,0.01702572259886924,0.01774998800345,0.018727952071782853,0.02653625679752687,0.027664118989435254,0.029186958924957155 +96,Carfentrazone ethyl ester,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.184750048311104e-18,7.543775929911675e-18,1.1088928603061558e-17,5.876166300516287e-18,7.346518682333906e-18,1.113749948899303e-17,7.484982286468924e-15,9.163333258558443e-15,1.3603868072153681e-14,7.489454817650758e-15,9.259087830858735e-15,1.3715044225652841e-14,4.421655882880126e-15,5.2105999536055376e-15,7.773018157556173e-15,3.168249863148796e-15,3.596180974751679e-15,5.159994885363559e-15,0.0,0.0,0.0,1.3555921581233206e-15,1.44483570301318e-15,1.5693685974352118e-15,2.3401726809625793e-15,2.4937365059264773e-15,2.7084270444341945e-15 +97,"Cerium, 24% in bastnasite, 2.4% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.6998076402248767,1.797030280746563e-12,6.487449602669561e-12,0.6998076402347518,1.6969482670896245e-12,6.6138503241538555e-12,0.6998076402347272,1.6679658455088372e-12,6.576844975822538e-12,0.6998076402345357,1.4207172404507322e-12,6.256133018108351e-12,0.6998076402351064,1.4342636806988365e-12,6.246747358572969e-12,0.6998076402350014,0.0,0.0,0.6998076402248768,0.6185982178871714,0.780079448242144,1.0150035657198149,0.6185982178871713,0.780079448242144,1.015003565719815,0.6185982178922109,0.7800794482474225,1.0150035657254166 +98,Chloramine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.1596909549874424e-12,8.558824359750421e-12,6.440406942627156e-11,3.282292847593401e-11,6.559199211403506e-11,6.103651572485771e-10,3.136656750876941e-11,6.630390394027191e-11,4.685449119614523e-10,4.3569544695358e-11,9.370891477702943e-11,4.811504198941238e-10,1.3507616688560108e-11,2.6814045388908404e-11,5.361500029568779e-10,1.330298150123697e-11,2.5915767721345682e-11,5.309714284619773e-10,2.8486836831286888e-11,4.43730672107963e-11,8.802645502770379e-10,5.857254835386737e-11,6.298411268743957e-11,6.918086804556736e-11,8.9983327960446e-10,9.430928110497156e-10,1.002113118677548e-09,5.4867298723852e-10,5.740234199028995e-10,6.085020914806766e-10 +99,Chloridazon,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.047428849976059e-16,9.680985502690986e-16,1.4027747250462015e-15,7.657011442296787e-16,9.51543147121512e-16,1.4346131443135907e-15,2.1996723742967166e-12,2.6928841630931827e-12,3.997824435294259e-12,2.2009867810616507e-12,2.721021018345331e-12,4.030487691925568e-12,1.299418462733931e-12,1.5312586562504965e-12,2.284270492423737e-12,9.307016630681293e-13,1.0564087274445857e-12,1.515790201290517e-12,0.0,0.0,0.0,3.9821281600319495e-13,4.2442870724761435e-13,4.61011093131966e-13,6.876865611014282e-13,7.328138186308199e-13,7.959042515271995e-13 +100,Chloride,"('soil', 'agricultural')",emission,kilogram,biosphere3,4.3115761193463396e-07,9.674940637526087e-07,5.442887914132339e-07,5.348460258391938e-07,7.436336415135141e-07,1.538272429659775e-06,1.0376706792548465e-06,2.4932464342533537e-06,2.0272584093566143e-06,1.3977731430697623e-06,3.200122454541032e-06,1.9887839002707587e-06,3.736091337091523e-06,8.199633058014485e-06,1.9777381309921646e-06,2.634655352382905e-06,5.809103507687668e-06,1.880754731586909e-06,3.2852215228229178e-06,7.160257606000024e-06,2.0906672735622163e-06,4.162937409256697e-07,4.3426849266211853e-07,4.5869229244560433e-07,1.667165510439464e-06,1.7385241706607473e-06,1.8352970638953323e-06,1.5763948019013281e-06,1.6435266816670343e-06,1.7346997123286775e-06 +101,Chlorimuron-ethyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.1639870096425376e-10,2.6987660774286213e-10,1.1160997502322699e-08,3.2033319295184825e-11,7.655750052499081e-11,3.110550321560692e-09,1.7473176688714898e-11,4.0400355796852684e-11,9.56867894990693e-10,3.898931375696906e-12,9.782685564598486e-12,1.5670521008698808e-09,3.2502733227185005e-12,8.17707921038398e-12,1.5546370562789334e-09,4.7940183413089526e-11,1.2060159504968776e-10,2.089491123727141e-08,0.0,0.0,0.0,2.229168170361495e-08,2.3239461319299047e-08,2.4519210409334313e-08,1.6590190685449048e-09,1.7295063336737624e-09,1.8246757080204196e-09 +102,Chlorine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.762417990067237e-07,0.00030569274356671513,0.001006943905207235,1.5188208505640064e-06,0.0003087986619746309,0.0010062423537889427,1.2338484952779388e-06,0.0001716850447407733,0.0005498105624562857,1.3545899509681505e-06,0.00017191933531328054,0.000549897304411401,1.5440701289101736e-06,0.0002842842164117018,0.0009305932598938752,1.2520280540718129e-06,0.00028362004884296076,0.0009301735852027284,1.5428446061998474e-06,0.0002840297077985721,0.0009304412980566567,0.001076642931161484,0.001116212680446773,0.0011696367785085941,0.0009944044193178777,0.0010310789309496205,0.0010805800440792284,0.000994285400824831,0.0010308133241974673,0.00108013206030064 +103,Chlormequat,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.73409777047192e-10,1.3009449349542693e-09,6.402270204400477e-10,7.977198425644364e-10,1.6188678602538797e-09,8.29149312919991e-10,8.528031305408967e-10,1.8915999498644544e-09,5.781014423762939e-10,1.9258493081958734e-11,2.5182675672804386e-11,2.2555736433108718e-10,1.5201383800946095e-11,3.2396093532015065e-11,2.5114278232650053e-10,6.86426675581649e-11,8.495473134702738e-11,1.3247399368930447e-10,0.0,0.0,0.0,5.07516275760945e-11,5.371534597909461e-11,5.780628871632442e-11,2.460189277369542e-10,2.5756601183245614e-10,2.732750618508215e-10 +104,Chloroacetic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.8185578199851335e-11,1.8624527671143725e-10,9.350320925944895e-09,1.7663167771353786e-10,6.184321425189291e-10,9.047442513994247e-09,1.4916694243883937e-10,5.604874482948795e-10,6.513118181512058e-09,2.1351550218150468e-10,7.067271033280969e-10,4.534187119616657e-08,9.079964909071506e-11,4.2847243998733094e-10,9.639876631597993e-09,1.1768997163702937e-10,4.830576699092613e-10,9.84559810267005e-09,1.4705161692719856e-10,5.208644938679582e-10,1.7214632713286647e-08,9.857702104569724e-09,1.0269492326645053e-08,1.0825537682401663e-08,1.7972991750591465e-08,1.8731828381063473e-08,1.9757813387548176e-08,1.0217782102604679e-08,1.0637141371748346e-08,1.120356908863442e-08 +105,Chloroform,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.957522093630787e-10,2.4075970089215293e-09,4.377484759807268e-09,3.7874519229166076e-10,1.0052628590135993e-09,3.7132774720004593e-09,2.342333437589919e-09,5.255589044614659e-09,2.963875857285352e-09,2.4450187361208795e-09,5.478537016664825e-09,2.6867430889042612e-09,5.667825523070103e-10,2.512830852298448e-07,8.337895148758519e-07,2.870107439623639e-09,2.5607808781540495e-07,8.335520699633411e-07,3.854388727302353e-09,2.5797019289930317e-07,8.37115641272298e-07,4.277070077291515e-09,4.471969843098558e-09,4.732593178261995e-09,8.948595204213687e-07,9.280071698556286e-07,9.727486180928615e-07,8.927301456404907e-07,9.256910026019894e-07,9.701863013583348e-07 +106,"Chlorosilane, trimethyl-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2186037554767532e-10,3.288211687203706e-10,7.401750160074771e-10,2.4609861697043236e-10,5.478626145013878e-10,1.1235157561808196e-09,2.188749178381199e-10,5.131134731810242e-10,1.0570317729137134e-09,2.2415702558977353e-10,5.223763447168891e-10,1.0650674549277367e-09,2.3029504320044376e-10,6.925213127555625e-10,1.5275301826162442e-09,2.2727073330875769e-10,6.769291838196413e-10,1.5073460447599648e-09,2.632416005197658e-10,7.113777122761455e-10,1.5373130868552178e-09,5.876451772236454e-10,6.176614464966783e-10,6.586852323531058e-10,1.2483617819176856e-09,1.312660115277532e-09,1.4001701500495191e-09,1.2555463083278639e-09,1.3195273778609767e-09,1.4067264815976032e-09 +107,Chlorosulfonic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.5341767688899361e-13,4.065682971500955e-13,1.347016561755207e-10,7.589895823973236e-12,1.7224630990211986e-11,5.047357577454207e-10,4.4242216541086344e-12,1.0214251843632674e-11,2.959582641830635e-10,6.477514528449027e-12,1.4798801069712193e-11,2.4454082628443687e-10,1.0362799220224124e-12,2.549992601763817e-12,3.909351801813291e-10,8.654792315516083e-13,2.1262823223850565e-12,3.874679614380764e-10,4.502919935285503e-12,6.387012272866073e-12,2.78313110912985e-10,1.4362472935756128e-10,1.4972818684309436e-10,1.5796890603409277e-10,2.9126292935497367e-10,3.045739979712261e-10,3.226621523847063e-10,4.1341832999966433e-10,4.309887680710505e-10,4.5471242082492913e-10 +108,Chlorothalonil,"('soil', 'agricultural')",emission,kilogram,biosphere3,4.668844949278854e-08,6.436085851211184e-08,1.4399569229060547e-07,5.462634518623329e-08,6.599230371356894e-08,1.4827548043195323e-07,4.870264671524494e-08,6.103828020565352e-08,1.419009471123342e-07,4.8742600667144934e-08,6.103037741238412e-08,1.4175654793844526e-07,4.884850432510873e-08,6.10745744030702e-08,1.4066372623145004e-07,4.9350019267289265e-08,6.166914065394121e-08,1.395164986204203e-07,3.8661099036584676e-08,4.540298630158919e-08,1.0247895313545093e-07,7.634482200663149e-08,9.428340203349813e-08,1.2034094986233352e-07,5.3797925670782175e-08,6.603390082069437e-08,8.379290084182382e-08,7.776983171233716e-08,9.567338303259212e-08,1.2166580915929145e-07 +109,Chlorotoluron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0057870720594211e-11,1.2123543739636162e-11,1.7603646200343035e-11,9.567383751373084e-12,1.183963152662604e-11,1.7780994923210014e-11,2.376163739148461e-13,2.9956271020026037e-13,4.569639133400958e-13,2.3774554854786513e-13,3.0413074803744883e-13,4.646312678817276e-13,2.7031787579246416e-13,9.611504236208416e-13,2.307580274241652e-12,3.5690871423746158e-12,4.3895533512265016e-12,6.778750369462386e-12,0.0,0.0,0.0,2.524894730293808e-12,2.6691946888654475e-12,2.868105209088339e-12,2.0387114676571003e-12,2.1296689626039933e-12,2.2521196475990236e-12 +110,Chlorpyrifos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.297727484728551e-10,1.2326665320244512e-09,3.6313142078480224e-08,3.226366071142469e-10,7.985207822674772e-10,1.1340869137637257e-08,3.419683962957623e-10,8.135096261080179e-10,4.492813220106453e-09,5.797850760644695e-10,1.3132660042796726e-09,6.864092488004081e-09,4.1464497647531044e-10,9.51279763058348e-10,6.788851658638135e-09,8.851838821211351e-10,1.9958374482493335e-09,2.4951545664347973e-08,0.0,0.0,0.0,2.6146548010443933e-08,2.7270362072165836e-08,2.8789512604691803e-08,6.981895748783119e-09,7.288650285984294e-09,7.704325452926449e-09 +111,Chlorsulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2430947524460934e-17,1.4954319573181076e-17,2.1668807913150237e-17,1.1827865670913833e-17,1.4698586529977002e-17,2.2160619308847975e-17,3.397856870734561e-14,4.1597262676827405e-14,6.175481123544844e-14,3.399887248580395e-14,4.2031895616064134e-14,6.225936396914608e-14,2.007225257908114e-14,2.3653512239234992e-14,3.528536464412599e-14,1.4376645697215383e-14,1.6318455836689082e-14,2.3414569394232615e-14,0.0,0.0,0.0,6.151234917608089e-15,6.556194524977783e-15,7.121286456671008e-15,1.0622766064621577e-14,1.1319851520392464e-14,1.2294416020389242e-14 +112,Choline chloride,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.7137510327681813e-15,2.061627286581321e-15,2.9872977801342518e-15,1.630609168721041e-15,2.026371505582255e-15,3.055099715165486e-15,4.684341885273555e-12,5.734667682683152e-12,8.5136207878287e-12,4.687140997874958e-12,5.794586901161321e-12,8.583179265235498e-12,2.7671941938157316e-12,3.260912619242677e-12,4.864499177916106e-12,1.981988337008748e-12,2.2496895192021465e-12,3.227971561157046e-12,0.0,0.0,0.0,8.480194978480166e-13,9.038479042558265e-13,9.81752419783325e-13,1.4644722340175347e-12,1.5605735967420215e-12,1.6949286829617196e-12 +113,Chromium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.487547536534067e-08,1.9356702992455849e-07,1.6656194255938078e-06,1.0617325982831601e-07,2.4551896700626667e-07,1.7204112335498197e-06,8.162725038744269e-08,1.9338100268728718e-07,6.926297552821986e-07,8.481890343421534e-08,1.912810783527823e-07,6.755815017121562e-07,9.113708650603567e-08,2.0322088328706472e-07,6.90035364056947e-07,8.230551909984995e-08,1.8216146108376281e-07,6.84941572920275e-07,9.555601240834424e-08,1.8302820589884703e-07,6.300945118192317e-07,5.587928527437908e-07,6.369640877230568e-07,7.377374296246277e-07,4.884406282631665e-07,5.518000282436559e-07,6.329806984464216e-07,5.531658611116432e-07,6.235850843514942e-07,7.149410064373129e-07 +114,Chromium VI,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.6569772962386282e-09,7.1109915062193946e-09,1.4728730407241177e-07,8.165231799461826e-09,1.4442719325166962e-08,1.5150156316467952e-07,6.9124724165675245e-09,1.1429642952295201e-08,2.6155022728454203e-08,6.9535185865726825e-09,1.1376356464190708e-08,2.5847584418391786e-08,6.993519444519622e-09,1.1362696062141581e-08,2.9934497229124243e-08,6.7809755531543525e-09,1.0686119400446063e-08,2.9436078305398617e-08,8.006105476943253e-09,1.1604736121839303e-08,2.9691566633851966e-08,2.3412178436457306e-08,2.4348869440414883e-08,2.5620395259441213e-08,1.7131572979605032e-08,1.7948064007601466e-08,1.906130876605296e-08,1.8151086028765976e-08,1.9052012480960433e-08,2.028660796207552e-08 +115,"Chromium, 25.5% in chromite, 11.6% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0002178345151493702,0.001175924162395287,0.003262395817126951,0.00030681732825057513,0.0013059171330062277,0.0035436765248766824,0.00030972846363048085,0.00131886053417801,0.0033876734825926207,0.00031773756570922996,0.0013339888718071097,0.003405842191416388,0.0002819494436464852,0.0013798695901893452,0.003734994036352912,0.00036172978598008915,0.0015307174970718887,0.0037496753131654615,0.0,0.0,0.0,0.0030439644347785713,0.0031819092310849005,0.0033689397556431002,0.0,0.0,0.0,0.0033455488550571907,0.003507701309403045,0.003728878386454452 +116,"Chromium, ion","('water', 'ground-')",emission,kilogram,biosphere3,6.841355333295098e-10,1.350761312943109e-09,8.456971804474162e-08,3.1117044524511273e-09,1.0234568627626484e-08,2.9001431253799673e-08,3.175100872820886e-09,1.0643113995216097e-08,2.8735269586893742e-08,4.594658876718816e-09,1.2349435920313599e-08,1.4132084692541314e-07,1.7669087352099598e-09,5.8953369798703306e-09,6.101058421933627e-08,1.7729733198695477e-09,5.642665108901753e-09,6.039325320698202e-08,2.0619688712621996e-09,5.8598994853493346e-09,3.531304733957989e-08,8.883638604316351e-08,9.26989974844367e-08,9.79252831796364e-08,3.379829118464397e-08,3.5410260391460016e-08,3.761178247961401e-08,6.112744552175705e-08,6.382858986531177e-08,6.749146582407686e-08 +117,"Chrysotile, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.766394267175746e-08,8.483770499768461e-06,2.253966852451025e-05,1.1870915167169211e-07,9.708289863293381e-06,2.285889177134978e-05,1.0825408603587411e-07,9.02196884841652e-06,2.0707142095669687e-05,1.1376461634461388e-07,9.034400385810691e-06,2.071889567908518e-05,9.757955654594195e-08,9.370360203437554e-06,2.2078942481264965e-05,3.8463667112724616e-08,4.973349153012588e-06,1.2373574695604963e-05,2.540726967434993e-06,1.3395796310173401e-05,2.9609043111399122e-05,2.4338112878827497e-05,2.4954847559790237e-05,2.5782114627381583e-05,2.740164038521231e-05,2.8991120398699237e-05,3.12313707850311e-05,1.3421718804992364e-05,1.369495688859969e-05,1.4061537422201689e-05 +118,Cinidon-ethyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.789655253714787e-13,4.568736859347521e-13,6.635071701442731e-13,3.604831945378052e-13,4.4615162097884073e-13,6.701146209049393e-13,8.95636006922645e-15,1.1345129476256839e-14,1.7380104975688598e-14,8.96114938106056e-15,1.1526807937565173e-14,1.769482340310987e-14,1.0415400451756447e-14,4.051939671696201e-14,9.885209415681174e-14,1.3260633627670535e-13,1.6539162368769747e-13,2.5842831483685786e-13,0.0,0.0,0.0,1.0059675137580728e-13,1.0625576109844054e-13,1.1404482483641917e-13,8.883575387913888e-14,9.278287469235729e-14,9.809401065650927e-14 +119,"Cinnabar, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.3716790366787256e-09,7.805721038549647e-07,2.074373297818059e-06,1.673834943199281e-09,2.9165663078550067e-07,8.543852256304394e-07,1.6059426055736897e-09,2.333670718199548e-07,6.613530743636638e-07,1.6974250233629067e-09,2.3356741447418456e-07,6.614881414488325e-07,1.5721796053566754e-09,2.794119569569348e-07,8.162963388666002e-07,4.357530063707886e-10,9.383898870438178e-08,2.8224486961419974e-07,0.0,0.0,0.0,2.2388654547589654e-06,2.296513971462146e-06,2.373755117100205e-06,0.0,0.0,0.0,3.034768488842725e-07,3.1389396473981583e-07,3.278496243250206e-07 +120,"Clay, bentonite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0003554221340464292,0.027062551412555185,0.034333388124737026,0.00032153187873012914,0.027048016450857332,0.03426979945839736,0.00029181408459456854,0.026250269742269666,0.033319557165573985,0.000295592001665629,0.026253526452257644,0.03331610623573299,0.00026420633172841775,0.026189192118048647,0.03327161248507155,0.00033293655690848757,0.026330453645212287,0.0333430832123829,0.00033700133941367145,0.025686253322241465,0.03247073603576284,0.0023932012733591528,0.002580589970073914,0.0028463687649658083,0.002048793239999615,0.0022031569047301406,0.0024215180217449666,0.0022024707708033883,0.0023677586061589075,0.0026016684630574007 +121,"Clay, unspecified, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.12294142286210928,0.17033096173090012,0.27107923152099433,0.13532184536364567,0.1824732008953727,0.28120716910045335,0.11499298009904026,0.15652225048152182,0.2372868960395887,0.11450689599726192,0.15508358585791035,0.2350556713479619,0.11437920436057172,0.16047750681987652,0.2503495234225119,0.11497088923752828,0.16014861347345252,0.24782023157353822,0.11010212319206529,0.15497404343532,0.2382009315089834,0.14467795248104132,0.15113792926425784,0.15986759853456534,0.12514803272524216,0.1309827957461773,0.1388661243986997,0.1310305877727834,0.13712769290146196,0.14538968357473162 +122,Clethodim,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.664975909965438e-10,3.859901179577509e-10,1.59283167454332e-08,4.684242767815972e-11,1.1188394898018684e-10,4.502445706262006e-09,1.5592034193150864e-10,3.50683559666448e-10,1.514200617870206e-09,6.381492313007663e-12,1.548024274334989e-11,2.370771924242093e-09,5.398417998379084e-12,1.3026189336983437e-11,2.3512249637726403e-09,1.6422132745833696e-11,3.8845626234682735e-11,6.362039158797327e-09,0.0,0.0,0.0,6.784702368980039e-09,7.073625961492492e-09,7.463804851020883e-09,2.5083162834743983e-09,2.6150312019689882e-09,2.7591317154136884e-09 +123,Clodinafop-propargyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.839585104074738e-16,2.213004557760593e-16,3.20664343431528e-16,1.7503384563824224e-16,2.1751600817732143e-16,3.2794238012782784e-16,5.028294933030836e-13,6.155742078111332e-13,9.138742926456762e-13,5.031299573610152e-13,6.220060932298269e-13,9.213408812955429e-13,2.9703781589221793e-13,3.5003483470742385e-13,5.22167983168016e-13,2.1939399367496443e-13,2.4902695995362835e-13,3.573169537395472e-13,0.0,0.0,0.0,9.387081588373644e-14,1.0005068978933727e-13,1.0867425762093395e-13,1.5720025533476794e-13,1.6751602534896647e-13,1.8193804945338716e-13 +124,Clomazone,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.928675595384124e-10,1.302435676292432e-09,3.9060963318107836e-10,7.527833538243314e-10,1.6905609278600118e-09,6.138375802567629e-10,1.0110756286599318e-09,2.255993704945705e-09,6.692332655819698e-10,9.50291607016224e-12,1.3144268276004135e-11,2.453200978674696e-10,9.320863463925182e-12,1.233564888675718e-11,2.4027570702132555e-10,5.900428147178854e-12,6.705161640998547e-12,1.0330780092495843e-11,0.0,0.0,0.0,3.2944124643372486e-12,3.6053345769496895e-12,4.0466632440833874e-12,2.4352908180992187e-10,2.550557785108332e-10,2.7076647258833936e-10 +125,Clopyralid,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.3813236070848044e-11,3.034535250139847e-11,9.100965117636388e-12,1.7539076803573125e-11,3.938820457433653e-11,1.4301914419894838e-11,2.3770400378882545e-11,5.282338682664068e-11,1.5980448146763066e-11,4.3507961247401856e-13,5.704044242599451e-13,6.106948618875064e-12,2.959790396969963e-13,3.8028214354148086e-13,5.736686619699507e-12,1.6302826033362223e-13,1.8522933613120683e-13,2.823157950422809e-13,0.0,0.0,0.0,8.769024888954605e-14,9.565421070286898e-14,1.0694113697177814e-13,5.715648276546513e-12,5.986943706693374e-12,6.35681082052651e-12 +126,Cloquintocet-mexyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.443639045131812e-17,5.345658343351251e-17,7.745858529144625e-17,4.2280578863771394e-17,5.254242517296751e-17,7.921664300529495e-17,1.214617773538767e-13,1.4869600604137255e-13,2.207523570936682e-13,1.2153435642686923e-13,1.5024967034518083e-13,2.2255596078065413e-13,7.175144576429575e-14,8.455322559748168e-14,1.2613312420028152e-13,5.139159692969103e-14,5.833290480524924e-14,8.36990865557266e-14,0.0,0.0,0.0,2.198856340796727e-14,2.343615565954267e-14,2.5456166265193966e-14,3.797275966660121e-14,4.0464602028377514e-14,4.3948337179170047e-14 +127,Cloransulam-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.997690372163254e-11,1.1587152171348174e-10,4.789899792617824e-09,1.3814962353643726e-11,3.3012870312013807e-11,1.3387221272294614e-09,7.619645855265028e-12,1.7613918226697304e-11,4.1448455885446016e-10,1.6887863666121568e-12,4.237280530382853e-12,6.78754245399431e-10,1.4077731250012393e-12,3.541693639917509e-12,6.733514537434727e-10,4.3377450796900545e-12,1.0912519801165161e-11,1.8906822082147855e-09,0.0,0.0,0.0,2.017069558435066e-09,2.102829683166985e-09,2.2186281659616386e-09,7.18561864379151e-10,7.490916283862671e-10,7.903118194973385e-10 +128,"Coal, brown, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.11762633587962855,0.3928579457344923,0.9141290190065188,0.03935258668479972,0.15529851304610867,0.42204673931601516,0.08118367801998128,0.2596420913878766,0.5865004482628196,0.07869663880568396,0.24850434888741818,0.5638065082038165,0.07917681557039852,0.26308397820732615,0.5929916878961735,0.0803292169359056,0.25391200308957307,0.5299694685577989,0.07042029144620943,0.21293931228143584,0.4738489307338371,0.8003697140197228,0.835446583629355,0.8833361184988248,0.409385650553167,0.42596234322342724,0.448322574658829,0.4658474612818985,0.48580693172133493,0.5129006751892825 +129,"Coal, hard, unspecified, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.0898049751204193,2.5014136537272362,6.111924248567216,1.2623118972276848,2.7423665760914195,6.19806249608853,1.3597190244971709,2.9545329926803494,6.393519326887203,1.3615750776205968,2.9590731072047856,6.400085342947417,1.5813680942071664,3.4367294173450875,6.451306164375336,1.2596561911082378,2.7315162606876164,6.152075323356242,0.6382104956407835,1.3234757347889259,6.114503054263065,1.0523943370520583,1.097561141388708,1.1588704865166606,1.132450515613405,1.194002196976733,1.2763207726853385,1.182193518580898,1.2449287993984557,1.329280261748592 +130,Cobalt,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.4874705638491106e-07,3.211525056713732e-07,1.4486216225611374e-06,1.3050612023885713e-07,3.5139353287514917e-07,1.5132180598087764e-06,6.588471323065736e-08,2.2001741053777842e-07,1.0296091152020512e-06,6.913740866090749e-08,2.1023457556356e-07,9.992050292466757e-07,4.852661566452874e-08,1.7052952263124711e-07,9.491755950016065e-07,4.358218935761311e-08,1.5889949485389796e-07,9.466595398494022e-07,4.4966717365541165e-08,1.2900479252606844e-07,8.197765430096873e-07,8.65879630312336e-07,9.097851005546244e-07,9.703546027151085e-07,7.96167734335032e-07,8.296909974019749e-07,8.749195843281455e-07,9.228698463690008e-07,9.701553894601556e-07,1.035263752385835e-06 +131,"COD, Chemical Oxygen Demand","('water', 'ground-')",emission,kilogram,biosphere3,1.5608203485317306e-07,3.594772269975249e-07,5.318498237483643e-07,1.0375118555452641e-07,2.2466676432934062e-07,5.069505365708284e-07,1.0881366776001516e-07,2.3571215769028495e-07,5.226195821307244e-07,1.0895726508451897e-07,2.3611558089007276e-07,5.232603944479753e-07,1.2622898579464243e-07,2.7365699117840845e-07,5.265857969299981e-07,4.330964693599615e-06,9.777504001651377e-06,1.8281222918847142e-05,6.0122522944715474e-06,1.1383159776508292e-05,2.0474321614863912e-05,1.2898781114682982e-07,1.3447470835218274e-07,1.4196426025138932e-07,1.3221195649940548e-05,1.3938262521596783e-05,1.4910445957087108e-05,1.2908339796295982e-05,1.3611527857221953e-05,1.4562672222558688e-05 +132,"Colemanite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.7843879250827938e-06,0.13422452061574433,0.16313489779534687,2.541534236979269e-06,0.13422515652521144,0.1631424952242052,2.5966648809424175e-06,0.1342252234974886,0.16314210520887162,2.6405608309682118e-06,0.13422531266482954,0.16314216664826658,2.554781366759081e-06,0.13422601139505808,0.16314209031238325,2.5083008334743433e-06,0.1342258049134517,0.1631421859245893,3.0006254898449905e-06,0.13422797664300085,0.16314744806973233,2.1523642933732997e-05,2.2417865177135533e-05,2.361819344438945e-05,2.9119887456405973e-05,3.0516878284964535e-05,3.240765003123006e-05,2.6938637907196137e-05,2.8126307268428127e-05,2.9726660448216796e-05 +133,Copper,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.6306283708783636e-07,7.949962023310935e-07,4.10853438296778e-06,1.6776373796303288e-07,5.367076128256449e-07,3.38608905295092e-06,1.3482798337737098e-07,4.360587374125137e-07,1.791682307497711e-06,1.4820862130382823e-07,4.3764212117905637e-07,1.7443960441646975e-06,2.178339175240866e-07,5.987560768318029e-07,2.527002457289281e-06,1.6702254590218222e-07,4.856889101706591e-07,2.464980163172623e-06,1.9514453272512176e-07,4.893902971007608e-07,2.240138734737866e-06,2.406308340937493e-06,2.517903334015699e-06,2.670508596516065e-06,2.1786782092428177e-06,2.274458239586103e-06,2.40379117334182e-06,2.4168441656366472e-06,2.535185872310804e-06,2.6969143887064505e-06 +134,"Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0001938269457630679,0.00043510735984500965,0.0009005218024442947,0.0001468843984175093,0.0003465727689538305,0.0007250965841251511,0.00017432094840674192,0.00040950371266334395,0.0008503402732304357,0.00017229052357414245,0.0004358166773219579,0.0009338458907364933,0.0001782511985580311,0.0004435280130398503,0.0009336278824326983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007215466866400006,0.0007587080109420685,0.0008093881501064707 +135,"Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.00011374179487217583,0.0002607778578622192,0.0005591770194880776,8.801315545272895e-05,0.00021348337246169166,0.0004677062457268695,0.00010343271007783619,0.0002487436889638263,0.0005377697128207498,0.00010246755332517417,0.00026438757460541223,0.0005859532610888823,0.00010686281032797943,0.0002707487739177857,0.000588492651313095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004574063340503681,0.00048143331142050643,0.0005142314195825197 +136,"Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,1.1273816614838075e-05,3.546936994650156e-05,0.000109703593990246,1.1357593927731315e-05,3.7123730442445546e-05,0.00011505014654356998,1.165943159597126e-05,3.7617754575073516e-05,0.00011580762689943025,1.1948617349977828e-05,3.943300576649025e-05,0.00011897300423001684,1.3870154192292199e-05,4.311632406554035e-05,0.0001236923341295093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010019698921726371,0.00010619016813720561,0.00011441755518740936 +137,"Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,6.619167592280308e-05,0.0001661623324799236,0.00034039321542411613,0.0009453525993973606,0.0021576018664960423,0.004355990805841571,0.00020836051179230351,0.0005297365613683984,0.001058622038591292,0.00024864555487005054,0.0006221556050163978,0.0012426702605944236,0.00024470855072759753,0.0006684355452072716,0.0013971943003378117,0.0002508595241841241,0.0006535802904344478,0.0013088396442259397,0.0,0.0,0.0,0.00025775339771266705,0.00027089243261071316,0.00028870728226804013,0.0,0.0,0.0,0.0009698873586245257,0.001019088433024113,0.0010861296365821704 +138,"Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.05354152310515625,0.053558397579542345,0.053583600041918825,0.046854023420143005,0.04687147095143637,0.04689758662612704,0.04684509492903096,0.04686683313968512,0.046898581514280537,0.046844946863913606,0.0468695760758505,0.046907549724377356,0.046845095541299016,0.04686685850449634,0.04689639056735115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.359584975507963e-05,4.605231621554316e-05,4.9373576443508354e-05 +139,"Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.00036682677760748253,0.0009167928413675104,0.0018721010431230571,0.00015915610756003776,0.0003628721957323986,0.0007710027669041822,0.00012247779254826003,0.00029495964259154965,0.0006387392411317413,0.00014430742534211888,0.0003449197895435785,0.0007380549674993193,0.00014287264945794312,0.0003667343725843249,0.0008057820200917051,0.0001486887622137585,0.00037495197666157404,0.0008083424067827841,0.0,0.0,0.0,0.0014165477298243175,0.0014857339801686124,0.0015798988266758141,0.0,0.0,0.0,0.0006273855339229365,0.0006601795201404617,0.0007049347850321759 +140,"Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,9.730604693354525e-05,0.00024319240784400294,0.0004966015652173507,2.442666337361027e-05,5.399819278634377e-05,0.00010877392187544695,1.8231995313068873e-05,4.212626857380673e-05,8.490702088403202e-05,2.1794035571498914e-05,5.0312949009690414e-05,0.00010121694948049599,2.150344673398284e-05,5.359787913852403e-05,0.00011186622523501551,2.2117015095863265e-05,5.428813729726214e-05,0.00011142972614804098,0.0,0.0,0.0,0.0003757595358654036,0.00039411217782588776,0.0004190907495004796,0.0,0.0,0.0,8.571968187882163e-05,9.006244875777183e-05,9.598039338609547e-05 +141,"Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.00048261402244838264,0.0012121002058220623,0.002480556840358121,7.888812833790803e-05,0.0001743920689204379,0.00035129526196397965,5.888189087135239e-05,0.0001360506245414423,0.0002742149639715743,7.038581362209716e-05,0.000162490229960434,0.0003268893141968393,6.944733062792852e-05,0.000173099209607698,0.0003612821156589415,7.142890527580811e-05,0.0001753284609068777,0.0003598724022866563,0.0,0.0,0.0,0.0018819672542201374,0.001973734699351443,0.0020986140859042745,0.0,0.0,0.0,0.0002768394835685336,0.0002908648428988319,0.00030997738156891006 +142,"Copper, ion","('water', 'ground-')",emission,kilogram,biosphere3,6.819433807250298e-07,7.952476567579452e-07,9.115688953620629e-07,8.261309888300014e-07,9.844008199373105e-07,1.179186708274219e-06,7.258081222506109e-07,8.812237978474504e-07,1.061369991794168e-06,7.281266744341858e-07,8.758860932412457e-07,1.0673466940692618e-06,7.313922914626692e-07,8.879776553988455e-07,1.0656737490136876e-06,7.319255642277779e-07,8.857033279589591e-07,1.0658298332288083e-06,3.4670364705610166e-06,4.019505263938774e-06,4.85121266396221e-06,2.116538829141774e-07,2.210568436376793e-07,2.3380464681720083e-07,1.3154694474323823e-06,1.380657945353289e-06,1.4692995769310434e-06,3.0684808501267713e-07,3.2117982783244903e-07,3.4063595030429514e-07 +143,"Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,5.6347927914728126e-06,1.2882865404645095e-05,2.7065923990482884e-05,7.533466409469344e-06,1.771443064714877e-05,3.6438229308333334e-05,8.965306000794937e-06,2.2486104800625952e-05,4.600975744071999e-05,1.1271897404272911e-05,2.612083705895308e-05,5.599342554036145e-05,1.1546837383587624e-05,2.6558389818322338e-05,5.624038714894904e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.294839012080249e-05,4.611033658004723e-05,5.050309890302568e-05 +144,"Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,1.080100407572759e-07,3.174182764991606e-07,5.367921120589721e-07,1.3812902321201482e-07,3.8660812443629234e-07,6.203139563575593e-07,1.600007480794669e-07,4.6960769408221236e-07,7.722526383571827e-07,1.3850268203281075e-06,1.783622968110929e-06,4.222975557772645e-06,1.4115685357271895e-06,1.847653696742211e-06,4.2840010240617465e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6101534512319907e-06,3.1194634726028054e-06,3.856705005073999e-06 +145,Cumene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.4776133497841925e-07,1.685675413225384e-06,9.137901114051352e-06,4.0712678274114625e-07,1.7425394825400935e-06,9.174403195566079e-06,3.5739127058084803e-07,1.6863418562097686e-06,9.114991316794028e-06,3.587476672136536e-07,1.6878174290442545e-06,9.117533316504005e-06,1.5331887351827406e-07,7.160144298524354e-07,3.84637505954086e-06,1.703860696131685e-07,7.450126235189902e-07,3.806852490734069e-06,2.071742786695427e-07,7.775712072894489e-07,3.796847164141669e-06,2.3096151677443018e-06,9.342974166244828e-06,1.8112073336466805e-05,9.52045281700385e-07,3.820210063936767e-06,7.39591353452797e-06,9.92873295875998e-07,3.866990231518565e-06,7.45124342219812e-06 +146,Cyanide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.827997052318081e-08,2.4996106270705835e-07,4.754993432721687e-07,4.110085089215485e-08,2.860848078584859e-07,5.552688828820327e-07,2.9118029997811157e-08,2.744672213113408e-07,5.396506259997997e-07,3.2413595428436956e-08,2.9353521367222093e-07,5.901704129953404e-07,3.1753034734311885e-08,2.9295687456717833e-07,5.766313805048854e-07,2.506807478119448e-08,2.651671015020385e-07,5.050170765116003e-07,3.419642697511967e-08,3.0989361733268624e-07,6.031462780192386e-07,4.780545114095255e-07,4.932271278408821e-07,5.126696615659526e-07,5.926912867007009e-07,6.040474119719255e-07,6.194391766152202e-07,5.242755514971827e-07,5.31797927499587e-07,5.419595375152273e-07 +147,Cyanoacetic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2564331087348095e-13,3.329641236415585e-13,1.1031557714730621e-10,6.2158014870834514e-12,1.4106240495806412e-11,4.1335799423535385e-10,3.6232424995640217e-12,8.365023003820336e-12,2.4237750414047367e-10,5.304800995881417e-12,1.2119570962576679e-11,2.0026883560078712e-10,8.486705683710033e-13,2.0883387880043383e-12,3.201597845429508e-10,7.087918580268791e-13,1.7413375723954675e-12,3.1732027848303017e-10,3.687638435675064e-12,5.23061035398391e-12,2.2792485806258275e-10,1.1762323758512648e-10,1.2262173912373145e-10,1.2937057741042304e-10,2.385301763610012e-10,2.494312860867291e-10,2.642445928987161e-10,3.3857255989181964e-10,3.5296202395846516e-10,3.7239071705572283e-10 +148,Cyclohexane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,-4.4082110348857e-29,-2.6449266209314204e-29,-2.36664027858755e-21,2.1643389927295176e-16,4.4276503509834014e-16,5.732633819833398e-16,2.228088086263044e-16,4.825132796281181e-16,5.629043528878632e-16,3.056138826803232e-16,6.511032364411764e-16,4.895530004698806e-16,8.706730076940477e-17,1.6619909258862013e-16,3.671126823938136e-16,9.546249033383711e-17,1.9001944196702803e-16,3.9021487545375086e-16,8.804735135343049e-17,1.7288161381481031e-16,3.765338725300121e-16,-7.395750870586094e-23,-7.395750870586094e-23,-7.395750870586094e-23,2.6654081755707595e-16,2.896314754209108e-16,3.2227915364831197e-16,2.797957653260249e-16,3.027642857299909e-16,3.3523736053129864e-16 +149,Cyfluthrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.43390575598964e-13,1.29965125696899e-12,4.108186695051066e-12,7.435006448130065e-13,1.8809134267817174e-12,6.2279378639473954e-12,9.883303103249024e-13,2.375310567501477e-12,6.6499499412956e-12,1.8206517832082535e-12,4.139707102486808e-12,9.258794595304281e-12,1.2985928803109738e-12,2.9896984571341694e-12,9.085800841052704e-12,1.154534958904401e-10,1.631883713676446e-10,8.749827732198373e-09,0.0,0.0,0.0,9.198105527432502e-09,9.613539100618296e-09,1.0177511904722384e-08,8.854285817510363e-12,9.262825018553166e-12,9.819212181085149e-12 +150,Cymoxanil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.406088084045998e-11,7.523209464312066e-11,1.6980634901380183e-10,0.0,0.0,0.0,8.914257953931876e-11,1.0941747466035276e-10,1.388439701629604e-10,0.0,0.0,0.0 +151,Cypermethrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,8.725970862208082e-11,4.269029087424569e-10,3.268962773831035e-07,1.3966948888774548e-09,3.3051865772663057e-09,2.743273550689034e-07,1.7325907608507408e-09,4.167695344932999e-09,2.747914618748818e-07,4.84114213630807e-09,1.1541307810808709e-08,4.486905647533605e-06,1.367558564680489e-09,3.7225111433872503e-09,5.788938540284071e-07,1.119159432571369e-09,3.1068617331362886e-09,5.799847260399705e-07,1.6817324149540243e-09,4.00917656234916e-09,5.267954488430688e-07,3.4914804113734005e-07,3.6399910603100905e-07,3.8405168003946015e-07,5.609578062877155e-07,5.848785142381211e-07,6.171844428310752e-07,6.187785137150525e-07,6.451768282272517e-07,6.808320614575753e-07 +152,Cyproconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.590419559570982e-12,5.534116938496152e-12,8.037061513966701e-12,4.366542686544203e-12,5.404242348765284e-12,8.117104057055355e-12,3.146682258650219e-13,4.0505198275180846e-13,6.025655080932529e-13,3.0853288151438977e-13,3.9726148901034366e-13,6.103602543189613e-13,2.443744844775886e-13,6.351584004924993e-13,1.4195016326246087e-12,2.0487181672281348e-10,5.456112758586244e-10,8.670263466408863e-08,0.0,0.0,0.0,9.244170202072935e-08,9.637298580537042e-08,1.0168135616403096e-07,1.1533523107437797e-12,1.205936987981883e-12,1.2769100097374785e-12 +153,Cyprodinil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.4216397895911645e-12,6.5362333106774576e-12,9.492431835562699e-12,5.1572217941135585e-12,6.3828343749427746e-12,9.58695050684751e-12,6.754556520411022e-12,1.5007581577080833e-11,4.2250501378229e-08,6.926332180094177e-12,1.5562060602355445e-11,1.1859943066706635e-09,5.4048278643581636e-12,1.3277771790391363e-11,1.1984553387456186e-09,1.1973223893470881e-11,2.36943197884355e-11,1.212396564399282e-09,0.0,0.0,0.0,1.2780126266921194e-09,1.333044576717737e-09,1.4074298397670826e-09,1.274539470029175e-09,1.3295756083329734e-09,1.403997311727359e-09 +154,Deltamethrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.5487174850780742e-11,5.5945474545566594e-11,1.684262169007257e-11,3.234718679157923e-11,7.259929733394264e-11,2.6422526695285166e-11,4.318452739090738e-11,9.656077348237739e-11,2.8350086624555786e-11,2.0517834386521168e-13,3.136194437792354e-13,1.015625056017527e-11,1.938029326330993e-13,2.8983061584899847e-13,9.958033282647341e-12,6.387456465041677e-14,7.464864884657724e-14,1.401448537516293e-13,0.0,0.0,0.0,6.571008454473678e-14,7.395392753753831e-14,8.576458335754087e-14,1.035130136052248e-11,1.083920889779857e-11,1.1503957632256663e-11 +155,Desmedipham,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.512854219984401e-14,1.8817882764345892e-13,2.3758005640198764e-13,5.0850122783520015e-15,8.877445699773922e-14,2.4571778190452546e-13,4.319962711322502e-15,4.7997128759791435e-14,1.292932793197902e-13,2.764875465812568e-15,9.44432249698446e-15,2.2786253385018256e-14,0.0,0.0,0.0,1.9165025776907108e-14,2.0305755690349487e-14,2.1875132225724255e-14,1.2764728940199432e-13,1.3346322304664652e-13,1.413034220696947e-13 +156,"Diatomite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,8.51941332226477e-11,2.238573284970291e-10,2.7979347492466343e-10,9.096212161637626e-11,2.660952250302987e-10,3.982892402101437e-10,2.411036396714627e-10,6.052249309329252e-10,4.3228772516070497e-10,2.4087323092300295e-10,6.029275150644135e-10,4.341379411837784e-10,6.103980941194277e-11,2.1448560739029548e-10,4.174189396863563e-10,2.638766198373291e-10,6.44956045891298e-10,4.1526613946281337e-10,3.0191305889420963e-10,7.19847011562848e-10,4.1442630890086343e-10,2.379227731964692e-10,2.4808578560645006e-10,2.6194627887771907e-10,3.458809095827545e-10,3.6060504302721887e-10,3.8061744757478015e-10,3.5379610636653823e-10,3.6902077414773593e-10,3.8975644261177483e-10 +157,Diazinon,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.262118748527138e-10,6.179749802356545e-10,1.3948312309199894e-09,0.0,0.0,0.0,7.322391339806608e-10,8.987821229955314e-10,1.14049861464597e-09,0.0,0.0,0.0 +158,Dicamba,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2698576219541835e-12,4.1782723062450745e-12,1.624359423668819e-11,9.303696957846824e-13,2.84980231738156e-12,1.6438189152728536e-11,1.8310473053561645e-12,4.675338227225456e-12,1.9052483134064823e-11,4.5103874291103393e-13,1.8038641414825852e-12,2.6200356400365355e-11,2.996260410295099e-13,1.2482688685597402e-12,2.4662250179496815e-11,6.854280028490848e-12,1.526219327191824e-11,2.670000262761496e-11,0.0,0.0,0.0,2.4414278916705185e-11,2.5552733622675337e-11,2.710399723974619e-11,2.5898545185855854e-11,2.7003672538585912e-11,2.849518794947476e-11 +159,Dichlorprop-P,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.421103525935435e-11,1.713255593058648e-11,2.4881217832238787e-11,1.35179562389457e-11,1.6730483362159086e-11,2.5128994245459374e-11,3.3585943896504544e-13,4.2543720782707164e-13,6.517460507436491e-13,3.3603903602553975e-13,4.3225006847725586e-13,6.635478511532232e-13,3.9057278699997514e-13,1.5194589117781048e-12,3.706908456577879e-12,3.5522698397959084e-08,4.1717662644257477e-08,9.415662196929732e-08,0.0,0.0,0.0,4.942772105996968e-08,6.066908628711188e-08,7.698451769821633e-08,3.331300238574566e-12,3.479315468435636e-12,3.6784806442505615e-12 +160,Diclofop,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.20469561911763e-16,1.0035127224574176e-15,1.479251874318769e-15,7.79305863242791e-16,9.754822773163922e-16,1.4804794364731856e-15,7.424219441542502e-13,9.088984053755865e-13,1.3493543641551575e-12,7.428655608041382e-13,9.183968072348566e-13,1.3603835625536528e-12,4.3857800865540997e-13,5.168346481842516e-13,7.710017699862432e-13,3.1433018227698597e-13,3.567866338828595e-13,5.11937191801159e-13,0.0,0.0,0.0,1.3449268400726559e-13,1.433468047479389e-13,1.5570208584288867e-13,2.3212547826799e-13,2.4735756323374255e-13,2.6865282514112284e-13 +161,Diclofop-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.600336302865305e-16,1.0512220752927423e-15,1.5485568187497005e-15,8.169410956873245e-16,1.0223005491446377e-15,1.5511335704094399e-15,8.401856164101756e-13,1.028582774250647e-12,1.5270364824696917e-12,8.406876513066397e-13,1.0393317212744665e-12,1.5395174216024766e-12,4.963302133731339e-13,5.848909534111017e-13,8.72525506130587e-13,3.5569628668037333e-13,4.037399388393959e-13,5.793082445557706e-13,0.0,0.0,0.0,1.5219172677819723e-13,1.6221104365245935e-13,1.761922718919166e-13,2.62689597345769e-13,2.799273531668636e-13,3.0402665491941234e-13 +162,Dicrotophos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0785883099305095e-11,2.50915282306345e-11,4.746606894810883e-11,1.462644430601557e-11,3.6786021522541884e-11,5.020318015151518e-11,1.850488640362639e-11,4.4318134996879214e-11,5.137012820615512e-11,3.986891766425458e-11,8.986424528011599e-11,5.028742539329976e-11,2.8388453350806074e-11,6.480280708980576e-11,4.896108873898964e-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.37250019383301e-11,3.587225565788378e-11,3.8878051354007264e-11 +163,Diethyl ether,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.103528684250061e-16,1.0440434999319425e-15,1.351759647362948e-15,5.253849557519171e-16,1.1377701789685576e-15,1.3273329737545528e-15,7.206399837562163e-16,1.5353066477771356e-15,1.1543698971092311e-15,2.0530539274552674e-16,3.9189879181190265e-16,8.656546461753078e-16,2.251013169957001e-16,4.480673664805046e-16,9.201298024882368e-16,2.0761635987420286e-16,4.076562303993303e-16,8.878698879892035e-16,0.0,0.0,0.0,6.285053831643391e-16,6.829533393956877e-16,7.599368262094056e-16,6.597606561950184e-16,7.139206113176204e-16,7.904923818539608e-16 +164,Diethylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.879267661819581e-12,4.525555186610136e-12,5.817335356868e-10,2.2162831123932526e-11,4.64166180755257e-11,7.596703581572099e-10,2.361019026807895e-11,5.104194244922114e-11,6.687473088107149e-10,3.862365834259795e-11,8.443680863899409e-11,6.231046788280461e-10,5.389871702909914e-12,9.826769443887209e-12,7.199499091740142e-10,4.787561873491245e-12,8.461091025380357e-12,7.138470843088013e-10,6.768975438654295e-11,8.26193228331396e-11,1.041661357291714e-09,6.16796197471811e-10,6.438785598777655e-10,6.80552283221049e-10,1.0164388501231594e-09,1.0764418194472596e-09,1.1595458694022251e-09,7.571489037897117e-10,7.902117029409349e-10,8.349627496293613e-10 +165,Diethylene glycol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,-8.807423496338793e-29,-5.284454097803277e-29,-4.728449484849637e-21,4.324233485949916e-16,8.846212503428779e-16,1.1453507866982706e-15,4.451599544020844e-16,9.64035513959713e-16,1.1246527118320882e-15,6.10599992407934e-16,1.3008691315024346e-15,9.781006492783618e-16,1.7395573190540023e-16,3.320567484898246e-16,7.334711745196933e-16,1.9072886409462294e-16,3.7964851111186896e-16,7.79628099873277e-16,1.7591381967358226e-16,3.4540806248007064e-16,7.522942000529608e-16,-1.4776404640155116e-22,-1.4776404640155116e-22,-1.4776404640155116e-22,5.325340580336427e-16,5.78667936692796e-16,6.438962222933094e-16,5.590167228250669e-16,6.049065774817391e-16,6.697860149325703e-16 +166,Difenoconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.150677813496382e-11,1.13043364238369e-10,3.4053834498536215e-11,6.536498052488626e-11,1.466880869519508e-10,5.3408551137631335e-11,2.84638477730623e-10,6.70419031486783e-10,2.9444161324944036e-07,6.61402484250354e-11,1.797770548648734e-10,2.3992976674295785e-08,5.7267984380867835e-11,1.5590570977731923e-10,2.396050415541274e-08,8.742743781710455e-11,2.4287312623579674e-10,1.8060939919837235e-08,0.0,0.0,0.0,1.9127953408773782e-08,1.9946757539693298e-08,2.105298781251031e-08,2.5556633579060678e-08,2.6648361059786306e-08,2.8123133822914917e-08 +167,Diflubenzuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.331137269307573e-08,7.721178488520454e-08,3.175286474837501e-06,1.7366429696786282e-08,4.152866311155299e-08,1.7030661341324997e-06,2.4579500027934464e-08,5.689322730590761e-08,1.392266413609202e-06,5.674801945128826e-09,1.4238466331031872e-08,2.2808070859090756e-06,4.73157536485998e-09,1.1903757848203885e-08,2.263158099564369e-06,2.2011347188305616e-09,5.537513213851244e-09,9.594312706461002e-07,0.0,0.0,0.0,1.0235669147317487e-06,1.067086101063405e-06,1.1258483260782246e-06,2.4151118919638147e-06,2.517723510764587e-06,2.6562660339297887e-06 +168,Diflufenican,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.3785751539696465e-11,1.6619852863471202e-11,2.4136647615301194e-11,1.3113412938416104e-11,1.622980971003076e-11,2.4377000592218603e-11,1.1207213299295643e-12,1.3858613902248484e-12,2.076987831128457e-12,1.1213705392030587e-12,1.4026396731856714e-12,2.1002436619581753e-12,8.484596941159961e-13,2.027294841861152e-12,4.4213108276702755e-12,5.160113734897225e-12,6.398143498658063e-12,9.948486670773582e-12,0.0,0.0,0.0,3.80322837829244e-12,4.0185558976894675e-12,4.3151131489902645e-12,3.479975391062852e-12,3.639862710934307e-12,3.855858568475546e-12 +169,Diflufenzopyr-sodium,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.2555328117793745e-14,2.470112838654684e-13,5.327943831276656e-13,3.975347843890044e-14,1.9352836011435002e-13,3.607453246255186e-13,6.458565606457868e-14,2.4531204629791915e-13,3.6222804578445657e-13,8.769609665277249e-15,1.401503776898935e-13,3.8658285607456414e-13,6.948569178845388e-15,9.991063232483037e-14,2.738274055106305e-13,2.420856156361746e-15,2.8276215369041545e-14,6.732134818312644e-14,0.0,0.0,0.0,5.821125522386062e-14,6.095075100175119e-14,6.464685127667037e-14,2.7432651066725585e-13,2.862495110379784e-13,3.0224800620952435e-13 +170,Dimethachlor,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.447880786309652e-09,3.1807636642766762e-09,9.5393342700542e-10,1.8384216453081247e-09,4.128629819855415e-09,1.499093050496034e-09,2.4566450888406957e-09,5.494123025468582e-09,1.6115347197640023e-09,1.0631107282416605e-11,1.6552409835644194e-11,5.760819159520887e-10,1.0376579091893911e-11,1.5529226903558857e-11,5.650186784155223e-10,2.299370286596004e-12,2.628946073514218e-12,5.505765252281226e-12,0.0,0.0,0.0,2.8639026587288128e-12,3.2821009252740485e-12,3.883883204870909e-12,5.881831601182323e-10,6.159030970633681e-10,6.536698184286628e-10 +171,Dimethenamid,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.613056969645255e-12,1.6335373429942778e-11,4.78252226763364e-11,3.058524609394448e-12,8.27797987968056e-12,1.3748320532315836e-11,4.747507387372491e-12,1.2980470269510522e-11,1.9261153256910543e-11,2.9251656260582973e-13,3.755333748766295e-12,1.0259948173734802e-11,2.437139601577372e-13,2.693128647477275e-12,7.290581014993039e-12,1.3711045665601178e-13,8.250072817606968e-13,1.885196217732967e-12,0.0,0.0,0.0,1.558056821327511e-12,1.6319606479306015e-12,1.7317652814543715e-12,7.228166881186875e-12,7.543034732953618e-12,7.965648811089634e-12 +172,Dimethoate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.251526995873459e-11,3.919979583171926e-11,5.6928963909903566e-11,3.092948461662145e-11,3.827984196501124e-11,5.7495883944778706e-11,8.013726059648028e-13,1.0137096847105755e-12,1.5510383389963387e-12,8.018031982804895e-13,1.0297187520663893e-12,1.5785299748538618e-12,9.130866618474837e-13,3.499479998443775e-12,8.515695931040211e-12,3.751906474717848e-10,4.4144636831239596e-10,9.865190707587897e-10,0.0,0.0,0.0,5.148741838591504e-10,6.30500409685877e-10,7.98281109165495e-10,7.632401767953662e-12,7.971740180109742e-12,8.42837994994686e-12 +173,Dimethomorph,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3727632225366654e-11,1.612151617735025e-11,3.6387871634166206e-11,0.0,0.0,0.0,1.9102399646741217e-11,2.3447115173252817e-11,2.975293086984634e-11,0.0,0.0,0.0 +174,Dimethyl malonate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.5755638031723177e-13,4.1753616264964084e-13,1.3833545769186895e-10,7.794647773552659e-12,1.7689298359303294e-11,5.183519832542575e-10,4.5435733857597636e-12,1.0489800596609371e-11,3.039423140477294e-10,6.652257906379508e-12,1.5198027119251803e-11,2.5113779840161956e-10,1.064235633320752e-12,2.618783718017789e-12,4.0148143293182247e-10,8.888272561391522e-13,2.1836430180228478e-12,3.979206786279465e-10,4.624386806407847e-12,6.559304404712132e-12,2.8582104674450556e-10,1.4749924562309714e-10,1.537673540411837e-10,1.6223038035968073e-10,2.9912021641082397e-10,3.127903708538535e-10,3.3136647987417135e-10,4.2457110987284455e-10,4.426155453797222e-10,4.669791907462527e-10 +175,Dimethylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.916285276752832e-13,1.169949909282658e-12,3.029645761638527e-12,4.591397743940899e-13,8.729676431023318e-13,3.179951090024174e-12,5.96534104040596e-13,1.2074335861701893e-12,3.1467123003142553e-12,6.750234244627852e-13,1.3922297278056628e-12,3.084909939128637e-12,3.4479674488057833e-13,6.76171738311187e-13,3.067187420467865e-12,5.966921717066371e-13,1.456597277329715e-12,7.686959293130702e-12,0.0,0.0,0.0,2.7625069477200608e-12,2.9212213523946365e-12,3.138584098018104e-12,7.577780821820301e-13,8.209748109126143e-13,9.07850000395529e-13 +176,Dinitrogen monoxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.702215049210713e-05,0.00012316654083728936,0.00025509758408228896,0.0001506889341463559,0.00020409535936687453,0.00039344160001932813,0.0001146856194142254,0.0001437054051704166,0.00031558363985359543,0.00011627714715763174,0.00014614490272714536,0.000317861771422999,0.00012404183893929377,0.00016324843238787093,0.0003170677120255842,0.00012175500026847623,0.00015821231897286038,0.00031921629098036013,0.0001422098130938835,0.00017615463501087966,0.0003437361832086954,0.00013349450832272035,0.00015225098538216677,0.00017920783907002586,0.0001838677001477927,0.00022253852509250316,0.00027853909229932813,0.00018365636213135876,0.00022232726380636862,0.0002783622276779999 +177,"Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.203034839314078e-13,3.551204858383453e-13,1.2480020623403211e-12,1.1931194399451385e-13,2.920846649777662e-13,1.0652088301814963e-12,1.178032894894348e-13,3.0262299283945937e-13,4.2015971281046933e-13,1.3978802438295772e-13,3.462788159074512e-13,4.201673155083917e-13,2.363329535100586e-13,5.500812805439814e-13,4.32943297753504e-13,5.219938921112395e-13,1.0153142624383321e-12,1.3954305487546192e-12,6.282320244244637e-13,1.2825470323044688e-12,1.6711603333489592e-12,5.282201327629746e-13,5.545797534589838e-13,5.900748058104783e-13,9.252665259497091e-13,9.68324002752979e-13,1.026808565445852e-12,8.878329567768889e-13,9.27815763606815e-13,9.820917158377597e-13 +178,Dipropylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.8265250195632814e-12,2.8639484403273183e-12,3.652548296452337e-10,8.61446495754677e-12,1.7374739425733088e-11,4.236209542507459e-10,8.7013448594757e-12,1.8212062832938648e-11,3.8479270804163113e-10,1.3309142014874707e-11,2.8447783837058408e-11,3.6273963409332687e-10,3.28000556527847e-12,5.884291937235649e-12,4.1240323730574386e-10,2.926343672989407e-12,5.086840835095154e-12,4.0896466098924063e-10,4.10746771375897e-11,4.985595291745108e-11,5.811651853409057e-10,3.872409716372088e-10,4.042518465786458e-10,4.2728815118181777e-10,5.623064349106766e-10,5.964641275155244e-10,6.438588408528697e-10,4.3349549166293694e-10,4.524835168676621e-10,4.781911521680029e-10 +179,Diquat,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.87486889734831e-13,1.5527356454020996e-12,5.45317350749432e-10,5.340021093580312e-13,1.7574928072570133e-12,5.453772648641003e-10,6.435203107257081e-13,1.9697397502524782e-12,5.454254733909181e-10,1.0941883173642346e-12,2.922209396464743e-12,5.816187332996263e-10,8.913565054148963e-13,2.0484804158170694e-12,6.283913678678756e-10,6.555596500340742e-09,7.699887831697801e-09,1.8002280964016963e-08,0.0,0.0,0.0,9.791754090547657e-09,1.1894751235878319e-08,1.494410392299334e-08,6.712297523579816e-10,6.997949946371743e-10,7.383671964835141e-10 +180,Dissolved solids,"('water', 'ground-')",emission,kilogram,biosphere3,0.00016785730537425143,0.0003865311391947678,0.0006062013181752473,0.00011931385897651988,0.00025836676942264056,0.0005829930955008981,0.00012513571329787046,0.0002710689713181633,0.0006010124972288864,0.00012530085021499545,0.0002715329079808268,0.0006017494313667595,0.00014516332829812913,0.00031470552821775554,0.000605573644078935,0.00017404682778930682,0.00037804114680412167,0.0006653257137418914,8.322118762594925e-05,0.000174630277130102,0.0006623591582492184,0.00014095868961381237,0.00014692889145919612,0.00015507710279968198,0.00013009080046398088,0.0001371926452237913,0.0001466976952747572,0.0001343653562958819,0.0001412118598355952,0.00015044866437918548 +181,Dithianon,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.1264369148267573e-12,3.769173345741098e-12,5.473883958580969e-12,2.9739590836648295e-12,3.680717120854037e-12,5.52839492706844e-12,7.388929300281921e-14,9.359645986782631e-14,1.4338455112714417e-13,7.392880447332036e-14,9.509529362846025e-14,1.4598095489851746e-13,8.592626545156249e-14,3.342819513823415e-13,8.155222814000684e-13,1.0939922418334134e-12,1.3644683753313547e-12,2.1320140251086363e-12,0.0,0.0,0.0,8.299155667589657e-13,8.76601967896904e-13,9.408611531925035e-13,7.328882317021875e-13,7.654516790596615e-13,8.09268147968034e-13 +182,Diuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.658040243936939e-11,3.857144698324679e-11,7.296623681352052e-11,2.2484217948706977e-11,5.65485466890245e-11,7.71738020287278e-11,4.298754735308175e-09,9.218290329745283e-09,1.3711862812594157e-08,1.5317706107510307e-10,2.537920655388545e-10,2.5130133128417053e-10,1.3404580019491498e-10,2.0720128137848846e-10,2.370401515974655e-10,4.3510260795572044e-10,9.424720659033314e-10,8.767906918718459e-08,0.0,0.0,0.0,9.335107976676062e-08,9.732316105281561e-08,1.0268693180167465e-07,1.026328247339675e-10,1.0918864066789068e-10,1.1835164025282018e-10 +183,"DOC, Dissolved Organic Carbon","('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.842636406457045e-08,8.320991064522443e-08,1.8775945331980794e-07,4.03013574273821e-08,8.730079697346557e-08,1.935628033828446e-07,4.0354541620319367e-08,8.745021296966727e-08,1.9380014127220824e-07,4.67514750575766e-08,1.013544386566098e-07,1.9503177179051016e-07,3.876118450771977e-06,8.7575959475363e-06,1.6400275825125424e-05,1.5612516465374806e-05,2.1789987247951766e-05,3.166483457144925e-05,0.0,0.0,0.0,1.5083114056790813e-05,1.5885994307559005e-05,1.6975049731227528e-05,1.1739327056044875e-05,1.2379097209360681e-05,1.3244474381528199e-05 +184,"Dolomite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.7557434898415143e-05,0.00017044653467490305,0.0008358359525734216,7.920976399227821e-05,0.0010074256103547253,0.0018140552416570593,8.103465284476016e-05,0.0017936427123840843,0.002793740928397141,8.286972943843368e-05,0.001796789966696823,0.0027866751505905398,8.098361784868968e-05,0.0018014363572105613,0.002827344133929874,9.224182624689427e-05,0.0018233145228005163,0.0028404014666169896,0.00031387163370418306,0.0027352472822871152,0.005078564233875199,0.0007661722218044879,0.0008042492210850725,0.0008564748373085468,0.0022872946807157677,0.0024095931917497123,0.002578840706996583,0.0008172784855820776,0.000858501595531691,0.0009151293675185598 +185,Endosulfan,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.913680204695114e-09,1.6025085618604364e-08,6.590219050589597e-07,3.6043455312701176e-09,8.619138343459878e-09,3.534661429185069e-07,7.4493901382623415e-09,1.7242818773168868e-08,4.219593213135963e-07,1.7198831933372676e-09,4.31530460082448e-09,6.912526308778907e-07,1.434016038601184e-09,3.6077158998104718e-09,6.859036921913418e-07,1.2365550162525162e-09,2.4725339509378594e-09,3.3282363557879465e-07,0.0,0.0,0.0,3.5438854344668255e-07,3.695786066144149e-07,3.9010437373144346e-07,7.319568898310604e-07,7.63055772498924e-07,8.050443671900348e-07 +186,Endothall,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.4852927658298542e-11,3.262951829346655e-11,9.785822366127632e-12,1.8859248607703506e-11,4.235310021537276e-11,1.5378283103652442e-11,2.520122666793388e-11,5.636086398287009e-11,1.653175378912485e-11,1.0905805872079173e-13,1.6980109746422805e-13,5.9096737290809734e-12,1.0644700893934669e-13,1.5930488655236465e-13,5.796182709116486e-12,4.4088037591442936e-12,5.176897617705974e-12,1.1680383916552154e-11,0.0,0.0,0.0,6.131534573156032e-12,7.523719874154767e-12,9.544251016014297e-12,6.0338130272634625e-12,6.318174987950763e-12,6.705600794777884e-12 +187,Epoxiconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.085874843843864e-12,4.9258554287284265e-12,7.153709577458833e-12,3.886604621244361e-12,4.810253681830661e-12,7.224948457171384e-12,4.1544650574407123e-13,5.936315831650803e-13,8.590715534082803e-13,3.821095792930061e-13,5.325404277675404e-13,8.721083395823425e-13,2.817268947252826e-13,6.652861387129076e-13,1.445206381260477e-12,7.41201491471273e-11,1.844842367697331e-10,3.1632305938879955e-08,0.0,0.0,0.0,3.374479490406743e-08,3.517954499300249e-08,3.711683269641321e-08,1.1314887849338036e-12,1.1837271561401363e-12,1.2543308900208189e-12 +188,EPTC,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.687952883261631e-09,6.679842737487267e-09,1.5077071994605505e-08,0.0,0.0,0.0,7.914951927917684e-09,9.715155837832281e-09,1.2327928527537678e-08,0.0,0.0,0.0 +189,Esfenvalerate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.2780266283189486e-13,6.764304802706173e-13,1.1006913485118196e-11,4.883234140133186e-13,1.0750580697314934e-12,2.3210691920458162e-11,8.105462605641249e-13,1.847119913206578e-12,2.531401918202835e-11,1.038122984276296e-13,2.5876009247897585e-13,4.116408244471269e-11,8.663991869278174e-14,2.20206692724313e-13,4.067775895139633e-11,7.788306119818658e-11,9.156402669911181e-11,2.380430857303041e-10,0.0,0.0,0.0,1.4219430967079193e-10,1.6825774738558194e-10,2.0593964647029517e-10,4.340635790617951e-11,4.525060447957357e-11,4.774063714848778e-11 +190,Ethalfluralin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.827107928656819e-10,1.0604387908308836e-09,3.180330626977676e-10,6.129137000988488e-10,1.3764490783083073e-09,4.997845139161704e-10,8.190239961562425e-10,1.831692586012643e-09,5.37271587223958e-10,3.5443182287725444e-12,5.518428734753819e-12,1.9206067455936884e-10,3.459460755195337e-12,5.1773084902645986e-12,1.883722878822013e-10,7.665899520146887e-13,8.764676381584935e-13,1.8355740026539043e-12,0.0,0.0,0.0,9.54800109633428e-13,1.0942237557300717e-12,1.2948527068514383e-12,1.960951235735389e-10,2.0533670821804623e-10,2.1792780295731952e-10 +191,Ethane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.8064992387889134e-05,7.208074955374588e-05,7.121911139152694e-05,3.2517544983338426e-05,7.963336495714556e-05,7.744457085053398e-05,5.526471493865121e-06,2.021307324847697e-05,6.294997974711689e-05,5.478610657502403e-06,1.9743229687988858e-05,6.263227030684041e-05,5.040425382877775e-06,1.8361074062431487e-05,6.246995485754282e-05,5.2076888756584365e-06,1.86200970502137e-05,6.28741100897528e-05,4.428414306069738e-06,6.615360919383741e-06,1.4355582994710585e-05,5.962398751632992e-05,6.517504290574926e-05,7.313737292349536e-05,9.128451067928209e-06,9.693786271889137e-06,1.0478698121459029e-05,5.655317513011021e-05,6.223926477235774e-05,7.041393831673698e-05 +192,"Ethane, 1,1,1,2-tetrafluoro-, HFC-134a","('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.455587660872272e-12,1.481889699189078e-10,4.2475417430257915e-10,7.045525919927609e-11,7.071487694409983e-10,1.2644812343184141e-09,6.80598822420759e-11,7.182747266939129e-10,1.2496224584146305e-09,1.0765663793986804e-10,8.512497593781667e-10,1.445943768030935e-09,5.5119466925659665e-11,2.4147097116955953e-09,6.992221767935817e-09,5.8079151809366266e-11,2.4047116869029815e-09,6.9686103964159365e-09,6.00912813832322e-11,2.4271510047287436e-09,7.359448461047789e-09,4.33662143433862e-10,4.5146548991903087e-10,4.75272147021827e-10,7.784469589137113e-09,8.090078632767921e-09,8.509908188599433e-09,7.437519900842977e-09,7.67791035156038e-09,8.003496647063854e-09 +193,"Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.2322412355552028e-12,6.281131740857784e-11,1.8074668441962288e-10,9.294232958523426e-14,1.5969926504832192e-12,4.575663581894705e-12,8.365153748665955e-14,1.5364092403747203e-12,4.30782946344317e-12,8.459914315575516e-14,1.5380482515483893e-12,4.311936400648607e-12,9.877859852641472e-12,2.1396484150753052e-10,5.981134048552674e-10,1.0670820706075633e-11,2.115488093957595e-10,5.873681614227525e-10,1.327996981341103e-11,2.1522488721763625e-10,5.934617242803901e-10,1.8528237628298297e-10,1.9287805348469906e-10,2.0303013801572257e-10,5.983001341191532e-10,6.246484989443511e-10,6.599586466703797e-10,5.951891177397271e-10,6.2090836922592e-10,6.553985521895216e-10 +194,"Ethane, 1,1-difluoro-, HFC-152a","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.6478531364114056e-10,8.684744575936737e-10,2.023901049579817e-09,5.249424085825102e-08,9.17691923972705e-08,1.1681796126147187e-07,4.6443282771883924e-08,8.591680309854988e-08,1.1051093003208835e-07,4.645450200752334e-08,8.593958773529356e-08,1.1048910301417186e-07,4.571667386100106e-08,8.635452190812827e-08,1.1673737762567039e-07,4.56258521313906e-08,5.718008239133319e-08,7.792840387301093e-08,5.731933250961919e-08,7.141900972489353e-08,9.691553952673752e-08,1.7643826557159488e-09,1.8408125942622414e-09,1.945158257779767e-09,3.9845422287508995e-08,4.348957494453622e-08,4.84565162015958e-08,3.348683850971844e-08,3.59389055863569e-08,3.9395804557732174e-08 +195,"Ethane, 1,2-dichloro-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.5383666057155034e-08,1.5795463143206476e-07,6.556975116412125e-07,5.50811594840236e-08,1.677892259227943e-07,6.607945695012966e-07,5.56621045098003e-08,1.765059678199607e-07,6.538169788921878e-07,5.994913275684148e-08,1.8486270801123299e-07,6.525406175078737e-07,5.881027551074788e-08,1.830242112731107e-07,6.478447652670975e-07,5.62191198766771e-08,1.7672537958405022e-07,6.46643128103465e-07,1.7734266096101235e-08,3.478724045109454e-08,1.9235807632502946e-08,2.311115977127372e-07,6.449850309240114e-07,1.1613971057419793e-06,1.303935397620744e-08,1.3969126220371854e-08,1.5261422762634425e-08,2.2303647075185217e-07,6.36410199762763e-07,1.152138965676626e-06 +196,"Ethane, hexafluoro-, HFC-116","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.6036241401079177e-10,4.3501739947452195e-09,1.2506411755501728e-08,6.72725755417079e-12,1.114553047658708e-10,3.2075485375698207e-10,7.251364597944673e-12,1.1278431924100949e-10,3.252827794031356e-10,7.522894730524815e-12,1.1349567945178788e-10,3.2506481585781334e-10,6.828534885108554e-10,1.4755894489164011e-08,4.126053103492668e-08,7.377493546551714e-10,1.459005104367961e-08,4.052345953321443e-08,9.189338396212273e-10,1.4848698696851264e-08,4.09572720845156e-08,1.281260610996389e-08,1.3337961679814427e-08,1.4040185357689626e-08,4.128717714523811e-08,4.3106013470978956e-08,4.554366825623033e-08,4.106146744596104e-08,4.2836789603876493e-08,4.5217749937776504e-08 +197,Ethanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2416292768349468e-06,2.4223116323384053e-06,9.245875462817128e-06,1.002773728407988e-06,2.328834697730941e-06,3.4234882031749093e-06,5.10020148236001e-07,1.3259099075098526e-06,2.444290829642429e-06,5.448840822138765e-07,1.2603836816181435e-06,2.2071760897832706e-06,3.8268473072077484e-07,9.697684767321052e-07,1.6993260961220873e-06,3.321064420446308e-07,8.495193137931337e-07,1.6608018353567078e-06,3.604238872621185e-07,8.448671755463369e-07,1.6165220696007588e-06,6.534905789426726e-06,6.811797821075533e-06,7.187254848893424e-06,1.2983375235312599e-06,1.3660823851305255e-06,1.457051176769454e-06,1.3685483241765855e-06,1.4400558247575306e-06,1.536350569363034e-06 +198,Ethene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.6164463198564794e-06,9.608104408566039e-06,2.8815347023328202e-05,7.747504794075144e-06,1.5453035277875347e-05,3.5448005588285304e-05,7.929536387832618e-06,1.5648792522960127e-05,3.5679561362462254e-05,8.1220169224624e-06,1.5948195133184175e-05,3.5388553074536555e-05,7.639167508310585e-06,1.4640455575575593e-05,3.925612010936465e-05,7.582063747502039e-06,1.4310106438685784e-05,3.899522419448034e-05,8.785414927721603e-06,1.3030248127216853e-05,3.0027710378839742e-05,2.1813024796225467e-05,2.7888784297057107e-05,3.570144146357959e-05,1.6081147239621826e-05,2.115304311065225e-05,2.7564652561871675e-05,2.6057681861745345e-05,3.243992375056598e-05,4.069132635551718e-05 +199,"Ethene, chloro-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.124207226912319e-08,6.19928390670731e-08,1.9664171673517346e-07,2.5339458501784452e-08,6.559973654859296e-08,1.969419892630083e-07,2.6063731904120663e-08,7.102455746795081e-08,1.936598590247569e-07,2.8323363140254417e-08,7.543723817356498e-08,1.924147279197776e-07,2.7587127167456185e-08,7.471442023588948e-08,1.9099733074411996e-07,2.624380764320002e-08,7.134904518872588e-08,1.9020124982616923e-07,6.2190109252327495e-09,1.3941678688275172e-08,3.015782595752413e-09,9.720773793845113e-08,1.8311441545308433e-07,2.9052260247401345e-07,2.377234249333242e-09,2.488613936656841e-09,2.639464577617215e-09,9.173927862528291e-08,1.7730891552391206e-07,2.842544515439055e-07 +200,"Ethene, tetrachloro-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.297604774875879e-13,9.266365893486053e-13,2.2666178915563983e-12,1.8237794823111346e-12,3.759955412019133e-12,4.997377784094561e-12,2.036139880803291e-12,4.6233225535453425e-12,6.436215415153837e-12,2.761706341906897e-12,6.119127350935559e-12,5.891060703507806e-12,9.828642017530463e-13,2.8657297355661442e-12,7.30943503753163e-12,2.236551221242322e-12,8.207542125138017e-12,2.1071262181520904e-11,1.308611623442194e-09,4.316095524185546e-09,8.788001844912517e-09,2.0623945056221433e-12,2.1503916246176513e-12,2.269849917320597e-12,7.096429495638628e-09,7.750357275348924e-09,8.682590615399409e-09,1.9446074996077552e-11,2.0359424639196068e-11,2.1613811794810666e-11 +201,Ethephon,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.71678518317682e-10,2.3214210474981882e-10,3.6009274847528475e-10,1.723977871777779e-10,2.522705956565524e-10,3.683941225748358e-10,4.20809558091212e-11,9.677477897019008e-11,1.1384812645558787e-10,8.656695943313737e-11,1.9168250024973898e-10,1.1171785911926625e-10,6.32240573556538e-11,1.5087879356350218e-10,1.408268563192641e-10,5.223525465249355e-11,6.513535599009524e-11,1.017568966043974e-10,0.0,0.0,0.0,3.9583758676837536e-11,4.181104624110695e-11,4.4876754846417904e-11,1.0514059451222357e-10,1.1116332260447541e-10,1.195099747796025e-10 +202,Ethofumesate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.1871640599905254e-13,2.023753716895916e-12,5.161511848516213e-12,1.897803202385953e-13,8.139766225632039e-13,1.3527481548896324e-12,1.0248864107209692e-12,3.2257411776086775e-12,8.857311800119813e-09,8.294698992151253e-13,2.8750063697231154e-12,2.4858698670414863e-10,7.562703588058783e-13,2.4550667585226132e-12,2.50907984615154e-10,1.8632086177287748e-12,4.218330807532194e-12,2.530723197289491e-10,0.0,0.0,0.0,2.6759927424345034e-10,2.791171766996468e-10,2.9468501064062403e-10,2.6732998890704853e-10,2.7887034592896925e-10,2.9447498365575483e-10 +203,Ethoprop,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3178428917510683e-09,1.5476540418465642e-09,3.4932096950003393e-09,0.0,0.0,0.0,1.8338167264811862e-09,2.2509063147874115e-09,2.856260119145424e-09,0.0,0.0,0.0 +204,Ethyl acetate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.512812843328407e-08,2.3754043747115993e-06,6.8346675592212456e-06,1.2950710127097282e-07,2.223785734484636e-06,6.372770569316567e-06,1.166629582449655e-07,2.1399162739808473e-06,6.001967214715488e-06,1.1800522423697184e-07,2.1422601395956625e-06,6.007696579050469e-06,1.1561886994686882e-07,2.500130717610084e-06,6.991114832498205e-06,1.2489055913694028e-07,2.471901050809289e-06,6.865639098732348e-06,1.5556798644146056e-07,2.51538838893925e-06,6.938382208637273e-06,7.005263004494058e-06,7.2924590267339704e-06,7.676321103464328e-06,6.993148572705263e-06,7.302490304017027e-06,7.716938739781911e-06,6.9555474970579264e-06,7.2574855813594355e-06,7.662280342865447e-06 +205,Ethyl cellulose,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.7072710848288684e-10,4.804706200608095e-09,1.3826140599895287e-08,2.6171855361516826e-10,4.501014360489162e-09,1.2897735895151164e-08,2.3555413041393687e-10,4.330259062092143e-09,1.2142714897351434e-08,2.3822337555186634e-10,4.33487233956168e-09,1.2154303531829053e-08,2.334026440677914e-10,5.059241331624631e-09,1.4143525950233016e-08,2.521545465611419e-10,5.0021076608037194e-09,1.388942096814117e-08,3.13784704236005e-10,5.088909334970746e-09,1.4033246735652378e-08,1.4173131654297879e-08,1.4754160723866732e-08,1.553074116316485e-08,1.4148488052365604e-08,1.4771563907414357e-08,1.5606563370742064e-08,1.4075126349679095e-08,1.468333400040717e-08,1.5498955321315633e-08 +206,Ethylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.063843942738763e-12,1.0406032289504963e-11,4.358119793649673e-11,2.6752375641852618e-11,7.665772189875294e-11,4.643293161967721e-10,1.7840266761747532e-11,5.6967506004068714e-11,3.159574760644519e-10,2.254124449604075e-11,6.733370178377443e-11,2.883597266023915e-10,7.388858973280108e-12,3.04789872204693e-11,3.743924336285761e-10,3.514374609360008e-12,1.7111003816220185e-11,3.532210288576252e-10,1.654283326508913e-11,3.532075129403178e-11,5.73778854079305e-10,3.339443319342015e-11,3.544557111358253e-11,3.829396309236763e-11,5.726196502433336e-10,6.00646595130962e-10,6.389460857053101e-10,3.576839492362701e-10,3.7363919331496495e-10,3.9527590071260306e-10 +207,Ethylene diamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.244999893965479e-11,6.299593437156454e-11,1.4215866145015828e-10,6.341500452779726e-11,1.1403746637317223e-10,3.0220385378491046e-10,5.2850281177354326e-11,9.635396156528328e-11,2.4800077022364207e-10,5.322034615655371e-11,9.643817364087386e-11,2.3471632717066633e-10,4.710088212064905e-11,8.509101785906258e-11,2.471027396352224e-10,4.327497923732917e-11,6.853982796658133e-11,2.3183923316266888e-10,3.961293406028764e-11,6.17957756138847e-11,2.628264312367033e-10,7.544237821834024e-11,9.208173073700455e-11,1.1622792381978071e-10,2.0695011549516917e-10,2.2500993218601505e-10,2.50540700882493e-10,1.6781223219943615e-10,1.868381949256316e-10,2.14008836665818e-10 +208,Ethylene oxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.8135785094409455e-09,1.4149476563048155e-06,2.660513933020149e-06,7.096801835784252e-09,1.3251645866032496e-06,2.4922161514143464e-06,6.322007153943604e-09,1.3241547940830288e-06,2.4907076312394054e-06,6.338059168120177e-09,1.324183184130812e-06,2.490643297423715e-06,6.588217636285799e-09,1.3295376512626984e-06,2.506026701968447e-06,6.624557802921345e-09,1.3294660801608932e-06,2.5057295602834016e-06,8.674708676775136e-09,1.3324023067568803e-06,2.5112729566593763e-06,2.863839254698118e-06,2.954409122618978e-06,3.067330026844749e-06,2.688897670008633e-06,2.7794440763431134e-06,2.8923716253372897e-06,2.6859629344795212e-06,2.7764884862449958e-06,2.8894038605349147e-06 +209,Ethyne,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.624365728332065e-07,9.84147571213694e-07,2.210518472317265e-06,1.1885708904268944e-06,1.9038311163927335e-06,3.1317407900759572e-06,1.240035328027008e-06,1.965855764505719e-06,3.1903695068186227e-06,1.2722403045215709e-06,2.0230209995041337e-06,3.15615845917659e-06,1.1949001647331436e-06,1.8325488014693061e-06,3.895289071138381e-06,1.176931602373393e-06,1.75918341687349e-06,3.830160792722415e-06,1.3840877973064365e-06,1.9308865258392044e-06,3.97670687036782e-06,1.918157240749142e-06,2.0003353325510864e-06,2.1113404356093257e-06,2.395717201350486e-06,2.517469959836929e-06,2.684334638741177e-06,2.473437985007503e-06,2.5996456425524733e-06,2.772830551439561e-06 +210,"Europium, 0.06% in bastnasite, 0.006% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.003473435523713567,4.502195493036847e-15,1.625335236438914e-14,0.0034734355237383075,4.251454703830141e-15,1.6570030811412577e-14,0.003473435523738246,4.178843502330099e-15,1.6477319345030745e-14,0.0034734355237377654,3.559398428266172e-15,1.5673822628222178e-14,0.0034734355237391957,3.593337045152747e-15,1.565030823644559e-14,0.003473435523738933,0.0,0.0,0.0034734355237135673,0.00307035948367862,0.0038718577950541534,0.0050378836114653444,0.0030703594836786197,0.0038718577950541534,0.005037883611465345,0.0030703594836912454,0.003871857795067378,0.005037883611479379 +211,"Feldspar, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.7841063767947786e-10,9.253228111460923e-10,2.245545850594596e-09,5.300877312913137e-10,1.2787144255119125e-09,3.0243214333943118e-09,4.92322498058698e-10,1.2515819608206682e-09,2.9239461380741393e-09,4.952957037877342e-10,1.2575099152236877e-09,2.9036205850771064e-09,4.737564695794114e-10,1.2644196769789955e-09,2.659793638084754e-09,4.711563947454313e-10,1.2433662085844393e-09,2.5903574669912205e-09,5.255792543414518e-10,1.6677955155813673e-09,3.6855892929196682e-09,1.769067465063696e-09,1.8485497794402285e-09,1.9560360967950017e-09,2.5694590217083663e-09,2.7795141822974934e-09,3.0767784250947578e-09,1.8059393816970307e-09,1.8900653604677445e-09,2.0039159782170557e-09 +212,Fenbuconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.171207295122472e-13,9.851053315728137e-13,1.4306458676241028e-12,7.772693587657112e-13,9.619865492163813e-13,1.444892770651684e-12,1.931159164499857e-14,2.446222638297725e-14,3.7474765124809846e-14,1.932191830239049e-14,2.4853959271768848e-14,3.815335723468941e-14,2.2457556241391965e-14,8.7367416014694e-14,2.131436478232349e-13,2.859241248282896e-13,3.566153497215541e-13,5.572198965297077e-13,0.0,0.0,0.0,2.169054519456395e-13,2.291073377139553e-13,2.459020192371186e-13,1.915465400795821e-13,2.000572725522606e-13,2.1150907741396528e-13 +213,Fenoxaprop,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,9.973895680844736e-11,2.312512241590484e-10,9.564507910966918e-09,2.7422001444366284e-11,6.553847514937285e-11,2.6639709064585168e-09,1.4951370111183747e-11,3.453864530074951e-11,8.183896859232063e-10,3.3644580018718076e-12,8.403526214339248e-12,1.340252055654306e-09,2.805920231254577e-12,7.024195736751979e-12,1.329636371636113e-09,8.656709742178146e-12,2.1744381156785778e-11,3.762669449465505e-09,0.0,0.0,0.0,4.014162735921563e-09,4.1848338877029385e-09,4.415284381321783e-09,1.4188760871290241e-09,1.4791606420297418e-09,1.5605547268766598e-09 +214,Fenoxaprop ethyl ester,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.837162760695094e-17,8.362503218890572e-17,1.2326946568162044e-16,6.49413617775964e-17,8.128919405084702e-17,1.2337177174122681e-16,6.186824630033566e-14,7.574122888032039e-14,1.1244574434080232e-13,6.190521420570831e-14,7.653275918059306e-14,1.1336484050284873e-13,3.654801878827703e-14,4.306937889426355e-14,6.424988624865788e-14,2.6194075154698276e-14,2.9732098375518816e-14,4.266125886679558e-14,0.0,0.0,0.0,1.1207678010236457e-14,1.194551839958471e-14,1.2975120963256593e-14,1.9343711187733712e-14,2.0613046439779157e-14,2.2387644382350314e-14 +215,Fenoxaprop-P ethyl ester,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.5602063067720792e-17,3.156848157872331e-17,4.691642799137682e-17,2.429659958264246e-17,3.052161828228317e-17,4.647244551354885e-17,1.8484034554584022e-14,6.309352316189473e-14,7.965795989282085e-14,1.7055256710834408e-15,2.9765489888748657e-14,8.23866021272063e-14,1.4489989274015088e-15,1.609340410635214e-14,4.3351130170245244e-14,9.368140570700649e-16,3.17765126561648e-15,7.655825072192228e-15,0.0,0.0,0.0,6.42992832071205e-15,6.812671634943696e-15,7.339241827100489e-15,4.2798545574154034e-14,4.474855995293708e-14,4.737728755655159e-14 +216,Fenpiclonil,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.843641906083896e-09,2.5498652832738205e-09,1.1478284041945917e-08,2.150035749457541e-09,2.597378902669974e-09,5.835956787899516e-09,1.9168844157559616e-09,2.402399060438904e-09,5.5850796523648835e-09,1.9184714185585377e-09,2.4021092165691124e-09,5.57953707786196e-09,1.922638915961874e-09,2.403846785702647e-09,5.536597549743415e-09,1.9423780898291823e-09,2.4272489084335405e-09,5.4914439456242404e-09,8.979576373371843e-10,1.0545477344557257e-09,2.3803336727224944e-09,9.201511736410633e-09,1.0170702157598636e-08,1.1551570175775735e-08,1.2496571937415587e-09,1.5338607101898036e-09,1.9463463331167227e-09,3.0611564606746106e-09,3.765834560232312e-09,4.788887356380084e-09 +217,Fenpropidin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.3005054243702899e-11,1.5678677343004112e-11,2.276982802240324e-11,1.2370789150431316e-11,1.5310715923504996e-11,2.2996551393411847e-11,2.0168924841282354e-12,2.724987594198678e-12,3.979885356512646e-12,1.917341015781409e-12,2.5517056625518674e-12,4.0308035506544895e-12,1.3104711306928878e-12,2.5997968445660475e-12,5.312195012276806e-12,5.232481756910022e-12,6.462291096405208e-12,1.0015552948270769e-11,0.0,0.0,0.0,3.779900591841874e-12,3.995436657932714e-12,4.2924618950426266e-12,3.804821268457708e-12,3.984757038614239e-12,4.22862400437648e-12 +218,Fenpropimorph,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.7883196957599286e-11,3.410787320143554e-11,5.0154378350600596e-11,2.651838126466769e-11,3.2982182147088873e-11,4.957268812929578e-11,1.0634079047838846e-12,1.5265358355586803e-12,2.2349603116169134e-12,9.817462974941076e-13,1.3803564374399668e-12,2.2753990446895716e-12,9.567557190630125e-13,3.131351190340107e-12,7.394937342107064e-12,1.000981820798075e-11,1.2390287513038683e-11,1.923870787236066e-11,0.0,0.0,0.0,7.314403545024165e-12,7.729780647546912e-12,8.302002505393797e-12,6.41575215863112e-12,6.703706608684718e-12,7.091625310004948e-12 +219,Fentin hydroxide,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2803332463100852e-10,2.677987632289161e-10,6.044485464621682e-10,0.0,0.0,0.0,3.173150058487189e-10,3.8948622298378205e-10,4.942337930089113e-10,0.0,0.0,0.0 +220,Fipronil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.45340604009985e-11,1.5034957742968053e-10,2.8451712403976307e-10,8.748596071252522e-11,2.2017059146559056e-10,3.006195169641909e-10,1.107057381317131e-10,2.652698082491438e-10,3.075969144128596e-10,2.38320772007427e-10,5.373538377725008e-10,3.011618318731227e-10,1.696961099248954e-10,3.8749428493692653e-10,2.9306480950752773e-10,1.4921985697259972e-09,2.9682276641374496e-09,8.495697145327877e-08,0.0,0.0,0.0,8.864998005500711e-08,9.244229381697312e-08,9.756275543514069e-08,2.019952268976314e-10,2.1484784511995324e-10,2.3283832113832983e-10 +221,Florasulam,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0212479957517847e-17,1.2567117225400056e-17,1.8639302238890213e-17,9.693826310747061e-18,1.21666514861055e-17,1.8510151898490535e-17,2.3035186030113963e-15,2.8201888323437898e-15,4.187065074797546e-15,2.3048948055725886e-15,2.849684706424735e-15,4.221353435849449e-15,1.3608502652630024e-15,1.6037575950707098e-15,2.3925664221937046e-15,9.781329170277276e-16,1.1102604217887493e-15,1.5930793508226628e-15,0.0,0.0,0.0,4.185483058067926e-16,4.461020512069697e-16,4.845512144325883e-16,7.205122729732977e-16,7.677865116582898e-16,8.338777628150581e-16 +222,Fluazifop-P-butyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.899117299989323e-10,8.606125565051246e-10,3.415182923482211e-09,4.624711643093878e-10,1.0399650608550802e-09,1.2921773503150712e-09,6.110700828853351e-10,1.3670468543502923e-09,7.066233284235195e-10,3.8791016463676775e-12,7.24056517947424e-12,6.48799483365939e-10,3.6060708014997114e-12,6.4679081969152e-12,6.418134070943761e-10,3.5547458522349467e-12,8.165401544076906e-12,1.3038805251259089e-09,0.0,0.0,0.0,1.390300262752977e-09,1.4494849134839636e-09,1.5294087285313273e-09,6.812687949550907e-10,7.108862120540815e-10,7.509583696421998e-10 +223,Flucarbazone sodium salt,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,7.769243592476369e-19,9.346331106502562e-19,1.3542833056498758e-18,7.392322218131288e-19,9.186499984379652e-19,1.385021128084163e-18,2.1236336997935925e-15,2.5997960538168125e-15,3.8596269134697744e-15,2.1249026699063312e-15,2.626960269141101e-15,3.89116106070733e-15,1.2544998544364293e-15,1.478325740677933e-15,2.2053072835466204e-15,8.985289446646813e-16,1.0198905370777592e-15,1.463392001912022e-15,0.0,0.0,0.0,3.844472998331639e-16,4.097569538589233e-16,4.450747510506196e-16,6.639144475350236e-16,7.074817352298819e-16,7.683912429481285e-16 +224,Fludioxonil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.123259557637913e-17,5.26920196343985e-17,8.106363475499419e-17,3.902776331439304e-17,4.8881553453732856e-17,7.422738291521923e-17,3.261866155178503e-13,9.018658507382986e-13,3.153156084990925e-09,3.389018191189081e-13,9.4090300046308e-13,8.819245589939924e-11,2.928140676658305e-13,8.306595597319331e-13,8.916989064003993e-11,8.214422135251741e-13,1.7417642175135737e-12,9.038780545090456e-11,0.0,0.0,0.0,9.541139629820173e-11,9.95385976362445e-11,1.0511957321023484e-10,9.498155904749957e-11,9.908167636252035e-11,1.0462586146744137e-10 +225,Flufenacet,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.8957339963839718e-13,4.265796255467728e-13,7.677951490488731e-12,3.046086298105852e-13,7.08421472989918e-13,1.6270071321639802e-11,7.901653743085707e-13,1.5692012486866932e-12,1.822269137047159e-11,2.926753479604406e-13,4.536159090825331e-13,2.938618323431447e-11,1.9007942975493451e-13,3.040517918442159e-13,2.8859830073292713e-11,1.448965929343416e-13,2.3540433695015907e-13,2.254761631692274e-11,0.0,0.0,0.0,2.3932407405809537e-11,2.495087819232457e-11,2.6326197650914964e-11,3.0622175622407175e-11,3.19248239863847e-11,3.368382961425898e-11 +226,Flumetsulam,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.187403904791879e-13,5.320001044425576e-13,2.72938255496876e-12,1.4076839644527427e-13,5.043761606894437e-13,4.439423853423317e-12,2.4638384792204234e-13,7.334407333134814e-13,4.8054770794175425e-12,3.222582927525651e-14,2.876198846522106e-13,7.460342124224788e-12,2.6171283198720897e-14,2.1009765916862318e-13,7.180773304680419e-12,1.628859117191094e-14,7.976854454028294e-14,5.359869766432257e-12,0.0,0.0,0.0,5.694314705921211e-12,5.936883932982123e-12,6.2644103871888215e-12,7.631605443745396e-12,7.956320185497995e-12,8.394564219259433e-12 +227,Flumioxazin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.8308096811875e-11,1.3515402620696437e-10,5.560367705300681e-09,1.6902940320721962e-11,4.0341303851115454e-11,1.602678996238606e-09,1.0396619689151902e-11,2.3986059664290832e-11,5.303621698014099e-10,2.159572612574394e-12,5.418515421811069e-12,8.679718810385411e-10,1.79954686716763e-12,4.527323028651346e-12,8.607406106368292e-10,3.567015412998121e-11,1.4712807701753003e-10,2.4480677777352682e-09,0.0,0.0,0.0,2.4622227189700864e-09,2.567328556530116e-09,2.7093027832312484e-09,9.185327728752889e-10,9.575587637868796e-10,1.010250255385044e-09 +228,Fluorine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.198849522919919e-08,1.1651132453249155e-07,6.784923306380559e-08,4.556606081761285e-08,9.143579933555693e-08,1.2814846959206615e-07,7.78273513209377e-08,1.8662306459442412e-07,1.4868961442126106e-07,1.0503554332914168e-07,2.3986486395181997e-07,1.4535710773276083e-07,2.811913255973052e-07,6.165240472276776e-07,1.4356000927625204e-07,1.9834987571966317e-07,4.3681418480659034e-07,1.3650586947294094e-07,2.472374934512449e-07,5.384834916089165e-07,1.5164000135207737e-07,5.178207475610994e-08,5.415377480770709e-08,5.736117841772733e-08,1.1988131977760608e-07,1.249569034941725e-07,1.3183337703719576e-07,1.1348526608016858e-07,1.1827371052098549e-07,1.2477225321886997e-07 +229,"Fluorine, 4.5% in apatite, 1% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.336371471009267e-05,3.898026184673746e-05,5.311617185669174e-05,6.0958803910631926e-05,6.949673789943917e-05,0.00010698891637376944,5.7776323585284595e-05,6.646050218390558e-05,0.00010922940027174149,5.7704808559887476e-05,6.668104016143012e-05,0.00011838551370640552,5.807971157622501e-05,6.858444655051646e-05,0.00012128303799524596,5.7838468601302446e-05,6.809336635621231e-05,0.00012007721562728341,0.0,0.0,0.0,2.0124080935692165e-05,2.158038197093665e-05,2.3633636740851186e-05,0.0,0.0,0.0,6.153651657583436e-05,6.81647487108332e-05,7.761236712170427e-05 +230,"Fluorine, 4.5% in apatite, 3% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.4656394287164214e-05,1.717611363955283e-05,5.260985439697952e-05,4.981825277272423e-06,6.311249400925963e-06,4.477802788382537e-05,4.562099484256107e-06,5.6798522316937256e-06,3.0475638292318037e-05,4.755879574180713e-06,6.142713844143891e-06,4.1719935277759575e-05,4.662878032813899e-06,6.098500471027935e-06,4.1284508620557794e-05,4.6356227760662276e-06,6.028526290807712e-06,4.102387927726006e-05,0.0,0.0,0.0,4.0097499008127055e-05,4.206912990389825e-05,4.476981582170236e-05,0.0,0.0,0.0,3.810545509923666e-05,4.033656412019706e-05,4.342718780201299e-05 +231,"Fluorspar, 92%, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0007054429603162093,0.0013424132631003958,0.0017521477124537055,0.0008158213585990079,0.0014257997975003717,0.0018060522814435382,0.0007211530415552224,0.0013323071256898418,0.0016985942286569953,0.0007227552790615269,0.0013352138334656656,0.0017019703492921153,0.0007106920613379734,0.0013397714639234322,0.0017990938349955654,0.0007344536250777647,0.0013899369760424745,0.0017989029730942723,0.0,0.0,0.0,0.0005455198462827602,0.0005864540886651433,0.0006442844780710904,0.0,0.0,0.0,0.0005828502873879355,0.0006228680540635253,0.000679110703054376 +232,Fluosilicic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.2909068266074743e-08,5.116960674824238e-06,6.319254277984101e-06,5.924621205277607e-08,5.117483886729313e-06,6.311077623618855e-06,6.96426275261547e-08,5.139582861112083e-06,6.362027539678322e-06,6.957071499405071e-08,5.139494230675754e-06,6.363018553511295e-06,7.006681184991677e-08,5.146235838552869e-06,6.377178390961329e-06,5.112573084136278e-08,5.111461050516328e-06,6.29956698044441e-06,5.8753073774979114e-08,5.117309605642577e-06,6.310162159243453e-06,1.5672111921029763e-07,1.7053024128230574e-07,1.9007256227983113e-07,1.4268896090032334e-07,1.555984679276739e-07,1.738609434324797e-07,1.4158553070904368e-07,1.5437286233043743e-07,1.724755794243181e-07 +233,Flupyrsulfuron-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2061630993363141e-18,1.451003506431944e-18,2.1025039695659082e-18,1.147646636611899e-18,1.4261899709058648e-18,2.150223965282454e-18,3.2969085207362486e-15,4.036143221326117e-15,5.992011173634114e-15,3.2988785772381585e-15,4.07831524608484e-15,6.040967450202411e-15,1.94759179696365e-15,2.295078054892514e-15,3.4237057581355175e-15,1.3949524157083694e-15,1.583364427937001e-15,2.2718936549713747e-15,0.0,0.0,0.0,5.968485409352465e-16,6.361413909132005e-16,6.909717297709398e-16,1.030717004331715e-15,1.0983545507451536e-15,1.1929156279498456e-15 +234,Fluquinconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,7.105517346176066e-13,8.56627762575196e-13,1.2440608426424931e-12,6.758977849647809e-13,8.365241347023697e-13,1.2564496620832373e-12,1.6792971279362754e-14,2.127185956724364e-14,3.2587301306322606e-14,1.6801951133143698e-14,2.161250261333922e-14,3.31773913785074e-14,1.9528638826592156e-14,7.597294734373531e-14,1.8534542867147676e-13,2.4863386221330607e-13,3.1010552828545746e-13,4.845472036070234e-13,0.0,0.0,0.0,1.8861661443522963e-13,1.99227128653368e-13,2.1383144559775693e-13,1.6656501864791766e-13,1.7396578042383903e-13,1.8392403959265656e-13 +235,Fluroxypyr,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,9.384764786158335e-13,1.1314086054937038e-12,1.6431173439255788e-12,8.927066290501206e-13,1.104860162445652e-12,1.6594912149266817e-12,1.4574076517241873e-12,1.7851306204156958e-12,2.651514229202934e-12,1.4582771280323117e-12,1.8039390407241648e-12,2.673605393468088e-12,8.736218428536931e-13,1.099400054371145e-12,1.7350979386378818e-12,9.354687459319917e-13,1.0986340613427298e-12,1.6286387417149817e-12,0.0,0.0,0.0,5.088041029848271e-13,5.399155875054514e-13,5.830629229964374e-13,6.685694231590001e-13,7.077831360067719e-13,7.620933823215523e-13 +236,Flurtamone,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.290244863371008e-12,9.994573267406674e-12,1.4514905399972464e-11,7.885924791136095e-12,9.760013245151062e-12,1.4659438186132032e-11,4.2553897094409454e-13,5.292856619081733e-13,7.975339341937973e-13,4.257809344183416e-13,5.361982793072403e-13,8.07831455155234e-13,3.634823433780667e-13,1.0462058535037875e-12,2.4008343717004614e-12,2.9980287534861175e-12,3.728340842145286e-12,5.8115209189059645e-12,0.0,0.0,0.0,2.242160119042636e-12,2.368690271992462e-12,2.5428985826844905e-12,2.0150602562985064e-12,2.106113941460449e-12,2.2288804903409615e-12 +237,Flusilazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.853646471700673e-12,3.440303505882487e-12,4.996275618518723e-12,2.7144726669420223e-12,3.359564799816977e-12,5.046028870353192e-12,6.744228807734639e-14,8.543070809285821e-14,1.3087609478824918e-13,6.747835097530126e-14,8.679889696424199e-14,1.33246313119616e-13,7.842879845712736e-14,3.051120182423086e-13,7.443576743483282e-13,9.985397523010395e-13,1.245414663503679e-12,1.945987508170393e-12,0.0,0.0,0.0,7.574989572750555e-13,8.001116701834068e-13,8.587638374589527e-13,6.689336064492391e-13,6.98655452473158e-13,7.386483432046306e-13 +238,Flutolanil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.59299718705369e-10,3.045175264942389e-10,6.873264612666293e-10,0.0,0.0,0.0,3.608231028981912e-10,4.4288995138199515e-10,5.619998029203392e-10,0.0,0.0,0.0 +239,Fomesafen,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.824003165105883e-10,8.865206907509777e-10,3.6587185664180595e-08,1.0746920930721883e-10,2.5669938701670604e-10,1.033491961196291e-08,6.16868717329749e-11,1.42492050607512e-10,3.2765389026173595e-09,1.3346983828548791e-11,3.348849553251797e-11,5.364397840041446e-09,1.1124538260551683e-11,2.7987255675663546e-11,5.320973868238108e-09,3.347998223965805e-11,8.422509963664709e-11,1.4592554763151464e-08,0.0,0.0,0.0,1.5568029575952758e-08,1.6229938410928195e-08,1.7123687564242747e-08,5.678236650146818e-09,5.919489677198696e-09,6.245220851500787e-09 +240,Foramsulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,7.979234666144043e-15,4.6315258439164887e-14,9.990033363796813e-14,7.453880575290296e-15,3.628706990364029e-14,6.764068371653074e-14,1.210997823055723e-14,4.5996645937202075e-14,6.791869994464377e-14,1.6443246089416855e-15,2.6278560197067962e-14,7.248529060535043e-14,1.3028747667134042e-15,1.8733502907344178e-14,5.134334931496189e-14,4.539168200817484e-16,5.301863893934186e-15,1.2622927834287027e-14,0.0,0.0,0.0,1.0914761744344115e-14,1.1428424326752297e-14,1.2121452739929825e-14,5.1436932817395945e-14,5.367252633553936e-14,5.6672285707661835e-14 +241,Formaldehyde,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.9500226081732402e-06,6.3157881223293404e-06,2.3174305694279903e-05,2.776950884196466e-06,6.0572204720927975e-06,1.3485028505519011e-05,1.3780697591072177e-06,3.1353296016738935e-06,6.3902849514710255e-06,1.5014563726129908e-06,3.2119073972283022e-06,6.133095190380821e-06,1.7341198220168108e-06,3.8012692529990417e-06,6.5624648527290584e-06,1.6520676921510763e-06,3.518784861929842e-06,7.187125436103589e-06,2.054512146429316e-06,4.002028110270943e-06,7.333448187027838e-06,1.3593459493038435e-05,1.4242210532189887e-05,1.511310264874655e-05,5.6836472770577985e-06,6.01510831283378e-06,6.457814599372106e-06,5.8481879684426685e-06,6.19747275298594e-06,6.6636011286266594e-06 +242,Formamide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.1953927191462287e-12,4.422601372853118e-12,2.1700259678654415e-11,7.524901930664827e-12,1.301785398190647e-11,1.7445775606613617e-10,6.26114431980494e-12,1.0861548828167872e-11,1.2385933052877879e-10,7.581164310869859e-12,1.3852288425269762e-11,1.4868413236698248e-10,3.865259015043503e-12,5.466040859391697e-12,1.550245805614139e-10,3.791843302848072e-12,5.249420937526762e-12,1.5344478233151475e-10,6.8320059653471215e-12,9.224801888889604e-12,2.5157742435239583e-10,1.7877254052444448e-11,1.9638437609525475e-11,2.214156257611829e-11,2.592713816462867e-10,2.7179358400890656e-10,2.8888733555883323e-10,1.5879224796044407e-10,1.665393624099357e-10,1.7712400533786625e-10 +243,Formic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.0651865955617775e-10,2.9745064736185927e-09,8.562234484903432e-09,1.6428299294897117e-10,2.7897757275055265e-09,8.033263118877566e-09,1.4770338964319779e-10,2.6834191300823862e-09,7.551135562672093e-09,1.4973799424754805e-10,2.687141287459628e-09,7.565513987370243e-09,1.4565724806843778e-10,3.1329560228802275e-09,8.798370744706463e-09,1.5724027659371521e-10,3.0975343168812164e-09,8.64064661335386e-09,1.9629162173460308e-10,3.1524342610959076e-09,8.7581722428897e-09,8.775926881862287e-09,9.135994458258671e-09,9.61728929111524e-09,8.831319705987632e-09,9.220555317769452e-09,9.742269582827668e-09,8.756737660904304e-09,9.135383381672939e-09,9.643212431521691e-09 +244,"Gadolinium, 0.15% in bastnasite, 0.015% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.008790266528337714,1.1236249553421043e-14,4.056392565101952e-14,0.00879026652839946,1.0610469068078831e-14,4.135426851030447e-14,0.008790266528399307,1.0429251352923044e-14,4.1122886027164164e-14,0.008790266528398106,8.883285735130396e-15,3.911757780824449e-14,0.008790266528401676,8.967987247853306e-15,3.90588923125648e-14,0.00879026652840102,0.0,0.0,0.008790266528337715,0.007770196975036777,0.009798558731258782,0.01274943478328311,0.007770196975036775,0.009798558731258782,0.012749434783283114,0.007770196975068287,0.009798558731291786,0.012749434783318138 +245,"Gallium, 0.014% in bauxite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.0397451190996977e-12,6.6891607483325034e-12,1.5588694877291925e-11,2.1719852538074487e-13,6.766524411501781e-13,2.805431950070037e-12,1.7077753929126107e-14,4.7281415322390696e-14,1.071967580720105e-13,2.2912651200929025e-14,6.651946973706703e-14,1.2844335907571895e-13,3.5040912477971865e-14,1.828803558054134e-13,8.971802315260373e-13,5.286602082063769e-14,2.1876938845515173e-13,9.1658216594471e-13,0.0,0.0,0.0,1.3589394708454596e-11,1.4178060032405176e-11,1.4981732739933412e-11,0.0,0.0,0.0,9.197755207828943e-13,9.59348939574145e-13,1.0138457765264269e-12 +246,"Gas, mine, off-gas, process, coal mining","('natural resource', 'in ground')",natural resource,cubic meter,biosphere3,0.010848393477554513,0.024778316735668673,0.06351175062247914,0.012010399038582998,0.026211590582516667,0.0636482211425054,0.0123480956798617,0.026966840886445326,0.0658533696012068,0.012354913951979409,0.026961313632146475,0.06584125912197004,0.014546552722501764,0.03175451711801015,0.06639443776045661,0.011702325877215725,0.025371555062771504,0.06583984902180257,0.005719238382348782,0.011908802891141951,0.06521410956077602,0.010496030812457306,0.010921844624750265,0.011502253739582418,0.010539416181106268,0.01105962875768472,0.011757730187352365,0.011149514259779175,0.011703435332034969,0.012449897470298735 +247,"Gas, natural, in ground","('natural resource', 'in ground')",natural resource,cubic meter,biosphere3,0.5340564112441446,1.1970480693095982,0.9728573788216398,0.6368854807431513,1.4352060110569078,1.0920701635440178,0.3706327743383698,0.8553650827104734,0.988327675692813,0.37132737512899616,0.8778727437215242,0.9974508647590034,0.5684891351785969,1.3460866407637555,1.1887066208348072,0.4264854207486389,1.0386867703392915,1.177554493413787,0.628204578738996,1.4530604235884665,1.1815175175253556,0.8229472500915621,0.9007132118507108,1.0038545312660136,0.9862343690644958,1.0649325805744563,1.1696357365425523,1.0069627410358457,1.0880431891841875,1.19601274816593 +248,Glufosinate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.633072293136913e-13,1.5283599222185021e-12,3.2966169672326396e-12,2.459710249704273e-13,1.1974390718834083e-12,2.2320787601277716e-12,9.70462082593763e-09,2.170489116131466e-08,1.3785915975612591e-08,4.272139227410091e-11,6.831045522896726e-11,2.485142019656776e-09,4.164643541036771e-11,6.382673302265154e-11,2.4431420164134543e-09,1.2351962416399222e-10,1.466109499983173e-10,5.332462981701458e-10,0.0,0.0,0.0,3.9281109737853953e-10,4.3984660231145736e-10,5.071285353042194e-10,2.5484050703209478e-09,2.6676145125575524e-09,2.8299297341467534e-09 +249,Glyphosate,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.5047660316485905e-09,1.0630226854595374e-08,4.592493192819594e-06,8.935239865814384e-08,2.1011180783156285e-07,1.1741737353142497e-05,2.978791723246619e-08,7.46870696601771e-08,6.282965788445976e-06,2.6451874596260774e-08,6.710250870537956e-08,3.6491183846156343e-05,1.5282880981365663e-08,4.152471266019669e-08,6.588427677167062e-06,1.2241752109025336e-08,3.4018423734096224e-08,6.601152569131683e-06,4.844202676709937e-08,1.2415335824321933e-07,1.5896900089399158e-05,4.903191478047791e-06,5.1117419919503854e-06,5.393341203694004e-06,1.6924230305077044e-05,1.7644602860842355e-05,1.861735660111844e-05,7.04229384462607e-06,7.342507007950453e-06,7.747962264889814e-06 +250,"Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.6725312750903404e-10,4.706423683539004e-09,1.3543283184336943e-08,1.8393488384071777e-10,3.1557793240283827e-09,9.040992146068245e-09,1.8120051358473003e-10,3.2800935690171506e-09,9.18645370745916e-09,1.834708566073153e-10,3.2841438544124475e-09,9.195605194544224e-09,1.7976715087686236e-10,3.8324194191828764e-09,1.070564422178681e-08,1.9428196465880968e-10,3.7865171126076935e-09,1.0501939251100653e-08,0.0,0.0,0.0,1.388315113985115e-08,1.445229274769707e-08,1.521298504816607e-08,0.0,0.0,0.0,1.0627707197818576e-08,1.1087597960933205e-08,1.1704438887663185e-08 +251,"Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.067059722904312e-10,8.63056004000037e-09,2.483544327618612e-08,3.8096552882609626e-10,6.541962672565544e-09,1.8742334787899844e-08,3.104684554381459e-10,5.697573543333076e-09,1.5973448563684013e-08,3.1399023791756547e-10,5.703670670197273e-09,1.5988680457407108e-08,3.0757075580204715e-10,6.656280597426339e-09,1.8605281248339635e-08,3.3224491155162543e-10,6.5810511664931006e-09,1.827071356777983e-08,0.0,0.0,0.0,2.545868735402702e-08,2.6502369593348555e-08,2.7897314248191767e-08,0.0,0.0,0.0,1.8512624660832223e-08,1.9312611725050635e-08,2.0385418703177803e-08 +252,"Gold, Au 1.4E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.6723016466166803e-10,1.0333681861213545e-08,2.9736374972717578e-08,1.034127686980538e-09,1.7758349654847483e-08,5.0876629300863195e-08,9.276624870033629e-10,1.7028031034594224e-08,4.7739821646721006e-08,9.381663748017525e-10,1.704620542581591e-08,4.7785310566365364e-08,9.189815227278514e-10,1.9893231944372957e-08,5.560508057351529e-08,9.926964401685163e-10,1.966862705342664e-08,5.460615716755072e-08,0.0,0.0,0.0,3.048260765793609e-08,3.1732246171197755e-08,3.3402463885783046e-08,0.0,0.0,0.0,5.5330337550767164e-08,5.772127430553918e-08,6.092758316454012e-08 +253,"Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.609051678659431e-10,1.578360865554318e-08,4.5419175473839876e-08,8.229801107805665e-11,1.4132104041455396e-09,4.048763192980447e-09,6.71488344838697e-11,1.2320236490029845e-09,3.453988857085524e-09,6.791177290570645e-11,1.2333451853852236e-09,3.4572847547096357e-09,6.652360005403889e-11,1.4393334508957763e-09,4.023110597801598e-09,7.186084131337496e-11,1.423051148235721e-09,3.950700864979492e-09,0.0,0.0,0.0,4.655896731319969e-08,4.8467658302976126e-08,5.101873965021386e-08,0.0,0.0,0.0,4.002933040417498e-09,4.175915667222237e-09,4.4078912836610585e-09 +254,"Gold, Au 4.3E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.3901506208818323e-10,3.91181781597268e-09,1.1256712098310214e-08,2.0183776383196133e-10,3.4660183928961496e-09,9.929939231556661e-09,1.8105822385201416e-10,3.323477124507535e-09,9.317707070686627e-09,1.8310833937949822e-10,3.327024344583906e-09,9.326585453852742e-09,1.7936390076017099e-10,3.882697956407721e-09,1.085282337794036e-08,1.9375134469689964e-10,3.8388602857175015e-09,1.0657856673819415e-08,0.0,0.0,0.0,1.1539198671858856e-08,1.2012249640496073e-08,1.264451096998278e-08,0.0,0.0,0.0,1.0799199905620165e-08,1.126585536299609e-08,1.189165256323553e-08 +255,"Gold, Au 4.9E-5%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.32958755833823e-10,9.369302871284986e-09,2.696126213862612e-08,1.012357262901575e-09,1.7384501427209117e-08,4.980557607452303e-08,9.081333466044218e-10,1.666955711387067e-08,4.6734803450217594e-08,9.184161066750766e-10,1.668734889801784e-08,4.677933473765752e-08,8.99635133892652e-10,1.947443984583918e-08,5.443448303323625e-08,9.717982057075997e-10,1.9254563334576438e-08,5.3456588951772966e-08,0.0,0.0,0.0,2.7637853595250764e-08,2.8770871039280864e-08,3.0285217616640623e-08,0.0,0.0,0.0,5.416552389758264e-08,5.650612667828229e-08,5.964493635870666e-08 +256,"Gold, Au 6.7E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.154742143552921e-10,1.4505202492815286e-08,4.1740412541209155e-08,1.0798337829510517e-09,1.8543228392581678e-08,5.312526081009399e-08,9.686630665256322e-10,1.7780631414932457e-08,4.98498135685973e-08,9.79631202362853e-10,1.779960907307708e-08,4.98973129954638e-08,9.595984233025292e-10,2.077246771138899e-08,5.8062699114568216e-08,1.036571373032941e-09,2.0537935793313308e-08,5.701962555802563e-08,0.0,0.0,0.0,4.2787886002003996e-08,4.454198101767449e-08,4.688643546307709e-08,0.0,0.0,0.0,5.777581307293747e-08,6.027242381358657e-08,6.362044425755853e-08 +257,"Gold, Au 7.1E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.812506871856446e-10,1.6356119287257648e-08,4.706664135835276e-08,4.999664309409134e-10,8.585572950133095e-09,2.459716250717142e-08,4.4849403944353903e-10,8.232488140318307e-09,2.308062010980894e-08,4.535723207534036e-10,8.24127485558765e-09,2.310261249348931e-08,4.442970811873965e-10,9.617717733896784e-09,2.6883211889458426e-08,4.799357984503134e-10,9.50912871986177e-09,2.640026555960559e-08,0.0,0.0,0.0,4.8247776180167797e-08,5.0225700113985825e-08,5.286931549314715e-08,0.0,0.0,0.0,2.6750382751908984e-08,2.7906321359135122e-08,2.945646533070329e-08 +258,"Granite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.893271833271706e-12,9.800098802430518e-12,2.2396611362904708e-11,1.0832685679735321e-11,2.003516654869392e-11,3.3388593521179475e-11,1.6437261903275884e-11,3.363440573650791e-11,4.9744661264970795e-11,1.659943961028022e-11,3.3668968460791194e-11,4.9628662309222296e-11,9.165256036327497e-12,1.8831232674595973e-11,5.95670219746567e-11,4.49004373064664e-12,5.341092302069828e-12,1.1964933738897288e-11,0.006014555583619994,0.02143330257009561,0.08433309952354706,1.5721189600654358e-11,1.777300512851034e-11,2.071335681715132e-11,0.07294589275676933,0.0756413046243584,0.07929772779829729,6.668852975996518e-12,8.293540410902552e-12,1.0654289374862625e-11 +259,"Gravel, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.8371452109557573,4.324678185802218,6.3627713166808855,4.5329330919051385,5.071738921836086,6.816880565807812,4.027319676906084,4.621306656802124,6.426241529086897,4.0211793721860145,4.605702202400131,6.405727671102917,4.04327529100948,4.655511599777985,6.420417087653357,4.063974614324515,4.685265717066693,6.569181839148329,3.3392046094182937,3.8289930175885765,5.537501176389831,2.2367709448372532,2.3263029216151287,2.448202464809122,1.9184907140704748,1.9931680184608016,2.094648699570488,2.2501688499959966,2.3395918752448335,2.4612491784639063 +260,"Gypsum, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.2871207452830578e-07,6.780847916822187e-07,8.82490748710567e-07,0.010219463789245811,0.01132179347878972,0.014108248368635178,0.008874096973991488,0.009778030207582928,0.011858087218539828,0.009955357797025551,0.010905453291388863,0.013209502431608,0.009935644887793237,0.010903361353340283,0.0133190829371411,0.010019557966602333,0.011048544390633996,0.013431007445222796,0.01204203972052771,0.013163459066759935,0.01607607538751632,4.39229026931176e-07,4.648512872283372e-07,5.00489002957693e-07,0.0033805220859703597,0.003550343966583031,0.003784484839492762,0.0029901481205895242,0.0031460818842522407,0.003361759228949846 +261,Halosulfuron-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.650152443247601e-14,1.181389671109834e-13,1.7538747367471654e-13,9.655918886289039e-14,1.193733227852109e-13,1.7682035109183875e-13,9.509985561749986e-14,1.1206723287549506e-13,1.6717716406266823e-13,9.298034636870769e-14,1.0553887828374813e-13,1.5143261239115316e-13,0.0,0.0,0.0,3.978272472686451e-14,4.2401778276853066e-14,4.605647896390395e-14,5.032879697314941e-14,5.363147783831148e-14,5.824881200573275e-14 +262,"Heat, waste","('air', 'urban air close to ground')",emission,megajoule,biosphere3,20.176312960886293,50.2771881767422,135.49438115760418,0.09091590771245811,0.20553139846254337,0.42740053567776887,0.03011897131294761,0.08010399322709948,0.1617168289381599,0.05318475019094805,0.13612268307285166,0.2947454739183213,0.052804207452066626,0.14068097282872172,0.29007365333927226,0.035035761251876504,0.09599184366138153,0.1946899748426178,0.039119305990875326,0.10165387150416347,0.20860088028934468,76.67345862436943,81.35291717946748,87.65968087081625,0.1664381516012337,0.17435508034333902,0.18508271680151722,0.16261424930620175,0.17028891819328804,0.18070492743922856 +263,Heptane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.1339251742750613e-06,1.242398432654134e-05,4.6798678517807656e-05,1.8504563135636324e-06,1.3924434848066702e-05,5.233324433563058e-05,1.367120672091955e-06,1.3009385358967766e-05,5.117840018604475e-05,1.3597100391799525e-06,1.2786661647942826e-05,5.0750603692773736e-05,1.247011158317697e-06,1.2123855387187596e-05,4.868266361713456e-05,1.501677223559191e-06,1.2680084513036154e-05,4.932224808182064e-05,9.041894297317661e-08,2.1457985692553942e-07,5.245854424177869e-07,4.288742247064291e-05,4.761931834018952e-05,5.445394944727058e-05,4.066425906375307e-07,4.283615424417359e-07,4.5812293600942434e-07,4.7415006994071926e-05,5.2531488324401615e-05,5.991400386222978e-05 +264,Hexane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.9268553220952324e-05,5.922372036838379e-05,0.00019144504778702655,1.974522788986046e-05,6.457449987725631e-05,0.00019901577299322117,3.3450874279519572e-06,2.880407606343504e-05,0.0001909691690640878,3.3204719468292634e-06,2.828905619498486e-05,0.00018998740194464778,2.8378331807063457e-06,2.631664062162043e-05,0.0002004556801127446,3.320749620373641e-06,2.7368367764928045e-05,0.00020111371912213505,4.82678664914983e-07,2.2609015341977636e-06,9.88033905949141e-05,0.0001869906588030171,0.00020115721051103039,0.00022124011202224672,0.00010452441153960452,0.00010937086973594024,0.00011597569019946973,0.00020356869868816326,0.00021884170143432452,0.00024047563864433547 +265,"Hydrocarbons, aliphatic, alkanes, cyclic","('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.59860469718603e-09,2.3239890317260485e-08,9.295163263453722e-07,1.4755771539862538e-07,4.22741794260278e-07,1.5168411748726878e-06,1.5109272369901123e-07,4.426303631165647e-07,1.4693017307911444e-06,1.5392787539095954e-07,4.480180815670508e-07,1.5080982051333736e-06,1.249362048556727e-07,3.959173447866904e-07,1.6813693287625884e-06,1.722199550026838e-07,4.956368897068564e-07,1.672047325026562e-06,2.475579921333896e-07,6.199586759088708e-07,1.7796294785709441e-06,8.925195210051864e-07,1.0241185161309664e-06,1.1919844132966575e-06,1.3744833183175213e-06,1.5145764420575321e-06,1.696073268533005e-06,1.34780313589796e-06,1.489156342787959e-06,1.6728009087532186e-06 +266,"Hydrocarbons, aliphatic, alkanes, unspecified","('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.897669879062711e-06,9.56669813240267e-06,4.7738688919002834e-05,4.778940827136239e-06,1.0956988398686346e-05,4.0109318703989664e-05,4.14751316061928e-06,1.0179504170996977e-05,1.909323806075388e-05,4.74215021018e-06,1.104472956784228e-05,1.85025499277373e-05,7.570169199030639e-06,1.7100087666871466e-05,1.8434954762580692e-05,5.830041749742893e-06,1.3295564804878969e-05,1.7708267951411727e-05,7.0037898651701805e-06,1.5220041606200933e-05,1.7644976183766426e-05,2.2439768160937026e-05,2.3684675224431993e-05,2.541589753084031e-05,1.3045147335983828e-05,1.4767424024056287e-05,1.705851661899799e-05,1.3605617555045885e-05,1.5374146750922638e-05,1.7731701947704634e-05 +267,"Hydrocarbons, aliphatic, unsaturated","('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.5096667661188514e-06,8.449532014005629e-06,2.7074837508121467e-05,4.371599054037202e-06,8.347399150565122e-06,3.142097470718563e-05,6.1675054674544995e-06,1.3769561227824307e-05,1.3471845480972174e-05,7.889423566374364e-06,1.7119616343085134e-05,1.3202615890937334e-05,1.8733867175511088e-05,4.0280291146685015e-05,1.3756623638479903e-05,1.3534358666879846e-05,2.8969718453478415e-05,1.315308051115984e-05,1.6777693060531744e-05,3.5440780141951466e-05,1.4222526900127853e-05,7.032614024622268e-06,7.319531527968488e-06,7.708286931045036e-06,1.0020079079569062e-05,1.0466258249707283e-05,1.1072641932233827e-05,9.723464644544277e-06,1.0158415907757893e-05,1.0750742322312459e-05 +268,"Hydrocarbons, aromatic","('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.677451334698148e-07,1.0111031125575817e-06,4.803895759820349e-06,2.988164612600358e-07,8.574506584534492e-07,2.8870428477197194e-06,2.3007272272867555e-07,1.350004257361077e-06,4.690071479739898e-06,2.2669587015484528e-07,1.2651644362855868e-06,4.515674374196336e-06,2.305483811143685e-07,7.94222071733545e-07,2.6868418099456147e-06,2.0625407027858086e-07,7.439964806720401e-07,2.595548269689469e-06,2.2092494364721346e-07,7.335223338396361e-07,2.5465052664036785e-06,3.4644825203763305e-06,4.626733444482377e-06,6.089864964828638e-06,1.4264928956364775e-06,2.488463235133737e-06,3.8177550500720794e-06,1.5238887746646471e-06,2.5516700690043277e-06,3.8396838580187545e-06 +269,"Hydrocarbons, chlorinated","('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.565883271473161e-10,9.903353672755402e-09,2.8901731545803116e-08,1.67359813821495e-08,3.997523716076102e-08,7.514660394058353e-08,1.8167309310626542e-08,4.389527126265279e-08,7.95847462506446e-08,2.6667496811034572e-08,6.283083251606459e-08,8.144547197295656e-08,1.786168261938985e-08,4.329397484424202e-08,7.279408411559691e-08,1.0678679411354314e-08,2.7746595717574612e-08,7.184476001958144e-08,2.045703002799684e-08,5.2772974450581e-08,1.6486007448171988e-07,2.691403945359703e-08,3.041184371684963e-08,3.487280062199056e-08,7.699682980577017e-08,8.301125987245988e-08,9.139470128679767e-08,3.371801882738777e-08,3.597642455803217e-08,3.9011882983143434e-08 +270,Hydrogen,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.9446042585779687e-05,0.00011461265532953954,0.00027179141622000525,2.2458690963543005e-05,0.00010586004358731969,0.00024255682692589495,1.9550970549088625e-05,9.235196032269967e-05,0.00020597506853267718,1.9615093442679936e-05,9.246805329474283e-05,0.0002060832248358684,1.90236753474842e-05,9.875908759798969e-05,0.00023196728555349773,1.966933912996163e-05,9.936161781184599e-05,0.00022385213293195136,2.449319891376065e-05,0.00010515556907035108,0.00023161706642322916,0.00027205293434414427,0.00028066677120708566,0.00029220500731416265,0.00022316004305824143,0.00023035789625398164,0.00023994926927171898,0.00022087564009567245,0.00022729705897865966,0.00023591155385084144 +271,Hydrogen chloride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.691375451923485e-05,8.741075962693716e-05,0.0030102765078911502,0.00012217435021582123,0.0002145388518098616,0.0030900046095063104,9.791814604710226e-05,0.00015794561949657282,0.0003880727784272267,9.803597524969007e-05,0.00015654208455285223,0.00038371616433360617,9.748660282766166e-05,0.00015387651654249414,0.0004434941024000253,9.897751123529272e-05,0.00015275655384835147,0.0004462862629482306,0.00011700112783203487,0.00016762943391297207,0.0004556662172787704,0.0003732400429540754,0.0003884184958278716,0.0004088578519229006,0.00023872152877844798,0.0002510483204880484,0.0002677750166955223,0.00024984191387158534,0.0002631156425256019,0.00028118021747528785 +272,Hydrogen fluoride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.092621877970353e-07,3.7045391814401446e-06,0.0002598934260594673,5.643153063121836e-06,1.128299243794914e-05,0.0002631126839349507,3.2612670308448756e-06,5.999677883610656e-06,2.1014786938684706e-05,3.271867829334648e-06,5.923103095552613e-06,2.078596324848451e-05,3.2277817987592427e-06,5.877031557135036e-06,2.2829845309621556e-05,3.170494705485105e-06,5.6445587453730425e-06,2.2530304322532566e-05,3.7729330503632773e-06,6.018150002797437e-06,2.24360735457476e-05,2.465258203961695e-05,2.5590645012827574e-05,2.6858112321703702e-05,1.0394466815511359e-05,1.090918848162896e-05,1.1606039995454868e-05,1.1125471234268616e-05,1.171858463229393e-05,1.2526685916185719e-05 +273,Hydrogen peroxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2697633695977341e-10,3.560216426234142e-09,1.0244011250985776e-08,1.939730213608694e-10,3.334086539511526e-09,9.553346201276661e-09,1.746384524405266e-10,3.2078705992186847e-09,8.99525726025283e-09,1.7662585487131311e-10,3.211318589747984e-09,9.003804983080752e-09,1.7306141891838433e-10,3.747924596676459e-09,1.0477773510711872e-08,1.8695716942353501e-10,3.705600518289822e-09,1.0289586056317988e-08,2.327154765140731e-10,3.770251033160152e-09,1.0397061086312412e-08,1.0500478975508478e-08,1.093095548671392e-08,1.1506317745673008e-08,1.0481846978569188e-08,1.094348132434889e-08,1.1562138410512449e-08,1.0426736967497668e-08,1.0877333584048822e-08,1.1481603830611186e-08 +274,Hydrogen sulfide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.3126675839327124e-08,2.578960594473485e-08,5.131903485247881e-08,1.2293011074889045e-07,2.692132382331499e-07,3.851364885821487e-07,1.260333693986558e-07,2.881543291563295e-07,3.82361152211165e-07,1.6733921660607249e-07,3.496398333812723e-07,3.236266542323191e-07,1.0372247958990793e-07,1.3347571143233603e-06,2.848042665584701e-06,1.0605428011807281e-07,1.3839859506721995e-06,3.0075973729144364e-06,1.3106918399589e-07,1.3676900184185226e-06,3.0101694795472476e-06,3.1321253224926745e-08,3.613017575823997e-08,4.3011916213464507e-08,2.289000558182988e-06,2.388674214490321e-06,2.5243820317105095e-06,2.277524366739671e-06,2.3738032846261468e-06,2.5047291674869795e-06 +275,Imazamox,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.995505670118142e-11,1.1582818132605197e-10,4.793946357846949e-09,1.3636835718690496e-11,3.259832895264512e-11,1.329194571404473e-09,7.298743035600128e-12,1.686860375586371e-11,4.0407080942738807e-10,1.6593074094787628e-12,4.147087869929542e-12,6.618050621568535e-10,1.3802461591715255e-12,3.4623740423035103e-12,6.565979153047021e-10,3.0073010754617536e-11,7.564878138732393e-11,1.310587071466953e-08,0.0,0.0,0.0,1.3981959138623204e-08,1.4576432769466434e-08,1.5379126856951735e-08,7.006733165924276e-10,7.304431364007863e-10,7.706372906620297e-10 +276,Imazapyr,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0639052913960547e-15,6.175410225728667e-15,1.3320135857227587e-14,9.938576191698475e-16,4.838309445651858e-15,9.018820176080972e-15,1.6146750052416192e-15,6.132928714214808e-15,9.055889352597526e-15,2.1924479405082398e-16,3.5038322110828524e-15,9.664772125327615e-15,1.7371783619870021e-16,2.4978176375013553e-15,6.845827184075034e-15,6.052266429407683e-17,7.069201171334297e-16,1.6830687977298216e-15,0.0,0.0,0.0,1.4553117418777353e-15,1.5238005648144405e-15,1.6162049989448392e-15,6.858305069384148e-15,7.156386263545487e-15,7.556356941837637e-15 +277,Imazethapyr,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2488506748456028e-10,2.895467741493126e-10,1.1958541582998638e-08,3.48159466136855e-11,8.318754372573382e-11,3.360372906204567e-09,1.9605760309713433e-11,4.531239957999179e-11,1.0531336716071022e-09,4.291051280298701e-12,1.07768793775764e-11,1.7243776991524907e-09,3.57674016433187e-12,9.005621445647746e-12,1.7105224329769292e-09,1.0887215770398642e-11,2.739089582499427e-11,4.7452506309104476e-09,0.0,0.0,0.0,5.062457382004623e-09,5.277698855426177e-09,5.5683308492272125e-09,1.8253693933648111e-09,1.902924460497737e-09,2.00763651861476e-09 +278,Imidacloprid,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.312791096157204e-11,1.4685232899422484e-10,2.776990611146107e-10,8.560341119989487e-11,2.1528520623406598e-10,2.9372249682068734e-10,1.0834964459152608e-10,2.5944550546217207e-10,3.0064889595107276e-10,2.3327420470548103e-10,5.257688715577228e-10,2.9429532841546687e-10,1.660971942894228e-10,3.7913258011859565e-10,2.8649174667354574e-10,9.165881322714458e-10,2.1331259739750397e-09,9.653467567673009e-08,0.0,0.0,0.0,1.0160424788802397e-07,1.0603614386548197e-07,1.1203435631798436e-07,1.9733251198013793e-10,2.098961166806443e-10,2.2748300068940184e-10 +279,"Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.963452528873212e-09,6.766441088129233e-09,1.544707202510909e-08,4.313536162579804e-08,2.3696233473089726e-07,5.665607261534352e-07,4.6964253564810226e-08,3.1374630754823775e-07,6.720019118689982e-07,4.900408405109382e-08,3.1753044555418966e-07,6.795322578780708e-07,4.6225764249704404e-08,3.5713781744739973e-07,8.204660712845902e-07,5.0532615897208254e-08,3.083382955593509e-07,6.075421217706819e-07,0.0,0.0,0.0,1.3821905312415214e-08,1.4407632713590497e-08,1.5206323570893262e-08,0.0,0.0,0.0,4.282535822291232e-07,4.499774537044272e-07,4.795715545403617e-07 +280,Indoxacarb,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1207473802210177e-12,4.701450985098025e-12,2.7980509950879353e-12,0.0,0.0,0.0,1.7858617232883925e-12,1.892594759329498e-12,2.0411441383290097e-12,0.0,0.0,0.0 +281,Iodine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.6957970618560057e-09,2.2817826834918633e-08,2.6792348890084897e-05,3.102675227344317e-07,6.52960875671186e-07,2.6905850254573183e-05,4.8839215260346486e-08,8.421294235663117e-08,1.006164630952811e-06,4.8753251617961314e-08,8.438629252605994e-08,1.0069010203143286e-06,4.905855996194531e-08,8.456323982389043e-08,1.010232216926345e-06,4.777934583293472e-08,7.952360719942854e-08,9.96405409076572e-07,5.7203203403823224e-08,8.708086919242587e-08,1.004012536808595e-06,1.8016069805513214e-06,1.8579202436749316e-06,1.9339445494939544e-06,1.4888788158247414e-07,1.5614223943969146e-07,1.6596230077076596e-07,1.5162839021741324e-07,1.5904779827431942e-07,1.6911568017746637e-07 +282,"Iodine, 0.03% in water","('natural resource', 'in water')",natural resource,kilogram,biosphere3,4.315622097066195e-09,6.254914035816601e-09,3.1708492323465014e-07,1.646700406085553e-08,3.194694079978418e-08,6.369003268818591e-07,1.445907976859221e-08,2.8617066149161935e-08,5.140303520580722e-07,1.998804423021346e-08,4.099735038569928e-08,4.90509355034666e-07,6.295917674506778e-09,1.0161438143423872e-08,5.870067153896258e-07,5.9188552614417195e-09,9.253503773035165e-09,5.81572651423303e-07,0.0,0.0,0.0,3.3162983986865935e-07,3.470562893631291e-07,3.6805088070953767e-07,0.0,0.0,0.0,6.138993265516601e-07,6.413258709087736e-07,6.785234313949152e-07 +283,Iodosulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.7370118529821755e-14,5.710852097046803e-14,8.293739451632005e-14,4.505985507980779e-14,5.5768279048274235e-14,8.37633159136009e-14,1.1195314868016627e-15,1.4181240556526285e-15,2.172486880673583e-15,1.1201301435513614e-15,1.4408335889256639e-15,2.2118262086797077e-15,1.301909333513618e-15,5.06486344627419e-15,1.2356362612797914e-14,1.6575591825086467e-14,2.067370314188048e-14,3.230314886397766e-14,0.0,0.0,0.0,1.2574441715600345e-14,1.3281809372680223e-14,1.42554305608759e-14,1.1104335201013088e-14,1.1597719347215859e-14,1.2261603329231275e-14 +284,Iodosulfuron-methyl-sodium,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,7.5264434929699035e-19,9.054244740870423e-19,1.3119599934711473e-18,7.161301456578796e-19,8.899408569293048e-19,1.3417372136003933e-18,2.057267027297502e-15,2.518548608327878e-15,3.739007903065139e-15,2.0584963402303076e-15,2.544863902023522e-15,3.769556561886074e-15,1.2152949734289174e-15,1.4321259866091277e-15,2.1363883360212095e-15,8.704486543967998e-16,9.880175267609366e-16,1.4176589485295519e-15,0.0,0.0,0.0,3.7243278228339227e-16,3.9695147410794046e-16,4.3116554058167943e-16,6.431661893149093e-16,6.85371938127183e-16,7.443779382491287e-16 +285,Ioxynil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.805062451779557e-11,2.1758401421340277e-11,3.15945223485498e-11,1.7170412394926022e-11,2.1249780711069722e-11,3.191530698190808e-11,1.8407538996838135e-12,2.270450167825837e-12,3.394628609256996e-12,1.8418287647928608e-12,2.2969871353227757e-12,3.4300613954693097e-12,1.3294022346416948e-12,2.8252764954323743e-12,5.926121397522064e-12,6.984810260389172e-12,8.591066212076279e-12,1.3267870030164814e-11,0.0,0.0,0.0,4.9430018777072665e-12,5.2254761014401354e-12,5.61485024916363e-12,4.416622215237852e-12,4.622563608267109e-12,4.901249748091058e-12 +286,Iprodion,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.475975993376182e-10,1.4226688637090207e-09,4.266684129631303e-10,8.222758774969213e-10,1.8466235515913982e-09,6.705034488097356e-10,1.0987903689881783e-09,2.4573714346624355e-09,7.207955424288265e-10,4.755004435380841e-12,7.403441625935286e-12,2.5766573440810815e-10,4.641160915358838e-12,6.945799797200746e-12,2.5271744989240996e-10,4.687482807745658e-10,5.538600588046654e-10,1.2379050722805153e-09,0.0,0.0,0.0,6.50334055198092e-10,7.976832848304684e-10,1.011530313025534e-09,2.6307829098955314e-10,2.754766630143447e-10,2.9236868778952106e-10 +287,Iron,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.9505865921717025e-06,9.713737644715939e-06,2.4202096108264867e-05,1.0754786099311454e-05,1.7567561666023322e-05,3.431854936143673e-05,1.0891081592525733e-05,1.7587983975183444e-05,3.420195751474208e-05,1.101694646193063e-05,1.7654852715015573e-05,3.368742053878158e-05,1.0688707164589038e-05,1.690457831655538e-05,3.960413257571216e-05,1.0503814182182256e-05,1.618010126836453e-05,3.8951009711833436e-05,1.2374979197168401e-05,1.7581032264522403e-05,3.969063129057852e-05,2.101297948704642e-05,2.194731777269804e-05,2.3215620948890028e-05,2.5783163627488942e-05,2.7035575584677632e-05,2.8746392109503428e-05,2.7059283877505473e-05,2.841069778162857e-05,3.0263383371868056e-05 +288,"Iron, 46% in ore, 25% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.012054562366345962,0.5620908639350076,13.567037821022737,0.015534108764430444,0.5871788261548873,13.595507175722314,0.014310612269688675,0.5685347895633368,13.572557278720538,0.01537778777655032,0.5720823634619828,13.580908153361129,0.016033953618593708,0.5746001750540248,13.58256585778843,0.01760660644845975,0.5774596449153339,13.588137286238991,0.0,0.0,12.801359718276984,11.42313855861252,14.383363912598837,18.689557962799245,11.31582145304115,14.269746501444,18.567139044006186,11.434686124985125,14.395261656662475,18.701907986214298 +289,"Iron, ion","('water', 'ground-')",emission,kilogram,biosphere3,0.00022352020845800327,0.0006740152152597594,0.0015207429447235763,0.00010603509691443074,0.0003051558792305851,0.0007499270913223168,0.00016966467758059236,0.0004726076844566594,0.0010186830177365779,0.0001658514807203675,0.00045460680946535697,0.000981317256413135,0.00016733284577272555,0.00047733416896038805,0.0010176777456522138,0.00016802674487689594,0.0004601087972662075,0.0009180527131730484,0.0001751298312638509,0.0004196785009429438,0.0008579751898403205,0.0012945293628903252,0.0013509904277014834,0.0014281045807393465,0.0006833620147730375,0.0007112018277648012,0.0007487607085368323,0.0007676223528799747,0.0008002906910503653,0.0008446641182615762 +290,Isocyanic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.3858281720835569e-08,4.448660723621684e-08,1.1958193897575496e-07,2.535487762800034e-07,3.482863194169559e-07,5.501233762902968e-07,2.1571852667407817e-07,3.122865109504007e-07,5.001701529373783e-07,2.2105751776913248e-07,3.1900571547478004e-07,4.885525032971418e-07,2.0588827890561737e-07,2.891530261691827e-07,4.915287657146256e-07,2.0504365304764344e-07,2.764075615571564e-07,4.6564181248037095e-07,2.3552916717387994e-07,2.9975886077045103e-07,4.921098325701302e-07,1.037611799255408e-07,1.0752677570514933e-07,1.1262820559166597e-07,2.101767710452061e-07,2.2092758848838352e-07,2.3575279190142076e-07,2.1750149619486245e-07,2.2867362600597758e-07,2.441068649869015e-07 +291,Isopropylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.720382637913782e-13,2.616226209735352e-12,1.7367778614731283e-11,9.25351730356207e-12,2.7276723288429026e-11,2.031630449840943e-10,6.1344356631370375e-12,2.0297164580687503e-11,1.3855814471005727e-10,1.0239091640286504e-11,2.923697880428169e-11,1.2851913631683546e-10,2.096572180634173e-12,1.0181530084044265e-11,1.658917903340182e-10,8.034339807837663e-13,5.666958501871254e-12,1.5837680809133102e-10,7.523077148477378e-12,1.6214468692373695e-11,2.6839334740074744e-10,1.521338572943322e-11,1.5906695096083353e-11,1.6848626408357184e-11,2.683044234755028e-10,2.813689342230476e-10,2.992145413721951e-10,1.6288624556071755e-10,1.6990751291962308e-10,1.7939991844188005e-10 +292,Isoproturon,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.6573028363599782e-10,1.99782319482435e-10,2.90110383317334e-10,1.5764825488623695e-10,1.9510522459677922e-10,2.930347011831864e-10,5.749438390726901e-12,7.197035439558335e-12,1.0908328912818896e-11,5.7526397319211024e-12,7.298522556457166e-12,1.106936626822691e-11,5.62269637712198e-12,1.8383167073968398e-11,4.3410145881793333e-11,5.924508423671956e-11,7.343866188856619e-11,1.1416305613226737e-10,0.0,0.0,0.0,4.360523266623188e-11,4.6074809404765594e-11,4.9476105480782543e-11,3.76591680960046e-11,3.93468638974014e-11,4.1620126751018445e-11 +293,Isoxaflutole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2766819497913048e-13,7.410466844904858e-13,1.598410831523612e-12,1.1926249594043203e-13,5.805951058008479e-13,1.0822546545736395e-12,3.59041808587523e-13,1.379690563019021e-12,2.0657306782907655e-12,5.01043582650857e-14,8.012478485069934e-13,2.210146066418946e-12,3.9700457130999646e-14,5.711956910820219e-13,1.5654712619541013e-12,1.0156230951787281e-11,5.1728936254180283e-11,8.073922917063305e-11,0.0,0.0,0.0,2.2507152306729143e-11,2.3602652935155536e-11,2.5098796244338696e-11,1.5684048035526022e-12,1.6365661459294833e-12,1.7280254987232888e-12 +294,"Kaolinite, 24% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,9.853952014599656e-05,0.00011614948690539507,0.00028065426239813146,0.00011996279945569617,0.000144563841789584,0.00032655220388302946,0.0001094206264117163,0.00013785617614329792,0.00031337429681759654,0.00010867465720040644,0.00013430495770978132,0.00030640509235617587,0.00010717255525236257,0.00013126140765250098,0.0003066873468327189,0.00010768244754748357,0.0001309659244447655,0.0002934873957123463,0.0,0.0,0.0,0.00015967243265671465,0.00019840760066644125,0.0002547027403577275,0.0,0.0,0.0,0.0001649131010256811,0.0002039632396646052,0.0002606819326103595 +295,"Kieserite, 25% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.5648643909074845e-07,3.4228443458179e-07,7.52081020386778e-07,4.786356773766115e-07,9.9238009634558e-07,1.9810320372373096e-06,3.579331553612437e-07,7.298683344832637e-07,1.3483207053955908e-06,3.5519477945499647e-07,7.13335961349524e-07,1.3160996691332423e-06,2.551928007271267e-07,6.180598607745497e-07,1.3265548742643617e-06,1.6938799914690522e-07,3.2970718830506084e-07,9.082129870433465e-07,0.0,0.0,0.0,4.361906184563192e-07,5.312733421353072e-07,6.692547562612124e-07,0.0,0.0,0.0,6.460940856291972e-07,7.003111606922844e-07,7.768585012975689e-07 +296,Kresoxim-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.855607007741392e-12,5.853828196977379e-12,8.501380390141642e-12,4.618796719829269e-12,5.716448772586333e-12,8.58604081081636e-12,2.3036017357699836e-13,3.6781688064167546e-13,5.249192327319054e-13,1.969115081659263e-13,3.044943205446493e-13,5.355761786610804e-13,1.828004176007746e-13,6.060904584194254e-13,1.434924159039689e-12,1.7341741319838159e-12,2.16321559953817e-12,3.3806376052027034e-12,0.0,0.0,0.0,1.3160047076964658e-12,1.390214125660598e-12,1.4923733522348923e-12,1.2484061842417973e-12,1.304492705701579e-12,1.3800555238976402e-12 +297,"Krypton, in air","('natural resource', 'in air')",natural resource,kilogram,biosphere3,-2.345010628746097e-29,-1.4070063772476582e-29,-1.2589679949046106e-21,2.655292140497762e-16,5.432007285974943e-16,7.033009883040587e-16,2.733631349815252e-16,5.919894706376674e-16,6.907235308481404e-16,3.749385578848907e-16,7.987978372056389e-16,6.006019569314529e-16,1.0681742564543053e-16,2.038992716903035e-16,4.503875887797409e-16,1.1711695864061938e-16,2.331229684867089e-16,4.787302245062453e-16,1.0801978840919176e-16,2.1209763902086155e-16,4.619458577040892e-16,-3.934274984076908e-23,-3.934274984076908e-23,-3.934274984076908e-23,3.2700225812931357e-16,3.5533074204545584e-16,3.953841364969329e-16,3.4326392450987817e-16,3.7144256561570343e-16,4.112817500444344e-16 +298,Lactic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.4307905081752916e-12,2.2434464060419566e-12,2.861190490944703e-10,6.74813902145262e-12,1.3610516995877724e-11,3.318432605376491e-10,6.816172105553764e-12,1.426637542820964e-11,3.014263033778612e-10,1.04256684790734e-11,2.2284480887620856e-11,2.841506434182513e-10,2.5693686571346703e-12,4.60942374406611e-12,3.2305539600543145e-10,2.292329625030723e-12,3.984744616682297e-12,3.2036178545709454e-10,3.217558975991234e-11,3.90543681389992e-11,4.5525597447272137e-10,3.0334169544679237e-10,3.1666700922480523e-10,3.34712288328571e-10,4.404833618108265e-10,4.6724074726731e-10,5.04367329223524e-10,3.3957799460695623e-10,3.5445222879682926e-10,3.7459025647279725e-10 +299,Lactofen,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.6370146135092066e-13,8.192995861357512e-13,1.476423066308452e-11,5.849752833853902e-13,1.3613552764085968e-12,3.128813808220093e-11,1.0956769516402195e-12,2.4988102814247862e-12,3.427438674464631e-11,1.3867769154316934e-13,3.479518094780413e-13,5.573711035371927e-11,1.1511664714988009e-13,2.8961193063194686e-13,5.506140190408571e-11,9.902143618783525e-14,2.488170887846495e-13,4.3069790966318707e-11,0.0,0.0,0.0,4.5948651317672126e-11,4.790225925601256e-11,5.054013840045654e-11,5.875835477588945e-11,6.125483948190515e-11,6.462550348913328e-11 +300,Lambda-cyhalothrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,7.767837612088922e-11,1.7184202043116435e-10,1.6398883645660706e-09,8.173967159661065e-11,1.8348081621652187e-10,5.043111010764537e-10,1.046130848577288e-10,2.340040836329182e-10,1.99494312112708e-10,2.3293607977944535e-12,4.861726327005797e-12,2.4025650979903127e-10,1.8788265696306527e-12,3.908411814908981e-12,2.382106805862662e-10,2.0009856959428006e-10,5.016754106611655e-10,8.602768218414525e-08,0.0,0.0,0.0,9.17747030858763e-08,9.567699551756324e-08,1.0094614184050787e-07,2.5278944603882575e-10,2.6366539184908096e-10,2.783670168460399e-10 +301,"Lanthanum, 7.2% in bastnasite, 0.72% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.41988460003118583,5.387242746584528e-13,1.9448456818043535e-12,0.41988460003414624,5.087211017617866e-13,1.9827388312556792e-12,0.41988460003413886,5.000325814785252e-13,1.9716451509482386e-12,0.4198846000340814,4.2591094488325217e-13,1.8755002397329235e-12,0.41988460003425254,4.2997197617198837e-13,1.8726865516836423e-12,0.41988460003422107,0.0,0.0,0.4198846000311859,0.37115894478387557,0.4680476866649351,0.6090021624878823,0.3711589447838755,0.4680476866649351,0.6090021624878824,0.3711589447853863,0.4680476866665175,0.6090021624895616 +302,Lead,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.1740177311592792e-07,5.54236328723559e-07,7.74387992452932e-06,3.88084466371985e-07,8.334260493368444e-07,8.47515477882387e-06,2.974581768294395e-07,6.783784536592875e-07,2.765618464533691e-06,3.140677237228143e-07,6.792604133970629e-07,2.6926248970248255e-06,3.90068681615974e-07,8.629681977435414e-07,2.640859738964266e-06,3.4323202455145955e-07,7.5324040058233e-07,2.6230161664457148e-06,4.0202601106182355e-07,7.753219306113619e-07,2.4265248053289635e-06,2.0681429305692335e-06,2.165851008750658e-06,2.299877224288231e-06,1.985850297826816e-06,2.0726020565450256e-06,2.190051966003498e-06,2.2221753219622805e-06,2.3343402015169153e-06,2.4884031453045626e-06 +303,"Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.3700745375379962e-05,6.142891695209852e-05,9.999633630966017e-05,4.313652863730469e-05,0.000236966580438184,0.0005665762806261545,4.696556386409914e-05,0.0003137537548897695,0.0006720269568739357,4.900542801915163e-05,0.0003175379627219331,0.0006795573015901646,4.622673521030566e-05,0.0003571420366370663,0.000820481996267789,5.0533988066843254e-05,0.0003083433321138155,0.0006075576096428408,0.0,0.0,0.0,5.746598087664737e-05,6.042979390782867e-05,6.452875008482408e-05,0.0,0.0,0.0,0.000428261867505546,0.00044999255279721796,0.00047959517740256744 +304,Lead-210,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,1.5067832440340948e-05,9.139589490479948e-05,0.01128648215913443,0.0002244835252499596,0.00042292055167019176,0.011402847544875215,0.00012012952635575617,0.00019132646345892477,0.0006745212693926557,0.0001212410298299377,0.0001928715382952412,0.0006719356312898187,0.00011854518855949926,0.00018513431035299422,0.000737301440567138,0.0001163754588120015,0.0001765051263464611,0.0007256277659146625,0.0001377373310600337,0.00019425674784005685,0.0007415972377486085,0.0009063625356284113,0.0009365463730465531,0.0009773004512191763,0.00025709529036938033,0.0002698890937870964,0.00028735870096468206,0.0002642346117506991,0.0002773822982282233,0.0002953568792453394 +305,Linuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.3455210776691888e-09,3.732418033694923e-09,1.2982684897371256e-06,1.4261305238247835e-08,3.116491157856455e-08,2.2788401503698877e-07,7.468847535324763e-09,1.615380940799495e-08,2.0441987721749435e-07,8.864091163860524e-09,2.0273792054705524e-08,2.0769347157299375e-07,8.511162177403827e-10,2.039510122255764e-09,3.0500191434299133e-07,7.165453691875496e-10,1.6968399216768001e-09,2.9931997517932256e-07,3.071008064914985e-10,3.679012758470586e-10,8.349876167456658e-10,1.3844906588796605e-06,1.4432833980186158e-06,1.5226584315843538e-06,4.4906051028745415e-10,5.470812338811112e-10,6.892367697189105e-10,3.192927245708324e-07,3.328597457711984e-07,3.511775806722427e-07 +306,"Lithium, 0.15% in brine, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,9.244321892450424e-11,1.2794656746529395e-10,6.277968285563261e-10,7.705601951315599e-07,1.1856472002140703e-06,1.711087908262537e-06,6.614671511072487e-07,1.1735357542983142e-06,1.8006522228408313e-06,6.633533860287848e-07,7.388009475711367e-07,8.468002628508619e-07,3.987918627909229e-10,1.1061521460743849e-09,1.3054879960431355e-08,5.995941365529255e-10,2.4708645015357444e-09,1.5423487122046643e-08,0.0,0.0,0.0,5.171970002706993e-10,5.681485396316423e-10,6.405646384012526e-10,0.0,0.0,0.0,1.3692891757918888e-08,1.4998842196392086e-08,1.6703839659624555e-08 +307,"Magnesite, 60% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.00024035029820223812,0.0006399695109430519,0.00195739092287071,0.00021440227012882037,0.0005075161900808436,0.0013747207138180022,0.0001975672894427392,0.0004855449346484623,0.0013289113971479156,0.0002002447134847887,0.000489541256615183,0.0013403390815163233,0.0002003110705553758,0.0005035506465728203,0.0013654620224250542,0.00022519980807556041,0.0005514849554412777,0.0014201690721061362,0.0,0.0,0.0,0.0015459217586108204,0.0016336840129596132,0.001756025713697074,0.0,0.0,0.0,0.00110013126160703,0.0011562216347645138,0.0012337549000384837 +308,Magnesium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.614239965568665e-06,8.313850299947563e-06,1.72679522923285e-05,9.039625724470506e-06,1.4515761739235658e-05,2.3982704710912656e-05,9.633197604560228e-06,1.5575743105597763e-05,2.450899817361456e-05,9.934326342152274e-06,1.6099618029864783e-05,2.422793534277072e-05,1.094166244650116e-05,1.8091526352720168e-05,3.001479403988565e-05,1.0195428208391137e-05,1.6196884600272782e-05,2.9414806726401064e-05,1.213057256967622e-05,1.825513418688017e-05,3.068919647525979e-05,1.493464164057327e-05,1.5574252689680717e-05,1.643834434762203e-05,1.8646248797902945e-05,1.9572424728732865e-05,2.083995256754642e-05,1.9145016304125798e-05,2.009512065017307e-05,2.1396564881836958e-05 +309,"Magnesium, 0.13% in water","('natural resource', 'in water')",natural resource,kilogram,biosphere3,8.861395397872987e-09,3.580384483094301e-08,8.969070137702194e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.360829336792877e-08,7.672065835317321e-08,8.092082732605351e-08,0.0,0.0,0.0,0.0,0.0,0.0 +310,Malathion,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.3451396774234014e-11,1.6878457667712968e-10,5.813180999998863e-08,5.881055141767617e-11,1.9158404896270835e-10,5.813875609086004e-08,7.117032119398014e-11,2.156727012469012e-10,5.814410303265824e-08,1.167023458971289e-10,3.1158751415298365e-10,6.200124320852889e-08,9.507944275483418e-11,2.184430962743767e-10,6.698718977172559e-08,1.3866791831640206e-10,2.7989700747951223e-10,6.702915736502625e-08,0.0,0.0,0.0,7.15563730384413e-08,7.460520341231638e-08,7.872246666032766e-08,7.155372379502622e-08,7.459880889701548e-08,7.871064692263503e-08 +311,Maleic hydrazide,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.441422406908839e-09,1.6927838879918216e-09,3.8207822479621066e-09,0.0,0.0,0.0,2.005781217367086e-09,2.4619830013857636e-09,3.1241033065990937e-09,0.0,0.0,0.0 +312,Mancozeb,"('soil', 'agricultural')",emission,kilogram,biosphere3,6.063867630471983e-08,8.359149443117638e-08,1.8702073574232206e-07,7.094789289660756e-08,8.570953308327447e-08,1.9257765236752757e-07,6.325425531115062e-08,7.927549636229268e-08,1.8429909041980555e-07,6.330655714853758e-08,7.926577727114364e-08,1.8411240850660993e-07,6.344412959164373e-08,7.932323036994085e-08,1.826930538720231e-07,6.409549471778309e-08,8.009547099219603e-08,1.8120310194965473e-07,5.108369792497901e-08,6.003232224994162e-08,1.4846491087655302e-07,9.915619387653159e-08,1.2245471331049823e-07,1.5629809910710033e-07,8.505780150424218e-08,1.0181184571308086e-07,1.2606800887436097e-07,1.0100691706594422e-07,1.2425993809477067e-07,1.5801873970805513e-07 +313,Maneb,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3556433775262086e-11,3.94081500058323e-11,8.894812919438934e-11,0.0,0.0,0.0,4.669475392197126e-11,5.731516947829624e-11,7.272938537131944e-11,0.0,0.0,0.0 +314,Manganese,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.054227592348434e-07,4.907926842689314e-07,5.918900371183247e-06,2.934264129720748e-07,5.820227169642696e-07,6.149497284983825e-06,3.348024342774754e-07,7.54924139050044e-07,8.572671373225514e-07,4.296836086110969e-07,9.410800582625621e-07,8.480110850155793e-07,1.0206232065165136e-06,2.203578610599091e-06,8.662789437775124e-07,7.358127605222531e-07,1.5836874883625853e-06,8.376784446163314e-07,9.1893903224172e-07,1.9484751502613397e-06,9.132819783967956e-07,6.549796490956816e-07,6.787977905773662e-07,7.110410663212278e-07,5.539853778997185e-07,5.785527555471868e-07,6.119018769293147e-07,5.278123234281189e-07,5.511728341072524e-07,5.829442028451808e-07 +315,"Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.793316861229289e-05,0.00018825958254634854,0.0006848780427167178,0.00010188213545315084,0.00031672865163527147,0.0009778402626091725,9.59816264484856e-05,0.0003107110373212425,0.0009599733312499502,9.847527030054344e-05,0.0003146792080472814,0.000965703641000566,0.00010085778215054038,0.0003301692569372115,0.0009932819227304074,0.00011718123579267568,0.00036127163052988067,0.0010322845800251157,0.0,0.0,0.0,0.0006077323549861974,0.0006379228816716827,0.0006795336344307,0.0,0.0,0.0,0.0008379207556044776,0.0008827621278175975,0.0009449690810657941 +316,MCPA,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.68709470923616e-12,6.856283314193545e-12,9.957267453747695e-12,5.409740944103237e-12,6.695400577187567e-12,1.0056471821853143e-11,1.1781995972086156e-11,1.442949408911312e-11,2.1429951107939795e-11,1.1789027790753544e-11,1.458121303254427e-11,2.160764089229922e-11,7.2457662659210785e-12,8.96225253767257e-12,1.3945664224971364e-11,7.576021833641602e-12,8.82241604507874e-12,1.2975606551181631e-11,0.0,0.0,0.0,3.899406991420839e-12,4.1416647309501996e-12,4.47810275359373e-12,5.084572303170251e-12,5.389993113583443e-12,5.813880943208296e-12 +317,MCPB,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.659342871029373e-14,2.654889655381111e-13,7.592260877819436e-13,3.686331751927124e-15,6.325311263744161e-14,1.7690983026680926e-13,3.8113565493824184e-15,6.34270587021486e-14,1.771174357744448e-13,3.7267771856337715e-15,7.383845625568908e-14,2.0523280513334505e-13,2.1885247552025068e-15,4.034434071819419e-14,1.1153522046762882e-13,5.371025615381897e-16,7.893218137151768e-15,2.1665307030740385e-14,0.0,0.0,0.0,2.1706293576360746e-14,2.2663428877004104e-14,2.3946316693202097e-14,1.1256443945707631e-13,1.1743423999249815e-13,1.2396551476537187e-13 +318,Mecoprop,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,7.097025844361254e-16,8.537659119820766e-16,1.2371067409542218e-15,6.752716813117788e-16,8.391657055748997e-16,1.2651850369500407e-15,1.939890648511502e-12,2.3748540312413536e-12,3.5256806090937796e-12,1.941049823587614e-12,2.399667918537163e-12,3.5544863289060357e-12,1.145956873608662e-12,1.3504166923343134e-12,2.014497674958211e-12,8.207856036469906e-13,9.316466376509355e-13,1.3367750641672246e-12,0.0,0.0,0.0,3.511837998501953e-13,3.7430358890188937e-13,4.0656558742669317e-13,6.064706360453866e-13,6.462683551297842e-13,7.01907794856158e-13 +319,Mecoprop-P,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,9.348097967924514e-12,1.126468052837584e-11,1.6351506704696057e-11,8.892398442029187e-12,1.1003704468240189e-11,1.652469929735592e-11,9.676090435420889e-13,1.1919876684655784e-12,1.7800870691424874e-12,9.681762661856247e-13,1.2056733979687172e-12,1.7979987032251337e-12,7.95944306577417e-13,1.488757115373291e-12,2.969816889332267e-12,3.843011997916079e-12,4.6521351422123446e-12,7.086891451946099e-12,0.0,0.0,0.0,2.499556981987482e-12,2.6453207000038664e-12,2.8466237315059746e-12,2.0460771387071603e-12,2.1436361056897127e-12,2.275989307601763e-12 +320,Mefenpyr,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.4224709491923036e-13,1.714928082830731e-13,2.4905871572578115e-13,1.3530944422600964e-13,1.6746741094230782e-13,2.5153668443731295e-13,1.2709810072117697e-13,1.5574051934019904e-13,2.3141442662204575e-13,1.2717383430280695e-13,1.5739174709223076e-13,2.3337068168779673e-13,7.70035479193039e-14,1.0133544815852588e-13,1.6557199265175404e-13,1.0211620077648326e-13,1.2148675314560127e-13,1.8223404018218898e-13,0.0,0.0,0.0,6.013922600444816e-14,6.373704563817047e-14,6.871716440501855e-14,7.200137031561184e-14,7.60202551171148e-14,8.156118943267573e-14 +321,Mefenpyr-diethyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.120545631409627e-17,6.313860328874798e-17,9.383529345547593e-17,4.8594461523200375e-17,6.104482239374715e-17,9.29473056819661e-17,1.2634699117288023e-18,2.4975551100926577e-18,5.050091334184047e-18,1.2628195058567678e-18,2.681390423389653e-18,5.5228605086604025e-18,1.2184584849385346e-18,2.0182565317122977e-18,3.802672088540744e-18,1.9623148169086085e-17,2.2350337464114317e-17,3.217838059249426e-17,0.0,0.0,0.0,8.622325611349359e-18,9.184994359517134e-18,9.969602435775168e-18,2.362904230709962e-18,2.4791479192700217e-18,2.637391640284896e-18 +322,Mepiquat chloride,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.455076080122442e-12,3.3845752745842664e-12,6.4024694049342446e-12,1.9730359363419034e-12,4.961804242333803e-12,6.771619765832445e-12,2.538769670139123e-12,6.029868559212744e-12,7.0064997271199895e-12,5.420176408081682e-12,1.217325388604398e-11,6.8611166470026014e-12,3.854176345140918e-12,8.76994151565296e-12,6.648089307384485e-12,1.7902127578186179e-13,3.770423888142254e-13,2.418689779699667e-13,0.0,0.0,0.0,1.4316126061671979e-13,1.5176499501776317e-13,1.6374142055549744e-13,4.5619714406279764e-12,4.8524558429705155e-12,5.25908377229759e-12 +323,Mercury,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.2957537733422835e-09,2.1291681323801005e-07,8.579439927222935e-07,1.18134678044139e-08,1.0784045806222938e-07,5.766754261261164e-07,8.457298444615806e-09,8.360872748005813e-08,2.362575363481272e-07,8.711774866960163e-09,8.395783906317998e-08,2.3598236669951057e-07,9.659786457623509e-09,9.916609251062463e-08,2.872596743519805e-07,8.795628860787047e-09,4.399589587125055e-08,1.323989742467196e-07,1.0038889674820082e-08,4.2594212648073946e-08,1.2120356638986205e-07,6.22385884150384e-07,6.401267071851424e-07,6.639812800150497e-07,1.0929125166337615e-07,1.132354428763894e-07,1.1855377394493728e-07,1.2094617057400496e-07,1.2671853912993777e-07,1.3456143284752734e-07 +324,Mesosulfuron-methyl (prop),"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.151810567141725e-18,4.994591273675747e-18,7.237162372109589e-18,3.950387336303004e-18,4.909179026808352e-18,7.401422395263388e-18,1.1348497606218743e-14,1.3893064183461807e-14,2.0625481123541357e-14,1.1355278862462213e-14,1.403822718055448e-14,2.079399662340903e-14,6.703928914353932e-15,7.900033342142863e-15,1.1784954147989696e-14,4.80165394310202e-15,5.450198847759229e-15,7.820228850722697e-15,0.0,0.0,0.0,2.0544501143913304e-15,2.18970251863713e-15,2.3784374961275115e-15,3.547896196031109e-15,3.78071567278435e-15,4.1062103378546605e-15 +325,Mesotrione,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.4577861572380343e-13,2.007062890902546e-12,4.329161883926999e-12,3.230124926312391e-13,1.5724932741372054e-12,2.9311961985218493e-12,5.247836157325732e-13,1.993255913287419e-12,2.9432438938488084e-12,7.125649290655504e-14,1.138776374474665e-12,3.1411361878930153e-12,5.6459831483879364e-14,8.118127956198124e-13,2.2249543041950273e-12,8.171834817985867e-13,8.334818418144584e-12,1.3113807755920288e-11,0.0,0.0,0.0,4.809322989023638e-12,5.168331488332992e-12,5.6701905697547355e-12,2.229009726823375e-12,2.325888747881883e-12,2.45588275127589e-12 +326,Metalaxil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.239832355135212e-12,1.987501679156681e-11,6.980062275876513e-09,6.835227182199277e-12,2.2495908533255795e-11,6.9808291765647365e-09,8.237060197117477e-12,2.5212669476099905e-11,6.9814462457244645e-09,1.4005610836041639e-11,3.740428127298741e-11,7.444719984919778e-09,1.1409363573802707e-11,2.6220550022227763e-11,8.043409723371194e-09,8.622165444442191e-10,1.1379314839958566e-09,1.0147738741974702e-08,0.0,0.0,0.0,9.710109061161687e-09,1.0315398550464625e-08,1.1156629574183686e-08,8.591741059478409e-09,8.957376170410141e-09,9.451100367219792e-09 +327,Metaldehyde,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.6810009296738703e-11,4.5215713566722796e-11,5.795650329006627e-09,1.258240299553143e-08,2.7731615124540276e-08,4.345337430714588e-09,1.604185456663763e-08,3.610371783933772e-08,9.15845695525989e-09,2.90109867747851e-08,6.495709199650825e-08,1.509325541518063e-08,9.320076726374612e-12,1.4055921571258111e-11,4.295328467228089e-10,8.503288220487367e-12,1.245314604348651e-11,4.2086587612244624e-10,1.5348451578774483e-11,1.715473567390406e-11,3.291588950705221e-11,6.1460448221922586e-09,6.413608113557472e-09,6.775662703722187e-09,1.6638973535808392e-11,1.7607137669894587e-11,1.8949659156401023e-11,4.371155848691707e-10,4.576938304062536e-10,4.857280223473056e-10 +328,Metamitron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.325747082262317e-13,7.696801266031857e-12,1.9625356272015455e-11,7.23084650917086e-13,3.098404253857898e-12,5.1447917149370366e-12,1.5540152062081035e-12,5.309095798404697e-12,6.711559539072013e-12,1.4363957448052473e-13,2.508533868458833e-12,6.943426036435709e-12,1.220141476863025e-13,1.3576544832327068e-12,3.657567503217963e-12,7.805280097846162e-14,2.681702354432356e-13,6.476863912431787e-13,0.0,0.0,0.0,5.456475128063961e-13,5.780399827770219e-13,6.225957820503334e-13,3.6113103004382596e-12,3.775818838216476e-12,3.9975812848376166e-12 +329,"Metamorphous rock, graphite containing, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.808107727610465e-06,0.00028152862613917406,0.00034750507051765916,3.4430953392355923e-06,0.0002820704902036687,0.0003481507758745002,2.8203998279894264e-06,0.0002812305215750575,0.00034651646635357533,2.8298597180225705e-06,0.00028124925964393116,0.00034660290441184105,2.8520567876173653e-06,0.0002815628256392958,0.0003472958046713679,3.467340327333968e-06,0.0002827691874333768,0.00034969908568304153,3.7254220442807002e-06,0.0002826720892042547,0.000349619574992387,8.384013316523419e-06,9.11875155165018e-06,1.0158338609601192e-05,9.521687624061175e-06,1.0382008459499345e-05,1.1599755473000664e-05,9.790202641239852e-06,1.066505122751028e-05,1.1903035398770916e-05 +330,Metam-sodium,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.6477057716083456e-11,5.248246749984171e-11,1.843172739839246e-08,1.804927221978467e-11,5.94032599246432e-11,1.8433752495571878e-08,2.1750987615409064e-11,6.657720696493934e-11,1.843538194386168e-08,3.6983567019172995e-11,9.877068265410199e-11,1.965871419136798e-08,3.012785142451637e-11,6.92386415972073e-11,2.1239629320662544e-08,2.3476136560449813e-07,2.757371824037686e-07,6.434192009527372e-07,0.0,0.0,0.0,3.4930470967113853e-07,4.245581038728224e-07,5.336814968492572e-07,2.2687566790512035e-08,2.365307202894895e-08,2.4956812518061285e-08 +331,Metazachlor,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.4163770596834987e-09,7.505236700191536e-09,2.250873350426515e-09,4.337885822149826e-09,9.741793894870005e-09,3.5372160170323774e-09,5.796627758980823e-09,1.2963771684137306e-08,3.802530098296649e-09,2.508484919611178e-11,3.905658117518903e-11,1.3593060066439965e-09,2.4484271936836608e-11,3.664230871432393e-11,1.3332015155667169e-09,5.425526744585685e-12,6.203184113091167e-12,1.2991242341348764e-11,0.0,0.0,0.0,6.757580786098091e-12,7.744349160425283e-12,9.164296991970095e-12,1.3878597477510513e-09,1.45326689862666e-09,1.5423801475963817e-09 +332,Metconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.4103195123463022e-10,3.085569070183712e-10,9.431530682634426e-11,1.786655132260416e-10,4.0001103497007385e-10,1.4695772222260466e-10,2.3718633136947146e-10,5.303868598752071e-10,1.5567115006394302e-10,1.0912305554466201e-12,1.6796613260133585e-12,5.572834057197032e-11,1.0572971149574018e-12,1.6599148155846465e-12,5.490675015245089e-11,6.842232573444494e-13,8.286755248863544e-13,1.4276256061855342e-12,0.0,0.0,0.0,6.222501675803015e-13,6.821299254926012e-13,7.670827264388851e-13,5.708355871998229e-11,5.977318956711915e-11,6.343744810931323e-11 +333,"Methane, bromo-, Halon 1001","('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.104274808625778e-23,3.5480563930519425e-22,9.912599291152069e-22,2.0568951416537113e-23,4.1310254734722927e-22,1.1486932198879873e-21,1.1312354520945616e-23,2.1141046031224292e-22,5.847111811506856e-22,9.398212647139417e-25,1.4388829126448597e-23,3.955775829443627e-23,0.0,0.0,0.0,3.968384286077899e-23,4.143329916147901e-23,4.37781013518618e-23,5.9031401416780895e-22,6.158504069353808e-22,6.500989547290658e-22 +334,"Methane, bromotrifluoro-, Halon 1301","('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.0508972965729075e-15,1.064419589100821e-14,1.3303904658379014e-14,4.3251594308656285e-15,1.2652566272608306e-14,1.893826169505052e-14,1.1464240965474445e-14,2.8777850288709454e-14,2.055485622040054e-14,1.1453285256069682e-14,2.8668610423443485e-14,2.064283217282054e-14,2.9023829110951637e-15,1.0198579706636005e-14,1.9847860093034304e-14,1.2547073777451963e-14,3.0667025733472384e-14,1.974549655947159e-14,1.4355669049639608e-14,3.422801750353062e-14,1.9705563442232384e-14,1.1312993932116926e-14,1.1796235180563387e-14,1.2455288008943044e-14,1.6446297112079685e-14,1.7146415177689284e-14,1.8097985333780156e-14,1.682265693526792e-14,1.7546574916353247e-14,1.853253556039969e-14 +335,"Methane, chlorodifluoro-, HCFC-22","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.7430318782963035e-10,2.2792791090223556e-09,6.431645523591064e-09,1.1377335937285173e-10,5.318401103629923e-10,1.4112279741127523e-09,1.0396024585447905e-10,5.212012460563601e-10,1.3967061961487145e-09,1.0804517865618744e-10,5.277508797720842e-10,1.4029223917377775e-09,1.7556079299741477e-10,6.689517695972692e-08,2.2160280329884178e-07,1.7989386439913532e-10,6.686332795308625e-08,2.2146246037517834e-07,2.1276167992585681e-10,6.689434813746092e-08,2.2151620561804785e-07,6.4618908004919534e-09,6.73506992100739e-09,7.101521411656256e-09,2.3725792688961455e-07,2.460272717796527e-07,2.578647905995544e-07,2.3724125531889774e-07,2.459903348920838e-07,2.578027146853832e-07 +336,"Methane, dichloro-, HCC-30","('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.7143672854637814e-11,1.2238033901736985e-10,4.988873533692934e-10,4.9085895182062987e-11,1.1886541926373188e-10,1.1981586213557217e-09,1.0057164590627849e-10,2.3286599361493636e-10,8.289337540649235e-10,1.087717848434698e-10,2.5103399140782247e-10,7.962477902554543e-10,3.796143962880331e-11,7.539809859538979e-09,2.573944983163953e-08,1.0731925246520444e-10,7.683966420092702e-09,2.572550904648798e-08,1.3342296592117032e-10,7.711944736015866e-09,2.5704056458595745e-08,3.977145825834382e-10,5.107014090004036e-10,6.53520145467048e-10,2.7448138215070072e-08,2.847326769156681e-08,2.985738372203886e-08,2.743518929439399e-08,2.8539274671619603e-08,3.002104158214739e-08 +337,"Methane, dichlorodifluoro-, CFC-12","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.0622515070361237e-11,2.013392198177767e-10,5.246085363245961e-10,5.153906710731628e-11,1.442616752271867e-10,2.0490886925257087e-10,1.1544878896587613e-10,3.05000767561247e-10,2.342158206204701e-10,1.6181185610759817e-10,3.95861171571004e-10,2.2875012336680147e-10,4.0259046465539227e-10,1.4250107279976194e-08,4.457156825801928e-08,2.868273339944421e-10,1.3991861402077442e-08,4.453617410264907e-08,3.5806511660257335e-10,1.4151470309973101e-08,4.462026044542795e-08,5.260978468032331e-10,5.486405037596184e-10,5.787413299119819e-10,4.777505438160599e-08,4.954463469538629e-08,5.1933887377971976e-08,4.770625473990942e-08,4.946457490390599e-08,5.1838396796251513e-08 +338,"Methane, dichlorofluoro-, HCFC-21","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.836661175937236e-14,4.216082062989203e-13,1.2084559613192812e-12,6.4799192180504446e-15,7.499304024521043e-14,2.1380035758076014e-13,6.741990978252296e-15,7.614327541694615e-14,2.2444496245698978e-13,6.886690207616352e-15,7.655108718971158e-14,2.243128645056157e-13,2.39225135387155e-13,1.7026057082969162e-10,5.645444175214189e-10,2.4993576751912074e-13,1.7018428907705295e-10,5.64200585593825e-10,3.0433418512426273e-13,1.7023422143399726e-10,5.643098434494662e-10,1.2337997663868705e-12,1.284451558575319e-12,1.3521831982158238e-12,6.047449448212872e-10,6.270755613770303e-10,6.572170433706405e-10,6.046982510819559e-10,6.269777469811569e-10,6.570558784150094e-10 +339,"Methane, fossil","('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.00011598166685808763,0.0010492526016403483,0.0026057884338935807,0.000153391574054969,0.001118853556241716,0.002706751766143144,0.00011183679823136476,0.0011783069738709048,0.003011990467313441,0.00011336348273863468,0.00118360984778939,0.0030011092498122864,9.719515303115187e-05,0.0010189066494159951,0.0025201198280887156,9.987877632916089e-05,0.0010234134359703379,0.002517356501461064,0.00010911198516392489,0.0009858787169412897,0.002320590062874779,0.0021349765225483768,0.0026257466649823977,0.0032434791343186535,0.002029297898017706,0.002420303483459537,0.0029104909309067653,0.0022351302264532994,0.0026462548560450367,0.0031658758698494423 +340,"Methane, monochloro-, R-40","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.7086481150079623e-12,5.290559215788108e-12,1.2340674407528206e-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.032490602179823e-11,1.0824100479965474e-11,1.1504080030702187e-11,0.0,0.0,0.0,0.0,0.0,0.0 +341,"Methane, non-fossil","('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.100372036964879e-07,3.10678883136521e-06,6.56545570061822e-06,2.737188524551569e-06,6.448711293024914e-06,1.1654208912833493e-05,2.9324405092470926e-06,8.182887018790813e-06,1.182079148857029e-05,3.6646795159995846e-06,9.651124038091067e-06,1.1836677040182955e-05,7.606280881913762e-06,1.7273823277171478e-05,9.02139922632711e-06,8.423773203462457e-06,1.7954469610909317e-05,1.7942260834586716e-05,1.1276249226294457e-05,2.6011077622515358e-05,2.4252155260713348e-05,5.677114113412341e-06,6.732813373620077e-06,8.071808851006672e-06,1.4099656975556122e-05,1.5607608039186547e-05,1.757426437234426e-05,1.2626271360830537e-05,1.3992278361523492e-05,1.5764381391438424e-05 +342,"Methane, tetrachloro-, R-10","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.0244486174531676e-09,3.54282483939075e-07,1.1683736452233165e-06,2.897649903889749e-09,3.207448511521296e-07,8.451098252259687e-07,2.8836492645172743e-09,2.782378876453732e-07,7.049076392220911e-07,3.032327591861165e-09,2.785691544235879e-07,7.051518513784658e-07,2.5080561878805295e-09,3.330866349761877e-07,8.934756455687848e-07,2.497261311388372e-09,3.305122769383071e-07,8.620477149002206e-07,2.9833338649420147e-09,3.312880962617745e-07,8.649348577020259e-07,1.2415818362855425e-06,1.2915745003601013e-06,1.3586271351607983e-06,9.342238194331511e-07,9.57362989082908e-07,9.883471907250435e-07,9.331717816115162e-07,9.551076010845626e-07,9.845852590957849e-07 +343,"Methane, tetrafluoro-, R-14","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.3617713355078985e-11,4.46657685209371e-11,1.040893710283681e-10,6.721202575103704e-13,2.912531680207838e-12,1.1300960028038641e-11,3.103120768420044e-12,1.4404128274383108e-11,5.929099614617427e-11,3.5336679541502728e-12,1.565345651710203e-11,5.82450205636308e-11,4.382364641534929e-12,2.0955345339300313e-11,8.399349761824173e-11,4.8985153466176655e-12,2.233894423076327e-11,9.121834826200665e-11,7.757169207257841e-12,3.340968433955829e-11,1.201574565245462e-10,9.074262621955645e-11,9.46734388161042e-11,1.0003996494149376e-10,1.1275718662268084e-10,1.1898052273530736e-10,1.2770395026432955e-10,8.915045727083751e-11,9.504509650150175e-11,1.0338275126231841e-10 +344,"Methane, trichlorofluoro-, CFC-11","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.9817212645122045e-14,6.844583873545415e-13,1.9618636589943887e-12,9.660061594907762e-15,1.1987940814462612e-13,3.4404345043827435e-13,1.0038486268266272e-14,1.2129837015249868e-13,3.5581086306165323e-13,1.028348423481556e-14,1.2196544291339852e-13,3.5562026613206016e-13,2.6384415713287974e-13,1.8784039112782106e-10,6.228353011292375e-10,2.756602098014147e-13,1.8775623577780153e-10,6.22455971586326e-10,3.3566388374228294e-13,1.8781132475663176e-10,6.22576519759012e-10,2.003007971763992e-12,2.085238448940378e-12,2.195197145501256e-12,6.671868123614985e-10,6.918231344369228e-10,7.250768181073728e-10,6.671352703120212e-10,6.917151917292771e-10,7.248989813202352e-10 +345,"Methane, trifluoro-, HFC-23","('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.843921639776705e-12,1.3414806815222193e-10,3.845087231939094e-10,2.0617925260009597e-12,2.3861422446310594e-11,6.802738807127128e-11,2.145178997082525e-12,2.422740637305637e-11,7.141430788280236e-11,2.191219662031664e-12,2.4357164667404785e-11,7.137227671556998e-11,7.611709028689329e-11,5.4173819240311265e-08,1.7962777335290624e-07,7.952501877130087e-11,5.4149547773003475e-08,1.7951837228251437e-07,9.683360659027308e-11,5.4165435341489616e-08,1.7955313614647903e-07,3.925726616718203e-10,4.086891413554183e-10,4.3024011807261517e-10,1.9241885051596677e-07,1.9952404685661394e-07,2.091145186211565e-07,1.9240399341674157e-07,1.994929240935681e-07,2.0906323886135862e-07 +346,Methanesulfonic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2696621349223803e-13,3.364699168061732e-13,1.1147709500943976e-10,6.281251372389497e-12,1.42547734118757e-11,4.177104007104678e-10,3.66139442232673e-12,8.453104701891274e-12,2.4492961357409514e-10,5.360659133055353e-12,1.2247186772431837e-11,2.0237755513598523e-10,8.576065859430671e-13,2.1103278169181557e-12,3.235308870166923e-10,7.162550305164743e-13,1.7596728704636722e-12,3.2066148228748323e-10,3.726474069379781e-12,5.285694814034602e-12,2.3032498493172326e-10,1.1886169814840662e-10,1.239128291425951e-10,1.307327262619617e-10,2.410419756814476e-10,2.5205787847041424e-10,2.6702717545330406e-10,3.4213753825598664e-10,3.566785152729838e-10,3.76311781563218e-10 +347,Methanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.378725658436659e-06,5.4627577717104e-06,1.7071378444948803e-05,2.6920298811588717e-06,1.3756478440431528e-05,2.5123471739306462e-05,1.9482059851411405e-06,1.2516639410196741e-05,2.399756609730488e-05,1.3463501192756037e-06,3.7613440734787777e-06,7.475440740455976e-06,1.1832214360554574e-06,3.6278424781207263e-06,7.081469436582458e-06,1.1340321107254624e-06,3.505482250323556e-06,7.036208084809003e-06,1.3062619707774754e-06,3.6243589509372216e-06,7.134607616181957e-06,1.3652838134230707e-05,1.4205167898273166e-05,1.4948531134955778e-05,5.818379553132486e-06,6.282074627900558e-06,6.892756457346754e-06,5.8949827621302045e-06,6.373225652169286e-06,7.002692147551668e-06 +348,Methomyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.1421513397971221e-20,1.4193609196223833e-20,2.1399280082574007e-20,1.4904068547801512e-18,1.824652790800547e-18,2.7089515267594482e-18,1.4912973446875741e-18,1.843728808693383e-18,2.731114342319675e-18,8.839177675905221e-19,1.0416654712615186e-18,1.55396999218945e-18,6.481093772570285e-19,7.356555339480006e-19,1.0555681596978487e-18,0.0,0.0,0.0,2.773255578304535e-19,2.9558245593652377e-19,3.210585830324355e-19,4.67912063355005e-19,4.98614615529936e-19,5.415382056833212e-19 +349,Methyl acetate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.798583800166089e-15,1.3388847453584473e-14,4.572361726390518e-12,1.1182770565694782e-12,2.510842858628559e-12,5.365510613980684e-11,8.044879679142952e-13,1.833842837870145e-12,3.700566695705229e-11,1.1291796248289635e-12,2.5714831900047587e-12,2.8910686362662798e-11,1.1986218387182577e-13,2.9746485799993805e-13,4.576949357442386e-11,9.966815631541265e-14,2.4735751327993165e-13,4.529133339583255e-11,2.0403586653032012e-12,2.7593339169330232e-12,8.04436346193036e-11,4.875938732609947e-12,5.083032917099769e-12,5.362631284764004e-12,8.310138778187512e-11,8.70811591917976e-11,9.25101365246371e-11,4.8326161148526525e-11,5.0379609561018945e-11,5.315212650843154e-11 +350,Methyl acrylate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.33650150481497e-11,1.5015971212443756e-09,4.321015901080113e-09,2.2219233823127926e-12,3.81784632183903e-11,1.0938798228545995e-10,1.999813302914532e-12,3.6730127502026836e-11,1.0298501290621207e-10,2.022467213167315e-12,3.676931047998285e-11,1.0308319529362961e-10,2.361447993793651e-10,5.115144912563486e-09,1.4298782540274056e-08,2.5510169737663097e-10,5.057386103793459e-09,1.4041901657941227e-08,3.1747725257629794e-10,5.145268162511337e-09,1.4187577259666235e-08,4.429448302164824e-09,4.6110341612509046e-09,4.853734705523566e-09,1.430324657850436e-08,1.493314307616455e-08,1.5777284203404028e-08,1.422887314650214e-08,1.4843729762512685e-08,1.566826842352182e-08 +351,Methyl amine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.9632289179930376e-13,3.2228083250672003e-12,2.41814064518178e-10,7.329614778932536e-12,2.015581785462939e-11,6.899362685884556e-10,3.634892819372911e-12,1.1795549534721656e-11,3.764994569588887e-10,5.099848478801126e-12,1.5007969195809583e-11,3.2526263343557127e-10,1.7034528535168686e-12,7.851842433896053e-12,4.302700073337898e-10,8.541194472476445e-13,2.1922966448034332e-12,4.1530710555774014e-10,3.934412023570546e-12,6.226567274667276e-12,4.789938020759518e-10,2.57854013202539e-10,2.688068805797716e-10,2.835910418916545e-10,5.068216194311634e-10,5.290674579150241e-10,5.591908312633322e-10,4.4311802339998083e-10,4.6196167662556163e-10,4.874054705157983e-10 +352,Methyl borate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.479294459662807e-13,8.988185579392728e-13,5.1869953553721125e-12,4.954824923317258e-11,1.0803438804248189e-10,1.2011516183191667e-10,6.11229303116072e-11,1.3648714447296961e-10,1.0594949609779604e-10,1.1145047878626406e-10,2.4852001829364967e-10,1.306540171046747e-10,1.4454163425207287e-12,2.1751457791471024e-12,9.240806184623249e-11,1.4030247471674643e-12,2.0574664782807947e-12,9.145595431069579e-11,4.136952001094241e-12,5.601710215567425e-12,1.5516644559638197e-10,4.4653558598480686e-12,4.857890005416931e-12,5.413232523949962e-12,1.6002361544675904e-10,1.6772367553825345e-10,1.782316551412153e-10,9.586522986497656e-11,1.0028626018314859e-10,1.062987381254282e-10 +353,Methyl ethyl ketone,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.512488674500023e-08,2.375395829733377e-06,6.834036233578701e-06,1.295407615849343e-07,2.223892395158154e-06,6.37134963830591e-06,1.166771209505969e-07,2.1399329287851564e-06,6.000140104823856e-06,1.1801136681644306e-07,2.142259329086802e-06,6.0058042882109125e-06,1.156298999979487e-07,2.5001542099897695e-06,6.989260181985219e-06,1.249018452808745e-07,2.471922800251742e-06,6.863781972730605e-06,1.5553638556146002e-07,2.5153920368580897e-06,6.93635280139158e-06,7.004594194940451e-06,7.291760896086488e-06,7.675583274751134e-06,6.992140441400059e-06,7.300110912396125e-06,7.712844357900105e-06,6.954656414845892e-06,7.255242067842298e-06,7.658348943052169e-06 +354,Methyl formate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.051682516711709e-12,6.993002768089302e-12,2.2496177861952668e-11,2.9420127945356165e-12,1.165998403254832e-11,7.927766542740277e-11,2.476781312406319e-12,1.0661554600226933e-11,6.113017114633535e-11,2.9225956204898797e-12,1.1669287758804528e-11,6.945101362700362e-11,1.6721968752268233e-12,1.004054339165715e-11,7.479968674760556e-11,1.6779868408659704e-12,9.875179925262311e-12,7.385893744433135e-11,2.7988272109933084e-12,1.1358982107799167e-11,1.0693787318087664e-10,2.190611610278739e-11,2.3076040931303524e-11,2.4679162682332434e-11,1.096914429793201e-10,1.1489246110874919e-10,1.2196713734647868e-10,7.594732216136019e-11,7.952523652705309e-11,8.438871044483018e-11 +355,Methyl lactate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.5707719415475501e-12,2.462933442471252e-12,3.141111387648217e-10,7.40822505620466e-12,1.494183607677464e-11,3.6430348763516183e-10,7.482948003505228e-12,1.566193362506857e-11,3.309124666599234e-10,1.1445545727828941e-11,2.4464413738984464e-11,3.1194750842769216e-10,2.8207308749398068e-12,5.060356349999479e-12,3.546567013676441e-10,2.5165898040582828e-12,4.374566911765963e-12,3.516996121969342e-10,3.532328202848734e-11,4.287497093418305e-11,4.997874365452257e-10,3.330187376488142e-10,3.476477169946888e-10,3.674584337161306e-10,4.835692510100797e-10,5.129440263303562e-10,5.537023162133217e-10,3.727955187887503e-10,3.8912475761459677e-10,4.1123269752213293e-10 +356,Metiram,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.792433669600094e-10,1.1500080656908199e-09,2.595683024615589e-09,0.0,0.0,0.0,1.3626456361881167e-09,1.6725704499373507e-09,2.122387876044621e-09,0.0,0.0,0.0 +357,Metolachlor,"('soil', 'agricultural')",emission,kilogram,biosphere3,9.736856160325473e-09,2.6961079763049754e-08,9.396607841211391e-06,1.5469629243893184e-08,3.729987758584092e-08,1.4450649356429466e-06,1.4252852553050783e-08,3.548249907447991e-08,1.3761188662823945e-06,2.417930663454562e-08,5.739524672084729e-08,1.3613506522269006e-06,5.769761583858066e-09,1.5721276581001486e-08,2.227434136039505e-06,4.69030772811423e-09,1.2774972580821587e-08,2.185607153167865e-06,1.910689066416884e-09,2.870883081806796e-09,8.598458572276303e-08,1.002067307579582e-05,1.0446203676274793e-05,1.102070507503554e-05,8.905666433481673e-08,9.32588711159946e-08,9.898460921692064e-08,2.33079009971005e-06,2.4298451791864833e-06,2.563589048553187e-06 +358,Metosulam,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.37813469672624e-18,2.8608749392742384e-18,4.1454075674655475e-18,2.2627605566478855e-18,2.811951265209643e-18,4.239494823226284e-18,6.500358067413903e-15,7.957872044366468e-15,1.1814164065409925e-14,6.504242334323706e-15,8.041020624202599e-15,1.1910688832567866e-14,3.839974341062794e-15,4.525096509065951e-15,6.750358202931732e-15,2.75036149353346e-15,3.1218445187021734e-15,4.4793849278846455e-15,0.0,0.0,0.0,1.176777950257443e-15,1.2542497982818502e-15,1.3623561759433745e-15,2.032215814273001e-15,2.1655735554205027e-15,2.352015144821307e-15 +359,Metribuzin,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.1351265935588492e-09,2.943310006816971e-09,6.585119775135359e-09,2.8980477633607884e-09,3.945081456698049e-09,4.507929458898036e-08,2.3386533224691117e-09,3.0575635020415883e-09,1.724777872594691e-08,2.7753343720864196e-09,4.054973997204878e-09,3.723441970445763e-08,2.359438075513782e-09,3.1077354287294613e-09,5.680720875817143e-08,2.361457482110941e-09,3.0832479248250453e-09,5.636320969003585e-08,3.3552934504719295e-09,4.0721081639296e-09,5.143208707221678e-08,3.4913530336288827e-09,4.311708811009463e-09,5.503356080402167e-09,5.019181125521121e-08,5.316395672133317e-08,5.7281359517109406e-08,5.689526769159045e-08,5.998024308603619e-08,6.422868337464152e-08 +360,Metsulfuron-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.338239694989914e-11,4.2417272051369185e-11,1.4832877060405534e-08,1.464465563105402e-11,4.7985935356771134e-11,1.4834452270973285e-08,1.211831380590323e-10,2.9350987387730437e-10,2.0703294007117126e-08,5.3719861084220693e-11,1.3954300062600697e-10,2.543239562652086e-08,4.42118133652131e-11,1.0592341477927017e-10,2.6630218281430877e-08,4.368671896184291e-11,9.937732926517563e-11,2.3004716932342425e-08,0.0,0.0,0.0,2.456195589786659e-08,2.5606543887302123e-08,2.7016979870461124e-08,2.8435788700923575e-08,2.9645213975932267e-08,3.127825729357802e-08 +361,Molinate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8918048715535812e-11,3.540201490296521e-11,5.255734080516238e-11,2.8935328678909845e-11,3.577190706508532e-11,5.2986722819581276e-11,2.849801880084562e-11,3.35825337347465e-11,5.0097005233010985e-11,2.7862877554239016e-11,3.162621949344399e-11,4.537892685457991e-11,0.0,0.0,0.0,1.1921456857655377e-11,1.2706293344310808e-11,1.3801476162171007e-11,1.5081736907487938e-11,1.6071432010359706e-11,1.7455081596979668e-11 +362,Molybdenum,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.566536850008791e-08,1.2054137333212638e-07,6.479870562183012e-07,4.228097364716606e-08,1.2312891382447643e-07,6.933820857471446e-07,2.6877829569664954e-08,9.177085817989165e-08,4.87825984689807e-07,2.7226428560815236e-08,8.414300333379357e-08,4.707488743583644e-07,2.2527733749697773e-08,7.474540414225222e-08,4.639145405910225e-07,2.1406274507542706e-08,7.182458343031037e-08,4.6295536509831043e-07,2.2780209155327013e-08,5.7875642993217467e-08,4.0124939138416527e-07,4.070491976110067e-07,4.278834348500149e-07,4.566437415973931e-07,3.8626541474738674e-07,4.025496127392283e-07,4.245290515793024e-07,4.4881875883085807e-07,4.719485217238435e-07,5.038179186171796e-07 +363,"Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,8.968755565657858e-06,2.2525310118063023e-05,4.6097931499792654e-05,2.290677477934733e-06,5.063828905859963e-06,1.0200573415051275e-05,1.7097555904643347e-06,3.9505068953074245e-06,7.962389806132301e-06,2.0437955125301156e-06,4.718234907478838e-06,9.491897288228805e-06,2.0165447465967055e-06,5.026288247775457e-06,1.0490562355448718e-05,2.0740838040381384e-06,5.091019101435532e-06,1.0449628455322151e-05,0.0,0.0,0.0,3.497392047587457e-05,3.667929941722034e-05,3.900002084181036e-05,0.0,0.0,0.0,8.038598477327885e-06,8.445853362733518e-06,9.000824865608176e-06 +364,"Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.2781225662444175e-06,3.1943513770490237e-06,6.522900577328063e-06,5.013220866968727e-07,1.1082351392598876e-06,2.232428091333286e-06,3.741854697929348e-07,8.645810470132554e-07,1.7425944309803597e-06,4.472911947049761e-07,1.0326008231861732e-06,2.0773321264438544e-06,4.413272772894324e-07,1.1000192834816054e-06,2.295893175377469e-06,4.539198843225656e-07,1.1141858381548407e-06,2.2869346602155233e-06,0.0,0.0,0.0,4.935631035706474e-06,5.176694430177096e-06,5.504789932153982e-06,0.0,0.0,0.0,1.7592730263997485e-06,1.8484020626096905e-06,1.969859353725861e-06 +365,"Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,4.647104591931575e-06,1.0431931445015665e-05,2.1590491401984006e-05,3.5216321008281397e-06,8.309267710371642e-06,1.738457887471442e-05,4.179438248389495e-06,9.818071174387512e-06,2.0387364165221392e-05,4.130757723636257e-06,1.0448938617015551e-05,2.238945614078258e-05,4.2736681030552285e-06,1.0633822025789746e-05,2.2384229272332786e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7299468842063634e-05,1.8190431524710808e-05,1.9405515044845238e-05 +366,"Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,2.54055736386472e-06,5.82478154420477e-06,1.248987936850613e-05,1.965877858335782e-06,4.768403471263561e-06,1.0446771886271356e-05,2.3102918293205537e-06,5.5559843046305945e-06,1.2011722226896426e-05,2.28873391313716e-06,5.9054089804217676e-06,1.3087958723230716e-05,2.38690717541955e-06,6.0474938902255325e-06,1.314467901228191e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0216711168176294e-05,1.0753382111034393e-05,1.1485966628923524e-05 +367,"Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.235029360455801e-07,2.115363839302787e-06,7.690850346778156e-06,1.8505887286171795e-05,4.091275417013524e-05,8.242614641245299e-05,2.800141281583038e-06,6.469917397796561e-06,1.3040352972403056e-05,3.347213177460015e-06,7.727259385700458e-06,1.5545294765263184e-05,3.3025834078621648e-06,8.231771795903022e-06,1.7180852164388304e-05,3.3968176353604574e-06,8.337784342186921e-06,1.7113812928299865e-05,0.0,0.0,0.0,6.796281530149889e-06,7.1970769823108965e-06,7.741281523298237e-06,0.0,0.0,0.0,1.3165163827096413e-05,1.3832142940540508e-05,1.4741044010211684e-05 +368,"Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.683435199550275e-06,1.1705088384137468e-05,2.3901918863859235e-05,3.175022442202102e-06,7.23897677864904e-06,1.5380817833952387e-05,2.443322934502937e-06,5.884182284974139e-06,1.27422791636066e-05,2.87880477182199e-06,6.880842993318969e-06,1.4723540110551105e-05,2.8501822693376466e-06,7.3160245205851235e-06,1.607463456464058e-05,2.966208545824167e-06,7.479958413346665e-06,1.6125712003287443e-05,0.0,0.0,0.0,1.808567382544012e-05,1.89690044261848e-05,2.0171247502271947e-05,0.0,0.0,0.0,1.2515783350496335e-05,1.3169994205989227e-05,1.4062821931749262e-05 +369,"Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.0553992896481972e-06,4.237735358052223e-06,1.543115406914737e-05,1.2857218009850817e-06,4.045102361112509e-06,1.2511140393579186e-05,1.2952761547335829e-06,4.233773730846461e-06,1.3120887431325177e-05,1.3296992394230977e-06,4.2901147655057844e-06,1.3207274483327688e-05,1.3626794129414354e-06,4.497134988468067e-06,1.3568269768080102e-05,1.581820977151981e-06,4.917198822668114e-06,1.4106485488655271e-05,0.0,0.0,0.0,1.3623469982039219e-05,1.4428554564468443e-05,1.5521788149355837e-05,0.0,0.0,0.0,1.1426960161657468e-05,1.2110451924182993e-05,1.304874383087247e-05 +370,Monocrotophos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.069643490637929e-09,9.432947930192454e-09,3.879242495708835e-07,2.121648866913263e-09,5.073538300207743e-09,2.0806302700709329e-07,3.0028642813138926e-09,6.950615236818491e-09,1.700926586773822e-07,6.932884052618972e-10,1.7395080407826957e-09,2.786453382234897e-07,5.780547751131206e-10,1.4542775999266013e-09,2.7648917018574497e-07,2.6668172587176946e-10,6.709057999428273e-10,1.1624137759714139e-07,0.0,0.0,0.0,1.2401183080421718e-07,1.2928446505415428e-07,1.3640389320363825e-07,2.9505330760735403e-07,3.075893303178768e-07,3.2451501804281373e-07 +371,Monoethanolamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.038769988225063e-07,0.0008467632866690504,0.00154486221837878,1.957005154442838e-07,0.0008467529180175087,0.0015448900408096362,2.2122113334578296e-07,0.000846822155130588,0.0015450099136068282,2.2215371554635358e-07,0.0008468220192935927,0.0015450095875418398,2.253457871009514e-07,0.000846886133320056,0.001545229933195873,2.2839165583002094e-07,0.0008468870140466005,0.0015452165994063263,2.4059434919214605e-07,0.0008468841467466246,0.001545200898682007,0.0017218240112767127,0.0017218324998079105,0.001721843925378083,0.0017220550390496681,0.00172213203747619,0.0017222320078087196,0.0017220828674072348,0.0017221584804338259,0.0017222562697341163 +372,MSMA,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.502909332608364e-12,1.2801585517083678e-11,2.4216976153011657e-11,7.46234648893997e-12,1.8768063707852197e-11,2.5613438051270335e-11,9.441110306373094e-12,2.261091432588345e-11,2.6208809731224976e-11,2.034094353575052e-11,4.5848336152996946e-11,2.5656419597247278e-11,1.4483661972924138e-11,3.3062102439567886e-11,2.4979728566286673e-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.720634520222357e-11,1.8301864449425316e-11,1.9835407974474487e-11 +373,m-Xylene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2466579788450525e-07,2.793156025060068e-07,1.604311502074355e-07,1.1005305860979898e-07,2.2240779866795949e-07,3.106319041913125e-07,1.8712705620034973e-07,4.501133271836973e-07,3.591219146837782e-07,2.524311224748959e-07,5.779171702223649e-07,3.5109358450729373e-07,6.754866946960001e-07,1.4826564706512308e-06,3.472494117309663e-07,4.7607054677450106e-07,1.050056753592316e-06,3.303490090617918e-07,5.934121983472271e-07,1.2938848998202995e-06,3.6684255139646215e-07,1.2212661891827563e-07,1.2740753659231922e-07,1.3458298882578202e-07,2.8844001837797455e-07,3.006580973589085e-07,3.1721150256791443e-07,2.7300625265152826e-07,2.8452848939124737e-07,3.001659789894864e-07 +374,Napropamide,"('soil', 'agricultural')",emission,kilogram,biosphere3,4.7432993002190116e-11,7.99968624100608e-11,1.0253821181426681e-08,1.6559165356594355e-08,3.6494165732967406e-08,5.812944980196701e-09,2.1110511773486032e-08,4.750950074229327e-08,1.2146303351596877e-08,3.799313445287246e-08,8.506921141354339e-08,1.983380834088322e-08,1.228342295975517e-11,1.9128787907410676e-11,6.723948036690018e-10,1.1988242612047943e-11,1.793992232512365e-11,6.605119733508659e-10,1.9374265831332268e-11,2.1648710128111655e-11,4.21518572787114e-11,1.0873748587641364e-08,1.1347128793247556e-08,1.1987685558184879e-08,2.1693840729354613e-11,2.300657300220804e-11,2.483130359398964e-11,6.878310050251047e-10,7.202070934223936e-10,7.64313012810456e-10 +375,"Neodymium, 4% in bastnasite, 0.4% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.23085118697258245,2.962983481951887e-13,1.069665114642561e-12,0.23085118697421067,2.7979660326167376e-13,1.0905063466391408e-12,0.23085118697420665,2.750179171521009e-13,1.0844048225288422e-12,0.23085118697417503,2.342510174191558e-13,1.03152512187205e-12,0.23085118697426912,2.3648458460635434e-13,1.0299775934598917e-12,0.23085118697425183,0.0,0.0,0.2308511869725825,0.20406198025001399,0.25733109530177234,0.33482740750376483,0.20406198025001396,0.25733109530177234,0.3348274075037649,0.2040619802508449,0.25733109530264264,0.3348274075046885 +376,"Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,4.067813977934628e-06,9.300270972186849e-06,1.9539164520936378e-05,5.43848536305549e-06,1.278822613878734e-05,2.630512525325412e-05,6.472144904697359e-06,1.623294606757763e-05,3.321490840799741e-05,8.13729648125601e-06,1.885689592770486e-05,4.042221906107512e-05,8.335778426567722e-06,1.917276967979011e-05,4.0600503140784906e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1004876361314324e-05,3.328751741932529e-05,3.645869686893184e-05 +377,"Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,1.5403171207122266e-07,4.526660648854825e-07,7.655122238005884e-07,1.9698399774805966e-07,5.51336799267423e-07,8.846216370729218e-07,2.2817497667348183e-07,6.697013922395451e-07,1.1012993926359209e-06,1.9751685960445846e-06,2.5436013470648264e-06,6.022330107037249e-06,2.0130193885218605e-06,2.6349147295960744e-06,6.109357723597579e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7223056380836837e-06,4.448625982869443e-06,5.499996467442322e-06 +378,Nickel,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.8938438172507014e-06,3.5879111634924276e-06,1.9014145411930775e-05,9.338392712070995e-07,2.8390271091768137e-06,1.445155251559732e-05,5.398130443394806e-07,2.125671611339193e-06,1.0878712244962747e-05,5.411829857818744e-07,1.7924231243233375e-06,1.017854276886077e-05,4.75142375341729e-07,1.7262329537152106e-06,9.541687778031902e-06,4.4060342922074643e-07,1.641037897231026e-06,9.517766041316982e-06,4.667101511787899e-07,1.3713672853142297e-06,8.33245760660241e-06,1.4051760679378285e-05,1.4812468958097552e-05,1.5842370266635767e-05,8.013169540576791e-06,8.437566916581404e-06,9.001647970157998e-06,9.207183539656496e-06,9.765027195890961e-06,1.0521016445234056e-05 +379,"Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.1199571795442242,0.11996887109528494,0.11998105072325459,0.10410851873105885,0.10414133021728213,0.10419033501092344,0.09110504697003569,0.09113897274235197,0.09118975323092422,0.09108768585719201,0.09112995461609731,0.09119168757524587,0.09108739794543635,0.09113528808832146,0.09120912577124667,0.09108768703547505,0.09113000390793335,0.09118742736283962,0.0,0.0,0.0,2.4640073028489205e-05,2.6835670608611288e-05,2.967202812123646e-05,0.0,0.0,0.0,8.476970694579273e-05,8.954616946808949e-05,9.600417541210296e-05 +380,"Nickel, 1.98% in silicates, 1.04% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0005737140326296134,0.0029541040042315365,0.00839381495019711,0.0008059318213963929,0.0032941541634897526,0.009065017059551008,0.0008014892652531578,0.003293461187094579,0.008677625129789791,0.0002054191572051726,0.0008325312932354502,0.0021795247379614467,0.00018754934166182214,0.0008653687362242371,0.0023677919658991104,0.0002339785917477367,0.0009527176348422729,0.002387069177359344,0.0,0.0,0.0,0.007715163113511999,0.008077183058120446,0.008570165176102588,0.0,0.0,0.0,0.0021060488375879544,0.0022101169154689947,0.0023524491653035954 +381,"Nickel, ion","('water', 'ground-')",emission,kilogram,biosphere3,4.403004467444098e-07,9.299906842910645e-07,1.5253810813156055e-06,4.756813488153928e-07,9.247927559463423e-07,1.4507876206424755e-06,4.848152607691453e-07,9.68005011249793e-07,1.4941631861955868e-06,4.852581578641703e-07,9.656973238283794e-07,1.4861411154225704e-06,5.380142080583573e-07,1.086057729787571e-06,1.5114776527596887e-06,4.966958672604719e-07,9.956675169668226e-07,1.582144884169253e-06,2.3263824387468288e-05,2.360659622134012e-05,2.468903892677359e-05,5.537727039724459e-07,5.776226052767124e-07,6.101690796891694e-07,6.450318076802503e-07,6.767511441499249e-07,7.194997976857129e-07,4.971989249637204e-07,5.21358797620483e-07,5.540031069672294e-07 +382,Nicosulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.851468173398627e-14,3.396469372942912e-13,7.32606133824326e-13,5.4662063530633484e-14,2.661065114672585e-13,4.960341706646427e-13,8.880695737821791e-14,3.3731043998745166e-13,4.980729681582744e-13,1.2058441294332231e-14,1.9271041317459727e-13,5.315614781020143e-13,9.554463260772841e-15,1.373797160874428e-13,3.765197991233938e-13,1.5061560439103622e-12,1.4885251455591198e-11,2.048504470149403e-11,0.0,0.0,0.0,3.194664871727391e-12,3.640139037329274e-12,4.280068672241265e-12,3.772060816601379e-13,3.9360051703491255e-13,4.15598863677907e-13 +383,Nitrate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.504140603896066e-08,9.670296223484866e-08,2.3921292583582316e-07,2.6071474556162544e-11,9.981851034941574e-11,1.5108447852041856e-10,2.3374141387704e-11,9.513134669430032e-11,1.4164721757555482e-10,2.3508525856847435e-11,9.560944395754772e-11,1.4085705033565248e-10,2.0356339970883994e-11,9.242442733509949e-11,1.5039031476641843e-10,2.044089448455834e-11,9.20138057195588e-11,1.4874326239358314e-10,2.729373052396086e-11,1.0312117392056618e-10,1.698297123998231e-10,1.3508458657951993e-07,1.688493370924222e-07,2.1794143458201642e-07,8.797844385958791e-11,9.217124792655167e-11,9.784704849034878e-11,7.26220580287085e-11,7.606902742303357e-11,8.073222998659431e-11 +384,Nitrite,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.854778827556749e-08,1.3653956249697533e-07,2.626674415196786e-07,6.928056403852035e-08,1.4522315229459742e-07,2.7615476402166447e-07,0.0,0.0,0.0,1.898782649582061e-07,2.0075359661289392e-07,2.1552550270952817e-07,1.8903736456561406e-07,1.9978688630045757e-07,2.1432674758877074e-07 +385,Nitrobenzene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.635966968563744e-12,1.3581144341714325e-11,1.7525907339951649e-09,4.795322103944201e-11,9.841447471526368e-11,2.361392023333343e-09,4.6256847826551955e-11,9.780822764080377e-11,2.063989284759079e-09,7.006410095334132e-11,1.5079831979591014e-10,1.910452175195709e-09,1.6250628226343023e-11,2.9706932470855955e-11,2.250485672283367e-09,3.318447782917683e-10,6.581819671067474e-10,4.1979236691799934e-09,5.807975700921278e-10,9.40151317598507e-10,6.349975886397308e-09,1.8582883023003116e-09,1.9398704015395663e-09,2.050343792735168e-09,4.523850701127516e-09,4.795253282654505e-09,5.170933182694541e-09,3.3710288201169028e-09,3.5365888633408902e-09,3.761776191247639e-09 +386,Nitrogen fluoride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,-2.4369023754998439e-29,-1.4621414252999065e-29,-1.3083020007895677e-21,1.19648229879913e-16,2.447678153942723e-16,3.1690945429483197e-16,1.23172384932971e-16,2.6674130067012603e-16,3.1118281212567164e-16,1.6894839584859997e-16,3.5994060990885474e-16,2.7063297448037055e-16,4.813224015495939e-17,9.187760005562615e-17,2.0294594683388609e-16,5.277323943586848e-17,1.0504588213998018e-16,2.157172202584217e-16,4.867402828502152e-17,9.557180802636309e-17,2.081541361558489e-16,-4.088443752467399e-23,-4.088443752467399e-23,-4.088443752467399e-23,1.4734816088672507e-16,1.601130574646045e-16,1.7816123255507545e-16,1.5467571467137967e-16,1.6737309164664418e-16,1.8532474308288432e-16 +387,Nitrogen oxides,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0018252048227362409,0.004687413173312215,0.04547319768828295,0.0026067449195367365,0.005918836396446428,0.04538499018155245,0.00101291738545388,0.002514422383589459,0.008261568411098005,0.0010588812872397676,0.0026011759295150377,0.008257336385828134,0.0013570249640811518,0.0032363427277714387,0.008584636014408373,0.0011667151327034284,0.002803576880197548,0.008522994675958432,0.0013736442593658214,0.002905524462451579,0.007758524363127395,0.00898960618214433,0.009507556754921058,0.01020554172221065,0.00571853926907263,0.006068555613839801,0.006535814513125741,0.0065942994175895685,0.007043180467947804,0.0076521840530356005 +388,"Nitrogen, organic bound","('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.760421100571425e-09,8.74798209260161e-09,1.654870589586604e-08,5.099405332797666e-09,1.2825183646931778e-08,1.750298016622097e-08,6.451596467023893e-09,1.5451201209049434e-08,1.7909828270129005e-08,1.3900013366200382e-08,3.133052723068248e-08,1.753235166814678e-08,1.7680706410012155e-06,4.122835893737827e-06,7.904894978872087e-06,2.080475682209686e-06,4.361009002795832e-06,8.292846131565898e-06,0.0,0.0,0.0,5.701988126447629e-06,6.028571111349824e-06,6.472167079629828e-06,5.6884937512920465e-06,6.0120472577361606e-06,6.449722837338158e-06 +389,"NMVOC, non-methane volatile organic compounds, unspecified origin","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.756483465891347e-05,9.514192652705326e-05,0.00036056248181827054,6.281634814405771e-05,0.00016715507060757021,0.0005232810546306774,3.597024569566312e-05,0.00014505691353120952,0.0005331907757539886,3.756891877923778e-05,0.00014832995312143363,0.0005321525502086463,5.80913269327977e-05,0.00017130891395773253,0.0005515665621043009,5.3933603904703006e-05,0.00016133044573968665,0.0005515108662877557,6.141431966888012e-05,0.00015621816704654702,0.0004891047348807192,0.00024400266140201538,0.00035636896732040214,0.0005006413432062842,0.00036521762683995135,0.000472411049478676,0.0006123156342082197,0.0004257651059657887,0.0005466074745247615,0.0007046641281141873 +390,"Occupation, annual crop","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.00031331724164497245,0.0007067426079590045,0.012485464460874271,0.00045584502063469813,0.0010627639560463673,0.023945738694546637,0.0011531326905721265,0.002630062229845692,0.036896928116827134,0.0001741893982745121,0.00042931081374373485,0.05994658902465169,0.0001419604958497004,0.0003517074847023043,0.059293989586225414,0.00033132812909755115,0.0005232174182921983,0.04417144478006564,0.0,0.0,0.0,0.04679191791735839,0.04884074152444507,0.05161456901124991,0.0632621863315939,0.06595057434919413,0.06958041748240518 +391,"Occupation, annual crop, irrigated","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.00030683858195992484,0.0006912062499800732,0.012455918058629917,4.639063373383643e-05,0.00010796034602011163,0.0024812613373779366,8.689110394589725e-05,0.00019816459913653202,0.0027180815447960314,1.0997637298739544e-05,2.7593823889258115e-05,0.004420152347031133,9.129162147934086e-06,2.2967262685026734e-05,0.0043665662484591115,2.0124624048819787e-05,4.6903186361708266e-05,0.003431876043032716,0.0,0.0,0.0,0.0036542794103487613,0.0038098331290683796,0.0040198972723655265,0.004659747843441031,0.004857728016123015,0.0051250337362806235 +392,"Occupation, annual crop, irrigated, intensive","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,3.449915741881837e-07,7.573914380067116e-07,2.5986342975310805e-06,1.5431926027947398e-07,2.4445614110570117e-07,3.266491787967573e-07,4.3809945553635023e-07,7.520181163712288e-07,1.1195841392645112e-06,2.0881048773155924e-07,2.5865515918970375e-07,3.838268586873427e-07,2.0564289183442842e-07,2.4259342315021344e-07,3.6223747565697495e-07,3.657272690109988e-07,4.185808999342861e-07,6.846526795084655e-07,0.0,0.0,0.0,2.4041451486004854e-07,2.7580421846613676e-07,3.2672824364234536e-07,1.0959107627479565e-07,1.1676489188910942e-07,1.267923505263675e-07 +393,"Occupation, annual crop, non-irrigated","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.00019938703762551065,0.000336046277673981,0.04286210891802838,7.872712553973144e-07,1.031451015931029e-06,2.0743896405578653e-06,7.296003121785321e-07,1.0175546256070995e-06,2.047592927567324e-06,7.771942921633889e-07,1.1102690420714922e-06,1.9984526333894823e-06,6.505957627289753e-07,8.273270102457921e-07,1.922556206668265e-06,6.605612436547898e-07,8.440133851488758e-07,1.910597884431021e-06,4.394636822494001e-06,5.654766662184666e-06,0.00017108427947990315,0.04545162104524923,0.04743067329254484,0.05010868034774174,0.00017673753734128914,0.00018528684663400035,0.0001969593444005286,1.0858827219749463e-06,1.3191331240481099e-06,1.657226255931555e-06 +394,"Occupation, annual crop, non-irrigated, extensive","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0001505947210781605,0.0003213419876320253,6.28402759459034e-05,0.00018086595438500578,0.000404742305957661,0.00010233614510767574,0.0003327589602662221,0.0007427789896403535,0.00017318306619979853,2.3284094417145577e-06,2.8788802735928544e-06,4.376445170195161e-06,2.2932008429704645e-06,2.70262089304123e-06,4.1514840905314205e-06,2.931062785220483e-06,3.3236550616971017e-06,4.854546219526739e-06,0.0,0.0,0.0,1.36004683187535e-06,1.4460063486792945e-06,1.5656927093697697e-06,1.3422020799956464e-06,1.4275168615451374e-06,1.5465459902291602e-06 +395,"Occupation, annual crop, non-irrigated, intensive","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0015460840180393479,0.0033306466794947196,0.07246206903718018,0.0010976030584206303,0.002365100415901302,0.032844815728891585,0.0015220940044795765,0.0033111313159941997,0.02333952567007758,0.00025676915885943327,0.00046479367606602924,0.03649928282412185,0.00024107799947050934,0.0004185716213068738,0.036099178847549276,0.00012667058448778142,0.0003000569241930138,0.0459715795982272,0.0,0.0,0.0,0.04900185657252867,0.0510902536835126,0.053910751580654316,0.03825438945434726,0.03992834769335151,0.04219452769493649 +396,"Occupation, arable land, unspecified use","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.66978051804256e-22,4.5015659533572496e-21,1.2576524873090293e-20,2.6096680866287752e-22,5.241203173087764e-21,1.4573946802418444e-20,1.4705795979208153e-22,2.7482864787174756e-21,7.601108434924952e-21,3.034014450428841e-08,5.15513668770617e-08,8.186065417937783e-08,0.0,0.0,0.0,4.8466310422096573e-08,5.3683722816071084e-08,6.102726140359401e-08,7.673943952150213e-21,8.005911078348758e-21,8.451134179787633e-21 +397,"Occupation, construction site","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0005278746539033897,0.0008173435431776097,0.001677072145113631,0.000655804068898311,0.000946371664378628,0.0017444262072361806,0.0006213879852257376,0.000928978430083151,0.001832930429165588,0.0006409262210186289,0.0009673554399708723,0.0018153849965968742,0.0006516212964950414,0.0010091142526546925,0.0017368722028718259,0.0006313557683527483,0.0009621531036870932,0.0017212055272059225,0.0007217879339593996,0.0010450413191568637,0.0018210956751859965,0.0009567588365908788,0.0010247007959726794,0.0011198473858463254,0.0009155056906354068,0.0009889221111501196,0.0010910849274354283,0.0009143013414249411,0.0009847768707645864,0.0010833955249018067 +398,"Occupation, dump site","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.015861689817175072,0.024580968569918527,0.09659849271701183,0.02793165756890476,0.0477557752045197,0.1020911875734566,0.02649213333843473,0.0463363833810687,0.10458705097121096,0.02655451844313756,0.046514118903870125,0.10493425928256726,0.028983540286979692,0.05186936045878348,0.10505654567797991,0.02021184019041465,0.032914984653552554,0.10610364622947759,0.017094166825743266,0.02471569186968602,0.10744309162876305,0.011850675479079389,0.012314290898738424,0.012943810294822255,0.017791222773121732,0.018703948025638805,0.019931418119094452,0.017624967925150056,0.018508490054155814,0.01970095753840004 +399,"Occupation, forest, extensive","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.003739808206413767,0.009969133496084482,0.014025569125642075,0.019030211634383225,0.042028249025487664,0.11078152258813613,0.0003883117207917299,0.001760107340594196,0.0031462461077197998,0.0003348137144157199,0.0013554505440145552,0.01972282171658459,0.000299635646685243,0.001211555282955236,0.019568774445854985,0.0005049187343974696,0.0019248459689703201,0.02173791456935738,0.0,0.0,0.0,0.02264918625710573,0.02365930913934739,0.025035451510412483,0.02058678408057963,0.021443113034242522,0.02260190542781679 +400,"Occupation, forest, intensive","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.09117040793536069,0.20765238957574014,0.6118243610156828,0.17599418326448155,0.3716099646952743,0.5919577346995556,0.2559920111672187,0.6169988890581967,0.5422972638153201,0.3632555874841121,0.8322183833770758,0.700417439285965,0.8683462810105029,1.916764938620841,0.6586483770158791,0.614889949447758,1.365224449873151,0.6367212100236281,0.7466401949204753,1.6312524814988438,0.6664668619294117,0.22418119072141676,0.23415785491551966,0.24771796804807306,0.3854802166448491,0.4025807836725316,0.4257483442552798,0.3790372733771335,0.3959305608469919,0.4188745759206944 +401,"Occupation, grassland, natural (non-use)","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0007698444686075166,0.0017387569859486384,0.0021043227893872687,0.0010140899229995012,0.0022921891096720185,0.0027504432432997454,0.0010287251884507488,0.002320266513633632,0.0027704254585030497,0.0010980317994279717,0.002488080928201052,0.0028409718443981797,0.0010760176100582523,0.002429892454839926,0.0027582568274893875,0.0011410317243692807,0.0025552955103258354,0.0030093808102983864,0.0,0.0,0.0,0.0009120418966568647,0.0009526168516440578,0.001007407944929068,0.0008120890826539854,0.0008464126411181514,0.0008930603160436124 +402,"Occupation, grassland, natural, for livestock grazing","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.276535120246944e-12,1.9543977571871995e-11,5.373028855281192e-11,0.0,0.0,0.0,5.390154598557192e-11,5.6277787610495146e-11,5.946267228853777e-11,0.0,0.0,0.0 +403,"Occupation, industrial area","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.011362958783772888,0.022501630224251945,1.466089298623981,0.012202886939518131,0.0218747441384231,1.4645497192727794,0.011095853609017473,0.0208681896286447,1.4638475590437279,0.011189389830993539,0.02100192560637037,1.4639538239312222,0.01150860509964109,0.021971282263486172,1.4644588618014296,0.011358639311046735,0.021574228586492543,1.4651545925181746,0.01156743316397268,0.019903281222425424,1.4653642854442992,1.5433598408442564,1.609629337275967,1.69920267990521,1.5402658981890363,1.6062726046899802,1.6954609184735374,1.5417743558576105,1.607905452947769,1.697274105006298 +404,"Occupation, inland waterbody, unspecified","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.556730300381503e-07,1.8154209074320482e-06,4.099575194571408e-06,2.701496413269357e-07,1.8425996642211084e-06,4.152115046739544e-06,2.559776107564759e-07,2.0994864733471026e-06,5.0104752027278675e-06,2.825799516993016e-07,1.8453042531796097e-06,3.89784792637697e-06,9.135724112345894e-09,5.8189414334592565e-08,1.1571294714817755e-07,0.0,0.0,0.0,8.130559413070932e-08,8.539321063550004e-08,9.093185027252301e-08,2.959002000869421e-06,3.10834498169061e-06,3.3114434139417245e-06 +405,"Occupation, lake, artificial","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0022792476758022894,0.005533490539038187,0.06736454101570472,0.004830920621748877,0.010888785647350449,0.07055558279475489,0.003996944290764853,0.009339282889114606,0.012257807218775358,0.004083726298498041,0.009613961132632456,0.012710834301556938,0.0025909634988261093,0.006469754301721899,0.012806607246057828,0.004468577924314227,0.010400993978440303,0.0123461012239848,0.007442093411063845,0.015149776824745425,0.01995529061713661,0.008743754768967962,0.009109531767909388,0.009611461309666596,0.011513906345505144,0.012119691106015518,0.012940829634900631,0.007890625535043138,0.008340493106653591,0.008958910494467738 +406,"Occupation, mineral extraction site","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.004021649555665566,0.009227834557879106,0.017776723858831323,0.0036826694673674464,0.008052902091240462,0.01824663737863727,0.003867654660092711,0.00865982944652129,0.01825179717229662,0.0038813110932932205,0.00868389386993102,0.018288515604790813,0.004292545781956145,0.009631133771266485,0.01842724125460506,0.0047474893295055285,0.010640042135446517,0.019440251230797997,0.03070714548729825,0.035538097002936704,0.05199572040890223,0.00884839845001317,0.010255609787728517,0.012287498354999569,0.013350330780675488,0.01500849090189141,0.017379351016257122,0.00949200610951113,0.010950311464942191,0.01304918994856818 +407,"Occupation, pasture, man made","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3251093985581697e-12,3.559783449499716e-11,9.78655400229967e-11,0.0,0.0,0.0,9.817747211181416e-11,1.0250561134408084e-10,1.0830663097974712e-10,0.0,0.0,0.0 +408,"Occupation, pasture, man made, extensive","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,6.645108217331718e-11,1.0631937119908987e-09,3.0404442643144953e-09,1.8686744402487487e-11,3.206756286924225e-10,8.968867996866883e-10,1.905212317711374e-11,3.212413471974903e-10,8.974876376699688e-10,1.862314592801124e-11,3.740233941269667e-10,1.0400278082820684e-09,1.0934924732337106e-11,2.0435687962807327e-10,5.652026502713114e-10,2.6053763396049164e-12,3.9888770735523583e-11,1.0966217873291709e-10,0.0,0.0,0.0,1.1001171088145528e-10,1.1486156076696729e-10,1.213618309537942e-10,5.706185481922089e-10,5.953029348361831e-10,6.284088007832066e-10 +409,"Occupation, pasture, man made, intensive","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,1.4955565908714935e-10,2.392837424666838e-09,6.8428629150195996e-09,2.6498495289784697e-11,4.5472991193165197e-10,1.2718186820035656e-09,1.5982026555754773e-07,4.889175064298969e-07,0.0018373481515071846,1.672109455455794e-07,5.113526098057565e-07,5.1337350610075234e-05,1.5275508651958908e-07,4.6324899131525557e-07,5.1930283229262125e-05,3.838957018926581e-07,8.660258419369336e-07,5.248142061301744e-05,0.0,0.0,0.0,5.549871267028811e-05,5.788716363249561e-05,6.111541682655069e-05,5.5338836131048626e-05,5.7727463340871955e-05,6.0957339952683726e-05 +410,"Occupation, permanent crop","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,3.4005508112205025e-05,0.00010831381458185397,0.03803957395595784,3.7250259328164565e-05,0.00012259701167924064,0.038043753370738315,4.344573601600769e-05,0.00013298227232829066,0.03682309748176529,7.387150956338919e-05,0.00019728598446122067,0.039266598936722144,5.522634574416098e-05,0.0001575921153613307,0.03897092353236731,6.848723945515209e-05,0.00017913454599758236,0.03896363663980993,0.0,0.0,0.0,0.041572895426001344,0.04334110083218746,0.04572857065505673,0.041587811557215505,0.04335764656351557,0.04574748917120279 +411,"Occupation, permanent crop, irrigated","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.2333624063110486e-06,2.2118499168500233e-05,0.06399248960636786,8.745710346116354e-06,2.5543904409571288e-05,0.0033728059698290022,7.68704782725082e-06,2.1471819018604996e-05,0.00352386676571889,1.615103674574208e-05,3.624345705885206e-05,0.00354256431247134,0.0,0.0,0.0,0.003764673036935513,0.003925744995529129,0.004143340457026818,0.0037596210759894386,0.003920759857047694,0.004138500560734437 +412,"Occupation, permanent crop, irrigated, intensive","('natural resource', 'land')",natural resource,square meter-year,biosphere3,1.4380208846815313e-05,4.236992672234544e-05,0.11879942349825115,1.7908088883284568e-05,5.0378001648791744e-05,0.1712065504253108,9.614212212500891e-06,3.045980464700278e-05,0.11875994401888632,8.208823219025707e-20,1.3841047558142462e-18,3.8669272135126956e-18,8.023994289230821e-20,1.611522344358253e-18,4.481078130719352e-18,4.4129751000968933e-20,8.24716990202174e-19,2.280971550526744e-18,4.561829474846359e-07,5.178025789545301e-07,7.422100450706923e-07,0.12700953342041343,0.13240816623712667,0.13969710446778172,1.9439602201770316e-07,2.071618150597213e-07,2.249730885284893e-07,2.3028283289269648e-18,2.40244637503851e-18,2.5360507350754694e-18 +413,"Occupation, permanent crop, non-irrigated","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036386011974034305,0.0006787730646716459,0.0010987208118393918,0.0,0.0,0.0,0.000620678303673106,0.0006534537277238236,0.0006976921536013106,0.0,0.0,0.0 +414,"Occupation, permanent crop, non-irrigated, intensive","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,3.2800435512430465e-15,5.247953178011173e-14,1.500771586543215e-13,1.24157968240103e-16,2.130624450406126e-15,5.959071328405357e-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +415,"Occupation, river, artificial","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.004783129410953682,0.006265238285859638,0.007043542169203255,0.004180741917850278,0.006017847079109171,0.010459794053320213,0.003796307793215595,0.005684317357160062,0.016959167685943573,0.003807794015056636,0.005718194537344243,0.01701783284573858,0.003683845492911802,0.0055143654844196765,0.018172730793264553,0.005094067435573539,0.008506546393288697,0.018760934422839427,0.004919793687439055,0.007263790286879943,0.019051690989343992,0.0027528013327916415,0.0029406098317821946,0.0032037502437186408,0.004892258833410034,0.005202094946052649,0.005635163077524146,0.0052311084772785595,0.005563353277743045,0.00602846352208986 +416,"Occupation, seabed, drilling and mining","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0005038531506307843,0.0013078638297835635,0.001477150798694393,0.0005381097800896681,0.0012577463055311292,0.0006616931985560426,0.00029643509433511443,0.0007346426109274126,0.0006300468908020141,0.0003022767008181336,0.000749373378266421,0.0006296320700011009,0.0003536109184954618,0.0008564659545617139,0.0006275583904131024,0.0002594781117171051,0.0006533169377748534,0.0006257753990047341,0.00039365040296508285,0.0009346030052735742,0.0006072899924814066,0.0013338648606422098,0.001473964132385338,0.001675469938980553,0.0005649814535396798,0.0006156642178275828,0.000688050872703614,0.0005932732430739566,0.0006468145864827585,0.0007232946250689469 +417,"Occupation, seabed, infrastructure","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,6.707130795676156e-06,1.5407394833614686e-05,6.57483501140652e-06,3.958474716263284e-06,9.462494651997897e-06,6.183808702821105e-06,4.029282264063016e-06,9.633978375128833e-06,6.192760041868259e-06,4.428847647711045e-06,1.0463653922725476e-05,6.269444355133242e-06,3.846077401227521e-06,9.207786200841272e-06,6.268406839106531e-06,5.6818410314856445e-06,1.3096969408982473e-05,6.1826570213701415e-06,0.0,0.0,0.0,5.6395218389631635e-06,6.133533452217001e-06,6.837950625184624e-06,5.853313206270873e-06,6.372545926112853e-06,7.113280946144804e-06 +418,"Occupation, shrub land, sclerophyllous","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0003211810365105118,0.00039768070190988967,0.0007509570187025596,0.0003260166096756951,0.000414746352333486,0.0005768137892907376,0.00033431281175996477,0.00047602614064333796,0.0007699211180614921,0.00033729428511479795,0.0004831252701805829,0.0007777373424293048,0.00034608286357470393,0.0005017785121219189,0.0007788851196711994,0.0003315957996337542,0.0004666372375026363,0.0007791251195901762,0.0003620600601402237,0.0004732240451982016,0.0008332991583948061,0.0002102016418121702,0.00021954461921483792,0.00023220303126405807,0.0002451440518496815,0.0002564678448261833,0.00027187248739224705,0.00024028995012806051,0.000251202699232312,0.00026607581971650925 +419,"Occupation, traffic area, rail network","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.000226570376554987,0.0020750450227220605,0.01253143106822164,0.0007714933532845647,0.00465302078944882,0.023043766836417436,0.0007837374043386913,0.004688785017484319,0.022960437249830944,0.0007852107357276525,0.004690062611190716,0.022956869714754014,0.0008885606582712682,0.0048906587442300396,0.022982548877700983,0.0012987774582173758,0.005757005566064451,0.02576735382318778,0.0006358896748359131,0.004266003929636493,0.025616445788559317,0.011895480898831993,0.012301743763854857,0.012850423948866816,0.023622992438862133,0.024408355709127,0.025468837660380647,0.023743202366403725,0.02453512796264262,0.025604843520637514 +420,"Occupation, traffic area, rail/road embankment","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0012025589894272268,0.004198387491630439,0.017437050708379163,0.002913651651858578,0.009884752498220519,0.03191661030165222,0.0038225111933555154,0.012435754532135131,0.03217706355886006,0.004883601419782317,0.014539943169031264,0.03388117756753936,0.009467099477706714,0.02429650918615139,0.03381749023998196,0.007439985499239544,0.0197473026207427,0.03593145623190863,0.008184026658691517,0.020862733866200606,0.03651103934762132,0.012939646477104907,0.013406830807425529,0.014039179742035227,0.029418543617195626,0.03049475277755982,0.03195116143320237,0.02928884750489439,0.030360366130655667,0.03181137870552136 +421,"Occupation, traffic area, road network","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0035292338510297685,0.005091464968709189,0.011070140547731516,0.00575212285593768,0.01374879130954381,0.029940794310166212,0.005540429382273625,0.013981211885212588,0.030961776295870803,0.0055638667614605515,0.013971495262470195,0.030948691373949257,0.005647527203055498,0.013881226411806447,0.030625437407023826,0.006262438975087893,0.014694470553645353,0.030748765463092072,0.007342933366844063,0.01527636147414024,0.03257053213388266,0.005428210553862531,0.0059903720067071035,0.006792474992943553,0.02202937779520126,0.02333201662643979,0.025143873203407236,0.02173055081135298,0.02304512763217763,0.02487794663698527 +422,"Occupation, unspecified","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4179914553267396e-06,5.670296942508507e-06,1.0972765648595188e-05,1.483704048969191e-05,4.854839738981651e-05,0.00018808680290550962,0.0,0.0,0.0,0.00016384841260376698,0.00017024192701027734,0.00017895027783521088,6.604669223323491e-06,7.200979911662543e-06,8.044886507120152e-06 +423,"Occupation, unspecified, natural (non-use)","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.632355457663052e-05,9.919113375140419e-05,0.00015492410736006295,0.0,0.0,0.0,6.23532499406915e-05,6.515161491610497e-05,6.893737453423366e-05,0.0,0.0,0.0 +424,"Occupation, urban, discontinuously built","('natural resource', 'land')",natural resource,square meter-year,biosphere3,4.1957537196643494e-07,7.683592270069916e-07,9.181086289700842e-05,2.0448849757524998e-06,4.185778259112486e-06,0.00028758474559607876,1.7299306437901191e-06,3.6262782362661997e-06,0.00020693437612358395,2.5081344903151337e-06,5.3941750568958755e-06,0.00024000508522723185,6.716096775591989e-07,1.2439429808344735e-06,7.617778364849863e-05,6.225367312225967e-07,1.1277047617399758e-06,7.465938963858221e-05,7.886871121411794e-07,1.3679943767884439e-06,5.4000735742913464e-05,9.73793460120616e-05,0.00010164646364934581,0.00010742431484112117,5.6493923860852785e-05,5.905144739080443e-05,6.252436255870157e-05,7.895760186757865e-05,8.245429775522261e-05,8.719355970450017e-05 +425,"Occupation, urban/industrial fallow (non-use)","('natural resource', 'land')",natural resource,square meter-year,biosphere3,0.0,0.0,0.0,6.158243773584082e-07,1.429464285612522e-06,1.7471280115405311e-06,6.277112281686478e-07,1.4484392561517723e-06,1.7356805358035397e-06,6.155882467558464e-07,1.420729141071726e-06,7.817324687666608e-06,6.126169849319367e-07,1.4226742739962845e-06,1.8667317661552852e-06,6.087899824008064e-07,1.4110144862369913e-06,1.8448451315666255e-06,6.117073282095438e-07,1.4081983993236684e-06,1.838922359776909e-06,0.0,0.0,0.0,5.920980381293875e-07,6.184909377201111e-07,6.543087232163535e-07,6.062891555731697e-07,6.339803710787744e-07,6.717516509947069e-07 +426,"Oil, crude, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.16206262058490983,0.9459841186189073,3.563071864175363,0.13902897130366026,1.0490862815090056,3.951179916575258,0.1029367661082911,0.9944916202634477,3.9118746153764934,0.10211336288349537,0.9770324144735043,3.8780883358940823,0.09411931182869611,0.9165781959403478,3.6815677166803633,0.11226704174266836,0.9562379038793816,3.7291296758070502,0.10239507196931491,0.8580369213153645,3.430840419005852,3.2376145537142147,3.6260909498650284,4.180799050746268,3.244603333480631,3.631094680834823,4.183413545803855,3.5613655628926093,3.974226201690366,4.5640614675982825 +427,"Oils, unspecified","('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,7.387446970534143e-11,1.4112002958910364e-10,1.6015689109299047e-10,8.374163190441751e-11,1.7152974222396147e-10,1.9352992324003454e-10,1.1381897545038829e-10,2.308976315942646e-10,1.5545025457223266e-10,3.136850032327356e-11,4.81545549953258e-11,1.105839174166185e-10,3.382118716642054e-11,5.42238664678026e-11,1.1209483395983707e-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.010953150833114e-11,7.779739699252862e-11,8.866381984902811e-11 +428,"Olivine, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,7.0980425227404346e-09,4.073225928173244e-08,1.705063941459073e-07,8.024658249011255e-09,4.2418419414724425e-08,1.7017170788502795e-07,7.737589226588668e-09,6.514267509189541e-08,2.4493666813083044e-07,7.859737459364256e-09,6.540616008941887e-08,2.450572653887346e-07,6.941112519803642e-09,4.291710257682387e-08,1.72317247252403e-07,7.468521577977395e-09,4.377313208882837e-08,1.6924003246971112e-07,9.274457713644064e-09,4.624914902133069e-08,1.73154480212297e-07,8.643885101437316e-08,1.7578280148346684e-07,2.873914360003875e-07,9.737626898396766e-08,1.7685252272545771e-07,2.762185231409333e-07,9.717365983067011e-08,1.7479710861129743e-07,2.718799377628323e-07 +429,o-Nitrotoluene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.7895130807009434e-14,4.993041137033678e-14,1.7051494849008763e-11,4.170417099618728e-12,9.36374569287354e-12,2.000972420752184e-10,3.000196133406004e-12,6.838993750906455e-12,1.3800610809546864e-10,4.211076524111512e-12,9.589893629098011e-12,1.0781730815716921e-10,4.470048885524485e-13,1.1093427593422953e-12,1.7068925920736606e-10,3.7169482247941055e-13,9.22476251526304e-13,1.6890604476568173e-10,7.609154824440001e-12,1.0290445752277299e-11,3.000003420482893e-10,1.818361039384987e-11,1.89559170557233e-11,1.9998610178782408e-11,3.099119676037391e-10,3.247538223270645e-10,3.450002345539301e-10,1.8022389994235138e-10,1.8788187385173148e-10,1.9822148711757956e-10 +430,Orbencarb,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.1529895452982084e-08,1.58941660723207e-08,3.5560300157642584e-08,1.3490099676250635e-08,1.6296891948359312e-08,3.661689755389126e-08,1.202722412542904e-08,1.5073518101106973e-08,3.504280392977806e-08,1.2037168846413622e-08,1.507167010388168e-08,3.500730805363614e-08,1.2063327001276004e-08,1.5082594290599468e-08,3.4737430616628015e-08,1.2187178184443663e-08,1.522942885528493e-08,3.445412974431996e-08,5.1914880611507165e-09,6.0968022298639305e-09,1.376109135634039e-08,1.885365279242076e-08,2.3283655385141803e-08,2.971866887388333e-08,7.22410668332084e-09,8.867182372900828e-09,1.1251902939948756e-08,1.9205551054137782e-08,2.362690253683178e-08,3.0045833108555405e-08 +431,Oxamyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1234166698219985e-09,1.339220800193085e-09,2.9524328585761693e-09,0.0,0.0,0.0,1.5527800231093514e-09,1.9032546161271916e-09,2.411867773968056e-09,0.0,0.0,0.0 +432,Oxydemeton-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.314023984299183e-12,3.995324776796667e-12,5.802318492457653e-12,3.1523974415966446e-12,3.9015611543638976e-12,5.860100134303949e-12,7.832267079216118e-14,9.921227325060915e-14,1.519876639659692e-13,7.836455294848034e-14,1.0080103722083199e-13,1.5473985204294479e-13,9.10818648309053e-14,3.543389591872432e-13,8.644538393995607e-13,1.1596320753287942e-12,1.4463368501060183e-12,2.259935447431814e-12,0.0,0.0,0.0,8.797107256594621e-13,9.291983235409941e-13,9.973130774037807e-13,7.768617241153953e-13,8.113789871366573e-13,8.578244560509794e-13 +433,Oxyfluorfen,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.159931109829367e-12,9.22208481625437e-12,5.488489336312619e-12,0.0,0.0,0.0,3.5030394519630705e-12,3.7124005862569795e-12,4.003786155707242e-12,0.0,0.0,0.0 +434,o-Xylene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.2521307773349323e-10,8.618220519962945e-10,1.3017060175886346e-09,2.026476256279731e-10,8.228507007771347e-10,1.22293317519441e-09,2.0446293424483175e-10,8.290408636121038e-10,1.2204082394530718e-09,1.7691687765335902e-10,8.016896000387389e-10,1.3046798822815974e-09,1.7841759629432986e-10,7.997856315384031e-10,1.290466120336556e-09,2.1851827706369277e-10,8.38462632515653e-10,1.345475006217447e-09,0.0,0.0,0.0,6.546854120903894e-10,6.861122435327641e-10,7.285798175269596e-10,6.294685825484271e-10,6.593861042628415e-10,6.998527288108915e-10 +435,Ozone,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.560988034369476e-09,6.682284934155941e-09,5.0285941720794944e-08,1.0001599192348656e-10,1.9999590061965857e-10,4.071619959106125e-10,7.12511333319892e-11,1.3709302952295563e-10,2.664814154330492e-10,7.162486502811794e-11,1.3775115137354457e-10,2.682706329649223e-10,5.1866084981794006e-11,1.2274139098783565e-10,2.7181998902224497e-10,4.418308118368451e-11,7.135507136806472e-11,1.3074408876724304e-10,4.424798066516184e-11,6.797819936742871e-11,1.2598790740005144e-10,3.828855302353975e-08,4.016149594108086e-08,4.271108932308473e-08,5.490035669411193e-11,6.417726960729787e-11,7.755304721738718e-11,5.814223460445219e-11,6.75529662375447e-11,8.112478451013003e-11 +436,"PAH, polycyclic aromatic hydrocarbons","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.801893599637957e-07,3.924571571591365e-07,3.681642391434043e-07,1.7425573963492126e-07,3.7963829944844037e-07,3.0319225387346744e-07,2.3647841460905332e-08,5.3634201632229525e-08,1.539742520268641e-07,2.8368935168186392e-08,6.625337519618346e-08,1.6108094125961852e-07,7.023839144135249e-08,1.5594040093791265e-07,1.688553114191421e-07,2.3225356800975007e-07,4.477790307509463e-07,7.873341794012116e-07,2.7785654150706825e-07,5.058825042711465e-07,8.29611769800625e-07,2.3824879429063937e-07,2.499950466386724e-07,2.6574885388017483e-07,5.485506150032804e-07,5.800755917358914e-07,6.228002039821712e-07,5.482901822491636e-07,5.801202304474363e-07,6.232284131337774e-07 +437,Paraquat,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0071138958415505e-11,2.965030204046514e-11,7.704774376682163e-09,1.220408244456888e-11,3.633568855793555e-11,7.774437598184695e-09,1.6569924736990812e-11,4.539214719253616e-11,7.787843091291449e-09,2.1861583994964066e-11,5.614001774721939e-11,8.384049916792241e-09,1.722185801988558e-11,3.983177837919451e-11,9.035486338353085e-09,6.731921421357024e-10,1.5899369025052596e-09,2.637204386771799e-07,0.0,0.0,0.0,2.8125422160399857e-07,2.9323134727198593e-07,3.0940591119914185e-07,9.648346701898748e-09,1.005903686915783e-08,1.061361362140379e-08 +438,Parathion,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.9126460935432917e-11,3.724953725448317e-11,2.7650046481064153e-11,2.2391524091813365e-11,4.6111525541160935e-11,3.459389576867827e-11,3.0931871539526956e-11,6.260842766206122e-11,3.3798923875508343e-11,7.445603183104977e-12,1.0269250862632537e-11,2.280767365988149e-11,7.562318482277678e-12,1.0709030653072867e-11,2.2863481747786905e-11,4.419691105233137e-12,5.112416585463813e-12,7.481513941712579e-12,0.0,0.0,0.0,2.1840994333242235e-12,2.3230349400667625e-12,2.5163236483992076e-12,1.3752255991884713e-11,1.4921895971943424e-11,1.65631534096528e-11 +439,"Particulates, < 2.5 um","('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.00022889222324251298,0.0005277056129627845,0.007885632107788563,0.000206661570184367,0.00047634002116868796,0.007730813634708761,0.00016111337305164643,0.0003885738333917646,0.004172005338284175,0.000161833636459271,0.00037293332088225153,0.004137314668802312,0.0001799978840200973,0.0004105331954799524,0.004106694594664096,0.0001701471763073797,0.00038104390787013645,0.004067468065692297,0.0002022036470966479,0.00038348344838817826,0.003964704621212714,0.0014209320888177875,0.0014913259419720277,0.0015871770574912283,0.0010235900003040378,0.0010760430187811297,0.0011463063108031267,0.0011575234773933522,0.0012247802342871738,0.001316464548622734 +440,"Particulates, > 10 um","('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.504899303397136e-05,0.0003075620979782102,0.0022744133020717395,0.00010634098729029395,0.0003903121340567931,0.0022699684623535663,7.568681234312305e-05,0.0003275930691271419,0.0013664882920538168,7.747741790323516e-05,0.00032683654088312307,0.0013581748955411369,6.514989960552395e-05,0.00029875940008196344,0.0013371310006563277,6.411923967441717e-05,0.0002939567248675353,0.001327415706565371,7.314504890871187e-05,0.0002874696419838456,0.0012737129458778858,0.0004453953653233565,0.0004750270348299945,0.0005149530760847814,0.0003224753444806895,0.00034433110895997144,0.000373225506851642,0.00038622451814283496,0.0004150659955549063,0.00045402828929111416 +441,"Particulates, > 2.5 um, and < 10um","('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.458224145244176e-05,0.00023829411089477693,0.0012548011384862006,7.761556263546804e-05,0.00028821652760646936,0.0012520114914383834,7.045217211409625e-05,0.00027483399235457627,0.0008347398129910013,7.101050771634684e-05,0.0002733107653974027,0.0008297813737154037,6.842797721832655e-05,0.0002657125764867556,0.000840421412120191,6.862832402496136e-05,0.000263315333546576,0.0008351589978600273,8.04408748804623e-05,0.0002705140522707919,0.0008317516087122493,0.0002843472879316798,0.0003053766707957765,0.00033309807279644285,0.0002437698066718282,0.00026253210193784917,0.00028721881010813807,0.00026057258857396684,0.0002811613286483145,0.0003084449223184174 +442,"Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.128736993269095e-10,2.120878584962629e-09,7.19715512604586e-09,3.005496836078491e-10,8.832508513687263e-10,1.4936823479981053e-09,3.843590180444378e-10,1.075779126503197e-09,1.726091034040617e-09,4.452194554724728e-10,1.306734403212676e-09,2.148876861979191e-09,3.853987353562534e-09,4.96312440473544e-09,1.175088761518577e-08,3.927842555644766e-09,5.141296852872689e-09,1.1920697596969097e-08,0.0,0.0,0.0,6.9310768557225e-09,7.494050073609575e-09,8.294395974263255e-09,0.0,0.0,0.0,7.263035174410357e-09,8.680245551945936e-09,1.0731700081489602e-08 +443,"Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.115737261943429e-10,5.096851984155409e-09,1.7296055771129484e-08,1.283656463004071e-09,2.9348325660940825e-09,6.165860813573676e-09,1.716191307705909e-09,4.035506400920427e-09,8.300955890547963e-09,2.0423772869173417e-09,5.122536786793392e-09,1.048143630811383e-08,2.567839549600096e-09,5.95056147294472e-09,1.2755805654692108e-08,2.630473348234037e-09,6.0502399252670854e-09,1.2812065731507886e-08,0.0,0.0,0.0,1.665662191099816e-08,1.8009547615080365e-08,1.9932922487526666e-08,0.0,0.0,0.0,9.784029329547483e-09,1.0504349158322237e-08,1.1505059905943669e-08 +444,"Peat, in ground","('natural resource', 'biotic')",natural resource,kilogram,biosphere3,1.527899599070046e-05,5.599289474556843e-05,0.00011090835613448075,0.0006972053389733879,0.0028062098519542602,0.006078675150512285,0.001363090061012353,0.005715214015725728,0.012522650124143355,0.0013687830503848269,0.0053816644291234065,0.011437546890499497,0.0013254582733590967,0.003749244234323749,0.004324990094894856,0.0010699163332883103,0.0032094302127817402,0.004552419881378031,0.002667080412980401,0.00654831834291569,0.00421288262175652,6.707377453882567e-05,7.864807614281504e-05,9.36828253553842e-05,0.003975674954512263,0.004128743500693119,0.004334354174952926,0.004387031847573599,0.0045643270486881845,0.004804062444358661 +445,Pendimethalin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.9433094735717305e-09,6.794066039439056e-09,2.780069767179129e-07,8.519012320323768e-10,2.007603081194269e-09,7.80706877236739e-08,4.776434379820186e-10,1.1033588031369593e-09,2.4410154286842534e-08,1.5053265152773977e-10,3.6278419863435956e-10,3.992333473810712e-08,1.2026941794048363e-10,2.9318468465893467e-10,3.960678029204416e-08,1.8543663220279774e-09,2.65502863207738e-09,1.1416000418808572e-07,0.0,0.0,0.0,1.1960221735756626e-07,1.250638825077395e-07,1.3248535862822482e-07,4.223880260774097e-08,4.403432307456785e-08,4.6458700348851263e-08 +446,Pentane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.597821171136108e-05,0.00012045405771923759,0.00030076962893434476,3.398672367825826e-05,0.00012746039180458723,0.00032091284020356224,8.71503487382323e-06,7.27281453738323e-05,0.00029262337965943436,8.493909707925368e-06,7.156478552057366e-05,0.00029128357456644453,8.280418445103268e-06,6.892670126702585e-05,0.0002814620915150921,9.582827789984536e-06,7.177346753555798e-05,0.00028489192218231386,2.4999125167679434e-06,8.803396037282465e-06,3.8967960747652436e-05,0.0002615281138027254,0.0002886553931001931,0.00032768980213363874,3.634560835430646e-05,3.924812495160499e-05,4.335356409059383e-05,0.0002734708429774246,0.00030200713229294317,0.0003431017322257195 +447,"Perlite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,1.7043821831708516e-09,6.205449015820167e-09,1.8539111786067e-08,7.617880383382521e-09,5.094666237091934e-08,1.1645328963075794e-07,8.044854641373751e-09,5.179482918107552e-08,1.1764817556532401e-07,7.895029067394831e-09,5.801708493408802e-08,1.310595047669757e-07,4.760314180370763e-08,2.357211024645133e-07,5.741142976905387e-07,4.580110894432993e-08,1.899935899855715e-07,4.692894395184822e-07,0.0,0.0,0.0,4.0489322942297896e-07,4.2115173541221174e-07,4.431474930193078e-07,5.049759409248137e-07,5.261531522370333e-07,5.549615338743066e-07 +448,Permethrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.615029872938091e-13,6.740989611883146e-13,9.94353815510498e-12,4.0446083743952393e-13,9.980808820339798e-13,2.064001432602365e-11,7.520138513334784e-13,1.7701827980562278e-12,2.2591436181023687e-11,9.551567658992654e-14,3.0611141774684717e-13,3.662437245547513e-11,7.910152568920129e-14,2.4537005588582356e-13,3.611958295660964e-11,4.5824813939066067e-11,5.391681515298287e-11,1.4946352635985575e-10,0.0,0.0,0.0,9.372060705427866e-11,1.0948060977022883e-10,1.3222511002122375e-10,3.85346764433159e-11,4.017206188875439e-11,4.2382744948470184e-11 +449,Phenmedipham,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.5250149293266115e-13,1.4098134808442603e-12,3.594753214679577e-12,1.3244616153348367e-13,5.675294602960644e-13,9.423629776140708e-13,1.8582695633666387e-13,6.351425222512761e-13,8.034763841006806e-13,1.7195197606221814e-14,3.003533194602322e-13,8.313599129872195e-13,1.4605476694005674e-14,1.6264314320343438e-13,4.3818880500992085e-13,9.340686330667285e-15,3.219108667114956e-14,7.779064894066855e-14,0.0,0.0,0.0,6.55915074481282e-14,6.947999235363564e-14,7.482805312796641e-14,4.326664325579287e-13,4.523739671264743e-13,4.789400536979151e-13 +450,Phenol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.567429404311638e-08,7.41584149625333e-08,1.3925067084719868e-07,4.932502936245702e-08,8.829456383149177e-08,1.6135923888052336e-07,4.375870996189409e-08,9.023816369814519e-08,1.6489901947348696e-07,4.524592762875184e-08,9.317049021468252e-08,1.6620945545576343e-07,4.1649280971170874e-08,8.596292500606615e-08,1.6514630178815529e-07,9.184209930007612e-08,1.9618094001004499e-07,2.930500947074204e-07,1.1445138857547168e-07,2.3444726358201477e-07,3.1987445616330915e-07,1.0722189829445682e-07,1.1364849046406102e-07,1.2255352703945297e-07,1.9471344578400155e-07,2.0580723828523972e-07,2.2105640023442766e-07,1.85504587580655e-07,1.9626093700813074e-07,2.1106974677683403e-07 +451,"Phenol, 2,4-dichloro","('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.939112143991638e-14,3.0260574362117735e-13,2.0880948552425395e-10,1.998656608524501e-11,4.5913542486390494e-11,1.7119268108517009e-09,1.1341104483931502e-11,2.6698837359292193e-11,1.0187836227628995e-09,1.8680596795781695e-11,4.307877425880926e-11,9.937178987820213e-10,3.7564911564030635e-12,9.427165803124057e-12,1.527627845280271e-09,3.1050295275060154e-12,7.844107468680244e-12,1.5152532901253424e-09,1.0991350054126416e-11,1.664861198296204e-11,1.0728234951083426e-09,2.2299317815308312e-10,2.3247652064102229e-10,2.452811769843442e-10,1.131934742105979e-09,1.1821349626797042e-09,1.2501742889775925e-09,1.616931465656401e-09,1.685643768592382e-09,1.7784179495114567e-09 +452,"Phenol, pentachloro-","('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.0443452257766742e-11,2.3331458795332854e-11,1.9534432757218467e-11,7.701186820752131e-12,1.5765238746868227e-11,2.2957208934083643e-11,1.2675005193011362e-11,3.051321233642535e-11,2.466837323799214e-11,1.708562559434069e-11,3.906154162610495e-11,2.3925746734683423e-11,4.566539689666861e-11,1.0016632101098e-10,2.3614735485984636e-11,3.233223756545766e-11,7.111815103588654e-11,2.264856416637719e-11,4.032035911947356e-11,8.779600014370465e-11,2.5366354962094224e-11,1.4956939752658686e-11,1.567013868613651e-11,1.6635875804347213e-11,1.978455998322657e-11,2.062641327382059e-11,2.1767464944308963e-11,1.8671801967710276e-11,1.946214723894818e-11,2.0535110007004787e-11 +453,Phorate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382533419519413e-09,2.7980099142580236e-09,6.315387738419814e-09,0.0,0.0,0.0,3.3153645730186078e-09,4.069422503059755e-09,5.163844060093679e-09,0.0,0.0,0.0 +454,Phosmet,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6235240768472804e-10,3.0810255659681495e-10,6.954182321484655e-10,0.0,0.0,0.0,3.650710084307277e-10,4.48104015170222e-10,5.686161255807402e-10,0.0,0.0,0.0 +455,Phosphate,"('water', 'ground-')",emission,kilogram,biosphere3,0.004606738033488837,0.005704937819635917,0.006609322759257842,0.005468896982301287,0.006550680766612631,0.007486783351702586,0.004851282219586995,0.005943510097938203,0.006817514279047523,0.0048722718034543665,0.005990007256547486,0.006908170338429279,0.004926191752092205,0.006150961924884411,0.007039748797487438,0.004925503563386368,0.00613938912498145,0.0071406043120994045,0.0006664890742766864,0.0010426560267457583,0.0019134516795267413,0.0017726043514950437,0.0018509990215915065,0.0019575201199504588,0.0006965359735174874,0.0007303124715373361,0.0007757430640973089,0.0018921360884038253,0.001981944264391901,0.002103666799512864 +456,Phosphine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.065601028390294e-14,1.1439879969776982e-12,3.291952041505158e-12,2.810512540148988e-13,6.005778355380719e-13,8.232672181254069e-13,2.8911034915907116e-13,6.507788159430191e-13,8.050183860052004e-13,3.960068921651085e-13,8.68413374717894e-13,7.104161371687925e-13,2.9228700381516867e-13,4.11147900988939e-12,1.1367336114876627e-11,3.1756522134255433e-13,4.098221330116564e-12,1.1201450836332501e-11,3.555149126133826e-13,4.143053686114228e-12,1.1294774897733515e-11,3.3745639461155275e-12,3.5129046760291298e-12,3.697805475128774e-12,1.1240925554699403e-11,1.1750614501253376e-11,1.2435860745836005e-11,1.1201372948089134e-11,1.1699446151764648e-11,1.2369532940312812e-11 +457,Phosphoric acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,-4.4082110348857e-29,-2.6449266209314204e-29,-2.36664027858755e-21,2.1643389927295176e-16,4.4276503509834014e-16,5.732633819833398e-16,2.228088086263044e-16,4.825132796281181e-16,5.629043528878632e-16,3.056138826803232e-16,6.511032364411764e-16,4.895530004698806e-16,8.706730076940477e-17,1.6619909258862013e-16,3.671126823938136e-16,9.546249033383711e-17,1.9001944196702803e-16,3.9021487545375086e-16,8.804735135343049e-17,1.7288161381481031e-16,3.765338725300121e-16,-7.395750870586094e-23,-7.395750870586094e-23,-7.395750870586094e-23,2.6654081755707595e-16,2.896314754209108e-16,3.2227915364831197e-16,2.797957653260249e-16,3.027642857299909e-16,3.3523736053129864e-16 +458,Phosphorus,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.3377465707321177e-07,8.42504876954863e-07,7.293762114486421e-07,4.203534684248431e-07,8.003287653018653e-07,1.2010454029739633e-06,6.179590338325002e-07,1.3732614514383794e-06,1.3215190756861956e-06,7.831588001315911e-07,1.695735991624523e-06,1.3123276988051794e-06,1.8382228239129538e-06,3.948678446416013e-06,1.396392993591243e-06,1.3380404571045957e-06,2.8585956854625363e-06,1.3467330148745862e-06,1.6605148478567226e-06,3.5000989200578825e-06,1.472011889137578e-06,5.959742115148153e-07,6.233594614061923e-07,6.60266642928619e-07,1.077989784281396e-06,1.126826465663006e-06,1.193431231946466e-06,1.0401627482212954e-06,1.0870933504557913e-06,1.151179123220694e-06 +459,Phosphorus trichloride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.3426134558437554e-12,4.847716809318108e-12,7.379346452823906e-12,1.26779824329962e-12,4.942100097691447e-12,7.360826812534753e-12,1.2465191759425282e-12,4.915311706543264e-12,7.2196537454793125e-12,1.0616465768872474e-12,4.675448556342699e-12,7.644805344563138e-12,1.1525740187574698e-12,5.046320620048399e-12,8.586621497202862e-12,6.028551202563428e-12,1.0650580688857293e-11,2.3603987443130705e-11,0.0,0.0,0.0,1.390997100199053e-11,1.571170729624539e-11,1.8292838387124862e-11,4.759046228223001e-12,4.976158038322999e-12,5.269888869835179e-12 +460,"Phosphorus, 18% in apatite, 12% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.914003805014316e-05,6.931545740729917e-05,0.00021125113828065334,2.0188656866559234e-05,2.5592844233809175e-05,0.0001792179295128164,1.8507762559660698e-05,2.3107706394271325e-05,0.00012222246190554185,1.9279912069628674e-05,2.4951577764857443e-05,0.0001670109447547518,1.8868391845085608e-05,2.467698292800185e-05,0.00016516968398859556,1.879470021300308e-05,2.446423731503631e-05,0.0001640437834236236,0.0,0.0,0.0,0.0001602625890141254,0.00016848753762135332,0.00017971038294859297,0.0,0.0,0.0,0.00015193703044658825,0.00016103461361297494,0.00017360815251562408 +461,"Phosphorus, 18% in apatite, 4% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.00013345485884686299,0.0001559210473987843,0.00021246468742665105,0.00024383521564253302,0.0002779869515978215,0.00042795566549525427,0.0002311052943411413,0.0002658420087356242,0.0004369176010869458,0.00023081923423953294,0.0002667241606456841,0.00047354205482560963,0.00023231884630489787,0.00027433778620203906,0.00048513215198088414,0.00023135387440518425,0.00027237346542485265,0.00048030886250921545,0.0,0.0,0.0,8.049632372801347e-05,8.632152786744496e-05,9.453454694486281e-05,0.0,0.0,0.0,0.00024614606630344725,0.00027265899484345176,0.0003104494684869489 +462,Picloram,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.5538487184951163e-18,1.869266221300417e-18,2.708566611299189e-18,1.478464443626301e-18,1.837299996876218e-18,2.7700422561692148e-18,4.247267399587994e-15,5.199592107633735e-15,7.71925382693944e-15,4.249805339812667e-15,5.253920538282211e-15,7.782322121414678e-15,2.5089997088728207e-15,2.9566514813555996e-15,4.410614567092554e-15,1.797057889329359e-15,2.039781074155505e-15,2.9267840038240134e-15,0.0,0.0,0.0,7.688945996663004e-16,8.195139077178178e-16,8.90149502101209e-16,1.3278288950693854e-15,1.4149634704590729e-15,1.5367824858955274e-15 +463,Picoxystrobin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.5190640755172134e-16,1.8642640317267088e-16,2.757520210096842e-16,1.4423319384385773e-16,1.8081054438350377e-16,2.747857621051661e-16,8.012635265884072e-14,9.809460528216223e-14,1.4563332097837606e-13,8.017422852432292e-14,9.91199337089025e-14,1.4682421586458282e-13,4.733439070527493e-14,5.5781112428967375e-14,8.321393113828791e-14,2.1198253481884672e-10,5.332279384031202e-10,9.23777510171148e-08,0.0,0.0,0.0,9.855291646645428e-08,1.0274310966042573e-07,1.0840096078981307e-07,2.505472270968304e-14,2.66987667886944e-14,2.8997222241761745e-14 +464,Piperonyl butoxide,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.817123975279372e-12,9.1803079044434e-12,2.072087153058592e-11,0.0,0.0,0.0,1.0877755450651819e-11,1.3351829591808995e-11,1.6942641339700645e-11,0.0,0.0,0.0 +465,Pirimicarb,"('soil', 'agricultural')",emission,kilogram,biosphere3,8.429676118676109e-12,2.3341535074614523e-11,8.135106335260477e-09,1.6342873794793193e-12,1.970266024411988e-12,2.861372135804039e-12,1.5545823983991206e-12,1.9240271600612823e-12,2.8898667413223728e-12,2.8462716231348134e-12,8.629344654028266e-12,3.2250736809070026e-08,2.973849029620514e-12,9.01769224761687e-12,9.014255120342665e-10,2.72646377123705e-12,8.302341919991086e-12,9.121929324732377e-10,7.310601064440917e-12,1.5914372164989633e-11,9.224673315768787e-10,8.675390353578537e-09,9.043793158323918e-09,9.541167322239396e-09,9.747592898637892e-10,1.016714819538037e-09,1.073422911651023e-09,9.719966282026704e-10,1.0139518650053576e-09,1.0706831654498622e-09 +466,Platinum,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.114310439839094e-15,1.83171341642603e-14,4.477013824055264e-14,1.1603709639425455e-15,4.1409179799626796e-15,1.3385868852303669e-14,6.274801253758263e-16,2.065762739699264e-15,4.931119629900535e-15,1.001607016868924e-15,3.253504678259567e-15,7.4452098087694e-15,8.298647631122e-17,6.920655809686793e-16,1.4125679348549237e-15,4.689466667616272e-16,1.1522773025436948e-15,6.176445658996653e-16,1.758092554493718e-16,5.201738626481484e-16,6.074850217976179e-16,3.6383691376314606e-14,3.793306896715296e-14,4.0045951009957703e-14,6.039733425169571e-16,6.292615374917834e-16,6.633977132405889e-16,5.990144702268957e-16,6.242342196868431e-16,6.58356583863945e-16 +467,Polonium-210,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,2.7543375990105407e-05,0.0001670678800239558,0.020706044038605587,0.0004111421885319471,0.0007747920766919659,0.020919021698825563,0.00021965297013297466,0.00034985347970992837,0.0012356149665650456,0.00022168402919458172,0.0003526780038244871,0.001230892744274853,0.00021675820537107976,0.0003385390330025733,0.0013503385542931786,0.00021278975767680702,0.0003227562897724705,0.0013289655741883053,0.00025185134756252405,0.0003552154063015712,0.0013581684291691782,0.0016617092376255468,0.001717036371915775,0.0017917387843925624,0.0004702251072568764,0.0004936245536451125,0.0005255756290298706,0.0004832786977261685,0.000507325293057419,0.0005401998571962192 +468,Polychlorinated biphenyls,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.712791271739075e-15,4.821800436814123e-14,1.3875443941728382e-13,1.3536848234547947e-14,8.658669413985085e-14,1.9211461522162666e-13,1.232434303544099e-14,8.339104359119999e-14,1.8078095883276833e-13,1.2527028506478651e-14,8.386955523317932e-14,1.805704481554387e-13,1.1700069694687412e-14,9.089754045283558e-14,2.0420284926270882e-13,5.874761626119885e-11,1.0808293061804422e-10,2.0163083601732367e-10,7.00360616457997e-11,1.1987490139020485e-10,2.1509104846885692e-10,1.4223745832638631e-13,1.4806848865095054e-13,1.558620076184784e-13,1.2730278792285853e-10,1.3514591397207516e-10,1.4579904579079636e-10,1.268162571934028e-10,1.3472208532575472e-10,1.4545169281016018e-10 +469,Potassium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.472541142472839e-05,5.6959362897877216e-05,3.720312414498456e-05,2.4186624890304434e-05,4.731370194737829e-05,6.75047864539308e-05,3.935125398672853e-05,9.187190985675353e-05,7.716639135428214e-05,5.2116259453372e-05,0.0001168347798265653,7.552732816549174e-05,0.0001345476690814062,0.0002930417983377858,7.664031085006937e-05,9.561377510756859e-05,0.00020848560532775462,7.31577674804953e-05,0.00011899052925824264,0.00025644475978708724,8.061728744071017e-05,2.9014592606981062e-05,3.0267623218798938e-05,3.1968323222584476e-05,6.195982618184084e-05,6.462722947369242e-05,6.824534250741624e-05,5.915613009873453e-05,6.169788877263603e-05,6.51514283806304e-05 +470,"Potassium, ion","('water', 'ground-')",emission,kilogram,biosphere3,9.813075790479697e-05,0.00017249356099872088,0.0002806037646640573,9.120851218544324e-05,0.00011775254357189636,0.00014064630984851782,9.497217104257822e-05,0.00014801151399506467,0.0002124960350437217,9.50105781861586e-05,0.00014748449312994963,0.0002111728534563305,9.588286891257092e-05,0.00015127379124844337,0.00021345494415079384,9.655649057611715e-05,0.000151513918227726,0.00021235070018034555,2.5731326129509254e-05,5.75304482668756e-05,0.0001239477169715011,0.00017155767185076342,0.00017905192297908162,0.0001892793381815187,7.571950325973368e-05,7.902240819783064e-05,8.347350769035681e-05,0.0001026664399676595,0.00010731139752886442,0.00011361227628473146 +471,Potassium-40,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,4.374464702942835e-06,2.6534038204447842e-05,0.0027978474326894602,6.008409704829136e-05,0.00011184083705526635,0.0028299346986910287,3.448867190465699e-05,5.48084318487013e-05,0.0001790815704751748,3.481802858360955e-05,5.5260108236460575e-05,0.00017830375693733133,3.401726500868483e-05,5.2974992084729294e-05,0.00019753442734933249,3.3402197924145656e-05,5.052791140698589e-05,0.00019436376945799886,3.952062449105234e-05,5.561780611440458e-05,0.00019892666689657072,0.00023167228014286023,0.00023946034869564117,0.0002499759533236369,7.294434830039174e-05,7.657648605698412e-05,8.153777688736027e-05,7.499715162599563e-05,7.87304419392027e-05,8.383582670098282e-05 +472,"Praseodymium, 0.42% in bastnasite, 0.042% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0733944569933066,3.143841039067342e-14,1.1349564065932126e-13,0.07339445699347937,2.9687510891770636e-14,1.1570697666086032e-13,0.07339445699347893,2.9180473657320456e-14,1.150595811551018e-13,0.07339445699347556,2.4854946593242884e-14,1.0944883866966964e-13,0.07339445699348557,2.5091936783346694e-14,1.0928463986934893e-13,0.07339445699348372,0.0,0.0,0.07339445699330661,0.06487737156494418,0.08181320726503143,0.10645158936581102,0.06487737156494416,0.08181320726503143,0.10645158936581105,0.06487737156503233,0.08181320726512377,0.10645158936590904 +473,Primisulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.6598185126657352e-14,1.5438846672820813e-13,3.330103249468421e-13,2.484695668998434e-14,1.209602513343717e-13,2.254751958213128e-13,4.036771338669042e-14,1.5332640136139005e-13,2.264019340203176e-13,5.481234024303129e-15,8.75976298804988e-14,2.416243360006595e-13,4.343036066863306e-15,6.244673703898567e-14,1.7114923182082964e-13,1.513098001650995e-15,1.767336959977181e-14,4.2077592928375923e-14,0.0,0.0,0.0,3.638354837845523e-14,3.8095804475275564e-14,4.040596325636379e-14,1.7146118540376798e-13,1.7891336992835063e-13,1.8891284442547622e-13 +474,Prochloraz,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,7.674041167456956e-12,9.251679049768575e-12,1.3436000933372341e-11,7.299774507252727e-12,9.034558029012497e-12,1.3569803032331043e-11,3.5516677875655805e-13,4.4250892822117306e-13,6.678229650734994e-13,3.553676163675629e-13,4.4841105359150316e-13,6.767767687171657e-13,3.1358048851718577e-13,9.414987951271108e-13,2.1822219421247255e-12,2.758789639426602e-12,3.432617721189511e-12,5.352889437763121e-12,0.0,0.0,0.0,2.0685283202123854e-12,2.185193544828856e-12,2.345811030113319e-12,1.8532424672565794e-12,1.9367365131728764e-12,2.049270916605901e-12 +475,Procymidone,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.3128840380784255e-10,5.081038147316897e-10,1.5238391292818705e-10,2.936744598657706e-10,6.595185252665763e-10,2.394691897892732e-10,3.9243114974636054e-10,8.776461140139385e-10,2.5743092716380635e-10,1.698241912463971e-12,2.6441268429122417e-12,9.2024887783835e-11,1.6575828889415362e-12,2.4806808261037057e-12,9.025761621244144e-11,3.6730764625317266e-13,4.1995497637683146e-13,8.795058749027106e-13,0.0,0.0,0.0,4.574875785809851e-13,5.242917039745046e-13,6.204220375550203e-13,9.395797334956644e-11,9.838603126305582e-11,1.0441898977010923e-10 +476,Profenofos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.563328109126887e-12,1.9921130890946286e-11,3.768514072552713e-11,1.1612497605213346e-11,2.920583963507167e-11,3.9858238754562713e-11,1.469174219997029e-11,3.518587469018416e-11,4.078472377074496e-11,3.165346964756529e-11,7.134668626645926e-11,3.992512429724008e-11,2.2538686754651886e-11,5.144944501803497e-11,3.8872094531515977e-11,5.728770424833553e-10,1.2700019629131086e-09,7.558369251019946e-10,0.0,0.0,0.0,4.824144506149432e-10,5.11246223127237e-10,5.513738355424517e-10,2.6775578263969005e-11,2.8480365712926916e-11,3.086678271163551e-11 +477,Prohexadione-calcium,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,9.36272273778046e-19,1.1263272379334161e-18,1.632048081336973e-18,8.90849443612518e-19,1.1070659743131473e-18,1.6690902596689631e-18,2.5591928679186303e-15,3.133016545940325e-15,4.651239839872741e-15,2.560722104935195e-15,3.165752166085333e-15,4.689241668870392e-15,1.511799047850791e-15,1.7815318505343693e-15,2.657618045702053e-15,1.08281814364853e-15,1.2290711219044923e-15,1.7635351875387314e-15,0.0,0.0,0.0,4.632978314228194e-16,4.937985211902832e-16,5.363600344499042e-16,8.00083974569527e-16,8.525869571895415e-16,9.259890667613517e-16 +478,Prometryn,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.5961061515329516e-12,1.0692061669530836e-11,2.0226354160149543e-11,6.2326552248200885e-12,1.567534695739497e-11,2.1392698494376348e-11,7.885346193286268e-12,1.888494906030166e-11,2.1889961174086934e-11,1.6989037991962132e-11,3.829316587025659e-11,2.1428597277618537e-11,1.2096955241432143e-11,2.7613926239560346e-11,2.0863415548739178e-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4370978014347479e-11,1.528597087487503e-11,1.6566807683824053e-11 +479,Propamocarb HCl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1439693106077771e-11,1.3434596327018985e-11,3.032322526161554e-11,0.0,0.0,0.0,1.591866579472884e-11,1.9539261935460604e-11,2.4794108158634015e-11,0.0,0.0,0.0 +480,Propanal,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.5065358538128972e-10,4.0971803720805607e-10,1.637495115112847e-09,8.446891246801178e-11,2.9963930419637006e-10,2.337704741079992e-09,7.834142711784025e-11,2.801056666367884e-10,1.7276899105339131e-09,1.0930912857495521e-10,3.559787593248075e-10,1.5778749171149893e-09,3.9618551103814913e-11,2.0090154580563985e-10,2.0380327000923107e-09,4.005723348983426e-11,1.9849116811891552e-10,2.020747755756305e-09,9.709414688300072e-11,2.6927693418263303e-10,2.169208723833545e-09,1.4785737525088942e-09,1.6038270440815824e-09,1.7700564900952636e-09,2.174166292269916e-09,2.2875834034582138e-09,2.4446505423785766e-09,2.115334022901412e-09,2.2018832171248824e-09,2.319653882107119e-09 +481,Propane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.2867826946188012e-05,8.423291649141395e-05,0.00021504196985228265,2.426040708243562e-05,9.337766867527255e-05,0.00023724885918530313,8.523452206664807e-06,5.926756754800394e-05,0.00022416867043045132,8.517092006629823e-06,5.8357982771618646e-05,0.00022260429894691686,7.894147002467449e-06,5.523730103014678e-05,0.00021615412274201938,8.862637490396959e-06,5.728448459563987e-05,0.0002186789218391673,3.713226481323451e-06,7.535258437079955e-06,2.2988728604189478e-05,0.00019275090564323702,0.0002132486127395239,0.00024280453579766785,1.8656559256101345e-05,2.0223968778475392e-05,2.2435795317209105e-05,0.00020780743219698454,0.00022983944049194226,0.0002615836270524035 +482,Propanil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.489744145804879e-11,9.169084556067243e-11,1.361229588783507e-10,7.494219638110093e-11,9.264886236292791e-11,1.3723505377118208e-10,7.380956840493617e-11,8.697840850721521e-11,1.2975071567150817e-10,7.21645585663814e-11,8.191157443897822e-11,1.1753094124264178e-10,0.0,0.0,0.0,3.0876447342075726e-11,3.290916555275525e-11,3.5745677483252897e-11,3.9061539671204595e-11,4.162483955903378e-11,4.5208477408596324e-11 +483,Propanol,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.2111959255069803e-11,4.901651553156723e-11,7.4187738191883e-10,6.175480198658928e-11,1.257852801837563e-10,2.897046263081835e-09,4.446606428239355e-11,9.414707578192797e-11,1.8175968027063414e-09,5.7861863933779395e-11,1.2432247600154807e-10,1.4966242191282845e-09,2.364864787984426e-11,4.940941306689588e-11,2.3576914672211257e-09,2.2562708640573785e-11,4.677387875055066e-11,2.3411774146566246e-09,4.2570637992986796e-11,7.150462276626923e-11,1.9086548568327273e-09,7.572032302908336e-10,7.932486721327448e-10,8.424337712662185e-10,1.9777539395440633e-09,2.0708307106703985e-09,2.197702111863294e-09,2.4729937522907387e-09,2.5833532411177817e-09,2.7330958785690965e-09 +484,Propargite,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.641883733678138e-10,8.974508510671426e-10,2.0256361751198693e-09,0.0,0.0,0.0,1.0633903555853637e-09,1.3052515182715213e-09,1.6562829970314844e-09,0.0,0.0,0.0 +485,Propene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.354858407112477e-07,4.163590903469072e-06,1.6655010151568712e-05,1.7450967071679254e-06,5.429836544574707e-06,1.868506054258164e-05,1.6639578271603267e-06,5.286758216944055e-06,1.7181414186385886e-05,1.6952492595370085e-06,5.299607217088794e-06,1.7059407960791095e-05,1.6001987130219232e-06,4.935945201166319e-06,1.7123994473097508e-05,1.680767697314721e-06,5.179367015770262e-06,1.8208072891215293e-05,1.6421311948222602e-06,2.8694306627642224e-06,8.485046526439822e-06,1.1547970045032025e-05,1.5313981343059332e-05,2.020559122821975e-05,3.6633612312706143e-06,6.995574816058938e-06,1.1168968797430405e-05,1.3246447319464054e-05,1.7653103002775358e-05,2.3369124821895512e-05 +486,Propiconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.7142207499321336e-12,4.7699897626371725e-12,1.7342108087863865e-11,3.716454232654262e-12,5.088680779436174e-12,3.00797230058105e-11,2.171254280959561e-12,3.5495947684172833e-12,2.8724872185848562e-11,1.4378005748822866e-12,1.9170099345038723e-12,4.5213242165384284e-11,1.0096863901164878e-12,1.5639351144372367e-12,4.4594670879442025e-11,1.9553513400122316e-12,2.4589232139310136e-12,3.6490306789590634e-11,0.0,0.0,0.0,3.645502602882468e-11,3.802427555105137e-11,4.0145373536834294e-11,4.6324234173550974e-11,4.8304116832487915e-11,5.097849449264734e-11 +487,Propionic acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.325371049194213e-07,7.228287157153188e-07,4.7470504646536077e-07,3.2251130478059503e-07,7.051583228568347e-07,3.4846118599073034e-07,1.0413098778935466e-08,1.8229466200666407e-08,2.240652644596784e-07,7.598844702748004e-09,1.993106498479412e-08,2.402343414328613e-07,1.345307122329697e-08,3.2532941938433674e-08,2.5821772740466057e-07,1.313904124597199e-08,3.2277955022935953e-08,2.592489075811659e-07,1.3093168655291195e-08,3.1089008876051195e-08,2.546498099473375e-07,4.104167306576601e-07,4.312191878185291e-07,4.5907770267310525e-07,2.542319661573688e-07,2.664106347508668e-07,2.8277053030049304e-07,2.5905414177846623e-07,2.7154259820504816e-07,2.883062749154168e-07 +488,Propoxycarbazone-sodium (prop),"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.190694440866415e-18,6.2443593560154345e-18,9.048076227716282e-18,4.938870224060557e-18,6.137574890477709e-18,9.253438101133142e-18,1.4188167483658638e-14,1.7369446453255266e-14,2.5786477714132168e-14,1.4196645575003453e-14,1.7550932759788293e-14,2.5997159887131892e-14,8.381415135516604e-15,9.876814010235032e-15,1.4733836579890084e-14,6.003144659019681e-15,6.8139712880642556e-15,9.777040497672026e-15,0.0,0.0,0.0,2.5685235499188238e-15,2.7376193985134332e-15,2.9735804622459477e-15,4.4356661976154435e-15,4.7267427754296265e-15,5.133684129850132e-15 +489,Propylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.0119157612107392e-12,1.4005477954508793e-12,6.8720706633258815e-12,2.312280540369378e-12,3.975796936228397e-12,5.528194116279225e-11,1.8972404072187312e-12,3.2636105037058127e-12,3.9229451040943084e-11,2.2321021848898738e-12,4.016975684352137e-12,3.141630548334354e-11,1.3374305477216722e-12,1.9861346253635774e-12,4.781591490764174e-11,1.2806392521406047e-12,1.8442473944695254e-12,4.7311307147542094e-11,2.1394716992786045e-12,2.8693461921415014e-12,7.860702562096986e-11,5.6614054511816105e-12,6.219138224679892e-12,7.0118293625096726e-12,8.098957572759462e-11,8.49070995136772e-11,9.02554582060128e-11,4.8866245815485066e-11,5.126084004209919e-11,5.453369415234916e-11 +490,Propylene oxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.879214247736258e-09,2.8657365650909513e-08,7.677837076725508e-08,5.4496471335438935e-09,3.524487706893784e-08,1.0267330405411139e-07,4.471558258621063e-09,3.3162043901197534e-08,9.773008937164287e-08,4.495006285235555e-09,3.2452449117376055e-08,9.514732938366606e-08,4.4792840241926485e-09,3.306673832377665e-08,9.593448698910088e-08,4.642497642039785e-09,3.336219285083155e-08,9.744322620871908e-08,4.675970629120188e-09,2.483910972493767e-08,6.063749052876841e-08,7.335899040569313e-08,7.688720727253268e-08,8.17230595743898e-08,5.5797475320277956e-08,5.8251414085070036e-08,6.156447156594118e-08,9.237051813045944e-08,9.857571297828699e-08,1.0729670096711195e-07 +491,Prosulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.433810696710308e-14,2.0243314988112018e-13,6.591471639050784e-13,4.0056756153542686e-14,7.814118688831334e-14,1.1590644558645912e-13,6.339831199808794e-14,1.460508738578099e-13,2.1733072400020588e-13,4.221531188831142e-15,1.988385802100858e-14,4.9749908587795255e-14,3.126766629746603e-15,1.4063693444143354e-14,3.5098237031196715e-14,2.47297983339758e-15,5.687184612455803e-15,1.117904149445936e-14,0.0,0.0,0.0,7.512312768479926e-15,7.883316775362427e-15,8.386709419443235e-15,3.2278883525120195e-14,3.37091017500007e-14,3.5632743502993503e-14 +492,Prothioconazol,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.8326085412481596e-10,4.0259493143109695e-10,1.2074105566212288e-10,2.326923073950529e-10,5.225680417592189e-10,1.897428818134263e-10,1.1707117226654077e-09,2.6182187458885493e-09,7.679752381644976e-10,5.066246619958158e-12,7.888038100335858e-12,2.745312573018876e-10,4.944950144573789e-12,7.400439564573636e-12,2.692590801337104e-10,2.5415645251531214e-10,6.378660696761751e-10,1.1029901037913216e-07,0.0,0.0,0.0,1.1767077501371086e-07,1.2267394671568322e-07,1.294295480047208e-07,2.802980879686226e-10,2.935079958039142e-10,3.1150568856671605e-10 +493,"Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.2295506760747835e-11,7.22469676282927e-11,1.5031485043099035e-10,4.400203301884387e-10,1.0060215009916527e-09,2.1135749439493786e-09,5.882875267064443e-10,1.3833178579605292e-09,2.84545715028216e-09,7.000997276889849e-10,1.7559373734429643e-09,3.592896744522868e-09,8.802211940961582e-10,2.039773208325505e-09,4.372520267063757e-09,9.016912260165752e-10,2.0739416541992486e-09,4.39180547221529e-09,0.0,0.0,0.0,1.3375585729234953e-10,1.457429807897717e-10,1.6291194704683577e-10,0.0,0.0,0.0,3.3538349266144433e-09,3.6007509694524407e-09,3.943781284636527e-09 +494,"Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,7.99275077345059e-11,2.589992759270458e-10,5.388660425144752e-10,7.072309636529015e-10,2.0783996449426356e-09,3.514821287121392e-09,9.044448270121832e-10,2.531442775434852e-09,4.061707947306525e-09,1.0476570444995155e-09,3.0749094314872486e-09,5.056575900200031e-09,9.068914246068561e-09,1.1678852412433263e-08,2.7651308130871775e-08,9.242704773266071e-09,1.2098114465943395e-08,2.805089225389587e-08,0.0,0.0,0.0,4.795034514630693e-10,5.224762768001802e-10,5.840255707874542e-10,0.0,0.0,0.0,1.7090830056494688e-08,2.0425703319405852e-08,2.5253032394764273e-08 +495,Pymetrozine,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.321544141323797e-11,8.598306713041052e-11,1.94072367327884e-10,0.0,0.0,0.0,1.0188141692808545e-10,1.2505367707216708e-10,1.5868533853549412e-10,0.0,0.0,0.0 +496,Pyraclostrobin (prop),"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.575234312699359e-13,1.481019283364504e-12,2.6685618196623482e-11,1.1559271332486867e-12,2.695748599268131e-12,6.5778661671502e-11,2.488414122059538e-12,5.349629713222664e-12,7.307316227069844e-11,6.076999574400512e-13,1.1251287274932788e-12,1.1859906322073195e-10,4.2952582534337416e-13,8.326882288633132e-13,1.170832911201312e-10,2.224603253185635e-10,6.370915407826725e-10,9.244868861073678e-08,0.0,0.0,0.0,9.849767288292858e-08,1.0268768831622373e-07,1.0834556917274047e-07,1.246948153725417e-10,1.299950421212645e-10,1.3715152735333986e-10 +497,Pyrithiobac sodium salt,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.075591034083808e-13,7.154841059015892e-13,1.3534934018250131e-12,4.1707258045914534e-13,1.048952199189538e-12,1.4315420381623404e-12,5.276662298754796e-13,1.2637301682762273e-12,1.4648175237294962e-12,1.1368608817160231e-12,2.562476011619282e-12,1.4339442884648917e-12,8.094958177383193e-13,1.8478499222438318e-12,1.3961238421984987e-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.616673259703666e-13,1.0228961954731948e-12,1.1086063613255885e-12 +498,Quinclorac,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2509273698547673e-12,1.531408630844098e-12,2.2735080346106147e-12,1.2516748607849323e-12,1.5474093034353527e-12,2.2920820995198762e-12,1.2327578549746215e-12,1.452702117321788e-12,2.167079653617449e-12,1.2052831021883797e-12,1.3680764977466348e-12,1.9629865446161313e-12,0.0,0.0,0.0,5.15694420865886e-13,5.496446169109293e-13,5.970196714652398e-13,6.524007780792235e-13,6.952126809214201e-13,7.550661362918031e-13 +499,Quinmerac,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.913123666658423e-36,1.058411411875592e-34,2.9097838635144386e-34,0.0,0.0,0.0,2.9190583738107032e-34,3.0477446273588474e-34,3.220223247757025e-34,0.0,0.0,0.0 +500,Quinoxyfen,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.539233704510744e-17,5.4606578704655654e-17,7.912492835232641e-17,4.319014813726965e-17,5.367275444683053e-17,8.092080666270134e-17,1.24074747254242e-13,1.5189485753656075e-13,2.25501334731752e-13,1.2414888769852496e-13,1.5348194534320343e-13,2.2734373879079526e-13,7.32950134848532e-14,8.637219423722817e-14,1.288465889526089e-13,5.249716920970811e-14,5.958780339604026e-14,8.549968033928327e-14,0.0,0.0,0.0,2.246159689269063e-14,2.3940330769778515e-14,2.600379726830565e-14,3.878965646162568e-14,4.1335105094236744e-14,4.489378481330317e-14 +501,Quintozene,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4307327757797397e-09,1.6802301526969346e-09,3.792447213997264e-09,0.0,0.0,0.0,1.9909062846348477e-09,2.4437248627532447e-09,3.1009348642330803e-09,0.0,0.0,0.0 +502,Quizalofop ethyl ester,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.9692708246099385e-11,6.523507549468621e-11,2.3082968401314025e-11,3.773165414587559e-11,8.474729508370066e-11,3.823426122636437e-11,5.0496128370482106e-11,1.1294295593746153e-10,4.125704320305835e-11,2.509804364920158e-13,4.2276910162457925e-13,2.5286732729684838e-11,2.400662094254922e-13,3.877098006465039e-13,2.489676915022381e-11,7.10123093657313e-14,1.1405351966563566e-13,1.0550382595167769e-11,0.0,0.0,0.0,1.1194046224029573e-11,1.167604682870453e-11,1.2327631781476147e-11,2.626635236095415e-11,2.7438151079901172e-11,2.9027228827006127e-11 +503,Quizalofop-P,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.327112487376486e-11,7.30913664085673e-11,2.1920615613699226e-11,4.224543671694971e-11,9.487256105126738e-11,3.444794112348914e-11,5.64517095157795e-11,1.2625048627763758e-10,3.703175940552098e-11,2.4429421362558564e-13,3.803609385925642e-13,1.3237894689882194e-11,2.3844536246857305e-13,3.56849025601169e-13,1.298367047396971e-11,5.2837662256436204e-14,6.041104624709121e-14,1.2651801519710654e-13,0.0,0.0,0.0,6.581015780686264e-14,7.542001442402666e-14,8.924848260360586e-14,1.3515971455542425e-11,1.4152953099873228e-11,1.5020801692886316e-11 +504,"Radioactive species, other beta emitters","('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,0.0001366447034373007,0.00035904958539467946,0.0004487667741452106,0.00014589610352410117,0.00042679585533445614,0.0006388246798743106,0.0003867113139894908,0.0009707332855663348,0.0006933555812191853,0.0003863417564415842,0.0009670484108357426,0.0006963231824983189,9.790306332799167e-05,0.00034401807943997215,0.000669507216358347,0.00042323738674146516,0.0010344588754944584,0.0006660542937721098,0.0004842448495371881,0.0011545781062963039,0.0006647072714698146,0.00038160945449412553,0.00039791012875982113,0.00042014127213413225,0.000554765831040375,0.0005783821853993955,0.0006104805115354785,0.0005674611854223779,0.0005918803575707611,0.0006251387422601515 +505,Radium-226,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,3.888472084196229e-06,2.358603637644683e-05,0.0029285931078298463,5.8100675567675765e-05,0.00010950517820045476,0.0029586791790125683,3.1014006660130744e-05,4.9399000393891977e-05,0.00017462772648511047,3.13005944881281e-05,4.979756254205012e-05,0.00017396137216408862,3.060556797147076e-05,4.780231054692996e-05,0.0001908215663335985,3.004514134945229e-05,4.557348164886825e-05,0.0001878017230633268,3.556066378742186e-05,5.015667596962407e-05,0.00019192533350073518,0.00023494819482061509,0.00024277005052202434,0.00025333107761418524,6.640359156394953e-05,6.970794881525369e-05,7.421990609148444e-05,6.824665022523072e-05,7.164238337568286e-05,7.628473774740565e-05 +506,Radium-228,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,2.105868463938899e-05,0.00012774284030200498,0.0011368792558497831,0.000158170474337643,0.0002565343439838681,0.0012475631962247675,0.00015600734003489632,0.0002447516150684182,0.00043074088500834345,0.00015773830119878468,0.00024695022969248304,0.00042629916392330943,0.00015348003613569784,0.0002350890356084078,0.0005254589427176719,0.00015089853401871562,0.00022479739127830898,0.0005158119399647603,0.00017821179900922668,0.0002476656848702393,0.0005359010713560397,0.0003050132975881006,0.0003173984682200984,0.00033412663232577916,0.00030745118436400587,0.00032281574002637027,0.0003438473713699119,0.0003168135925628395,0.00033262281778658083,0.00035428142197266635 +507,Radon-220,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,3.24724338206132e-07,1.9673141248642046e-06,0.05953118838950315,0.0006345868364321048,0.0013634021171460065,0.059743154725483485,5.030871662512515e-05,9.492879786557876e-05,0.0020873248946603343,4.939865522383363e-05,9.434561991367266e-05,0.002090640167591139,5.1843642720360126e-05,9.956896177323846e-05,0.0020608186185663954,4.994711926475661e-05,9.21512536307044e-05,0.0020334862955913606,6.074323008966138e-05,0.00010045170287496849,0.002042959402378592,0.003915137226734041,0.0040364947277674165,0.004200327263911022,0.00021523197663595608,0.00022565628682752657,0.00023967873298975023,0.00021781320563388175,0.00022843563419953054,0.00024277108201643173 +508,Radon-222,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,3.244798118373078e-07,1.966737332231845e-06,0.03352256742455247,0.00035832633530897716,0.0007692992051372503,0.03364265099355462,2.9374603171130183e-05,5.5094542435564806e-05,0.001178026753997265,2.8875059320197734e-05,5.478348208137973e-05,0.0011798632175119865,3.0220112184112696e-05,5.763815004758745e-05,0.0011637392529252682,2.9135165752237112e-05,5.339325857859548e-05,0.0011482871673194086,3.539669829117529e-05,5.821979691736916e-05,0.001153754963076872,0.002206198420655473,0.002274603674102353,0.002366950772952594,0.00012324183677027328,0.00012921411330706642,0.0001372502903620052,0.0001247583556256447,0.00013084522343022244,0.0001390619236576367 +509,"Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.92945366327267e-12,2.960993278247057e-11,1.0853041650413759e-10,3.5138315136763106e-11,8.033697076903077e-11,1.6878188741228602e-10,4.697835698826438e-11,1.1046639128321921e-10,2.272271560580604e-10,5.590724660756491e-11,1.4022234217407977e-10,2.8691478641432376e-10,7.029104644764269e-11,1.6288836882829799e-10,3.4917249121337746e-10,7.200555983039515e-11,1.6561692820564064e-10,3.5071253271893453e-10,0.0,0.0,0.0,1.0012423981965244e-10,1.1061572469572874e-10,1.2573983639664704e-10,0.0,0.0,0.0,2.67824235669775e-10,2.875419918315263e-10,3.1493506044356683e-10 +510,"Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.5439602161234562e-11,9.274163224791349e-11,3.3992944302729986e-10,3.5408509078763623e-11,1.0405799099967869e-10,1.7597445571757686e-10,4.5282297952489375e-11,1.2674023119866557e-10,2.0335510399319166e-10,5.2452419161011434e-11,1.5394965145541107e-10,2.5316455974390776e-10,4.5404790412373146e-10,5.847181169700837e-10,1.3844015002768776e-09,4.627489704762735e-10,6.057090592749091e-10,1.404407239144146e-09,0.0,0.0,0.0,3.136003542633174e-10,3.4646086216161786e-10,3.938312771095416e-10,0.0,0.0,0.0,8.556763618869674e-10,1.0226414660575464e-09,1.2643284623448495e-09 +511,"Rhenium, in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.2491301399468596e-12,4.361778928848902e-11,1.666123754172266e-10,1.734253753988977e-11,1.5605007278759145e-10,5.846190488383117e-10,1.3281290065711792e-11,1.4683654861805307e-10,5.700278987305934e-10,1.2836821409002864e-11,1.3931278235007144e-10,5.459402611853314e-10,1.1714958698135148e-11,1.184595176838989e-10,4.671651842631296e-10,1.3219214892375267e-11,1.2035797578753724e-10,4.664230322675071e-10,0.0,0.0,0.0,1.57628451295955e-10,1.7316511862973585e-10,1.954991564614619e-10,0.0,0.0,0.0,4.5143605087067545e-10,4.962434654258099e-10,5.606579711129098e-10 +512,Rimsulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.6598185126657352e-14,1.5438846672820813e-13,3.330103249468421e-13,2.484695668998434e-14,1.209602513343717e-13,2.254751958213128e-13,4.036771338669042e-14,1.5332640136139005e-13,2.264019340203176e-13,5.481234024303129e-15,8.75976298804988e-14,2.416243360006595e-13,4.343036066863306e-15,6.244673703898567e-14,1.7114923182082964e-13,3.5084642497361563e-11,4.1218750793431414e-11,9.303702298114314e-11,0.0,0.0,0.0,4.8855578850328215e-11,5.996089692261475e-11,7.607871370484936e-11,1.7146118540376798e-13,1.7891336992835063e-13,1.8891284442547622e-13 +513,"Samarium, 0.3% in bastnasite, 0.03% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.017495191254000977,2.2434018508665657e-14,8.098893269614478e-14,0.017495191254124257,2.1184600638071885e-14,8.256691174060934e-14,0.01749519125412395,2.0822785821076514e-14,8.210493918609966e-14,0.01749519125412156,1.7736149028392017e-14,7.810119029414163e-14,0.017495191254128684,1.7905261977970132e-14,7.798402028207315e-14,0.017495191254127372,0.0,0.0,0.01749519125400098,0.015464955666735109,0.019501986482923114,0.025375089503245265,0.015464955666735105,0.019501986482923114,0.025375089503245272,0.015464955666798019,0.01950198648298901,0.025375089503315202 +514,"Sand, unspecified, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,6.068074028069265e-06,1.2030333069141183e-05,1.9322178459168733e-05,7.2304066239751164e-06,1.6215264088778264e-05,2.0179784563435148e-05,1.661335496559641e-05,3.815055176916788e-05,3.997003688052762e-05,1.663349831655511e-05,3.801697399126871e-05,3.939226809044232e-05,3.962803400996001e-06,1.0478252333754295e-05,4.353347351211417e-05,2.5662941941959056e-05,5.7122454408978815e-05,4.426319802032414e-05,1.3640157409567142,1.4131153307533404,1.5939544295540988,1.0498117001944888e-05,1.523614523662795e-05,2.1186778600254765e-05,0.2097839411697389,0.2197023869311548,0.2331865911156071,1.6025065524501308e-05,1.9562170681059757e-05,2.4038375103095977e-05 +515,Scandium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.082366632017827e-10,2.476332167089926e-09,5.5639008457852344e-09,2.8918043719033104e-09,4.597892246785048e-09,7.652797482646895e-09,3.011724411957238e-09,4.7209228906595245e-09,7.775914340237224e-09,3.0458593016089828e-09,4.764396275750617e-09,7.688847391025515e-09,2.9618556426928753e-09,4.531275093010917e-09,9.619231125399139e-09,2.9123422776869082e-09,4.33383910958114e-09,9.439852615923179e-09,3.4388711766621174e-09,4.774816577873491e-09,9.826590742668995e-09,4.830140172198254e-09,5.036688357095149e-09,5.315687790967904e-09,5.902486796680691e-09,6.197583790005574e-09,6.601595865955813e-09,6.083410397889908e-09,6.387092115814206e-09,6.803199851520386e-09 +516,Selenium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.248481589400418e-08,9.984595907019538e-08,1.2694350552793206e-06,5.470994831917321e-08,1.334432640341188e-07,1.3569721638707465e-06,3.5626081707510276e-08,9.439507322540974e-08,4.6691036984803367e-07,3.589995666361736e-08,8.849582204682577e-08,4.531142244948131e-07,3.2570883885988337e-08,8.266213106485296e-08,4.511720064514196e-07,3.154641003687458e-08,7.949690659804453e-08,4.492431140775735e-07,3.530834219646832e-08,7.042243765573401e-08,4.015047561134375e-07,3.791181634173159e-07,3.975781533145278e-07,4.2299313643856565e-07,3.482158958343988e-07,3.6311060576066184e-07,3.832445916837645e-07,3.994840916750313e-07,4.2000137242586583e-07,4.482385268285621e-07 +517,Sethoxydim,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.5020312580708283e-10,3.2998295966417375e-10,1.065407153499148e-10,1.9078210447682507e-10,4.2847319659382617e-10,1.7164711769511056e-10,2.5510206424953664e-10,5.705440247067091e-10,1.8485545269436007e-10,1.1738463645372923e-12,1.896555873548673e-12,8.877367350897196e-11,1.1351796270781182e-12,1.7601003003665744e-12,8.7274804608956e-11,3.079575875654965e-11,3.6227818806631806e-11,1.0390839266643367e-10,0.0,0.0,0.0,6.672484850968598e-11,7.744259298107385e-11,9.289444628834796e-11,9.160410924160326e-11,9.577893413967335e-11,1.0145088654995618e-10 +518,"Shale, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.3709381669265944e-08,3.3389576150883976e-07,1.415087000736299e-06,6.042274002566018e-08,3.449528301919337e-07,1.4085509989644057e-06,0.00017036015581485138,0.0004533884931676117,0.0008487279339712235,0.0009044601098035879,0.001271901379229992,0.0018063925569445996,0.0008546498027029008,0.0010821292576383827,0.0014107336008405507,0.4725154240256875,1.0258952695018255,0.3222792960027291,0.2302971841011178,0.48822527236427155,0.3986645632142219,7.255314662087837e-07,1.4660612312657654e-06,2.3911513119648105e-06,0.2678807656919557,0.292399630954599,0.3248459622968324,0.21986515068778256,0.23267913478020424,0.25013058170870633 +519,Silicon,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.228951070018758e-06,3.284729342567772e-05,7.333664082624391e-05,3.6460820704496455e-05,5.95909901440943e-05,9.957741734162861e-05,3.7978407397210315e-05,6.119508446720843e-05,0.00010119491329157428,3.848515331138422e-05,6.191353733654966e-05,0.00010011864094602853,3.72342260323656e-05,5.8499657031601045e-05,0.00012381262225152112,3.662027771470716e-05,5.6044714236866815e-05,0.00012158693446047383,4.322283340964821e-05,6.161994901522359e-05,0.00012660468319456076,6.40586834553725e-05,6.696817051130741e-05,7.08685450800301e-05,7.755413976424202e-05,8.131926189798274e-05,8.64743799279051e-05,7.967830850589274e-05,8.35334323261757e-05,8.881537225956058e-05 +520,Silthiofam,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.975888722619453e-17,8.39193223733495e-17,1.2159909168208984e-16,6.637456604506431e-17,8.24842223969881e-17,1.243589951954661e-16,1.906779205293674e-13,2.334318321423103e-13,3.4655017668553355e-13,1.9079185947389807e-13,2.3587086675151395e-13,3.4938158100072725e-13,1.1263967977129284e-13,1.3273667385349586e-13,1.980112674683983e-13,8.067758019575365e-14,9.157445743349368e-14,1.3139579564244878e-13,0.0,0.0,0.0,3.451895239146794e-14,3.6791468657642313e-14,3.99626012429347e-14,5.961189274060088e-14,6.352373483216508e-14,6.899270911712641e-14 +521,Silver,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.2685282928605144e-11,1.401916318762182e-10,3.290273781378388e-10,2.3213198246037477e-12,9.952134035286154e-12,3.951292299319366e-11,9.879006045556843e-12,4.5765839298524077e-11,1.89170711183453e-10,1.122666060927564e-11,4.9670335668003314e-11,1.8591413117184385e-10,1.375403011469256e-11,6.557438081585176e-11,2.625788599319157e-10,1.5527817439249956e-11,7.030168973811338e-11,2.8650316677214955e-10,2.4461238416785543e-11,1.0482593070122548e-10,3.767821879325772e-10,2.84304096551873e-10,2.996969029097544e-10,3.2034324615087953e-10,3.5272804694203976e-10,3.7238305922839904e-10,3.9990790047817183e-10,2.7911093980986455e-10,2.9774782949104097e-10,3.24078621498951e-10 +522,"Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.912958619098972e-09,1.0454687648754658e-07,3.004429634310825e-07,6.291278355030715e-08,3.4560878862875545e-07,8.263269621271209e-07,6.849720987494643e-08,4.575979610273904e-07,9.8011258531744e-07,7.147229595010195e-08,4.631171138997266e-07,9.910955702778983e-07,6.742012562438444e-08,5.20884335940408e-07,1.196647075078749e-06,7.37016546317106e-08,4.497103932156853e-07,8.860981926159626e-07,0.0,0.0,0.0,3.0771971394985107e-07,3.203381963833024e-07,3.3720541402964226e-07,0.0,0.0,0.0,6.246064453637563e-07,6.562906406735991e-07,6.994535396979834e-07 +523,"Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.793860506712282e-09,7.45837887626384e-08,2.1433229435688412e-07,1.2723900651366433e-12,2.1779625561045075e-11,6.239610072158259e-11,1.511298586475644e-12,2.668940173863683e-11,7.460648650652958e-11,1.5334210448790156e-12,2.673049058964278e-11,7.468672769018359e-11,1.5031956200356689e-12,3.1189835996054846e-11,8.703026868140591e-11,1.6260091762788838e-12,3.077774148872677e-11,8.520725778710167e-11,0.0,0.0,0.0,2.1952077678467868e-07,2.2852257199573182e-07,2.405553612822274e-07,0.0,0.0,0.0,8.602856335253855e-11,8.976079171689647e-11,9.476844831424491e-11 +524,"Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.5771704170492596e-10,6.885549605938701e-09,1.9787512349840365e-08,8.380010926983738e-11,1.4390042327509158e-09,4.122660967549307e-09,6.837442965791268e-11,1.2545104463901428e-09,3.517030786239818e-09,6.915129317126252e-11,1.2558561033501074e-09,3.5203868403274176e-09,6.773778349942194e-11,1.4656040502546327e-09,4.0965400915844076e-09,7.317243966076419e-11,1.4490245643024928e-09,4.022808742082833e-09,0.0,0.0,0.0,2.0266802161188787e-08,2.1097870596891803e-08,2.2208766066971916e-08,0.0,0.0,0.0,4.075994255009635e-09,4.2521341469228405e-09,4.488343763812135e-09 +525,"Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.885959888778878e-10,1.572580249912085e-08,4.5192400039851895e-08,6.8897146248537086e-09,1.182071530235864e-07,3.386516712234194e-07,6.787292374412161e-09,1.2286363660139152e-07,3.4410027828815936e-07,6.872333424524727e-09,1.2301534958941266e-07,3.444430688099916e-07,6.733602395866714e-09,1.4355230328579262e-07,4.010051401096973e-07,7.27728896155627e-09,1.4183292418508828e-07,3.933748902291105e-07,0.0,0.0,0.0,4.628704284106619e-08,4.8185107467239794e-08,5.0722264823257176e-08,0.0,0.0,0.0,3.980858251133576e-07,4.153121177182846e-07,4.3841734867069174e-07 +526,"Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,5.769227063528121e-10,1.5413921143786982e-08,4.429612349153619e-08,1.3606543132037613e-10,2.336523662570864e-09,6.694001619329771e-09,1.1088673347810469e-10,2.0349420622552886e-09,5.7050676247169645e-09,1.1214457126625016e-10,2.0371197085524664e-09,5.710507839053663e-09,1.09851792757101e-10,2.3773533176672673e-09,6.645051459967951e-09,1.1866439991410809e-10,2.3504844177469157e-09,6.525557461221874e-09,0.0,0.0,0.0,4.5369056806499276e-08,4.722947813828218e-08,4.9716317417852614e-08,0.0,0.0,0.0,6.611958286914273e-09,6.8976812027941475e-09,7.280844320895617e-09 +527,"Silver, ion","('water', 'ground-')",emission,kilogram,biosphere3,7.914575521550676e-09,1.3210093696834716e-08,1.7091383548818134e-08,8.719591122769774e-09,1.3287703334307863e-08,1.6828858778843575e-08,8.258043664514507e-09,1.3144442084129172e-08,1.6535411393210496e-08,8.280842441866298e-09,1.3172426850141355e-08,1.655988089168245e-08,8.734668072053702e-09,1.4258189090173587e-08,1.6921144155910217e-08,8.663209271006127e-09,1.4093611353869931e-08,1.767024261209785e-08,1.2753003057086668e-08,1.6576646060436836e-08,2.511645528408589e-08,6.679236890367643e-09,6.970887335997713e-09,7.368562522848699e-09,7.41328878919031e-09,7.774921773143962e-09,8.262897870601337e-09,5.934770614967422e-09,6.21911813711969e-09,6.603778882899811e-09 +528,Simazine,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.372687600916075e-13,3.118562482031122e-12,6.726626290880374e-12,5.018948868348787e-13,2.443330707184618e-12,4.554475273031639e-12,8.154056377072338e-13,3.097109136341161e-12,4.573194862558095e-12,1.1071791459250365e-13,1.769423957627103e-12,4.880678727010768e-12,8.772694671540781e-14,1.2613898400777707e-12,3.4571206183212473e-12,3.056374930709913e-14,3.569923651328781e-13,8.499442767129031e-13,0.0,0.0,0.0,7.34927698566763e-13,7.695143315865721e-13,8.161782705539279e-13,3.4634219094118012e-12,3.6139519497679446e-12,3.815935850548115e-12 +529,Sodium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.75058121512804e-06,8.675404896791077e-06,2.4473518811771838e-05,3.743554711592563e-06,8.689450211078009e-06,3.0126851823971314e-05,4.171703464468805e-06,1.0422711558358867e-05,2.9873378952745025e-05,4.886148882033819e-06,1.1421622884482797e-05,2.8915153025451438e-05,9.334386899150981e-06,2.1015551263039785e-05,2.8865988723960048e-05,7.129365258660793e-06,1.6162609773879124e-05,2.8545088548381703e-05,8.640695904775061e-06,1.8293699458500308e-05,2.6216250560550448e-05,2.1065269474044084e-05,2.213301364458296e-05,2.3604021770501126e-05,2.3618488901112885e-05,2.4632877866366433e-05,2.6004923528813327e-05,2.6419447972068612e-05,2.7746470077971806e-05,2.9570930662599977e-05 +530,Sodium chlorate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.348990590522382e-09,1.1033535393890835e-08,1.438406290332268e-08,9.7557744051268e-09,1.2216991520736172e-08,1.633873714503603e-08,8.455372183282092e-09,1.066299245086608e-08,1.4771196472137316e-08,8.474662447619663e-09,1.0695374106197465e-08,1.479135216118626e-08,8.275835928296642e-09,1.0407525845794476e-08,1.4571450180582296e-08,1.1221185318672963e-08,1.5196519423752312e-08,2.184798904996629e-08,1.3324700607973431e-08,1.7490838751685237e-08,2.5049395957466534e-08,6.444130255387962e-09,6.929443063146822e-09,7.615394600549444e-09,9.807353868315479e-09,1.0994797223430627e-08,1.2657368778367112e-08,9.026515924428971e-09,1.0013203729246538e-08,1.1423262949464638e-08 +531,"Sodium chloride, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0034608303547330166,0.6947489512917217,1.836007893255116,0.0035398149568411892,0.5287170945762478,1.3440459841840322,0.0033155824921757013,0.5354394810781213,1.2856044165244864,0.003433510337039866,0.5356961284431047,1.2858142619927013,0.0033547804617831923,0.5858311702292753,1.456788478160505,0.003176936673505038,0.5642611265930072,1.389683390182377,0.0038521168279478223,0.565171750554508,1.3911751570192925,1.9674846285755097,2.0353547100917586,2.126612935791701,1.4919422648170655,1.5415137747242784,1.6082234820170431,1.4906873179439881,1.5408615763430349,1.6083126564386545 +532,Sodium dichromate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.041139440280199e-09,1.6503455092640822e-08,2.1101740489848602e-08,4.0801022373831533e-11,1.1485842719484581e-10,2.639952662691774e-10,2.7055230432613823e-11,8.619190911108566e-11,1.9767828697537554e-10,2.8605247202672674e-11,9.302305392557794e-11,2.1627033307498066e-10,2.7792259413449004e-11,1.0461408915988537e-10,2.4997334802908187e-10,2.679143339910439e-11,9.346208197799471e-11,2.1834565728558193e-10,2.3020545795399744e-10,5.528916259635573e-10,1.1709104058568506e-09,6.846473782644802e-09,7.204051715975825e-09,7.698030142397376e-09,8.334378499362509e-10,8.793368716235676e-10,9.423578022944743e-10,1.913990118228759e-10,2.0219558446113194e-10,2.1704917646586717e-10 +533,Sodium formate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.7732459206141412e-09,3.5509503223697143e-09,5.942252474519369e-09,1.8313993560882095e-09,3.320095541364559e-09,5.4329088660096155e-09,1.6344739333667917e-09,3.7638390795086755e-09,6.656160505959567e-09,1.6369500083304448e-09,3.768944492753078e-09,6.664844370429638e-09,1.6362591614025346e-09,3.799319959528364e-09,6.766739446854733e-09,2.30357657708817e-10,4.2711924127530943e-10,9.59502883495507e-10,2.3330762897620717e-10,2.6421818684463125e-10,6.156684873910707e-10,4.2996594651143445e-09,4.5447663352964075e-09,4.883594535634277e-09,3.241220342225087e-10,4.000616195583715e-10,5.103221932499018e-10,6.174116845253033e-10,7.079095673412917e-10,8.37948906256388e-10 +534,Sodium hydroxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,4.724894240194122e-10,1.3275651448405568e-08,3.820079350127775e-08,7.236789709487212e-10,1.2436541900626896e-08,3.5633842880951815e-08,6.514227597418734e-10,1.196515638597019e-08,3.3549732257571867e-08,6.588159833264786e-10,1.197795991446663e-08,3.358167493232394e-08,6.454520071032186e-10,1.3979143841375295e-08,3.907814411382563e-08,6.972674392085421e-10,1.382129133099888e-08,3.837617247630458e-08,8.67832151843346e-10,1.4061884059675642e-08,3.8775466774170264e-08,3.91584985633098e-08,4.076381880481158e-08,4.290943338986286e-08,3.9091422811093165e-08,4.0813001241558854e-08,4.31201477369338e-08,3.8887187470905604e-08,4.0567634730478195e-08,4.282117115794693e-08 +535,"Sodium nitrate, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.2080033867463127e-12,5.294176507022131e-12,1.1690994086983852e-11,2.6180172314104387e-12,5.644155441284849e-12,1.216344423198665e-11,2.354650982009867e-12,5.382073819952272e-12,1.1804364069967684e-11,2.4180477820177758e-12,5.530490594626804e-12,1.1876995768286633e-11,2.2884420504281587e-12,5.158001366591923e-12,9.038844204301789e-12,2.220122204368836e-12,4.946962018187964e-12,8.896505662576532e-12,6.264735908164858e-07,2.631134495636926e-06,7.030724566391067e-06,7.359272614680003e-12,1.0193801718902893e-11,1.3756388804993202e-11,6.677188689226052e-06,6.931100521519613e-06,7.273474202021937e-06,6.756884437713655e-12,7.08461417419228e-12,7.52854022066743e-12 +536,"Sodium sulphate, various forms, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.00019414682370825828,0.0002383765116576744,0.00033472898246330533,0.00024594471827608043,0.00029053940023651985,0.0003822535073649924,0.00018591087611977735,0.00022267681494874599,0.0003050822422141985,0.00018619775413428823,0.00022317883981129877,0.00030600878975504427,3.325089426853713e-05,4.049854362505707e-05,5.546576455346155e-05,3.3503491625742226e-05,4.097735575583009e-05,5.6493236932500965e-05,4.314785352775321e-05,5.530321628029139e-05,8.08263189182023e-05,0.0001426858591260569,0.00015375684033426242,0.00016942797735115716,3.8013128602722726e-05,4.100097049025022e-05,4.506201430638622e-05,2.3601344979462914e-05,2.5316888716790907e-05,2.7734310511029225e-05 +537,"Sodium, ion","('water', 'ground-')",emission,kilogram,biosphere3,0.0001731432356887038,0.00036404392562661223,0.0006125804496093153,0.00014113428610721,0.00022166990815531676,0.0002985164758544272,0.0001693600080400434,0.00031796541901640347,0.0004615653967219228,0.00016914922700836873,0.0003160553585714187,0.0004569791770209349,0.00016999933206667952,0.0003218003032844303,0.0004631729833286356,0.00017968706433591704,0.0003403477463921458,0.0004670847329566698,0.00017330262938959802,0.00028467347746084895,0.00048769877580624,0.0003787898253070788,0.0003952908494237898,0.0004178172110495702,0.00021617451826051257,0.0002260074820342558,0.0002392622149372291,0.00022699566147702533,0.00023736214756284242,0.00025141305392118444 +538,"Solids, inorganic","('water', 'ground-')",emission,kilogram,biosphere3,0.0004511729389565592,0.001465008077795282,0.0032799450651249747,0.00016876818818971245,0.000614755396007359,0.0015821398747291986,0.0003227922283604353,0.0010014257888992146,0.0021787367528906415,0.0003142290260834478,0.0009616754197182952,0.002096053198119783,0.0003207097093578162,0.0010177417626885158,0.0021741168734355663,0.00033444687416033387,0.0010078865702094326,0.001974822683877582,0.00027849172896053876,0.0008164125220735138,0.001775291465297166,0.0028265874340968815,0.002949862290229229,0.0031182397681611615,0.001476205775257254,0.001536319145890315,0.001617390326682097,0.0016773068618948714,0.0017488415781904477,0.0018459944700095598 +539,Spinosad,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.70933373071182e-22,7.940494075051176e-21,2.218424038972526e-20,4.603299338741192e-22,9.245170765071027e-21,2.5707575619510322e-20,2.594014815497684e-22,4.8478136464759224e-21,1.3407902518359792e-20,1.5252924868287123e-12,1.7912795963584563e-12,4.043096896249658e-12,0.0,0.0,0.0,2.1224888758801488e-12,2.6052350510618566e-12,3.305881247644741e-12,1.353638003228989e-20,1.4121950269246095e-20,1.490729730042172e-20 +540,Spiroxamine,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.3448696765421018e-11,2.8269305530168818e-11,4.105486251931557e-11,2.2305092630948684e-11,2.7605874320498087e-11,4.146370886043263e-11,4.308432927889572e-10,9.621706076145942e-10,2.8430958213056483e-10,3.247554099120762e-12,4.638626909712762e-12,1.0333019899920832e-10,2.951162133286456e-12,5.802506660403149e-12,1.0575560655601181e-10,8.959869020248878e-12,1.109373291753125e-11,1.7527459935615535e-11,0.0,0.0,0.0,6.876050308230003e-12,7.309247951919617e-12,7.910266122832542e-12,1.0857988372948419e-10,1.136870454643099e-10,1.2064173163557915e-10 +541,"Spodumene, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,3.341237691583057e-07,4.660094217910194e-07,6.522023232610982e-07,2.7303203947696594e-07,4.257700261550187e-07,6.332484572032807e-07,2.736779652278003e-07,3.134139855609187e-07,3.8663177694643173e-07,1.8287415227593065e-08,2.2428113128392632e-08,3.3697230501677194e-08,5.515693865124924e-09,7.252953400628353e-09,1.3577752778018267e-08,7.0121832534490395e-09,9.063875108048493e-09,1.82168612674436e-08,0.0,0.0,0.0,1.0804675171800593e-08,1.190138020069476e-08,1.335107031312251e-08,7.820280666532765e-09,8.48241961142597e-09,9.375178558413955e-09 +542,"Stibnite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,8.853508134677713e-12,2.3263604984323224e-11,2.907657710940392e-11,9.452926368123839e-12,2.7653033201315317e-11,4.139084262784274e-11,2.505586844723711e-11,6.289592422208009e-11,4.4924018516446336e-11,2.5031924008662115e-11,6.265717316113526e-11,4.5116295867961394e-11,6.3433527455419796e-12,2.2289680777611046e-11,4.337883100569659e-11,2.7422472269415972e-11,6.702484401365268e-11,4.3155108629439116e-11,0.0,0.0,0.0,2.4725307964819528e-11,2.5781464166930533e-11,2.7221868384350215e-11,0.0,0.0,0.0,3.676704636374114e-11,3.834921772207715e-11,4.050410091632794e-11 +543,Strontium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.157722538296287e-08,3.734677501433453e-07,1.100442866699661e-05,5.409567797990568e-07,9.196060968828201e-07,1.1348192229075074e-05,4.58948054509554e-07,7.205141318360488e-07,1.520100437853692e-06,4.6251858332779565e-07,7.239344328171616e-07,1.5074827126567304e-06,4.5359650140421656e-07,6.970893505958459e-07,1.7952607790956517e-06,4.45700452604131e-07,6.65722870985043e-07,1.763108191814676e-06,5.270145322396245e-07,7.33842810024554e-07,1.823544164567015e-06,1.3963332935476323e-06,1.4481798883675298e-06,1.5181970660490526e-06,9.220445304639115e-07,9.679355698612754e-07,1.03070844382163e-06,9.492764298111904e-07,9.964118006070917e-07,1.0609403056309678e-06 +544,Styrene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.8510706675952444e-09,9.967164781332577e-09,3.2529215812635295e-08,4.312912931496377e-09,1.0395341566379239e-08,3.147210357630229e-08,3.864599361646302e-09,9.887039995439683e-09,3.0359880780551915e-08,4.0858522507805345e-09,1.0264730170003554e-08,3.066537310036489e-08,3.435535355859344e-09,7.82299433762033e-09,1.7854959099092472e-08,2.8040054337254934e-07,5.169836657332618e-07,9.672486320249956e-07,3.340837479738393e-07,5.729634290173657e-07,1.030882850412609e-06,1.632549379157306e-08,2.996511745071359e-08,4.708926412278968e-08,6.113582759090435e-07,6.504511342205288e-07,7.034194948363017e-07,6.093376533397829e-07,6.488068533439671e-07,7.022387925381933e-07 +545,Sulfate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.793354052414228e-05,0.002976398210419963,0.01142712910580414,2.617609579970281e-05,0.00312123994924219,0.012000273100796733,2.33590184248109e-05,0.002941197838971781,0.011452905837963896,2.3950226050501918e-05,0.0029425125771929063,0.011454856521951603,2.0251170173214604e-05,0.003049257860005359,0.011831796868460661,2.30431148457167e-05,0.0030886565440754,0.011964956131770772,2.3751656601170966e-05,0.003075301278168704,0.01195226752089339,0.011674932042205313,0.012168537925103822,0.012834975046999797,0.012342844978771894,0.012862280829131134,0.013563421476064961,0.012342852378127187,0.012861981576276504,0.013562746583182175 +546,Sulfentrazone,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.995505567026933e-10,1.3901164945019344e-09,5.751069565847007e-08,1.6437527926377508e-10,3.9288642705406464e-10,1.598955643583033e-08,8.880551066493955e-11,2.0536847167522008e-10,4.891536942652303e-09,1.9932532111116213e-11,5.001208674573475e-11,8.011250599211465e-09,1.661693294082104e-11,4.180509250296203e-11,7.948039178817832e-09,1.9580600587827607e-08,3.656087325176398e-08,8.155438708164061e-08,0.0,0.0,0.0,5.740704074567942e-08,6.019056667306113e-08,6.39481425728336e-08,8.481689344752572e-09,8.842053548467587e-09,9.32860435650068e-09 +547,Sulfosate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.467262221396024e-09,5.721082370911697e-09,2.3708185532053885e-07,6.648154746096172e-10,1.5897855794995434e-09,6.519623591078997e-08,3.431485948506273e-10,7.942729435851382e-10,1.943712780584994e-08,7.922467344863528e-11,1.987801259514935e-10,3.184185075167921e-08,6.605649315046586e-11,1.6618577073897454e-10,3.159545732085993e-08,2.1132150288182745e-10,5.316330598969732e-10,9.211093309951657e-08,0.0,0.0,0.0,9.826832481582704e-08,1.0244641759736089e-07,1.0808792997049074e-07,3.3716851121593034e-08,3.514938958325333e-08,3.7083551575132184e-08 +548,Sulfosulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.864602838841212e-17,2.2431006707915753e-17,3.250252699918608e-17,1.774142466917927e-17,2.2047415222314946e-17,3.3240228538093916e-17,5.0966779244478403e-14,6.239457942695013e-14,9.263026523071412e-14,5.099723427050777e-14,6.304651510021748e-14,9.338707838606545e-14,3.0107743731236686e-14,3.547951990126279e-14,5.292693044706232e-14,2.260235972966438e-14,2.5655205012537155e-14,3.681144099082528e-14,0.0,0.0,0.0,9.670751368790637e-15,1.0307413541127758e-14,1.1195829602377242e-14,1.593381296547373e-14,1.6979419091564497e-14,1.844123500384781e-14 +549,Sulfur,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.3046979856661175e-06,5.757415417966333e-06,9.467421495580184e-06,1.6431045561972219e-06,3.8241826363485395e-06,8.625280067476232e-06,3.115639377036876e-06,9.558879030898874e-06,1.1530025109452317e-05,4.1827802106380115e-06,1.1664270512207815e-05,1.3712792676564187e-05,1.0916109218921195e-05,2.511480599821197e-05,9.713273532967162e-06,7.730585780425882e-06,1.819210374046296e-05,9.334729362783315e-06,9.74236342022878e-06,2.8305304314685675e-05,1.834931512143735e-05,9.59961401692119e-06,9.95128324802761e-06,1.0427849010470699e-05,9.786157638255847e-06,1.0189376649912945e-05,1.0739184972533765e-05,8.520528982623082e-06,8.847334755703912e-06,9.29286678052609e-06 +550,Sulfur dioxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.002053303457857768,0.013218175325983603,0.12010320728538723,0.003420065625168005,0.012255419816790857,0.10994059866796964,0.002043540328189794,0.00916791660917515,0.04027833940092758,0.0020694044673907532,0.00897173171485206,0.03978995086722256,0.001817997695845007,0.008515040122346865,0.040067998081010234,0.0017478010182826115,0.008358829950663709,0.04011051831476746,0.0019100302234057874,0.00755362601243987,0.036320624213153824,0.05134048562946813,0.05377105393605034,0.057071650549052416,0.03206306153629384,0.03351374621628537,0.035464267845489394,0.03597066957504636,0.0378464616631111,0.04041017914397458 +551,Sulfur hexafluoride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,-9.746109739760607e-29,-5.847665843856365e-29,-5.232402824437361e-21,4.785179511424372e-16,9.789178966191638e-16,1.2674392502051777e-15,4.9261236321341415e-16,1.066798069724143e-15,1.2445362696865747e-15,6.756877248530475e-16,1.4395369104862115e-15,1.0823623265449443e-15,1.9249880224688576e-16,3.674528321782979e-16,8.116566268390749e-16,2.1105989144462504e-16,4.201177096227103e-16,8.627337183991467e-16,1.9466561529722005e-16,3.822273493697289e-16,8.324861208160223e-16,-1.6351258826366752e-22,-1.6351258826366752e-22,-1.6351258826366752e-22,5.893003191355301e-16,6.403519073047485e-16,7.12533299163529e-16,6.186059430240177e-16,6.693874950886263e-16,7.411828528094394e-16 +552,"Sulfur, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,6.656951785829118e-06,9.920823655957045e-06,2.205326667976131e-05,3.8118104946783123e-06,7.46290792247492e-06,1.9421771905946123e-05,4.219881243700704e-06,9.241941439755113e-06,2.1750434835558257e-05,4.2301526979696854e-06,9.247853257954936e-06,2.1695812888144135e-05,2.9953823506957205e-06,5.7176638219961635e-06,1.745783684980132e-05,4.5450197166544884e-06,8.874912022833149e-06,1.565315185479446e-05,1.113366505008804e-05,2.2609494677309738e-05,3.765622641564709e-05,7.510160946613147e-06,1.653601641331085e-05,2.7808575598452797e-05,1.8035384334032196e-05,2.44592149963253e-05,3.2550743018312884e-05,5.854486563020515e-06,1.18344079300738e-05,1.93078038489275e-05 +553,Sulfuric acid,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,9.924106821904066e-11,2.7792499351169238e-09,7.996652302468162e-09,1.5137851864949067e-10,2.602234510806316e-09,7.456482148224018e-09,1.3630421189133092e-10,2.5037934636198513e-09,7.0211798738461975e-09,1.3785775491272395e-10,2.506491500846673e-09,7.027844328601046e-09,1.3508386507774998e-10,2.925359421203114e-09,8.178459831602304e-09,1.4593148692449815e-10,2.892323184849774e-09,8.031581835099063e-09,1.8165978733164195e-10,2.9428494553538987e-09,8.115656248669563e-09,8.196698673932088e-09,8.53273172576643e-09,8.981864739031909e-09,8.181867547790429e-09,8.542214841607822e-09,9.02513479322147e-09,8.138695766107444e-09,8.490423304938035e-09,8.962107909485542e-09 +554,"Suspended solids, unspecified","('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.962983437155268e-15,1.06966509847061e-14,1.628228246765144e-14,2.79796599031516e-15,1.0905063301521604e-14,1.6241373967642514e-14,2.750179129942025e-15,1.0844048061341942e-14,1.5926081163452544e-14,2.3425101387758388e-15,1.0315251062767321e-14,1.686689074150881e-14,2.3648458103100213e-15,1.0299775778880455e-14,1.6693820615363372e-14,1.1267855343283979e-10,1.277180106839974e-09,5.064063989208292e-09,0.0,0.0,0.0,4.8645835314179215e-09,5.449796356711356e-09,6.2983085729265294e-09,8.309389169675331e-15,8.703278495333359e-15,9.235846655237686e-15 +555,"Sylvite, 25 % in sylvinite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.5540108053142284e-06,1.3247262822510761e-05,0.0022297581817421392,4.581565168885604e-05,7.614030807327724e-05,0.0024476676068017848,3.813652277184677e-05,6.522249276797933e-05,0.0022258396669573473,4.753475671652496e-05,8.123094007861568e-05,0.0026021674195162996,3.629573541623882e-05,5.694630469668126e-05,0.002555430116234551,3.809042955724183e-05,0.0002718023381306576,0.003257836216354435,0.0,0.0,0.0,0.0023762072277633585,0.0024779712261397066,0.002615452364804119,0.0,0.0,0.0,0.003427923453982535,0.0035814119023773907,0.0037895489381715984 +556,"Talc, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.3033776628268745e-05,1.751248212070754e-05,3.85222683099699e-05,1.4942741522709714e-05,1.909193551099695e-05,4.070747862891162e-05,1.3260634854541203e-05,1.8302144914646674e-05,4.0279749938504395e-05,1.3279971430801349e-05,1.8347503985401493e-05,4.04041717035169e-05,1.3290222369474752e-05,1.847566478068057e-05,4.0443094336487385e-05,1.3587849196930828e-05,1.8756346092549786e-05,4.009842968135779e-05,1.578582681080235e-05,2.0414173535522647e-05,4.32625753497246e-05,2.3605108546289184e-05,2.7984992840347142e-05,3.432085462757844e-05,2.492873289726701e-05,2.938400060675082e-05,3.5821974328921e-05,2.4525723332233035e-05,2.8943761851972426e-05,3.532967923571104e-05 +557,"Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.0545175138416573e-09,8.242083389026356e-08,2.3692057261782048e-07,2.2743379168756335e-08,3.854880667057722e-07,1.1024803022923347e-06,2.048297452624232e-08,3.7091906174005716e-07,1.0382272623058622e-06,2.071537160233513e-08,3.71327763670228e-07,1.0391952519089193e-06,2.025883613618506e-08,4.330891127570182e-07,1.2091670354910675e-06,2.1861329410510897e-08,4.282079902780952e-07,1.1874733581281412e-06,0.0,0.0,0.0,2.4269958458604266e-07,2.5265128526978707e-07,2.659535135692807e-07,0.0,0.0,0.0,1.202081305082251e-06,1.254040198518004e-06,1.3237212824611538e-06 +558,tau-Fluvalinate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.102018239765391e-37,1.687209338786968e-36,4.638474654836068e-36,0.0,0.0,0.0,4.6532591140814843e-36,4.858397348915564e-36,5.133344818125025e-36,0.0,0.0,0.0 +559,t-Butyl methyl ether,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2251846859083553e-09,3.5506504290773735e-09,6.750185575105809e-09,2.6857590977827437e-08,5.268900272083161e-08,1.073575940764387e-07,2.4085066933520277e-08,5.0431337484506825e-08,1.01157933536983e-07,2.391420924529908e-08,4.974364355577634e-08,9.84359695096896e-08,2.652538807914085e-08,5.1234786085419024e-08,9.089061332565303e-08,1.4468645233303793e-08,2.750303192209694e-08,4.566286160770681e-08,1.5699843928408032e-08,2.8247066764223826e-08,3.9456794135583724e-08,2.940622895505362e-09,3.0731017646283382e-09,3.2529142089883184e-09,2.4262877248242144e-08,2.542183802327774e-08,2.702784315629285e-08,3.0793915098403524e-08,3.278858199351835e-08,3.5599828010109516e-08 +560,t-Butylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.782362548818092e-13,3.2456935899266613e-12,8.836309550222054e-11,1.2696439019921465e-11,3.5051771134494197e-11,4.23771486913157e-10,7.915026829092511e-12,2.4381122398595783e-11,2.6049412292753286e-10,9.720063489201733e-12,2.843587691189966e-11,2.2281808764964708e-10,2.5691583341161832e-12,1.1288911202885998e-11,3.309263350632961e-10,1.0859676086595946e-12,6.302387985802247e-12,3.2167536822614325e-10,7.297824041865974e-12,1.3999474738982514e-11,3.2189019593156445e-10,9.037618710917504e-11,9.427137133994069e-11,9.953735576295747e-11,3.285163058766839e-10,3.440690775720122e-10,3.652656393767643e-10,3.3739551201177816e-10,3.51830023593881e-10,3.713313891915784e-10 +561,TCMTB,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2214524247253647e-08,2.6088389180656256e-08,5.8884099125962006e-08,0.0,0.0,0.0,3.091215682113426e-08,3.794292416881766e-08,4.814721092351705e-08,0.0,0.0,0.0 +562,Tebuconazole,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.109240180261764e-09,2.416937161861631e-09,7.527226947085002e-10,1.4020491843455985e-09,3.1294100620276316e-09,1.1631757665142748e-09,1.8494101772370558e-09,4.134705095956034e-09,1.214854568775844e-09,9.378387653160083e-12,1.4182132000129657e-11,4.359571920006261e-10,8.894135599725039e-12,1.4419060295534492e-11,4.3110059182716105e-10,3.39024399579271e-11,2.554082908399218e-10,3.5389842656937085e-10,0.0,0.0,0.0,5.88337971100073e-11,6.672295218462551e-11,7.804377764912238e-11,4.473323133622967e-10,4.684072873180926e-10,4.971179064553865e-10 +563,Tebupirimphos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.234309513881541e-13,1.2968991033194279e-12,2.7973643609195133e-12,2.087202196341113e-13,1.0160942331359855e-12,1.8940440201302506e-12,3.3909818890523946e-13,1.2879774433781048e-12,1.9018288873126225e-12,4.604363891243664e-14,7.358404286364619e-13,2.029700519705195e-12,3.648251284058727e-14,5.245671084294671e-13,1.4376933349637334e-12,1.2710375460624172e-14,1.4846041881218692e-13,3.534615754162816e-13,0.0,0.0,0.0,3.0563027542391465e-13,3.20013625207712e-13,3.394194967170595e-13,1.440313817196891e-12,1.5029138996446406e-12,1.5869118100441238e-12 +564,Tebutam,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.123941817496548e-10,1.8955544071389548e-10,2.429679783009826e-08,6.316586973135123e-08,1.392584648793343e-07,2.0008504286393173e-08,8.056326049809572e-08,1.813513186064401e-07,4.4209284608586066e-08,1.4913132142208365e-07,3.3394661532694344e-07,7.625318093117903e-08,4.2220100598028513e-13,6.732871187052963e-13,5.1607179285268405e-11,4.0746041173239785e-13,6.044321711899264e-13,5.498276805879967e-11,7.092627883840212e-11,7.894837349036668e-11,1.5182961054396126e-10,2.576573810042448e-08,2.6887429511739093e-08,2.8405251789012884e-08,7.798493789925823e-11,8.151030463348639e-11,8.631101765741915e-11,5.825244405306173e-11,6.082794372805111e-11,6.431772582984469e-11 +565,Teflubenzuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.4234176712275398e-10,1.9622065914110238e-10,4.390079670912534e-10,1.6654137362444476e-10,2.0119249197755127e-10,4.5205213918693473e-10,1.4848151420718558e-10,1.8608938926738353e-10,4.326192424204314e-10,1.4860428627964124e-10,1.860665749070997e-10,4.321810297971271e-10,1.4892722051642082e-10,1.8620143892619713e-10,4.288492709403806e-10,1.504562193129622e-10,1.8801417794865126e-10,4.253517937125607e-10,1.7560731488171758e-10,3.9040719289706795e-10,4.678901582759811e-08,2.3275685941792203e-10,2.874472423399153e-10,3.6689039038359843e-10,4.976638369250884e-08,5.189977049324944e-08,5.4782569067929276e-08,2.371012024026357e-10,2.916847834639673e-10,3.7092938063298705e-10 +566,Tefluthrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.7554617929909444e-13,1.0189433581879854e-12,2.197822064723801e-12,1.6403210035028974e-13,7.985420033156614e-13,1.4885250516548514e-12,2.7228837406239094e-13,1.0191893304350373e-12,1.5049982530361936e-12,4.2022364928067905e-14,5.854194986287679e-13,1.6055627592961918e-12,3.211617943836226e-14,4.1625030348899455e-13,1.1357498252179146e-12,1.2458232331339985e-14,1.1946087551368777e-13,2.8176506863142706e-13,0.0,0.0,0.0,2.4121363194335963e-13,2.5258529653001954e-13,2.6793105033017376e-13,1.1335704385744487e-12,1.1828790452874264e-12,1.2490489529849267e-12 +567,"Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.190860757194448e-10,1.1187754257821503e-08,3.215037841936108e-08,1.9086046631648523e-13,3.2669773245526887e-12,9.35951105433529e-12,2.2669711188567638e-13,4.003451300924011e-12,1.1191087697910577e-11,2.3001551466358444e-13,4.009614691758556e-12,1.1203123998851671e-11,2.2548165445989294e-13,4.678523359829163e-12,1.3054674128123483e-11,2.4390387674587163e-13,4.616708550053373e-12,1.2781219690742164e-11,0.0,0.0,0.0,3.292866368818228e-08,3.4278955409017494e-08,3.608390379696143e-08,0.0,0.0,0.0,1.2904416788474646e-11,1.3464256782152728e-11,1.421541297199742e-11 +568,Terbufos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.842078049165695e-12,6.194297488172646e-12,1.6846871045694755e-11,1.114038750736699e-12,3.5925269388894692e-12,6.2305081364737835e-12,1.7503543395831247e-12,5.249450436130754e-12,7.777211625353578e-12,1.401661083453456e-13,1.9854575618875137e-12,5.4492864972812234e-12,1.1436600099554394e-13,1.4198337144087731e-12,3.866303106333038e-12,5.429210042627625e-14,4.1915330180771934e-13,9.76061684032663e-13,0.0,0.0,0.0,8.240340107298777e-13,8.629746535699688e-13,9.15539103358492e-13,3.8523892216292716e-12,4.0200218945831536e-12,4.244987301913067e-12 +569,Terbuthylazin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.159958915038364e-11,1.1788082808828113e-10,1.8274259932532245e-10,0.0,0.0,0.0,6.301273108168627e-11,6.790843487297908e-11,7.476810121228235e-11,0.0,0.0,0.0 +570,Tetramethyl ammonium hydroxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,-5.844393796398236e-25,-3.506636277838942e-25,-3.137685027559464e-17,2.8694979350048826e-12,5.870214223268321e-12,7.600371736351995e-12,2.9540169927251903e-12,6.397199626114404e-12,7.463030900655412e-12,4.051853282714637e-12,8.632378748056447e-12,6.490532807676137e-12,1.154345232440421e-12,2.2034808529754485e-12,4.867209284599137e-12,1.2656493266697614e-12,2.5192929488720035e-12,5.173500006627572e-12,1.1673388214137097e-12,2.2920782534916177e-12,4.992116176412604e-12,-9.805265711123324e-19,-9.805265711123324e-19,-9.805265711123324e-19,3.5338194624047434e-12,3.839957249880744e-12,4.2728027771803e-12,3.709554619325135e-12,4.01407309859628e-12,4.444603719717388e-12 +571,Thallium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.151540927377704e-10,3.1121457924810694e-09,6.992024901187598e-09,3.6271508181857375e-09,5.7678136621171695e-09,9.604271860217253e-09,3.77735175402446e-09,5.922221225180482e-09,9.757343122110488e-09,3.819045706051631e-09,5.976087060098991e-09,9.649603448653789e-09,3.714783810048867e-09,5.686105344831991e-09,1.2070678170122864e-08,3.652723097432257e-09,5.436638152421633e-09,1.1841504398053322e-08,4.313264320837848e-09,5.99013565130262e-09,1.232774640575497e-08,6.068626177199293e-09,6.328609937039565e-09,6.679850409821438e-09,7.406090399498865e-09,7.776510804117757e-09,8.283664265686249e-09,7.632330313484847e-09,8.01340244721986e-09,8.53556079274052e-09 +572,Thiamethoxam,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.280146398740611e-13,1.2283365321396463e-12,2.3236650230956984e-12,7.160263699869491e-13,1.8008314875158464e-12,2.4576582040790215e-12,9.058925300853688e-13,2.16956032935659e-12,2.514785251639161e-12,1.9517523050990993e-12,4.399235247577984e-12,2.4617823652894786e-12,1.3897349743048512e-12,3.172371750336784e-12,2.39685257100769e-12,5.993942713604577e-10,1.4278668710001487e-09,2.2308212000676165e-07,0.0,0.0,0.0,2.3786410260033504e-07,2.479953528329105e-07,2.6167740822196405e-07,1.6509816199917609e-12,1.7560987799827079e-12,1.903245204372278e-12 +573,Thidiazuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.387948654541632e-13,1.2534148991008086e-12,2.3711061946408586e-12,7.306451422787139e-13,1.837598213643514e-12,2.507835051124979e-12,9.243877101120808e-13,2.2138552181323876e-12,2.566128434639441e-12,1.991600310286417e-12,4.489052356288945e-12,2.5120434133793756e-12,1.4181085370367947e-12,3.2371405663565628e-12,2.4457879781481414e-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6846889321258935e-12,1.7919522195356115e-12,1.9421028629887886e-12 +574,Thifensulfuron-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,9.751064027834522e-14,1.4464834107554994e-13,1.1757253459688193e-12,1.0975784705294283e-13,1.811824198916023e-13,2.3524543796847134e-12,1.140405443434825e-13,2.2202223863895048e-13,2.5040272124020718e-12,4.598287840209772e-14,6.948861369018177e-14,4.031415375366406e-12,3.048091047516001e-14,5.2209908098239155e-14,3.971374346339134e-12,4.666337010720355e-14,6.548210372957822e-14,3.13645460284505e-12,0.0,0.0,0.0,3.2939417638475566e-12,3.434397344218493e-12,3.6240954096956986e-12,4.207504583641473e-12,4.38655162567003e-12,4.628324889182616e-12 +575,Thiobencarb,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6029755660284192e-11,1.962392602483479e-11,2.9133408673187936e-11,1.6039334231560146e-11,1.982896340608721e-11,2.937142226961229e-11,1.579692608839091e-11,1.8615357333296205e-11,2.776960372039311e-11,1.5444856699191537e-11,1.7530939762504726e-11,2.5154294313919462e-11,0.0,0.0,0.0,6.60826192318452e-12,7.043309848334614e-12,7.650387909397392e-12,8.36005775970885e-12,8.908662225843172e-12,9.675642218552091e-12 +576,Thiophanat-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6692209670928825e-10,4.1991831480935935e-10,7.275292033781154e-08,0.0,0.0,0.0,7.761626188570567e-08,8.091628706678573e-08,8.537217971682198e-08,0.0,0.0,0.0 +577,Thiram,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.9289147705124204e-12,9.664155468721839e-12,7.476453398207836e-09,3.5690450627094175e-11,1.1368066722633008e-10,3.99244008256435e-08,3.909597636393249e-11,1.2867158396604934e-10,3.992878732668883e-08,4.687587754826187e-11,1.434815308791932e-10,3.973036635556828e-08,7.970383642074054e-11,2.1286217009153904e-10,4.236678791255083e-08,6.411204196363843e-11,1.5240051539486514e-10,4.5204063310298817e-08,7.950655997163343e-11,1.7740903620746648e-10,4.5195603986127694e-08,7.98549072902387e-09,8.32513855125529e-09,8.78374421776926e-09,4.826180657415011e-08,5.03145090963648e-08,5.308611318148392e-08,4.827912265069771e-08,5.033371696911007e-08,5.310807561055143e-08 +578,Thorium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.156673809975075e-10,3.734466730348132e-09,8.390454227083761e-09,4.335798101384511e-09,6.8854717795224615e-09,1.1482865245501359e-08,4.514207302535089e-09,7.0628057943026226e-09,1.1661946286194106e-08,4.554304446783559e-09,7.103975825927855e-09,1.1530003357935322e-08,4.454272624284625e-09,6.811762857829915e-09,1.4457310092073019e-08,4.3786596882310154e-09,6.511139405641407e-09,1.418301688866433e-08,5.1737817107732305e-09,7.178219644301907e-09,1.4770583180395646e-08,7.283644999703273e-09,7.595134413157334e-09,8.015888407527391e-09,8.868186121332752e-09,9.310353241551073e-09,9.915610663816193e-09,9.13727925138243e-09,9.591725401635378e-09,1.0214256287049818e-08 +579,Thorium-228,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,1.7822113455389703e-06,1.0810259552711556e-05,0.0004821863576725051,1.7493852491990025e-05,3.054353601910321e-05,0.0004929375041362326,1.3522590853542532e-05,2.132415231461384e-05,4.996816445125128e-05,1.3667565079925282e-05,2.151592298706431e-05,4.961384463780823e-05,1.3312526862190732e-05,2.0522856633724724e-05,5.779433611007326e-05,1.3082507446443402e-05,1.9606245655572515e-05,5.680312542226488e-05,1.546049589098671e-05,2.159198860143768e-05,5.856064324763975e-05,5.1171275267915255e-05,5.3005202518176e-05,5.548170514646111e-05,2.7393062889214185e-05,2.8760345919323668e-05,3.0630380899886884e-05,2.8202604304073028e-05,2.960900832906728e-05,3.153443138284713e-05 +580,Thorium-232,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,1.1341335737608562e-06,6.879245819313196e-06,0.0007352720560592519,1.5682977264069653e-05,2.922281548029841e-05,0.00074362693802291,8.949937455255784e-06,1.4225704721938503e-05,4.677588192717418e-05,9.035356318604622e-06,1.4343098363769544e-05,4.6574772321229564e-05,8.82772214688239e-06,1.375056682267022e-05,5.155501573407963e-05,8.667969879006e-06,1.3114983211325175e-05,5.072852532739507e-05,1.0255938061138347e-05,1.4435875206209063e-05,5.19129521847533e-05,6.071397321682922e-05,6.275327051850006e-05,6.550676610976338e-05,1.8947046060158322e-05,1.9890452749229106e-05,2.1179057620533126e-05,1.9479722069264736e-05,2.0449395657017562e-05,2.1775423674816114e-05 +581,Tin,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,3.504103808041224e-10,1.832721894762146e-09,4.236414729824111e-09,1.5073042132129148e-09,2.666044740876002e-09,4.658331059751398e-09,1.56958548280175e-09,2.7477516235411014e-09,4.818599059441936e-09,1.5896032407962245e-09,2.7770242720706512e-09,4.771075396875255e-09,1.5422510928042047e-09,2.694710595456646e-09,5.913421968123495e-09,1.5200258687168648e-09,2.5972592244032454e-09,5.833203203414403e-09,1.8074067568788336e-09,2.8820891300943887e-09,6.169729634788534e-09,3.7238395040257417e-09,3.89683136217446e-09,4.129791760235795e-09,4.046821901482892e-09,4.2476211369024795e-09,4.522374783663569e-09,4.030382082366955e-09,4.232128566382937e-09,4.508577064467262e-09 +582,"Tin, 79% in cassiterite, 0.1% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,9.903719931958095e-07,4.728946441725469e-06,1.18406244605671e-05,1.1558404069656015e-06,4.549913399006008e-06,1.1256611554807861e-05,1.0241550530906325e-06,4.328078955770231e-06,1.0598405005117943e-05,1.1280787010427993e-06,4.470892667885332e-06,1.0813105024348987e-05,1.1141750853386046e-06,4.993241196310806e-06,1.2307904639907785e-05,1.138549856205793e-06,4.966098186878587e-06,1.212995516830605e-05,0.0,0.0,0.0,1.111054107917397e-05,1.1602554441132317e-05,1.2265693492197253e-05,0.0,0.0,0.0,1.1155522764427992e-05,1.167356612817605e-05,1.2373619771198856e-05 +583,"Tin, ion","('water', 'ground-')",emission,kilogram,biosphere3,7.625139576691153e-08,8.571433111489116e-08,9.478984801685406e-08,9.179099576937533e-08,1.0253932412361063e-07,1.1502583090913222e-07,8.015782287605689e-08,9.03596795808043e-08,1.0154408983896385e-07,8.053967487916213e-08,9.125907079422162e-08,1.0334773724416987e-07,8.058778689466277e-08,9.198471689109842e-08,1.051664143611023e-07,8.073764552608837e-08,9.211457551023856e-08,1.0491322360647344e-07,3.130082055067555e-07,3.5372237113181446e-07,4.103261417015266e-07,1.8138547776577407e-08,1.8950169749080276e-08,2.004884741354595e-08,9.474828338813829e-08,9.941604976731202e-08,1.0575940635722154e-07,2.325673249624546e-08,2.4357815877975775e-08,2.5851878040414274e-08 +584,"TiO2, 54% in ilmenite, 2.6% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0004472471186264567,0.0006562560667014654,0.0007647763053059821,0.0002672112256162196,0.00034184532646683356,0.0005149640258768433,0.0002322066363900924,0.0003066789609368797,0.0005843632783772703,0.00023331672017120708,0.0003087855619526616,0.0005859908554619419,0.00024164887225378912,0.0003305948871091935,0.0005958595656861325,0.00024403311490151866,0.00033329372014433644,0.0006031801322053978,0.0,0.0,0.0,0.0003961441769374373,0.00042220033285415756,0.0004588022333725271,0.0,0.0,0.0,0.0002610464456259618,0.00027699804748172366,0.00029930622608632864 +585,"TiO2, 95% in rutile, 0.40% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,8.040848643844941e-11,6.632385555916948e-10,1.7882843965130041e-09,4.110953733671419e-05,5.2592248245528416e-05,7.922695360310611e-05,3.572421239066881e-05,4.7182032348546574e-05,8.990368333487275e-05,3.589499600664109e-05,4.7506126583123854e-05,9.015409146253734e-05,3.7176873936804195e-05,5.0861489201853654e-05,9.167263307477713e-05,3.7543679552705085e-05,5.127667218185505e-05,9.279879300974769e-05,0.0,0.0,0.0,1.766972857106106e-09,1.8413376093375293e-09,1.941404636359728e-09,0.0,0.0,0.0,4.0162751608151184e-05,4.261693514825668e-05,4.60490870722465e-05 +586,Titanium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,1.2426676093016776e-07,7.501726774981901e-07,1.6862691103254193e-06,8.710348778565682e-07,1.3872188289660893e-06,2.311893480507053e-06,9.067797915218022e-07,1.423311936471989e-06,2.3468499568717147e-06,9.171192170006317e-07,1.4369611785109055e-06,2.3221718534247623e-06,8.917656406942908e-07,1.3667651047218803e-06,2.9030588302786253e-06,8.774041524761866e-07,1.3080671347443567e-06,2.8485734696428683e-06,1.0358094759782714e-06,1.4408785197205169e-06,2.9658829272612278e-06,1.4642433569739147e-06,1.5268622797996254e-06,1.6114494259815854e-06,1.7839742809007065e-06,1.8731798008449197e-06,1.9953066654535003e-06,1.8378873476842662e-06,1.9296425880367155e-06,2.0553626087443333e-06 +587,"Titanium, ion","('water', 'ground-')",emission,kilogram,biosphere3,8.150286378357269e-08,1.2674790119928584e-07,1.7825231159654335e-07,1.0876915547684874e-07,2.2053559839517502e-07,3.894918139356188e-07,1.0222822809406383e-07,2.2275419252146058e-07,3.9988747398551877e-07,9.964740372174528e-08,1.9322445320965732e-07,3.2824821237967867e-07,1.0204804550050259e-07,1.9795914700518322e-07,3.28537378039358e-07,1.0399258863977427e-07,1.9798113285129933e-07,3.3178892025249023e-07,1.293759000182572e-07,2.158494639348357e-07,3.7218520496232553e-07,8.694272429682164e-08,9.074801720973148e-08,9.593755611997664e-08,2.2075175803931825e-07,2.3066393207473268e-07,2.441271484395721e-07,2.1427959185168653e-07,2.238559487176208e-07,2.3688303887591978e-07 +588,"TOC, Total Organic Carbon","('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.842636406457045e-08,8.320991064522443e-08,1.8775945331980794e-07,4.03013574273821e-08,8.730079697346557e-08,1.935628033828446e-07,4.0354541620319367e-08,8.745021296966727e-08,1.9380014127220824e-07,4.67514750575766e-08,1.013544386566098e-07,1.9503177179051016e-07,3.876118450771977e-06,8.7575959475363e-06,1.6400275825125424e-05,1.5612516465374806e-05,2.1789987247951766e-05,3.166483457144925e-05,0.0,0.0,0.0,1.5083114056790813e-05,1.5885994307559005e-05,1.6975049731227528e-05,1.1739327056044875e-05,1.2379097209360681e-05,1.3244474381528199e-05 +589,Toluene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.168746524098556e-06,9.504669432821031e-06,4.3855394689360384e-05,1.9493278695013756e-06,1.011613594818293e-05,4.646457412698985e-05,1.6897331743039622e-06,9.790445205950483e-06,3.606795307261725e-05,1.8609556204121808e-06,1.0063429488013029e-05,3.592502380207749e-05,2.8986596297280116e-06,1.2015636081750793e-05,3.491452035592505e-05,2.7286986122364775e-06,1.15829110975345e-05,3.5882226887131214e-05,2.2847575737624676e-06,4.772640188159039e-06,6.662261102708919e-06,3.152045821581868e-05,3.474825745831439e-05,3.9375812381454955e-05,5.341028917565069e-06,5.6948675022095114e-06,6.179796758809321e-06,3.366166843141596e-05,3.709283704201177e-05,4.2016443308921736e-05 +590,"Toluene, 2-chloro","('air', 'urban air close to ground')",emission,kilogram,biosphere3,2.5862359225192673e-12,4.092420379541689e-12,5.389170592668002e-10,2.9557664158680856e-11,6.321293878356073e-11,9.371750225101375e-10,3.054504241618668e-11,6.699762866417913e-11,7.741085257000343e-10,5.0157901447842564e-11,1.1069704808625961e-10,6.961032562864247e-10,5.396444703363236e-12,1.0227012947633016e-11,8.568041174422766e-10,3.77771562022154e-11,1.6437177482102024e-10,1.2705203805388098e-09,1.1089070364227054e-10,2.610047796072888e-10,1.7771725012813275e-09,5.715257529759604e-10,5.96588027375605e-10,6.305223614276033e-10,1.745025961927683e-09,1.8342047913402642e-09,1.956699960809779e-09,1.3127132663552288e-09,1.3677846047727774e-09,1.442344389848378e-09 +591,Tralkoxydim,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.798404130601158e-16,1.084718890504206e-15,1.611843663717875e-15,8.349903247465663e-16,1.0488528830776171e-15,1.5968952315121774e-15,1.48867968221639e-14,1.8240958864076512e-14,2.710323560558265e-14,1.4895668378158756e-14,1.8434244861507118e-14,2.7332044617464276e-14,8.802179685015019e-15,1.038259601498359e-14,1.5501865027839538e-14,6.624703927987647e-15,7.52079329912644e-15,1.0793086020972402e-14,0.0,0.0,0.0,2.8383302554385338e-15,3.025103614791032e-15,3.285722882677676e-15,4.687684157619881e-15,4.994635809025515e-15,5.423698464238992e-15 +592,"Transformation, from annual crop","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0012202121286028057,0.0028270109062308235,0.1141484618729964,0.00045477327768745057,0.0010850754305280763,0.04134559860917619,0.0006032430760392904,0.0013942015012798571,0.031733480485942996,0.000156886885874779,0.00038634549676833254,0.05193055176592727,0.00012756878840637894,0.00031613549319251834,0.051523129596278805,0.00019355702213406584,0.0003706756418980711,0.04561812466446412,0.0,0.0,0.0,0.048536925758914,0.05062276414300826,0.053441947165966376,0.05496524317181194,0.05730115326691281,0.060455097824797195 +593,"Transformation, from annual crop, irrigated","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.009699832268658e-05,4.452836638430641e-05,2.6715079043969233e-05,0.0,0.0,0.0,1.701610095762257e-05,1.8041218762255593e-05,1.9468253006124458e-05,0.0,0.0,0.0 +594,"Transformation, from annual crop, irrigated, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.490885902479705e-08,1.1145947684371072e-07,2.5157516769424025e-07,0.0,0.0,0.0,1.3206843870420873e-07,1.621065389854134e-07,2.0570311581380556e-07,0.0,0.0,0.0 +595,"Transformation, from annual crop, non-irrigated","('natural resource', 'land')",natural resource,square meter,biosphere3,0.00036642618502584506,0.0006181204853262807,0.079211446851305,0.0002408395921435942,0.0005193514898306772,0.0008345024810235791,0.00011030033366453408,0.00022861598672041216,0.0003736709754628842,0.0001108416151337368,0.0002498256031227452,0.0004251397376795255,3.659435743560446e-06,5.016034341221173e-06,1.0000941230283218e-05,3.655554152648634e-06,4.803545279594116e-06,9.438372486922656e-06,7.85953591764846e-05,0.00020717099378720434,0.027811636439028297,0.0840004125470411,0.08765730424534983,0.09260564503517439,0.029612627278268067,0.030875342708998017,0.03258079251892109,4.938783847957486e-06,5.707826305925421e-06,6.815234782192154e-06 +596,"Transformation, from annual crop, non-irrigated, extensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.00012029757832560782,0.0002557500584328373,5.153659434215264e-05,0.00014348758321358713,0.0003208721205828558,8.147662796000254e-05,0.0002637982122668072,0.0005886228180431449,0.00013757985354620264,2.065834006617052e-06,2.5541963138128426e-06,3.872197172236368e-06,2.034597651273793e-06,2.3978214682918915e-06,3.671884397701478e-06,2.580822857359164e-06,2.92699157557782e-06,4.267885726523208e-06,0.0,0.0,0.0,1.188724855393495e-06,1.2641456201953281e-06,1.3691800888084433e-06,1.1786090640262774e-06,1.2537630332844358e-06,1.3586378649956412e-06 +597,"Transformation, from annual crop, non-irrigated, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.000775222479922244,0.0014388473503800267,0.01195768914873402,0.0008225766502139364,0.0016187607918846819,0.012293094972091948,0.001190672115094625,0.002438438493174425,0.012498265931608618,0.00034809422401000875,0.0005431594710026486,0.019227978525281644,0.00033953586211973955,0.0005094043250142205,0.0188643551166839,3.9639301310468707e-05,4.771878441787161e-05,0.0003954664846334659,0.0,0.0,0.0,0.00036590316945601297,0.00039109874033134364,0.0004263178393555053,0.019648713063232008,0.02057255361469066,0.021830986328152863 +598,"Transformation, from arable land, unspecified use","('natural resource', 'land')",natural resource,square meter,biosphere3,2.739207649852281e-06,6.409985523776828e-06,9.365608841198013e-06,0.00016942697645330702,0.00039361627146186954,0.01718013508700392,0.00010228415581951228,0.0002454588914830506,0.010927226918275608,0.000421362040746181,0.0009659347289688322,0.01766604975291132,7.267098466272827e-05,0.00018109089301201678,0.028792306748176587,6.0609596977197346e-05,0.0001513413501811858,0.02857007292092843,0.00022526030402355936,0.00032092374867391906,0.018304680150203,4.030456198909835e-06,4.301646993329242e-06,4.681368591393748e-06,0.019263344743695825,0.020129167268681965,0.021304067681311066,0.03048702863284925,0.03178246937701248,0.03353154289798358 +599,"Transformation, from cropland fallow (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,2.367317517912364e-07,5.79735761021456e-07,1.1576344643609813e-06,7.657987958706577e-07,1.6217618158129856e-06,3.1584950399267792e-06,5.857087468072212e-07,1.2428207224844558e-06,2.4876806978761434e-06,5.854209607079883e-07,1.2427131851873972e-06,2.4967497240659167e-06,5.892591523034371e-07,1.2989983596333842e-06,2.6152083521869454e-06,2.985150024821577e-07,7.038272784797026e-07,1.3678151245821027e-06,5.091058440142469e-07,1.0192338506403327e-06,1.997732954855683e-06,7.091367828413509e-07,7.705597348072849e-07,8.573859784784905e-07,1.1989694813972566e-06,1.3061036679098637e-06,1.4575766583708188e-06,8.337011394524339e-07,9.074193239749506e-07,1.0116534773215095e-06 +600,"Transformation, from dump site, inert material landfill","('natural resource', 'land')",natural resource,square meter,biosphere3,4.732221298276356e-06,1.2887679883019374e-05,3.144744455371429e-05,5.0019431017125265e-06,1.5516374006059465e-05,3.503580192772612e-05,6.300710231033332e-06,1.944126755182706e-05,3.9188683535158086e-05,6.4734800286009994e-06,2.001427040706824e-05,3.972308667853391e-05,6.673375700510142e-06,2.057182845533496e-05,4.0455875654723764e-05,6.2047730988668754e-06,1.859999079774669e-05,3.84659445713162e-05,7.299928716255836e-06,2.0256462282774273e-05,4.1464695468448484e-05,2.341775325001499e-05,2.442876142942842e-05,2.579716939321938e-05,2.926536548671114e-05,3.056760182685099e-05,3.233768492365926e-05,2.836378703240307e-05,2.9624413569692957e-05,3.13401655997445e-05 +601,"Transformation, from dump site, residual material landfill","('natural resource', 'land')",natural resource,square meter,biosphere3,5.930601875250505e-05,6.61954805039843e-05,0.00011786624505845336,5.787330464377906e-05,6.16694028773228e-05,6.913758632802277e-05,5.995178649296848e-05,7.439187413171975e-05,0.0001125035842435607,5.9967680085798776e-05,7.448014757489629e-05,0.00011276252222474525,6.138087365434082e-05,7.7296781977531e-05,0.00011213976122058065,5.829541404379673e-05,7.096089446761201e-05,0.0001126286440699487,6.359128261763934e-05,7.14886197926326e-05,0.0001201501357326675,1.801064675409831e-05,1.883563542406787e-05,1.99542475532198e-05,1.6945639895844982e-05,1.7772774059975753e-05,1.889943555646685e-05,1.6957879735299515e-05,1.7751678545200706e-05,1.8836097177318788e-05 +602,"Transformation, from dump site, sanitary landfill","('natural resource', 'land')",natural resource,square meter,biosphere3,8.331214773780724e-08,3.0129116697474615e-07,6.112634441024409e-07,1.3074972139895644e-06,2.8410001543768245e-06,4.036091105749658e-06,3.9637353205469593e-07,8.746148072315638e-07,1.2974320530786605e-06,8.548459366494095e-07,1.8440510319302245e-06,2.539660875866658e-06,9.759786945755058e-07,2.1497882094380457e-06,2.667450499858637e-06,1.152563823940882e-06,2.813316061921515e-06,3.1515474828109967e-06,7.394854779731876e-07,1.8335432512121407e-06,3.2999661755812433e-06,5.226394610194889e-07,5.494151902578995e-07,5.862178509286263e-07,2.1604803007921944e-06,2.258434487983981e-06,2.391182631794402e-06,2.1044018228773522e-06,2.196620382661223e-06,2.3215038476098436e-06 +603,"Transformation, from dump site, slag compartment","('natural resource', 'land')",natural resource,square meter,biosphere3,1.9768492815735196e-08,4.5779174569934766e-08,7.78703892648141e-08,9.279828376393422e-07,2.82382543800247e-06,7.042661367484397e-06,1.1777256525552897e-07,3.784485463481997e-07,8.145237918214929e-07,6.690597704392222e-08,1.674206217970007e-07,3.4178434080683086e-07,8.813863010338162e-08,2.136328971211149e-07,3.3451855366591316e-07,5.73139468834919e-07,8.397123162354111e-07,1.3986875841810344e-06,6.795726512968799e-07,9.518055681728826e-07,1.5528000772813428e-06,6.047220126148899e-08,6.497513216507227e-08,7.104502285811764e-08,6.302119936714851e-07,6.663225014941458e-07,7.159556447011282e-07,6.047891787167837e-07,6.394250323892789e-07,6.872599569188354e-07 +604,"Transformation, from forest, extensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0006709482405620413,0.0015246372958230847,0.005644842865740296,3.887519074625319e-05,9.576228254312253e-05,0.0025535813026926427,0.00020865322983374887,0.000449318250393588,0.0027717516620068784,9.693153897697145e-05,0.00020336675510715326,0.0003785254679427117,8.595723819240015e-05,0.00018255298403924307,0.0004960582821548711,8.770533670727063e-05,0.00018222383485243468,0.0004861297765173648,0.0001072190656991549,0.00020889373743140685,0.0005401888027135708,0.0030866166098016475,0.0032212570001283894,0.0034036739894595623,0.00044208949950993304,0.00046347852217803505,0.0004926320004192629,0.0004103012074403316,0.00042892584569400986,0.0004541829948158269 +605,"Transformation, from forest, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,4.676422631517381e-07,2.342958646225129e-06,0.0018125765046039465,0.0020892619133507004,0.004374450206788505,0.006690956806169201,0.0031431596913651582,0.0075705053007207755,0.0065025291541515725,0.004317099108969481,0.009909585896319061,0.007611519347162606,0.010594510969533545,0.023384878242555748,0.007076216094109307,0.007511326329223791,0.0166782129041752,0.006817306684621635,0.009188522579830136,0.020097619781667953,0.0072016100506125036,0.0019359865035252924,0.0020183300465967135,0.0021295134930421943,0.004490335844632095,0.004688124736166784,0.004956167291671146,0.00439869547102841,0.004594045349334886,0.0048595356165360695 +606,"Transformation, from forest, primary (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,4.676422631517381e-07,2.3429586462251295e-06,0.0018125765046039465,1.2385763033380799e-05,2.85494915397653e-05,0.0007591205861180744,1.5082599847756473e-05,3.4801174604389216e-05,0.0007098764152365398,2.2186156912719326e-05,5.062698117287208e-05,0.000600447175523364,1.6447406890531536e-05,3.7705903248399184e-05,0.0007547511488308122,1.584759229036971e-05,3.6199935717901664e-05,0.0007464808181228891,1.7504914015500897e-05,3.91010169829607e-05,0.0005158721854108662,0.0019359865035252922,0.0020183300465967135,0.002129513493042194,0.0005177145560757651,0.0005397742036637299,0.0005695604675598091,0.0007680121746630179,0.0008006499235507691,0.0008447212850553443 +607,"Transformation, from forest, secondary (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.24552481160758e-06,2.1641620837533935e-05,0.0010107329132248398,2.5686633712161127e-06,6.538726854516223e-06,0.0010957305394654082,2.075126325046212e-06,5.516056302628263e-06,0.001070365726172309,1.5916764299074364e-06,4.19991756703881e-06,0.0007370483870544992,0.0,0.0,0.0,0.0007860652687433528,0.0008194947514569851,0.0008646332628417108,0.0011420063736543571,0.001190551115987305,0.001256096947367365 +608,"Transformation, from forest, unspecified","('natural resource', 'land')",natural resource,square meter,biosphere3,0.00024160624111541033,0.0012862736530651958,0.004651685905686859,0.00020323542739139798,0.0011975473235685018,0.004173123678066293,0.00015463894257401446,0.0011518041436472022,0.004320457116666238,0.00016357741220457563,0.0011556523222952687,0.004316764984919213,0.00016559057727124458,0.001120464213722284,0.004046573717900514,0.0001712755730378331,0.0011319148037865628,0.0040837422754567395,0.00038513658001892894,0.0012915424447292787,0.004058032458749375,0.0042452386932540645,0.004710132686678192,0.005380647523157179,0.003598755247589084,0.003986074440626348,0.0045441550607128916,0.003873840985475207,0.0042857331391432385,0.004879020600928348 +609,"Transformation, from grassland, natural (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,1.0968454430847931e-08,3.4936550148056706e-08,1.2269639733893742e-05,1.2015046816244721e-08,3.9543586042737736e-08,1.2270987801401493e-05,1.7929297609888396e-07,3.903373786743983e-07,5.3934119084383693e-05,2.19928029229864e-08,5.0224599133317906e-08,6.910591875931257e-06,7.413292209263146e-08,2.917161454201191e-07,8.044371761938082e-06,1.325366580646206e-06,2.720154912190314e-06,0.00015922067193445514,0.0,0.0,0.0,0.00016843080626039827,0.00017566060421372247,0.00018543013322246986,8.513557740319805e-06,8.874542693590604e-06,9.362279960827822e-06 +610,"Transformation, from grassland, natural, for livestock grazing","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.772457003333143e-06,1.9002803533946743e-05,6.723444413655981e-06,4.562447839156971e-06,9.587366555646154e-06,8.729104442528674e-06,0.0,0.0,0.0,5.779481751392329e-06,6.33769071209159e-06,7.07579503877566e-06,4.532313327528514e-06,4.806503712425613e-06,5.180143601143921e-06 +611,"Transformation, from heterogeneous, agricultural","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,3.263188413315051e-07,7.194268083571832e-07,1.022749415817578e-07,4.1601358895473533e-07,9.364722094628744e-07,2.2710469006734948e-07,7.398293490029904e-07,1.656691130318095e-06,3.7505633588233264e-07,1.934496369406345e-08,7.500655998163922e-08,1.7414162214398703e-07,2.990263018487533e-08,1.1099618118452396e-07,2.3282046571486546e-07,2.5371947959057234e-08,9.719443620198546e-08,2.1930838785930886e-07,0.0,0.0,0.0,2.120093935818545e-07,2.1989479640206997e-07,2.305305092562944e-07,2.2574660402889717e-07,2.3477947275279085e-07,2.4707003899022533e-07 +612,"Transformation, from industrial area","('natural resource', 'land')",natural resource,square meter,biosphere3,4.017512787791464e-06,9.421062893732774e-06,1.018391340982738e-05,3.3715773508640937e-06,7.496423707558153e-06,1.022713406277692e-05,3.546919634269778e-06,8.154080957342332e-06,8.381742744575413e-06,4.143697478410333e-06,9.410561754833771e-06,9.63876128639638e-06,5.939198466225153e-06,1.3415385380863695e-05,9.17669117920388e-06,5.889201591255534e-06,1.3212578622326102e-05,9.004533565890916e-06,6.963821749342341e-06,1.5264337153414228e-05,9.144013446941381e-06,8.187053138263251e-06,8.67786319344738e-06,9.35046714195455e-06,5.970711636577615e-06,6.3016526848115025e-06,6.7515957830888905e-06,6.095802767362603e-06,6.432168462379782e-06,6.8909839013450004e-06 +613,"Transformation, from mineral extraction site","('natural resource', 'land')",natural resource,square meter,biosphere3,5.285097187731204e-05,9.902383810867445e-05,0.00020004126842279704,5.642164919084044e-05,9.44622538776526e-05,0.00022084913780435808,5.1916227743447916e-05,9.211195688349269e-05,0.00021770279287486788,5.270626106276322e-05,9.361445874917886e-05,0.00022093097257498215,5.3302942640635164e-05,9.755323533489314e-05,0.00022790743306373902,5.837203644227423e-05,0.00010761589464407863,0.00021809056248330382,0.0001427112809561067,0.00018689396822407797,0.0003212484488814704,0.0001301343292152462,0.00014992572541278399,0.00017844769468232388,0.00014407995209474853,0.00016478659796316492,0.00019456020492088498,0.00014027819588077574,0.00016076112803973175,0.00019022868973295223 +614,"Transformation, from pasture, man made","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0001331788953856341,0.00016806166643452137,0.00029081005736520066,0.00013196966352908558,0.00016900028347974075,0.00024653764167350325,0.00013467282564811144,0.00019249360956121443,0.0003574071131178662,0.00013555052915571693,0.00019479355616791518,0.0003607938839675987,0.0001354382465532365,0.00019542597917505603,0.0003680214610210031,0.00013657594671690168,0.000196335943650403,0.0003564020460746551,0.00016048459625749468,0.00022420682106416884,0.0005957758004605987,9.045528016402496e-05,9.463119132181596e-05,0.00010030690550820374,0.00032110849768002145,0.0003353511827719238,0.0003546320398200971,0.00010437664504660648,0.00010918071321084308,0.00011573537654439331 +615,"Transformation, from pasture, man made, extensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,1.3290415703437249e-12,2.126419306274985e-11,6.080979703298778e-11,3.7374050218310227e-13,6.4136089157179345e-12,1.7938005449037564e-11,3.810481495550908e-13,6.424922816834562e-12,1.7950020604121717e-11,3.7246851956881897e-13,7.480580372046692e-12,2.080086895948156e-11,2.187017695696623e-13,4.087198795818045e-12,1.1304222279117053e-11,5.2108313917090446e-14,7.977874657370723e-13,2.193276705326437e-12,0.0,0.0,0.0,2.2002674538973467e-12,2.2972659168221944e-12,2.427273284390592e-12,1.1412541859553107e-11,1.1906236985210132e-11,1.2568364219094312e-11 +616,"Transformation, from pasture, man made, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,2.990352100223107e-07,5.043299406805705e-07,6.464389810601632e-05,0.00014351921924054566,0.00031119988023331686,5.287701548058264e-05,0.00017855053010606113,0.0003997602508738901,0.00010077500092637037,0.00032744748972717334,0.0007323665977418847,0.0002672519607117972,8.853174676875218e-07,1.1128185013032681e-06,4.477989201704027e-06,8.768675655407916e-07,1.148159644094321e-06,4.718269970563034e-06,1.6509179920387456e-06,1.9459217834283994e-06,5.702752844404921e-06,6.855215078254764e-05,7.153651546329477e-05,7.557482328152136e-05,3.936876580532871e-06,4.121192771382446e-06,4.372133233443821e-06,3.852056680400845e-06,4.028734039898729e-06,4.268883140553105e-06 +617,"Transformation, from permanent crop","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,8.318115609290571e-07,2.6494732229917513e-06,0.000930489180899104,9.111816618185088e-07,2.9988556012927913e-06,0.0009305913849556774,3.2218992358151387e-06,9.287428454294883e-06,0.0021207547420682782,4.329252386741485e-06,1.153709325976283e-05,0.002281561054657182,3.219497398084773e-06,9.34640201923861e-06,0.0022434441418408254,4.419144512375807e-06,1.1508675993087267e-05,0.002196484487846378,0.0,0.0,0.0,0.002342219861282348,0.0024418500519916473,0.002576373013459744,0.002393826898091839,0.002495695649818352,0.002633250592956093 +618,"Transformation, from permanent crop, irrigated","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9170683132695422e-07,5.864267920054645e-07,0.0011243142518257646,2.668962177079112e-07,7.49145258515524e-07,0.00012065857761191314,2.2677231756379193e-07,5.844218003050661e-07,0.00012836407447490913,3.9324678967086603e-07,8.993371660826066e-07,0.00012874636883962684,0.0,0.0,0.0,0.0001371825518874955,0.00014303322003817907,0.00015093475483625337,0.00013704049243948383,0.0001428914531928165,0.00015079464383330697 +619,"Transformation, from permanent crop, irrigated, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0252956162231248e-21,1.7287697647572368e-20,4.829856137083607e-20,1.002210192229136e-21,2.0128181306035547e-20,5.596940891163812e-20,5.51187919130207e-22,1.0300852177738626e-20,2.8489713492919935e-20,1.957024909530159e-08,2.2213731372907314e-08,3.184081198812936e-08,0.0,0.0,0.0,8.339589620743002e-09,8.887242160380452e-09,9.651345817492781e-09,2.876270828514289e-20,3.000695422577582e-20,3.167569487183006e-20 +620,"Transformation, from permanent crop, non-irrigated","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.819300521300837e-05,3.3938651789817105e-05,5.4936038255145956e-05,0.0,0.0,0.0,3.103391386374419e-05,3.267268499657976e-05,3.488460619637675e-05,0.0,0.0,0.0 +621,"Transformation, from permanent crop, non-irrigated, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,3.2800435512430465e-15,5.247953178011173e-14,1.500771586543215e-13,1.24157968240103e-16,2.130624450406126e-15,5.959071328405357e-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +622,"Transformation, from river, natural (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.764338994344033e-06,5.358365483350902e-06,7.270258386437902e-06,0.0,0.0,0.0,3.2259986935059903e-06,3.3869362529217505e-06,3.605603249525946e-06,0.0,0.0,0.0 +623,"Transformation, from seabed, infrastructure","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,1.3618201879282219e-08,3.00030487816697e-08,1.4479728832816906e-08,7.898839897483226e-09,1.7482010853853062e-08,1.3993849916928153e-08,8.048712493875056e-09,1.814433321421784e-08,1.4257488615101992e-08,3.6529915736495227e-08,8.014632817784185e-08,2.7150147596033175e-08,2.6358678990553437e-08,5.8151862421034534e-08,2.6065787079366314e-08,4.064213676940965e-08,8.911406809374881e-08,2.8275829390579978e-08,0.0,0.0,0.0,2.5793636323218782e-08,2.6946619742500116e-08,2.8493815891203294e-08,2.44089618059326e-08,2.5522675921749534e-08,2.7017082239792204e-08 +624,"Transformation, from seabed, unspecified","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0005041110289315756,0.0013086240446950157,0.0014782326156807864,0.0005384041123198364,0.001258540709958506,0.0006626116205953804,0.0002966321851301837,0.0007352302411255199,0.0006309169481041808,0.0003024813091236428,0.000749973290464605,0.0006305119678732241,0.00035380410056515873,0.0008570674421609271,0.0006285071089589575,0.00025966830819242683,0.0006539080828298089,0.0006267181466340104,0.00039384040040063356,0.0009350615680913636,0.0006076053196437877,0.001334860135301421,0.0014750301976613198,0.0016766356231911724,0.000565271159551659,0.0006159822384694432,0.0006884095024837328,0.0005941458753558374,0.00064774348351914,0.0007243020410155502 +625,"Transformation, from shrub land, sclerophyllous","('natural resource', 'land')",natural resource,square meter,biosphere3,9.196751565254803e-05,0.00011390831900038123,0.00018823314489924757,9.696286481911282e-05,0.00013039264162831752,0.0008385167810114467,9.350349675591356e-05,0.00013448830881948077,0.0006631206163385208,8.995459224640472e-05,0.0001260849789096178,0.0002455285792952999,9.087243024301905e-05,0.00012865894028605543,0.00025359139684960294,8.970804860581774e-05,0.00012508122238041826,0.0002424960313906645,9.928577181264965e-05,0.00012895912474096042,0.00025650654440440636,5.4423445273154554e-05,5.6874463895485405e-05,6.0205000372472165e-05,6.467722068839343e-05,6.760942003558156e-05,7.159545160191756e-05,6.458567482128077e-05,6.748831736788279e-05,7.144399398261303e-05 +626,"Transformation, from traffic area, rail/road embankment","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,1.5297923244271753e-05,3.381097063225434e-05,5.645089323885939e-05,2.3201433790797117e-05,5.6547159839877485e-05,5.6445845835562465e-05,3.1698615155244764e-05,7.336329794388158e-05,6.48440966840335e-05,7.612887842746026e-05,0.00016846563378519356,6.401797430260742e-05,5.295909508900566e-05,0.00011809684678969991,6.2156768100078e-05,6.343976645286191e-05,0.00013948094243880043,6.412005214201887e-05,0.0,0.0,0.0,3.223267522346844e-05,3.363840330939963e-05,3.554065374226654e-05,3.1761027240038895e-05,3.31534746076981e-05,3.504217702592551e-05 +627,"Transformation, from traffic area, road network","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1648621380557694e-21,7.02245052522454e-20,1.9619400141107071e-19,-7.361846517595593e-19,6.332149358028029e-19,-3.4041363320888152e-18,2.294106456434654e-21,4.287331174634049e-20,1.185774096230296e-19,4.564296672535818e-22,6.988018612614407e-21,1.9211455553863167e-20,0.0,0.0,0.0,1.9272689257357253e-20,2.0122322892160595e-20,2.126108972338296e-20,1.1971364482280656e-19,1.2489233714665073e-19,1.318378244430069e-19 +628,"Transformation, from unspecified","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0005230086415442118,0.0010568151426118074,0.0027813293927507724,0.000709215760665977,0.0013794873462545276,0.003018369811796967,0.0006553084261974234,0.0013206844479427603,0.002610863076679634,0.0006582993627376236,0.0013263177358623555,0.002619251711025189,0.0006849301023750218,0.0012334831019062324,0.002442498740409496,0.0006135562006470305,0.0010731895362406482,0.0024997305958875467,0.000576472467581803,0.0009276931183211571,0.0025988677383268284,0.0007413788603041981,0.0007962716330493689,0.0008736061945419946,0.0009365555715203874,0.0010088858139066714,0.0011104514324344853,0.0008993200553053156,0.000964304495551265,0.0010552752309679703 +629,"Transformation, from unspecified, natural (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.8428878836421884e-08,8.068607961135893e-08,1.728164772168854e-07,3.15543477168551e-08,8.937780600845529e-08,1.8488915280032983e-07,3.316675466997555e-08,1.0257935717000403e-07,2.2451194590910824e-07,3.219229496044961e-08,9.781929477947351e-08,2.150297882855738e-07,7.312380931385032e-08,2.724919041887173e-07,5.52297503265389e-07,0.0,0.0,0.0,3.8652511380159976e-07,4.023383393177691e-07,4.2368854986932625e-07,1.8097311679391274e-07,1.8891107583871384e-07,1.9969293459195444e-07 +630,"Transformation, from wetland, inland (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,1.4624606754494002e-10,4.658206956097045e-10,1.6359520592339377e-07,1.6020063349147114e-10,5.272478444284638e-10,1.63613180157871e-07,1.9305609412799223e-10,5.909219290480506e-10,1.6362764272002643e-07,3.2825648141903325e-10,8.766628357497018e-10,1.7448562066470687e-07,2.674069528136813e-10,6.145441282540309e-10,1.8851741116779363e-07,0.00010462274257289003,0.00010760704302147043,0.00011836761328044024,0.0,0.0,0.0,1.2585358732398834e-05,1.3189756414294104e-05,1.4012756091672914e-05,2.0136892656972585e-07,2.099384992901833e-07,2.2151015989364038e-07 +631,"Transformation, to annual crop","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,4.858703979089559e-05,0.00010868285731817019,0.00012541970835924438,3.772864443827399e-05,8.838851129323458e-05,0.00012438588849934763,5.118304701064986e-05,0.0001131137406966055,0.0001529901697882623,7.016461224054609e-05,0.0001576589405968691,0.00014442031483822591,5.9909954491336763e-05,0.00013443331127777918,0.00013145334799065077,0.00013580696077602334,0.0002070432331044419,0.0003286984166538269,0.0,0.0,0.0,0.00019598087440858902,0.00022756906535406087,0.0002728805883681502,0.00010075879090989259,0.00010675016802590031,0.00011483849163509002 +632,"Transformation, to annual crop, irrigated","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.009699832268658e-05,4.452836638430641e-05,2.6715079043969233e-05,0.0,0.0,0.0,1.701610095762257e-05,1.8041218762255593e-05,1.9468253006124458e-05,0.0,0.0,0.0 +633,"Transformation, to annual crop, irrigated, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,5.914479379488521e-07,1.2984595500672105e-06,4.4550563308296464e-06,2.6456243833130337e-07,4.190916456874056e-07,5.600020571151029e-07,6.054258208191103e-07,1.1109466056607609e-06,1.6546936123718637e-06,2.1224950119875297e-07,2.632701997761432e-07,3.911606890987968e-07,2.090215227007982e-07,2.4676092537918556e-07,3.68702166755558e-07,3.776701088053763e-07,4.3247310989714215e-07,7.122521084681741e-07,0.0,0.0,0.0,2.5321344061196687e-07,2.912223806325676e-07,3.459411986152761e-07,1.1192250167763599e-07,1.192366086276941e-07,1.2945881635058438e-07 +634,"Transformation, to annual crop, non-irrigated","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0003667252510550617,0.0006186261776056004,0.07927609060537837,2.242912943778066e-06,2.923925229164506e-06,5.921274209830302e-06,2.073561564322525e-06,2.873855722286972e-06,5.83307290600398e-06,2.2000493098765454e-06,3.1202934596283186e-06,5.69425813939316e-06,1.8628142316372526e-06,2.3660796819146566e-06,5.484756385420844e-06,1.8907171899157332e-06,2.4121819127505737e-06,5.449979213692836e-06,7.858607048514219e-05,0.00020701988943785642,0.027811220148263986,0.08406896440275076,0.08772884044245746,0.09268121950579866,0.02961220888389749,0.030874905891066624,0.03258033101045337,3.0882973346701547e-06,3.756833412445498e-06,4.7260251504467465e-06 +635,"Transformation, to annual crop, non-irrigated, extensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.00016853758527272757,0.00035823681425829046,7.230304938690517e-05,0.0002009528878641615,0.0004493611988589069,0.00011412897401129214,0.00036943225724900985,0.0008243112212357181,0.00019269325385926192,2.9096193857269355e-06,3.5974499561134567e-06,5.453066811684577e-06,2.8656247302943624e-06,3.377204724340142e-06,5.170888431863062e-06,3.6338942636280763e-06,4.121191376018501e-06,6.008440699728412e-06,0.0,0.0,0.0,1.6727224355150916e-06,1.7788732245289897e-06,1.9267057372466438e-06,1.6591866504779904e-06,1.7650007869131607e-06,1.9126623272133415e-06 +636,"Transformation, to annual crop, non-irrigated, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.002486505107059271,0.005355293358509623,0.14309613043256056,0.0015953007963496713,0.0034121523426802135,0.06395635472897591,0.002108424367979294,0.0045390017380226065,0.04472391420887457,0.00047912244584935945,0.0008699045747706611,0.07111754579273352,0.0004490802466210981,0.000782876654361551,0.07035212522885215,0.00014436181814683259,0.0003105190901580634,0.04577602444542855,0.0,0.0,0.0,0.04877923114015281,0.05086283462512616,0.05367744083513415,0.07459085840137122,0.07784909732999445,0.08225935731096115 +637,"Transformation, to arable land, unspecified use","('natural resource', 'land')",natural resource,square meter,biosphere3,4.367780006631461e-05,0.00010034561092514373,8.751614406836726e-05,9.173852534883985e-06,2.1710564878625684e-05,0.0014179324544822715,5.7445246695574335e-06,1.4255903452285523e-05,0.0011049406678493258,0.00043708415201110663,0.0010022638033118014,0.01850434017379781,7.625262424566676e-05,0.00019005719626109555,0.03021653607327566,6.359955003032787e-05,0.00015886705348056257,0.02997971240893329,0.00022596359872132396,0.000323793154143395,0.019433281189625912,7.310013080776753e-05,7.673047312473845e-05,8.163864477393476e-05,0.020470359394444006,0.02138752076927121,0.02263174959489873,0.03199127337986289,0.033350620268191154,0.03518597707056512 +638,"Transformation, to cropland fallow (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,7.06758808266989e-07,1.2507691493561674e-06,2.24422337555229e-06,1.6715858558579339e-06,2.8650266382770386e-06,5.110458445881845e-06,1.357052965847643e-06,2.315255350451801e-06,4.3165233489721385e-06,1.356406051457161e-06,2.312603919215869e-06,4.320227501286347e-06,1.3709522611953519e-06,2.4215714669939943e-06,4.517005182738035e-06,1.0385208949850122e-06,1.7250133345249174e-06,3.061259807140422e-06,1.5270425818052826e-06,2.373688077897134e-06,4.182029088196885e-06,1.2966305446975463e-06,1.3865856589966931e-06,1.5122640547536943e-06,2.176468280855638e-06,2.3434500996777013e-06,2.576400105531288e-06,1.6531623364577098e-06,1.7698637456718255e-06,1.9332331012827024e-06 +639,"Transformation, to dump site","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0001113683964025356,0.00018059577738591552,0.0007660266008781872,0.0002102017090886108,0.0003711268890505278,0.0008187198852940847,0.00019862237017443773,0.0003573178874586096,0.0008318597337633873,0.00019899089306263886,0.00035846052715925186,0.0008343007782993242,0.0002186391133977749,0.00040179323934415176,0.0008351868469325997,0.00014103103818337005,0.00023404077199069132,0.0008405411404196526,0.00011668287756269214,0.00017244050230049573,0.0008478343003216955,9.074012283824271e-05,9.424140879781779e-05,9.899648137914298e-05,0.00013495735565331735,0.00014175887958142847,0.00015090615889707174,0.00013464755555170859,0.00014140511615256128,0.00015051789234654051 +640,"Transformation, to dump site, inert material landfill","('natural resource', 'land')",natural resource,square meter,biosphere3,4.732221298276356e-06,1.2887679883019374e-05,3.144744455371429e-05,5.0019431017125265e-06,1.5516374006059465e-05,3.503580192772612e-05,6.300710231033332e-06,1.944126755182706e-05,3.9188683535158086e-05,6.4734800286009994e-06,2.001427040706824e-05,3.972308667853391e-05,6.673375700510142e-06,2.057182845533496e-05,4.0455875654723764e-05,6.2047730988668754e-06,1.859999079774669e-05,3.84659445713162e-05,7.299928716255836e-06,2.0256462282774273e-05,4.1464695468448484e-05,2.341775325001499e-05,2.442876142942842e-05,2.579716939321938e-05,2.926536548671114e-05,3.056760182685099e-05,3.233768492365926e-05,2.836378703240307e-05,2.9624413569692957e-05,3.13401655997445e-05 +641,"Transformation, to dump site, residual material landfill","('natural resource', 'land')",natural resource,square meter,biosphere3,5.9306077560139346e-05,6.620124098418986e-05,0.0001178733613789712,5.787337549460945e-05,6.167517040408186e-05,6.914470603363713e-05,5.995184493612441e-05,7.439762549478174e-05,0.00011251067282163898,5.996773874617182e-05,7.448589937877205e-05,0.00011276961251481227,6.138093260861825e-05,7.730254239990059e-05,0.00011214687430571893,5.829548616247476e-05,7.096668078191679e-05,0.00011263580656229956,6.359136208780705e-05,7.149442349832575e-05,0.00012015737042421529,1.8010829298786068e-05,1.8835833472156355e-05,1.9954467509189584e-05,1.6945917944862393e-05,1.7773078696381508e-05,1.88997780779106e-05,1.695809280897477e-05,1.7751910160901785e-05,1.8836355003542995e-05 +642,"Transformation, to dump site, sanitary landfill","('natural resource', 'land')",natural resource,square meter,biosphere3,8.331214773780724e-08,3.0129116697474615e-07,6.112634441024409e-07,1.3074972139895644e-06,2.8410001543768245e-06,4.036091105749658e-06,3.9637353205469593e-07,8.746148072315638e-07,1.2974320530786605e-06,8.548459366494095e-07,1.8440510319302245e-06,2.539660875866658e-06,9.759786945755058e-07,2.1497882094380457e-06,2.667450499858637e-06,1.152563823940882e-06,2.813316061921515e-06,3.1515474828109967e-06,7.394854779731876e-07,1.8335432512121407e-06,3.2999661755812433e-06,5.226394610194889e-07,5.494151902578995e-07,5.862178509286263e-07,2.1604803007921944e-06,2.258434487983981e-06,2.391182631794402e-06,2.1044018228773522e-06,2.196620382661223e-06,2.3215038476098436e-06 +643,"Transformation, to dump site, slag compartment","('natural resource', 'land')",natural resource,square meter,biosphere3,1.9768492815735196e-08,4.5779174569934766e-08,7.78703892648141e-08,9.279828376393422e-07,2.82382543800247e-06,7.042661367484397e-06,1.1777256525552897e-07,3.784485463481997e-07,8.145237918214929e-07,6.690597704392222e-08,1.674206217970007e-07,3.4178434080683086e-07,8.813863010338162e-08,2.136328971211149e-07,3.3451855366591316e-07,5.73139468834919e-07,8.397123162354111e-07,1.3986875841810344e-06,6.795726512968799e-07,9.518055681728826e-07,1.5528000772813428e-06,6.047220126148899e-08,6.497513216507227e-08,7.104502285811764e-08,6.302119936714851e-07,6.663225014941458e-07,7.159556447011282e-07,6.047891787167837e-07,6.394250323892789e-07,6.872599569188354e-07 +644,"Transformation, to forest, extensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,2.876727191177572e-05,7.668083851166172e-05,0.00010788220554233648,0.00014638640983274904,0.0003232920774295588,0.0008521629376359468,2.9871206516471495e-06,1.3536985732119606e-05,2.419907755885499e-05,2.5756520978961693e-06,1.0424316991887345e-05,0.00015171110712652264,2.305033977242892e-06,9.317371967234907e-06,0.00015052603820690758,3.8841860162570865e-06,1.48056101748856e-05,0.00016721376701596885,0.0,0.0,0.0,0.00017422504312295713,0.00018199526192066724,0.00019258103274932565,0.00015835962987138273,0.00016494677431276716,0.00017386056181305966 +645,"Transformation, to forest, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0006646108081902289,0.0015127100758707062,0.0075569136918336366,0.002098078065607542,0.004390774418045466,0.006751971123835377,0.00320177499411402,0.007688987939450378,0.006765626415860526,0.004405942851254378,0.010089100876498234,0.007975822962874964,0.010673341558576448,0.023547586658109663,0.007432912519254099,0.007592281132051735,0.016842057959980488,0.007169164763859383,0.009287009991140485,0.02028533340764409,0.007587097739172657,0.005156583678019434,0.0053792412502434135,0.0056804983807659006,0.004773688955935625,0.004985610278858284,0.005272901429371717,0.004673796547374797,0.00488207511480132,0.0051651041870572345 +646,"Transformation, to forest, secondary (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9068723827561885e-21,8.273567623439528e-20,2.3114784962274296e-19,-8.673430775302863e-19,7.46028294724877e-19,-4.0106162251130734e-18,2.702823536950985e-21,5.0511603665895484e-20,1.3970311307052545e-19,5.377469924320058e-22,8.233001186366342e-21,2.2634160716372393e-20,0.0,0.0,0.0,2.2706303791747966e-20,2.3707307811789138e-20,2.5048956881752874e-20,1.4104177947496877e-19,1.4714310553341126e-19,1.5532599804369352e-19 +647,"Transformation, to forest, unspecified","('natural resource', 'land')",natural resource,square meter,biosphere3,9.872910937460593e-05,0.00011829973042673292,0.00019994656884789243,0.00010704049418203524,0.000129813885827892,0.00017294224596434892,0.0001037727571729008,0.00013761802756997654,0.00020779661896014247,0.00010433137781389526,0.00013892600079043067,0.00020923488015194838,0.00010616967932736715,0.00014294071997774215,0.00020977006091202097,0.00010298544315243428,0.00013515345845297865,0.0002084905857310171,0.00020193088135095097,0.00023469907296992407,0.00033811935104558833,5.531510798482405e-05,5.7816869631594e-05,6.121636064881702e-05,7.921293147285711e-05,8.297743812592318e-05,8.812165385223987e-05,6.193320694891982e-05,6.479582027978521e-05,6.870417600252061e-05 +648,"Transformation, to grassland, natural (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,1.0264592914767314e-05,2.3183426479316673e-05,2.8057637191834706e-05,1.3521198973155248e-05,3.056252146190399e-05,3.667257657685806e-05,1.3716335845837582e-05,3.093688684806029e-05,3.693900611291204e-05,1.4640423992178446e-05,3.31744123756062e-05,3.787962459144944e-05,1.4346901467263094e-05,3.239856606412715e-05,3.6776757699402476e-05,1.5213756324744949e-05,3.4070606803949946e-05,4.0125077470208565e-05,0.0,0.0,0.0,1.2160558621982062e-05,1.270155802180866e-05,1.3432105932272173e-05,1.0827854435256783e-05,1.1285501881440247e-05,1.1907470880439044e-05 +649,"Transformation, to grassland, natural, for livestock grazing","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2199511558633275e-14,6.46081956045294e-13,1.776208031311629e-12,0.0,0.0,0.0,1.7818694345116396e-12,1.8604228830806554e-12,1.965708335591072e-12,0.0,0.0,0.0 +650,"Transformation, to heterogeneous, agricultural","('natural resource', 'land')",natural resource,square meter,biosphere3,1.1112960198663454e-05,5.3766054310938715e-05,0.00020686473126951694,6.323692868631554e-06,3.6868329899919076e-05,0.0001288082940210195,4.5369828129900535e-06,3.425867406449526e-05,0.0001300398406146103,4.562823508718653e-06,3.397722238787326e-05,0.0001293507879418376,5.287291033168203e-06,3.454180021239761e-05,0.0001231643081055408,5.406674731661815e-06,3.4272888420738886e-05,0.00011939264785939837,5.934296014977643e-06,3.3641119287862464e-05,0.0001126490431121227,0.00018768168148554503,0.00020927661686008536,0.00024042844344873167,0.00010693389549769763,0.00011858081916282226,0.00013537438413060407,0.0001142168779151123,0.00012656383561735193,0.0001443624656891679 +651,"Transformation, to industrial area","('natural resource', 'land')",natural resource,square meter,biosphere3,0.00022861396847859757,0.00042089469550900916,0.0008404796867143854,0.0002752389980294427,0.00047258789336503517,0.0008682799718480634,0.0002557739518783708,0.00045639113715402707,0.0008524179074942275,0.0002580567470038269,0.0004609913466729462,0.0008562991366605939,0.0002713351301372526,0.0004976783701673637,0.0008791046711746136,0.00024745284836082956,0.00044357127404730473,0.0008860643331324514,0.00024901022331724624,0.0004057740898742547,0.0009043293973447049,0.00027777401970436276,0.000291420991013863,0.00031007555754007426,0.0002758648981145188,0.0002898754595111014,0.00030881448416659324,0.00029370116541882447,0.00030940391462761993,0.000330846717848515 +652,"Transformation, to inland waterbody, unspecified","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.55673021865834e-09,1.815420851483763e-08,4.099575064705178e-08,2.7014963511964372e-09,1.8425996303841526e-08,4.1521149598969094e-08,2.5597760583760607e-09,2.099486488091392e-08,5.0104752125784755e-08,2.8257994473601765e-09,1.8453042457198448e-08,3.897847860843526e-08,9.135724071269669e-11,5.818941570629036e-10,1.1571294870154036e-09,0.0,0.0,0.0,8.130559389877242e-10,8.539321039451686e-10,9.093185001897289e-10,2.9590018999244905e-08,3.108344875705487e-08,3.311443301100142e-08 +653,"Transformation, to lake, artificial","('natural resource', 'land')",natural resource,square meter,biosphere3,3.734157807041117e-05,6.267152453018953e-05,0.00047716488178231803,6.054324833304932e-05,0.00010797235703147469,0.0005133465606195878,5.2205547388171295e-05,9.596011422270895e-05,0.00013223432225915736,5.257078020059273e-05,9.726598149381549e-05,0.00013450443831374118,4.303854613285888e-05,7.708503483853394e-05,0.00013575368772333673,5.629760728689881e-05,0.0001044249656721329,0.00013239552536612804,7.069969984097155e-05,0.0001274539160745453,0.00017161382871057698,7.173358776137738e-05,7.483817897732171e-05,7.91069396126581e-05,9.051066312932558e-05,9.525684019893325e-05,0.00010169783286555088,7.288403056462641e-05,7.698070543583697e-05,8.261416921970467e-05 +654,"Transformation, to mineral extraction site","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0003434119152942115,0.001549229683210666,0.005017052209226447,0.00031843245630600015,0.00146926666806472,0.004615987273734121,0.00027339855124603737,0.0014436220295809892,0.004748988793477418,0.00027129222449717965,0.0014268709777427843,0.004716488299051945,0.00026914172583751496,0.0012224983652522647,0.004264554749353581,0.00029317614544733357,0.0012739830936514577,0.004320950225655639,0.0005686463858803289,0.0014531935536765553,0.004391083203065741,0.004245891120189374,0.004714940612066576,0.005391450526919831,0.003658802610567258,0.004059528109347829,0.0046371367492855755,0.00392481058815601,0.004348245467801729,0.00495834087170074 +655,"Transformation, to pasture, man made","('natural resource', 'land')",natural resource,square meter,biosphere3,9.2434556127723e-07,1.5913465609433277e-06,4.602312820580071e-06,1.1642369722446967e-06,1.852125489686528e-06,4.87503543542302e-06,1.0460275261729372e-06,1.612654635512033e-06,4.5156131720005035e-06,1.0588945304880254e-06,1.714512284610598e-06,4.813206429031611e-06,1.4574790830636658e-06,2.693069624452395e-06,4.44494633479403e-06,1.289077707280559e-06,2.3254121871980326e-06,4.386854077993966e-06,1.6384186361215174e-06,2.870720309859949e-06,4.692774201734832e-06,3.6678707001633135e-06,3.89073952982323e-06,4.187969725931015e-06,3.296627208992369e-06,3.532525685384436e-06,3.854173957853232e-06,3.2090919462046395e-06,3.4307164881105803e-06,3.7340982832577273e-06 +656,"Transformation, to pasture, man made, extensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,1.3290415703437249e-12,2.126419306274985e-11,6.080979703298778e-11,3.7374050218310227e-13,6.4136089157179345e-12,1.7938005449037564e-11,3.810481495550908e-13,6.424922816834562e-12,1.7950020604121717e-11,3.7246851956881897e-13,7.480580372046692e-12,2.080086895948156e-11,2.187017695696623e-13,4.087198795818045e-12,1.1304222279117053e-11,5.2108313917090446e-14,7.977874657370723e-13,2.193276705326437e-12,0.0,0.0,0.0,2.2002674538973467e-12,2.2972659168221944e-12,2.427273284390592e-12,1.1412541859553107e-11,1.1906236985210132e-11,1.2568364219094312e-11 +657,"Transformation, to pasture, man made, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,3.5092414385865606e-11,5.614661656838445e-10,1.605640217589233e-09,9.560844177852245e-12,1.640697625823118e-10,4.5888115940667086e-10,8.033530394407626e-09,2.4691657032619044e-08,9.226020967693834e-05,8.40445406965307e-09,2.584143049656556e-08,2.5782894448524414e-06,7.675137387272478e-09,2.3350320826466157e-08,2.607851015680423e-06,1.9277777336554818e-08,4.350160222675821e-08,2.6353218247095417e-06,0.0,0.0,0.0,2.7868309728980013e-06,2.9067654950253938e-06,3.068870122610551e-06,2.779008991106379e-06,2.8989612392310865e-06,3.0611592901898365e-06 +658,"Transformation, to permanent crop","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,1.700275373968054e-06,5.415690628306649e-06,0.0019019786624019533,1.8625129317468753e-06,6.1298504698851886e-06,0.0019021876331370882,5.305120737067221e-06,1.4451042732628408e-05,0.0028810939938003046,5.027974935518222e-06,1.3401620171486422e-05,0.0026453442936751627,3.7183673177550636e-06,1.0937109425538414e-05,0.0025872269658853936,1.631215450489717e-05,3.422788427367927e-05,0.0026221152620036826,0.0,0.0,0.0,0.0027793781293478483,0.002897803605019225,0.0030577045095509787,0.002760410989274561,0.0028778924196012196,0.0030365309021551665 +659,"Transformation, to permanent crop, irrigated","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9170683132695422e-07,5.864267920054645e-07,0.0011243142518257646,2.668962177079112e-07,7.49145258515524e-07,0.00012065857761191314,2.2677231756379193e-07,5.844218003050661e-07,0.00012836407447490913,3.9324678967086603e-07,8.993371660826066e-07,0.00012874636883962684,0.0,0.0,0.0,0.0001371825518874955,0.00014303322003817907,0.00015093475483625337,0.00013704049243948383,0.0001428914531928165,0.00015079464383330697 +660,"Transformation, to permanent crop, irrigated, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,2.0243213859691692e-07,5.96447169013557e-07,0.0016723554923373453,2.5209458025391705e-07,7.091779174458835e-07,0.0024100976797404795,1.3534056079233605e-07,4.287867743536816e-07,0.0016717997343851194,1.0252956162231248e-21,1.7287697647572368e-20,4.829856137083607e-20,1.002210192229136e-21,2.0128181306035547e-20,5.596940891163812e-20,5.51187919130207e-22,1.0300852177738626e-20,2.8489713492919935e-20,1.957024909530159e-08,2.2213731372907314e-08,3.184081198812936e-08,0.0017879303159906265,0.0018639275975959012,0.00196653496322441,8.339589620743002e-09,8.887242160380452e-09,9.651345817492781e-09,2.876270828514289e-20,3.000695422577582e-20,3.167569487183006e-20 +661,"Transformation, to permanent crop, non-irrigated","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9068723827561885e-21,8.273567623439528e-20,2.3114784962274296e-19,-8.673430775302863e-19,7.46028294724877e-19,-4.0106162251130734e-18,2.702823536950985e-21,5.0511603665895484e-20,1.3970311307052545e-19,1.8193005213008366e-05,3.3938651789817105e-05,5.493603825514596e-05,0.0,0.0,0.0,3.10339138637442e-05,3.267268499657976e-05,3.4884606196376746e-05,1.4104177947496877e-19,1.4714310553341126e-19,1.5532599804369352e-19 +662,"Transformation, to permanent crop, non-irrigated, intensive","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,3.2800435512430465e-15,5.247953178011173e-14,1.500771586543215e-13,1.24157968240103e-16,2.130624450406126e-15,5.959071328405357e-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +663,"Transformation, to river, artificial","('natural resource', 'land')",natural resource,square meter,biosphere3,5.7928752488527976e-05,7.464671320405048e-05,8.358655683758626e-05,5.091966847269416e-05,7.044998511399513e-05,0.00011896166651434872,4.6244398997736394e-05,6.645822516200667e-05,0.0001997863566491755,4.639622316496066e-05,6.692934742928568e-05,0.00020058787365987617,4.482037225130776e-05,6.4479703619044e-05,0.00021527784415073414,5.785535842088931e-05,9.199909787786637e-05,0.00021330333845499792,5.855758811654768e-05,8.305601921065424e-05,0.00021774156604987318,3.108578640731099e-05,3.304230965529134e-05,3.577284663286426e-05,5.122215581743528e-05,5.426316342790404e-05,5.849637314065851e-05,5.4655961721384e-05,5.7920199798772864e-05,6.247296226826571e-05 +664,"Transformation, to seabed, drilling and mining","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0005038531506307843,0.0013078638297835635,0.001477150798694393,0.0005381097800896681,0.0012577463055311292,0.0006616931985560426,0.00029643509433511443,0.0007346426109274126,0.0006300468908020141,0.0003022767008181336,0.000749373378266421,0.0006296320700011009,0.0003536109184954618,0.0008564659545617139,0.0006275583904131024,0.0002594781117171051,0.0006533169377748534,0.0006257753990047341,0.00039365040296508285,0.0009346030052735742,0.0006072899924814066,0.0013338648606422098,0.001473964132385338,0.001675469938980553,0.0005649814535396798,0.0006156642178275828,0.000688050872703614,0.0005932732430739566,0.0006468145864827585,0.0007232946250689469 +665,"Transformation, to seabed, infrastructure","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,2.9433223017163016e-07,7.94404427392333e-07,9.184220393967194e-07,1.9709079506805722e-07,5.876301981085141e-07,8.700573021607202e-07,2.046083055090932e-07,5.999121982100516e-07,8.798978722166374e-07,1.931820696972348e-07,6.014875992017494e-07,9.487185458104594e-07,1.9019647532471068e-07,5.911450549674955e-07,9.427476293184315e-07,1.8999743555004286e-07,4.5856281780521816e-07,3.153271624576404e-07,0.0,0.0,0.0,2.8970601205497694e-07,3.180206419462339e-07,3.5862978021974483e-07,8.726322819203232e-07,9.288970364247769e-07,1.0074159466519466e-06 +666,"Transformation, to seabed, unspecified","('natural resource', 'land')",natural resource,square meter,biosphere3,1.348004324829048e-08,2.944545707288848e-08,2.3718965020876792e-08,1.3618201879282219e-08,3.00030487816697e-08,1.4479728832816906e-08,7.898839897483226e-09,1.7482010853853062e-08,1.3993849916928153e-08,8.048712493875056e-09,1.814433321421784e-08,1.4257488615101992e-08,3.6529915736495227e-08,8.014632817784185e-08,2.7150147596033175e-08,2.6358678990553437e-08,5.8151862421034534e-08,2.6065787079366314e-08,4.064213676940965e-08,8.911406809374881e-08,2.8275829390579978e-08,2.0639899706895362e-08,2.1758160455899073e-08,2.3249631801241305e-08,2.5793636323218782e-08,2.6946619742500116e-08,2.8493815891203294e-08,2.44089618059326e-08,2.5522675921749534e-08,2.7017082239792204e-08 +667,"Transformation, to shrub land, sclerophyllous","('natural resource', 'land')",natural resource,square meter,biosphere3,6.414132079385164e-05,7.943023088378136e-05,0.00015000282363116156,6.511072779712054e-05,8.285060247575323e-05,0.00011525214072895457,6.676664282131314e-05,9.50862050371236e-05,0.0001538042236236095,6.736291202809523e-05,9.650588963570618e-05,0.00015536705412000753,6.911836667953004e-05,0.00010023203153943897,0.00015559760592887863,6.622589043543732e-05,9.321391364349943e-05,0.00015564482370819839,7.231026946316553e-05,9.453043089478554e-05,0.00016646759745394824,4.2011511762201235e-05,4.3878787278141695e-05,4.6408679931477454e-05,4.9001697676989776e-05,5.126513287627093e-05,5.4344258756581964e-05,4.8030857769239466e-05,5.021213752988171e-05,5.318502658152201e-05 +668,"Transformation, to traffic area, rail network","('natural resource', 'land')",natural resource,square meter,biosphere3,5.240671315102274e-07,4.799669290240262e-06,2.8985744610268634e-05,1.784497637233272e-06,1.0762639196943155e-05,5.3301233631217864e-05,1.8128186601496019e-06,1.0845363417360374e-05,5.3108488694343104e-05,1.816226539720034e-06,1.0848318547240005e-05,5.310023683095165e-05,2.055279399674308e-06,1.131230611715308e-05,5.315963385250434e-05,3.0041286829021475e-06,1.3316203976749522e-05,5.9601008727305175e-05,1.4708404462602154e-06,9.867452420457414e-06,5.9251951870738385e-05,2.751476419310661e-05,2.8454467854938912e-05,2.972358896701181e-05,5.464100767389068e-05,5.645758703399842e-05,5.8910527854327336e-05,5.4919058474558516e-05,5.675081678051256e-05,5.9225115335450605e-05 +669,"Transformation, to traffic area, rail/road embankment","('natural resource', 'land')",natural resource,square meter,biosphere3,7.4898226123581765e-06,2.0373792488765718e-05,6.72694724642875e-05,1.8729940310103673e-05,4.928791192491676e-05,0.00011785972272465677,2.9160440260517677e-05,7.736054064315811e-05,0.00012794768232569407,3.925518870731854e-05,9.737351893374814e-05,0.00014164296096380374,8.338472985033365e-05,0.000191906705982982,0.00014022616084421877,6.124535357201134e-05,0.00014328438656007513,0.0001433760726976208,7.190819422783995e-05,0.00016345899059988747,0.00014785895999683995,3.951430823402323e-05,4.103554035022534e-05,4.3098620454616964e-05,0.00010444493126830969,0.0001085975733564526,0.00011422317487229474,0.00010309461325689721,0.00010716054118313537,0.0001126710324550216 +670,"Transformation, to traffic area, road network","('natural resource', 'land')",natural resource,square meter,biosphere3,4.74018623584198e-05,6.472133198476661e-05,0.00014013352249182365,4.921249327816311e-05,7.837640814112147e-05,0.00015159424603971382,5.0141274551970426e-05,8.70468024374696e-05,0.0001775212634098122,5.0745946295748815e-05,8.79115269682786e-05,0.00017865478122073292,5.156582921321279e-05,8.923906774033559e-05,0.0001787444206569065,5.5510592542446216e-05,9.63375441519824e-05,0.00018439631835143823,5.6392086334275834e-05,8.898498489264238e-05,0.0001883674550512683,5.97590576299136e-05,6.629194716561778e-05,7.562214829392273e-05,9.045300848833746e-05,9.811016507570871e-05,0.00010897175416703313,9.301928401695518e-05,0.00010094472177690323,0.00011220021932426554 +671,"Transformation, to unspecified","('natural resource', 'land')",natural resource,square meter,biosphere3,5.973990287394547e-06,2.7891747722874242e-05,0.00011064982657051245,9.969502621860353e-06,3.607754884798773e-05,0.00013180473682937967,9.24510895889264e-06,3.485808076356068e-05,0.00012763905975277565,9.123132069369755e-06,3.566655385114625e-05,0.0001300607111563723,7.779613813913132e-06,3.4521994149668075e-05,0.00013466588502263787,9.548170813550478e-06,3.8041569857525545e-05,0.00013423994884607663,2.0275997510815208e-05,5.756076600741651e-05,0.00019762086507086216,8.34107049419943e-05,0.00010105862971824843,0.00012664905653799062,0.00015164744162550928,0.0001786422240553094,0.00021772851466914773,0.00010231067375031979,0.00012091831326105057,0.00014781112908325567 +672,"Transformation, to unspecified, natural (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1054526989168197e-06,2.419296115504814e-06,3.7786370308904667e-06,0.0,0.0,0.0,1.52081108117789e-06,1.5890638902527934e-06,1.6813994971829617e-06,0.0,0.0,0.0 +673,"Transformation, to urban, discontinuously built","('natural resource', 'land')",natural resource,square meter,biosphere3,8.357670813371279e-09,1.5305220264855153e-08,1.8288131772772953e-06,4.1060281172139063e-08,8.404796273255016e-08,5.729370080943282e-06,3.481805464198425e-08,7.30263652945599e-08,4.122990140418337e-06,5.044923144748616e-08,1.0850840470805568e-07,4.7816426438651365e-06,1.3537501375492895e-08,2.5115774054480433e-08,1.5181555550805646e-06,1.2571888278034216e-08,2.283244756306356e-08,1.4879371592129303e-06,1.5874396691261756e-08,2.759790745753005e-08,1.0764224060578517e-06,1.939733769642978e-06,2.024732000983e-06,2.139823070410197e-06,1.1258834613246367e-06,1.1768692318780466e-06,1.246105771741921e-06,1.5733592316778168e-06,1.643052551780355e-06,1.7375137465096879e-06 +674,"Transformation, to urban/industrial fallow (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,8.210991698111696e-09,1.905952380816501e-08,2.3295040153867976e-08,8.369483042248538e-09,1.9312523415356197e-08,2.3142407144044167e-08,8.207843290077971e-09,1.8943055214290714e-08,1.0423099583555876e-07,8.168226465758986e-09,1.8968990319950615e-08,2.4889756882071575e-08,8.117199765344208e-09,1.8813526483160146e-08,2.4597935087555796e-08,8.15609770946054e-09,1.877597865764908e-08,2.4518964797023097e-08,0.0,0.0,0.0,7.894640508389873e-09,8.246545836265421e-09,8.724116309547504e-09,8.083855407642924e-09,8.453071614384399e-09,8.956688679930283e-09 +675,"Transformation, to wetland, inland (non-use)","('natural resource', 'land')",natural resource,square meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5538429348678736e-20,2.6199631037962716e-19,7.319681969091691e-19,-2.746586285251892e-18,2.3624228498695405e-18,-1.2700284062971062e-17,8.55894181923768e-21,1.5995342317536467e-19,4.423932233806084e-19,1.702865434214242e-21,2.6071169783147464e-20,7.167484050811001e-20,0.0,0.0,0.0,7.19032935745118e-20,7.507313956013088e-20,7.932169484401572e-20,4.466323339679252e-19,4.659532012167733e-19,4.918656960397554e-19 +676,Triadimenol,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.717200249047849e-12,2.0702241879974058e-12,3.006539041443046e-12,1.6334515701732549e-12,2.021639553120028e-12,3.036479508261521e-12,6.960483957531567e-14,8.693613296645496e-14,1.314988230687868e-13,6.964388274219725e-14,8.813058695978512e-14,1.333558341383673e-13,6.433866233023329e-14,2.0380633686660018e-13,4.780615264766939e-13,6.131523663170158e-13,7.633693897794757e-13,1.1910032365898595e-12,0.0,0.0,0.0,4.610833832210956e-13,4.870716802678792e-13,5.228485661537678e-13,4.1161046811292443e-13,4.30091265827706e-13,4.549897611776319e-13 +677,Tri-allate,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.1954544544787504e-17,5.0470944829922155e-17,7.313239518527465e-17,3.9919138600581096e-17,4.9607843828572136e-17,7.479226249119551e-17,1.1467793817318801e-13,1.403910905874762e-13,2.0842297642807415e-13,1.1474646358610056e-13,1.4185798019560933e-13,2.10125845895756e-13,6.774400803931367e-14,7.983078715156804e-14,1.1908837917943142e-13,4.8521290650829785e-14,5.507491492111028e-14,7.902435317461886e-14,0.0,0.0,0.0,2.076046552069619e-14,2.212720733412336e-14,2.403439698321512e-14,3.585191780780222e-14,3.820458662431067e-14,4.149374936589008e-14 +678,Triasulfuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2430947524460934e-17,1.4954319573181076e-17,2.1668807913150237e-17,1.1827865670913833e-17,1.4698586529977002e-17,2.2160619308847975e-17,3.397856870734561e-14,4.1597262676827405e-14,6.175481123544844e-14,3.399887248580395e-14,4.2031895616064134e-14,6.225936396914608e-14,2.007225257908114e-14,2.3653512239234992e-14,3.528536464412599e-14,1.4376645697215383e-14,1.6318455836689082e-14,2.3414569394232615e-14,0.0,0.0,0.0,6.151234917608089e-15,6.556194524977783e-15,7.121286456671008e-15,1.0622766064621577e-14,1.1319851520392464e-14,1.2294416020389242e-14 +679,Tribenuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.785846108169849e-13,2.1529823673491743e-13,3.1267268873645756e-13,1.698749535054532e-13,2.102455454788918e-13,3.1578639947298907e-13,4.220616310029914e-15,5.346305658263233e-15,8.190241793374995e-15,4.222873236740373e-15,5.431920247836377e-15,8.338550454208533e-15,4.9081779302646695e-15,1.9094455973364436e-14,4.6583293615661075e-14,6.24897236223306e-14,7.793953954266064e-14,1.2178236908978684e-13,0.0,0.0,0.0,4.7405449686825997e-14,5.0072214754134744e-14,5.3742751493703887e-14,4.1863169713586474e-14,4.3723220215622724e-14,4.6226052427971335e-14 +680,Tribenuron-methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.4670997774637635e-14,3.3013274002543363e-14,5.942196889561652e-13,2.3574005551501616e-14,5.48261277425684e-14,1.2591923417116407e-12,8.335541874927177e-14,1.4862551439250185e-13,1.4506642697893054e-12,4.486630990553832e-14,6.257069099166786e-14,2.31497291828481e-12,2.7826199587122624e-14,3.898680896804798e-14,2.256611766950599e-12,2.060457528023334e-14,2.887760552563766e-14,1.7603274892476279e-12,0.0,0.0,0.0,1.8562249007639275e-12,1.9353121871464997e-12,2.0421217510299384e-12,2.376890734598317e-12,2.47816240743409e-12,2.6149343595714245e-12 +681,Tribufos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.038991973870352e-12,1.1722360441063873e-11,2.217538779679726e-11,6.833240707790428e-12,1.718584055599186e-11,2.3454122348055205e-11,8.645186787743858e-12,2.070472343218404e-11,2.3999301804106608e-11,1.862612029667204e-11,4.198313726629137e-11,2.3493480376732124e-11,1.3262631095270139e-11,3.027483441065087e-11,2.2873837117664532e-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5755781192732252e-11,1.6758943767265187e-11,1.8163203413707933e-11 +682,Trichlorfon,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3080175118867787e-10,9.538449318356694e-10,5.699100163933424e-10,0.0,0.0,0.0,3.6340270456178743e-10,3.8538859356494033e-10,4.1600978750572184e-10,0.0,0.0,0.0 +683,Triclopyr,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.01445846288636e-10,7.53305830286307e-10,1.246184485042068e-09,3.198111962672958e-10,9.025311460221019e-10,1.519330147853582e-09,2.0397315089514096e-10,5.891577849653888e-10,9.916088669881132e-10,2.5116229199283527e-10,6.8704937117062e-10,1.1689407948105002e-09,2.975061324673003e-10,7.089815382883781e-10,1.1159403405612177e-09,2.810464051342211e-10,6.579243115322057e-10,1.044420846095931e-09,0.0,0.0,0.0,4.935303801123891e-10,5.262249572095637e-10,5.704054843959499e-10,5.618310435856883e-10,6.011118062797195e-10,6.546581100631769e-10 +684,Trifloxystrobin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.6657261294295828e-14,3.741108286675609e-14,6.719849578758105e-13,2.6720142863625726e-14,6.207208349745101e-14,1.4238454869479279e-12,2.2410912632249564e-13,3.627060847418182e-13,1.9168488924522613e-12,1.6586409783849826e-13,2.3747230054365553e-13,2.8981822561668134e-12,9.98255756053952e-14,1.3732680233948566e-13,2.707622376830393e-12,2.29753396312535e-10,6.687472519861557e-10,9.46700560302142e-08,0.0,0.0,0.0,1.0084481491018446e-07,1.0513500459154953e-07,1.1092819414630685e-07,2.7607021801779158e-12,2.87925549111796e-12,3.039473484326982e-12 +685,Trifluralin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.4456145367915966e-08,3.223880509618024e-08,3.3933887278809576e-07,1.493140514378241e-08,3.372635256228962e-08,1.0262118158925745e-07,2.366947340339134e-08,5.302799464791354e-08,4.188813756921868e-08,2.4311026172432144e-10,5.569094449180136e-10,4.9167007728331495e-08,1.9544916724211346e-10,4.4579430167985e-10,4.875530862784417e-08,1.250589025744292e-09,2.6685384283109487e-09,1.3348532644422277e-07,0.0,0.0,0.0,1.417135057579559e-07,1.4779485596146677e-07,1.560134549766954e-07,5.1942659117640433e-08,5.4159050301242865e-08,5.7152766557663736e-08 +686,Trimethylamine,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.534012199896484e-15,2.384453156099891e-14,8.112578011778895e-12,2.343109149182988e-12,5.260173861326923e-12,1.1179619874399264e-10,1.6901172786851162e-12,3.852312790972915e-12,7.746794456556081e-11,2.3748417370917688e-12,5.408090565957953e-12,6.062137727649381e-11,2.5150163127663025e-13,6.24167745637117e-13,9.603581622035233e-11,2.0914580952529666e-13,5.191333703133363e-13,9.50189407911291e-11,4.151246845396304e-12,5.637418800200833e-12,1.6819257094240084e-10,8.651173657502688e-12,9.01862413178695e-12,9.514721290092623e-12,1.7391463659960245e-10,1.8221243519268767e-10,1.9352838366567528e-10,1.0138575390450456e-10,1.0569376931119594e-10,1.1151034758580867e-10 +687,Trinexapac-ethyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.4386911704205849e-11,1.7344608436889017e-11,2.5189206020979478e-11,1.3685253558203572e-11,1.69375515383065e-11,2.5440026186692467e-11,5.662537032069919e-13,7.076795462200833e-13,1.0710264687173806e-12,5.665706921858402e-13,7.174727864661789e-13,1.086339641599994e-12,5.290483584965394e-13,1.69569905905417e-12,3.987571962792904e-12,5.129937840730912e-12,6.387485195850636e-12,9.966686552761037e-12,0.0,0.0,0.0,3.8598850932310954e-12,4.077414022182552e-12,4.376872390394814e-12,3.443105681262967e-12,3.5975875359667585e-12,3.8056976453841065e-12 +688,"Ulexite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.693362500395438e-07,7.252519020306728e-07,8.740650944399281e-07,5.427839969276748e-07,1.297395440553064e-06,1.1382004227025865e-06,1.4891958468599373e-06,3.395128516839121e-06,2.8362746041029285e-06,1.4847779895046246e-06,3.369132613694074e-06,2.7779932827988854e-06,2.2926074959489932e-07,7.317509636508697e-07,3.586652654939494e-06,2.3985032415370098e-06,5.397593659396545e-06,3.6919810205168804e-06,2.8906612287111118e-06,6.469823058021907e-06,3.90419432058001e-06,7.229518858485065e-07,7.539775151278064e-07,7.961893776275393e-07,1.4426998900161677e-06,1.4981188119855295e-06,1.5727679624981304e-06,1.285344128051517e-06,1.3365345811985748e-06,1.4059158676514274e-06 +689,Uranium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,8.198511430911868e-10,4.972907576498573e-09,1.1172796789891123e-08,5.767856420120718e-09,9.157770306140299e-09,1.5277494252017207e-08,6.004897745652065e-09,9.39210401878227e-09,1.5514569949122306e-08,6.055719412712436e-09,9.441408060323277e-09,1.5338680268195625e-08,5.928522813505343e-09,9.065672704524678e-09,1.9240326006112087e-08,5.827622150576313e-09,8.664708422793415e-09,1.887421422197753e-08,6.886642241498684e-09,9.55343630560744e-09,1.9657589042959702e-08,9.698813430475124e-09,1.0113600605102813e-08,1.0673888709587901e-08,1.1801361423786305e-08,1.238950469261065e-08,1.3194556473743541e-08,1.215884137084903e-08,1.2763183602713436e-08,1.3591016629843172e-08 +690,Uranium-238,"('air', 'urban air close to ground')",emission,kilo Becquerel,biosphere3,3.2403969063197866e-06,1.9655042507212903e-05,0.0024343890837598544,4.8352484966394e-05,9.111505798689501e-05,0.0024594395245203693,2.584020479042357e-05,4.115671617533349e-05,0.00014530991453045173,2.6079170303466806e-05,4.148901278767236e-05,0.0001447542678143152,2.549961279226191e-05,3.982550091467881e-05,0.00015880757845423773,2.5032785671841368e-05,3.796890121061456e-05,0.0001562938440975102,2.9627985670871515e-05,4.1787406215664985e-05,0.00015972922827870266,0.00019538901524046386,0.0002018947994634434,0.0002106788765362125,5.531486027677958e-05,5.806745758268507e-05,6.182603270403773e-05,5.685050786218914e-05,5.9679234692999324e-05,6.35464466590459e-05 +691,Vanadium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,7.280315884485565e-06,1.3036689920940048e-05,6.232943998502905e-05,2.7141278610147127e-06,8.316934748335892e-06,2.8401410951275127e-05,1.607970471938928e-06,6.239465349340662e-06,2.41282867130138e-05,1.5880164205208072e-06,4.875313341571142e-06,2.137466925562584e-05,1.286421654056533e-06,4.391968451142273e-06,1.989561866669381e-05,1.203731067059236e-06,4.185841401244247e-06,1.983133351115413e-05,1.2909206742588677e-06,3.677300455279163e-06,1.760081491096239e-05,5.239389011758928e-05,5.474577176781545e-05,5.795097349053983e-05,1.6776101148383736e-05,1.75457284763246e-05,1.8580679000758005e-05,1.9078560085330222e-05,2.0095063246364234e-05,2.1486587131197668e-05 +692,"Vanadium, ion","('water', 'ground-')",emission,kilogram,biosphere3,6.780390810821715e-08,1.1956709329414396e-07,1.454400367663267e-07,6.427001508033515e-08,9.401530586414633e-08,9.543946833750008e-08,6.1786475664826e-08,9.892862507379476e-08,1.1461604083952085e-07,6.18048772126145e-08,9.854073735765766e-08,1.1365691238841599e-07,5.5887222755176884e-08,8.694517619725869e-08,1.1572441588980846e-07,6.442817981275266e-08,1.0472776436813949e-07,1.1561162234534074e-07,5.376614942095288e-08,8.760322777435734e-08,1.0262340980378789e-07,8.350975951468215e-08,8.715702693933301e-08,9.213351376307446e-08,4.8674545535069596e-08,5.083030450894645e-08,5.3741097797559195e-08,5.451163505943923e-08,5.695761083757008e-08,6.027658514146326e-08 +693,"Vermiculite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.024583307648227e-07,1.934098384972023e-07,1.4650656132836381e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1163854690255757e-06,1.1704872102301971e-06,1.2440759924876972e-06,0.0,0.0,0.0,0.0,0.0,0.0 +694,Vinclozolin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,7.709530292694683e-11,1.693661111848263e-10,5.079408969489323e-11,9.789043061687138e-11,2.1983713690209504e-10,7.982220217140905e-11,1.3080897276046197e-10,2.925455502081969e-10,8.580938378840564e-11,5.660745336164803e-13,8.813661107525753e-13,3.0674631836021836e-11,5.525216719127519e-13,8.268846925882079e-13,3.0085547664138394e-11,1.2243456189576506e-13,1.399834827103276e-13,2.931654638201078e-13,0.0,0.0,0.0,1.5249421521089215e-13,1.74762016899257e-13,2.0680511591144641e-13,3.1318986743240693e-11,3.279499013227599e-11,3.4805954617449806e-11 +695,"Volume occupied, final repository for low-active radioactive waste","('natural resource', 'in ground')",natural resource,cubic meter,biosphere3,5.956792307406245e-08,1.3925609947065936e-07,8.938429648391276e-08,1.2302751207237035e-07,3.726456717783417e-07,6.028815294370557e-07,1.267190303741464e-07,3.814824428231809e-07,5.793990127464759e-07,1.2681743624588986e-07,3.789465381043947e-07,5.716671277279016e-07,5.570568469202352e-08,2.2202956162259357e-07,5.464150432334987e-07,1.2672931711126366e-07,3.744945130294801e-07,5.51486761308858e-07,1.4365705064186256e-07,3.9927915537266757e-07,5.097075183719263e-07,6.905185794764356e-08,7.205525973234648e-08,7.615726389421291e-08,4.668754870255867e-07,5.149500342027639e-07,5.842024289784397e-07,5.126721835578335e-07,5.644157498366421e-07,6.38893087812884e-07 +696,"Volume occupied, final repository for radioactive waste","('natural resource', 'in ground')",natural resource,cubic meter,biosphere3,1.529099589514619e-08,3.5726466696845054e-08,2.2081816359296033e-08,6.944180954589304e-09,1.619488075142162e-08,1.1223279639842247e-08,8.72714015859097e-09,2.0117269046154905e-08,1.1420586095756903e-08,8.681247094787228e-09,1.9914239150749437e-08,1.0983250270801014e-08,3.484832975545523e-09,8.97949661997173e-09,1.0555220333987372e-08,1.0270577675674968e-08,2.3473466676994446e-08,1.0125391633020412e-08,1.1174830043307366e-08,2.5110706036603193e-08,9.557027749478174e-09,1.7329225221655815e-08,1.808355400767942e-08,1.911384467399604e-08,6.6843036021960715e-09,6.950253842204898e-09,7.3090752010982025e-09,7.434768286098537e-09,7.743596147416195e-09,8.163391901366187e-09 +697,"Volume occupied, reservoir","('natural resource', 'in water')",natural resource,cubic meter-year,biosphere3,0.012696749607785092,0.03699118324190521,0.3184090948130641,0.022062136198327937,0.058032932567703664,0.3192448128552692,0.017605187357764465,0.04843511153657858,0.06619318890598185,0.018511077461883154,0.050751777745239715,0.06900076829471435,0.01062940166504933,0.03552886264096505,0.06695190709817228,0.017533082858948654,0.050058301723312354,0.06507460509149511,0.03934681350698792,0.09306153289970565,0.13701242569544575,0.059879529990408555,0.06233258298726393,0.06567518600489658,0.09072866525178386,0.09514238716811801,0.10112245336976233,0.04920645967173627,0.051421291789515176,0.05444601944083804 +698,"Volume occupied, underground deposit","('natural resource', 'in ground')",natural resource,cubic meter,biosphere3,6.293307936431485e-08,3.4553803073070304e-07,4.102809045122461e-07,1.2626355813556657e-08,2.2893488130404472e-07,3.4079218569449614e-07,1.3357446360239392e-08,2.2539872659777138e-07,4.264707439706758e-07,1.3942317542463633e-08,2.267005272810921e-07,4.2598390353961174e-07,2.7160991770951288e-08,2.5868340129860965e-07,4.4345015722054605e-07,2.5084252651600588e-08,2.4648072261535424e-07,4.3369602521656214e-07,2.2790519315208228e-08,2.751248555421436e-07,5.074171153237233e-07,1.6574908985135852e-07,1.7573994420999428e-07,1.8971813620032204e-07,2.757315573626793e-07,3.044131563774502e-07,3.4571579518630436e-07,1.0966739051113933e-07,1.1640020984424968e-07,1.257853169750134e-07 +699,"Water, cooling, unspecified natural origin","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.09174083412472164,0.24541786096988785,0.5521659208197496,0.3421012952073284,0.8594834815113843,1.033487178316352,0.295070709926792,0.7705258399842482,1.1077240314435925,0.2918432438670844,0.7598273675835693,1.0770854565505754,0.3055580878396475,0.7971444029771881,1.08875242809446,0.2968000703240036,0.7699278282239933,1.0771675414192445,0.29672591310810087,0.7631273464516702,1.0923957840708367,0.19607359052893483,0.2074089204175106,0.2225045578339578,0.5975619417935919,0.6268755679358472,0.6663030291079798,0.5887242750098741,0.6181846617502825,0.6577209623140154 +700,"Water, lake","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.0001078807747941339,0.00020368971965055145,0.001543356618368893,8.795293174484774e-05,0.00018293709765924304,0.000712863804501437,6.5695383030601e-05,0.00014212456428844966,0.000651899096050019,7.574258653088436e-05,0.00016246583504758296,0.0006562263115453923,8.568592501808938e-05,0.00018627185072349534,0.000426895811527198,7.797148209458324e-05,0.00016896323354692518,0.0004242217215930507,7.549913743079337e-05,0.0001569224808260411,0.00071462917026626,0.0011755086225166318,0.001233265255826755,0.0013117346733197916,0.00022953827544868542,0.00024463244838396624,0.0002654131095136419,0.00015965664939596625,0.00017125952737940923,0.00018708446448382725 +701,"Water, river","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.019768459107756767,0.04241728092365678,0.05269457762294429,0.01586448030584895,0.03230434779611123,0.07066395399106382,0.014241835491394137,0.02894496372406907,0.06607786137258168,0.014332996034596797,0.029166286322609477,0.05974210377530504,0.013628163506718086,0.027876426403805058,0.04317112339149405,0.01452930906812584,0.029675641192076718,0.043344214186531234,0.015491820125557438,0.029812634784933706,0.04266832379264569,0.03179121343274798,0.0333318817439028,0.03544582985948315,0.01319366337586289,0.013843033744545014,0.01472166630762583,0.015595897509135993,0.01649335800676199,0.017732497882371846 +702,"Water, salt, ocean","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.00195117275130517,0.0047496564094227,0.005460336758574716,0.00042215605831999,0.0012359668612995293,0.003685920475798902,7.760745438158576e-05,0.0003400236205845007,0.001329272195380151,7.894524644046544e-05,0.00034602260617411224,0.0013206015000180474,0.0001274810326172339,0.00043881159218599934,0.0012198351367271759,0.0001543726012775727,0.00047683724302688294,0.0013903008377381296,0.00012113714269231703,0.00035845612931988786,0.0011470626739393623,0.0036565399903943116,0.0038985669521879656,0.004235322318561959,0.0009374465174009328,0.001045911345024933,0.0011995521696356076,0.0011843276530053997,0.0013076541145378242,0.001481611121163044 +703,"Water, salt, sole","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.00013016231446684017,0.00074309949935602,0.00313416498879235,8.120374253152834e-05,0.000615882937797605,0.0023176531546460094,6.196128699817448e-05,0.0005956864184010202,0.002346493404018955,6.140521673161345e-05,0.000584887500713408,0.002327954016500581,5.9251784297819275e-05,0.00127420350436784,0.0037871475593685812,6.990927915076107e-05,0.00124848241338679,0.003707750831488039,6.46701235243862e-05,0.0011899601254911512,0.0035277342262849056,0.002917938849119543,0.003218539724069867,0.0036513747265740906,0.0035283793653120266,0.0038120796734270198,0.004215661911939945,0.0037201768857971318,0.004019669832899378,0.004445759868232731 +704,"Water, turbine use, unspecified natural origin","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,44.97780355879882,56.282638779143774,76.55369542289445,40.525465874436186,51.85166079862161,93.15187004859882,36.74441326583321,48.5604885456891,145.37502787411924,36.80922354851281,48.85414659148756,145.81839690547764,35.027402427119796,46.07915916178705,158.05151071129518,38.19402431175665,52.46131688768289,140.23687105229226,43.7445076436901,56.43291146995871,145.05761685439293,21.718596223487644,22.722126812540548,24.09767976571494,25.833083783836503,26.933761425008647,28.42641747362411,27.457452687641613,28.654377843149806,30.285112099127574 +705,"Water, unspecified natural origin","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.0072913319495842505,0.08733135356441234,0.4282928510989381,0.009335804746046032,0.04583576366792349,0.2763865097874083,0.008236800212231908,0.04496259551903558,0.27542851665239054,0.008237158514155872,0.044921522150747684,0.2753389663559524,0.008224296412459241,0.01813360245680036,0.2265833279418351,0.007849583911258957,0.017016633753696997,0.22448108730836075,0.0069559754225122705,0.017432096835666218,0.2257839890724428,0.4112294634554762,0.46194665792497674,0.5319931590937811,0.19559733101572446,0.23950761289116038,0.30037346602948906,0.19501997405093557,0.23883678919589438,0.2995656295832022 +706,"Water, well, in ground","('natural resource', 'in water')",natural resource,cubic meter,biosphere3,0.01686488733237895,0.01971137379607032,0.03451279415510424,0.020858070064755752,0.024397227737817172,0.046271292615649266,0.01864008173845356,0.02233171347573087,0.04205913611958084,0.018653140368513024,0.02235562375307046,0.038222119274053924,0.018985985814065534,0.023227572329213714,0.03464599538802605,0.017902189208516404,0.020799503708261884,0.034760960936487645,0.031825100355882756,0.03447373373716575,0.05190783497352471,0.007146266820981167,0.007476020320767008,0.00792596925495163,0.00754599428566367,0.007924526733064631,0.00843796061790251,0.006284205636175386,0.006592020812073248,0.00700941408776842 +707,"Wood, hard, standing","('natural resource', 'biotic')",natural resource,cubic meter,biosphere3,3.76330661445394e-05,8.805141149802259e-05,0.00010387875540594416,1.2837809394792188e-07,2.3268720501757183e-07,4.585737866092389e-07,9.235411864181926e-05,0.00022154340270956794,0.00024122345629235437,0.00011811300292270472,0.0002717863768419572,0.00023646235275663532,0.000290911185229006,0.000641531666087284,0.00023340835281429246,0.00020146442788636829,0.0004470062198793361,0.00022655580515980618,0.0002413468685656274,0.0005289434071434247,0.0002342909855377917,2.6298569472005286e-05,2.7442034637452167e-05,2.9005970591753888e-05,0.00010962596575764253,0.00011440448160011746,0.00012087601738389575,0.00010722177801760957,0.00011192484809735918,0.00011831065057089092 +708,"Wood, primary forest, standing","('natural resource', 'biotic')",natural resource,cubic meter,biosphere3,4.841968138333484e-09,2.42589942766688e-08,1.8767417389287407e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.004520453578724e-05,2.0897789592586857e-05,2.2048983013067928e-05,0.0,0.0,0.0,0.0,0.0,0.0 +709,"Wood, soft, standing","('natural resource', 'biotic')",natural resource,cubic meter,biosphere3,9.420252977567289e-05,0.0002118375102731628,0.00013240713490749766,0.00011813460160522452,0.00025216854647941715,0.00039298150061998534,9.403118978019608e-05,0.00022649725203855047,0.00020656463678336943,0.00012142932424249245,0.00028000590080634873,0.000205891400298214,0.00029945780846737415,0.0006633160401604586,0.00019899430235477636,0.00021528570104035436,0.0004801508626984567,0.0001914338100830538,0.00026586779013075285,0.0005825499997771583,0.0002039840931629884,8.939949239392329e-05,9.35695952781073e-05,9.926047343320469e-05,0.00015570459593749556,0.0001626117262371595,0.00017197779313784405,0.00015230282701494748,0.00015906009469427237,0.00016823955907489558 +710,"Wood, unspecified, standing","('natural resource', 'biotic')",natural resource,cubic meter,biosphere3,1.3005737456621778e-10,5.908674317743827e-10,2.9953950817277944e-09,1.7517002862445143e-10,6.824133252913756e-10,3.087615895130417e-09,2.0795147197364945e-10,8.041724902839834e-10,3.2998924913235183e-09,2.1424813701828251e-10,8.159067044655482e-10,3.3003979725688823e-09,1.219508900304962e-10,5.086617239268154e-10,2.4123940044446886e-09,1.0472389223615075e-10,4.135014229025364e-10,1.7723344869636799e-09,1.314726009482164e-10,4.5503625419724156e-10,1.8405977618472242e-09,8.585421609648455e-10,3.0486557809173486e-09,5.779759847191876e-09,5.596871808684783e-10,1.7712301043040399e-09,3.2822548965086065e-09,5.456021749639523e-10,1.75401942508717e-09,3.2611930876598385e-09 +711,"Xenon, in air","('natural resource', 'in air')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,3.115147115306128e-17,6.372745796659699e-17,8.25101694650879e-17,3.207053447643961e-17,6.945127670219234e-17,8.103460187223068e-17,4.398720386349116e-17,9.371371007863794e-17,7.04616800937606e-17,1.2531652931467608e-17,2.3921142925536187e-17,5.2838765895409475e-17,1.3739977997084054e-17,2.7349621223105646e-17,5.616387948940751e-17,1.2672712246107006e-17,2.488296252912331e-17,5.419476388703444e-17,0.0,0.0,0.0,3.8363392320309074e-17,4.168684564607956e-17,4.638584709607611e-17,4.027118552859619e-17,4.3577059530755313e-17,4.8250930196681026e-17 +712,Xylene,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,9.176149865295348e-07,5.2498468613182495e-06,0.00010376766203783876,1.959939352425637e-06,8.046435366151454e-06,0.00010664130394682218,9.381187199347412e-07,5.88293330536176e-06,2.43880750471333e-05,9.413420413276429e-07,5.806045237118292e-06,2.4206169051654536e-05,8.886632426910862e-07,5.515098406198052e-06,2.3462648738767577e-05,9.550062460424427e-07,5.65383911716204e-06,2.356668408281685e-05,4.814439287891527e-07,7.424644260129753e-07,4.110214292143014e-06,2.31912606632942e-05,2.53078096466537e-05,2.8342420690023335e-05,1.0611229474250676e-06,1.1366142431887744e-06,1.2387560965884688e-06,1.9894493383918627e-05,2.2015332290119244e-05,2.5068378527555046e-05 +713,Zinc,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,5.490566622578865e-07,1.36760526315349e-06,9.601225564471459e-06,5.160605246102383e-07,1.190275962718041e-06,9.515557429389515e-06,5.714680463002547e-07,1.4343610245946648e-06,2.564233483560947e-06,7.404333817277729e-07,1.7454257183009948e-06,2.502518687270695e-06,1.8121901735457118e-06,5.1151520703535886e-06,5.643907895936494e-06,1.3039072234285063e-06,4.051634740036377e-06,5.710237884391319e-06,1.6130219213783189e-06,4.5655160548656784e-06,5.553733052876666e-06,2.619436884165072e-06,2.73770948594104e-06,2.899097309989988e-06,4.611959586786217e-06,4.805698326540973e-06,5.067845204672217e-06,4.746253888495781e-06,4.955375923987649e-06,5.240025846326711e-06 +714,"Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,8.626249535784378e-05,0.0004662644929538804,0.0012606207335326977,7.77348385442955e-05,0.0004267263489765141,0.0010202255477654411,8.461843626885766e-05,0.0005649289459410618,0.0012100070785034055,8.829230494830839e-05,0.0005717454868020954,0.0012235640466342445,8.328569916738779e-05,0.0006430224874930665,0.0014771434486751547,9.103753288316763e-05,0.0005551811013724851,0.00109387933587753,0.0,0.0,0.0,0.001192932122921394,0.001251419585774977,0.0013308682114254705,0.0,0.0,0.0,0.0007710860925552726,0.0008102004180669001,0.0008634851537178062 +715,"Zinc, ion","('water', 'ground-')",emission,kilogram,biosphere3,4.781910012616352e-06,5.773685171601771e-06,6.937283982349112e-06,6.140506694383014e-06,8.836304302345615e-06,1.2991596070906256e-05,5.428504462756589e-06,8.100370253149807e-06,1.2046586580182885e-05,5.39842243482031e-06,7.572526254622031e-06,1.0891742888713793e-05,5.4660768808209215e-06,7.7263189052941e-06,1.0843264540148731e-05,5.421517616149364e-06,7.541072483041975e-06,1.0748896138766454e-05,1.1454101170005125e-05,1.3998426397172474e-05,1.852018843355985e-05,1.5939792062133423e-06,1.6643969709794159e-06,1.7599380351967046e-06,6.177422749715364e-06,6.466047805069744e-06,6.858266088709091e-06,4.6578459337425575e-06,4.870210799630079e-06,5.158995065807462e-06 +716,"Zirconium, 50% in zircon, 0.39% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,4.025893056488176e-09,1.1278888848699639e-07,3.245272423403273e-07,3.99348640455365e-05,5.108897129421622e-05,7.696165573242147e-05,3.470340902602773e-05,4.583333872243727e-05,8.73334120747221e-05,3.486931165536009e-05,4.614817139812214e-05,8.757665436106504e-05,3.611455635037025e-05,4.940758699692661e-05,8.905153853156098e-05,3.647088271320352e-05,4.981092905182473e-05,9.014560116867225e-05,0.0,0.0,0.0,3.326477667075352e-07,3.462850156716192e-07,3.645121923864476e-07,0.0,0.0,0.0,3.901353426815508e-05,4.139750990282068e-05,4.4731479414404655e-05 +717,2-Propanol,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,3.170210317630318e-12,6.690400769830189e-12,1.2654051723227274e-11,3.1018179007502288e-12,6.357112847009691e-12,1.2011532737100936e-11,2.35602263171428e-12,5.765328168716789e-12,1.2127974500121893e-11,2.7879546868971607e-11,4.6038576232710226e-11,8.468058738807871e-11,3.009937080707357e-11,4.615669444327189e-11,8.590653058252377e-11,0.0,0.0,0.0,3.688092243717061e-11,4.4717693688337437e-11,5.60693583793718e-11,3.758342979096193e-11,4.5409069579695405e-11,5.6750906263045074e-11 +718,2-Propanol,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4308346299723385e-07,1.3029487744703506e-06,7.4508965866148665e-06,1.1720421179223274e-06,6.077058814440078e-06,3.405996988994762e-05,1.4169432967223324e-06,6.2263027265718615e-06,3.37805298828053e-05,0.0,0.0,0.0,7.637682168879666e-06,3.448250161173764e-05,6.79305372523507e-05,8.069196338694982e-06,3.502571703295188e-05,6.862382571866957e-05 +719,4-Methyl-2-pentanone,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,6.928282254249808e-14,1.4621422645252043e-13,2.765458225660783e-13,6.778815209836409e-14,1.3893044219916618e-13,2.6250400060933144e-13,5.148929615263362e-14,1.2599738453134986e-13,2.6504875732348945e-13,6.092888221642726e-13,1.0061422521228894e-12,1.850637530066761e-12,6.578016028101123e-13,1.008723663453041e-12,1.87742972346226e-12,0.0,0.0,0.0,8.060078714807828e-13,9.772752608192027e-13,1.2253582932172365e-12,8.213606913880267e-13,9.923848095552364e-13,1.2402530567119941e-12 +720,Acenaphthene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.3018490720245133e-13,3.0925289500875076e-13,1.9213226745980217e-13,1.379166567629282e-11,3.084929649862564e-11,5.372872380000646e-11,2.077797300947819e-11,4.6192081838610165e-11,4.4900616502167447e-10,2.087968353402268e-11,4.7565866788374987e-11,4.511593437399835e-10,2.690196644857623e-11,6.059547224537453e-11,4.451986335819478e-10,2.242581064459606e-11,5.0392667994048444e-11,4.592214742222056e-10,2.8980862793747707e-11,6.179435067370606e-11,4.5990996001360686e-10,1.6423635547782458e-13,1.7142802609560007e-13,1.8122987768399927e-13,6.170447999893414e-11,6.441493313579837e-11,6.807672376415556e-11,6.287990245084752e-11,6.567987489897757e-11,6.948360210282242e-11 +721,Acenaphthene,"('air',)",emission,kilogram,biosphere3,2.387197077795611e-16,1.2879112514994493e-15,3.3705358674847506e-15,4.35749160399855e-13,9.467275837597806e-13,1.6014745988454753e-12,5.91458167822031e-14,1.1317894537758989e-13,1.965554298856533e-13,1.875020837042017e-11,5.7245309155251186e-11,2.2852138168049602e-07,1.8758159658206146e-11,5.810917716623016e-11,5.255471976326136e-09,1.7350023705176794e-11,5.385338858622202e-11,5.2363337417098505e-09,4.5887677531380663e-11,1.0396068142080927e-10,5.3072681345537366e-09,3.16694868000001e-15,3.3185883599187852e-15,3.524312230909016e-15,5.599060667932372e-09,5.8407140646452284e-09,6.16741401337517e-09,5.576794727429504e-09,5.818329895692462e-09,6.145037204609938e-09 +722,Acetaldehyde,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.8495720047818675e-09,9.266636200103868e-09,7.168921691056487e-06,3.439243509650711e-08,8.392924686916671e-08,3.7095119642525865e-06,4.74575336873309e-08,1.1819290025085092e-07,3.0850269510196572e-06,1.0734589831912734e-07,2.5170643120079593e-07,5.272499906377804e-06,1.143890909433217e-07,2.60167147111699e-07,6.567248905240281e-06,3.5527653891049634e-07,6.984172088214816e-07,1.8086728643120337e-05,4.988631576028709e-07,8.477078072067882e-07,1.643238383301447e-05,7.65702060214676e-06,7.982697565598372e-06,8.422439236576029e-06,6.128149014409711e-06,6.396157502134174e-06,6.7577526479508646e-06,8.048454381709807e-06,8.398266335363221e-06,8.870537387336505e-06 +723,Acetaldehyde,"('air',)",emission,kilogram,biosphere3,1.2970575825962272e-07,2.768752634711807e-07,7.403108015670479e-07,9.610319314526492e-07,2.1586639915833297e-06,4.746461335790558e-06,6.793507162814882e-07,1.577690468121201e-06,3.4539788493108998e-06,6.667613251440932e-07,1.5409404112883295e-06,3.389403900385109e-06,6.742555925019641e-07,1.4424647662428387e-06,3.1800200926188513e-06,6.854565938678741e-07,1.387033060990891e-06,3.0199548593648164e-06,7.014607791106829e-07,1.3633557658679628e-06,2.7116050885868675e-06,5.565788218945177e-07,5.778933592388627e-07,6.067110410993339e-07,1.946827446653793e-06,2.0431396175994863e-06,2.1756969400598015e-06,2.2397514193648114e-06,2.375854330083747e-06,2.565889846194612e-06 +724,Acetic acid,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.2150281380390347e-08,6.087475158087909e-08,4.709436262269502e-05,2.762227267755011e-07,5.863162251028357e-07,1.2630177829650297e-05,1.563482613842629e-06,3.4309652878068076e-06,1.1362961309554075e-05,1.752932321494445e-06,3.898477529259939e-06,1.8370452102623363e-05,2.3383267417355342e-06,5.131026700574441e-06,2.234413309513002e-05,1.7301437869012466e-06,3.8131803977876328e-06,2.1903133950967065e-05,2.5862640957707407e-06,5.612559876917429e-06,1.6288560133609753e-05,5.030080120638079e-05,5.2440251137011285e-05,5.532901943519769e-05,1.6512283059977144e-05,1.7221370870608604e-05,1.8178429334206907e-05,2.2627469800256632e-05,2.359710367063021e-05,2.4906208350461163e-05 +725,Acetic acid,"('air',)",emission,kilogram,biosphere3,9.138730742762836e-07,4.9438996566467256e-06,2.828222805029348e-05,9.195147906471998e-07,4.350994848886062e-06,2.3831921939041585e-05,7.694238494077253e-07,4.10611707749637e-06,2.349643711484349e-05,7.723309064700458e-07,4.109473960617048e-06,2.3579262384180978e-05,7.846878903996362e-07,4.138610347400022e-06,2.3507402567838704e-05,7.866963622510313e-07,4.140291589666588e-06,2.351340670932517e-05,9.749453591826058e-07,4.301546688670369e-06,2.362032827879473e-05,6.755905753996927e-06,2.9095042589068873e-05,5.694267884968773e-05,5.523493456498523e-06,2.409705354215751e-05,4.724081058824712e-05,5.618702404756554e-06,2.4220755652511347e-05,4.740661235354405e-05 +726,Acetone,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.367755122457628e-07,5.756230893009616e-07,7.864813818884648e-06,4.11713830825313e-07,1.2126145975235705e-06,6.315514664322358e-06,3.825332963811193e-07,1.1493772060732197e-06,4.985469526695567e-06,4.51958685226209e-07,1.2961956858785907e-06,7.085011241218984e-06,2.457869468923146e-07,8.244892705708413e-07,8.228139369549392e-06,2.69392932937961e-07,8.838591119571292e-07,8.252196668836517e-06,2.8053644744395784e-07,8.925250651020962e-07,6.599004375494208e-06,8.312544897694404e-06,8.666263774865658e-06,9.143995457436527e-06,6.074938018597529e-06,6.553199624326952e-06,7.180170043190457e-06,7.912686281276214e-06,8.469593704076664e-06,9.20295350399464e-06 +727,Acetone,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.5659470901326704e-10,3.553191003485719e-10,5.905737648662903e-10,1.9697711638749285e-10,4.956512690186618e-10,4.972683485374739e-10,2.7631776471818257e-10,6.489917129643339e-10,6.374237914183531e-10,1.1752043927344382e-08,6.104715777682844e-08,3.417401856995588e-07,5.408939161941119e-08,2.791893705442012e-07,1.5599210104771325e-06,6.538875253051761e-08,2.861951797984045e-07,1.5471471732550176e-06,0.0,0.0,0.0,3.4996834099462845e-07,1.5790380640970656e-06,3.1104324729636363e-06,3.697210060802014e-07,1.6039046179848487e-06,3.1421696746499924e-06 +728,Acetonitrile,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.084206750340088e-10,2.5472646712675046e-09,1.97063319935032e-06,4.018012918031864e-09,9.834617511380537e-09,1.0012031823524565e-06,2.6610240025807866e-09,6.911000709901513e-09,8.250964309218709e-07,1.716730693551957e-08,4.006279848953508e-08,1.4314340170515894e-06,4.250193727748225e-09,1.0767744972855756e-08,1.7892990608008349e-06,3.4573724014787404e-09,9.05340119394447e-09,1.7548419115942269e-06,3.4483631719224514e-09,8.464842223936777e-09,1.2587859658559238e-06,2.1048045517802514e-06,2.194328452877112e-06,2.3152070972968707e-06,1.3415418572590427e-06,1.3986023683105299e-06,1.4756486326464288e-06,1.87236642230464e-06,1.9519491409462682e-06,2.0594019678753274e-06 +729,Acrolein,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.6384809129437756e-10,8.741874995605918e-10,4.3482951293964757e-10,8.541339951060914e-09,1.9690172629509783e-08,3.521706057406454e-08,8.230033176413692e-09,1.9274044031962946e-08,2.567080437739681e-07,8.717701101784531e-09,2.0716338194247753e-08,2.5828296385420955e-07,1.2312134177575224e-08,2.845871911612571e-08,2.558346798245208e-07,1.0420721939438104e-08,2.4065978160656277e-08,2.640140315330784e-07,1.1681665650896331e-08,2.5282308711789423e-08,2.6365711893579723e-07,3.3283416087768066e-10,3.473059155287684e-10,3.670546266656383e-10,3.654453207418381e-08,3.8399224721395836e-08,4.088380364029626e-08,3.78078791794481e-08,3.9734126522541286e-08,4.232657242855408e-08 +730,Acrolein,"('air',)",emission,kilogram,biosphere3,1.3819188505820142e-13,7.4555587572452e-13,1.9511614711407113e-12,1.5268541326357816e-07,4.209581975482664e-07,9.746515988101224e-07,7.239860608656827e-08,2.2790450907164016e-07,5.302082178274009e-07,7.284367565312527e-08,2.2728205944281605e-07,5.303923265533888e-07,7.577007944038906e-08,2.2623778668195743e-07,5.204890294257227e-07,7.491135377803131e-08,2.068839467008044e-07,4.914370366695763e-07,7.235271230333633e-08,2.0912032931207877e-07,4.854083195320268e-07,1.8333073673292215e-12,1.9210897000197934e-12,2.0401807011190404e-12,3.946992991295011e-07,4.154686396196573e-07,4.4383129396079297e-07,3.937533409667022e-07,4.1448646816449454e-07,4.4284214959781264e-07 +731,"Actinides, radioactive, unspecified","('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,5.290408331678448e-07,1.2566932380949177e-06,7.8058986335015e-07,5.018897213104612e-05,0.00011379940452735165,0.00019515976563895076,4.3918863909234144e-05,9.959139396864764e-05,0.0017837938742304993,4.377389469955243e-05,0.00010287035357152804,0.0017939053806305231,4.8668091180399056e-05,0.0001138634711173366,0.0017748657498195448,4.6305567896772066e-05,0.00010668202384674564,0.0018329675833732846,5.017208680809182e-05,0.00010491869803414428,0.0018312126495517007,6.672408508516389e-07,6.964582817225286e-07,7.362801326350401e-07,0.00022940077419508816,0.00023933570520261202,0.000252771223378257,0.00023624648701925315,0.0002465939609971168,0.0002606635587896708 +732,"Aerosols, radioactive, unspecified","('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.4695509295959849e-05,3.404893853489856e-05,1.717551661941561e-05,2.1076907087059705e-06,5.504541936194982e-06,5.200237466797948e-06,1.6082253437005209e-06,4.416145896266465e-06,4.868692818467307e-06,1.5749394304361778e-06,4.244290411390263e-06,4.517069881864755e-06,4.379642002013103e-06,1.0550892928724986e-05,5.866411706581292e-06,3.213343951834883e-06,7.847587709386685e-06,4.586363919257588e-06,2.5105565672039522e-06,6.179887719938157e-06,3.9348385086854575e-06,1.4314458700538003e-05,1.4939832162882187e-05,1.5794145577274815e-05,3.7457117556096134e-06,3.882870363876028e-06,4.0677900925815714e-06,4.377602710975316e-06,4.5477615718148215e-06,4.7789565476428035e-06 +733,"Aldehydes, unspecified","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.3775526561800838e-08,5.5498716988997034e-08,3.673728564819011e-08,3.9794584959554094e-08,9.125847456287178e-08,1.146616602371816e-07,3.371021385391686e-08,7.676357090389268e-08,8.308455991659372e-07,3.357680097878269e-08,7.795639289568093e-08,8.348180336938854e-07,2.712444716632129e-08,6.461103878269145e-08,8.27195044032484e-07,3.7186140595788335e-08,8.516695484090795e-08,8.532726504638338e-07,4.044553784473823e-08,8.71994543698378e-08,8.516628019162262e-07,2.7135636581950253e-08,2.8314772107891532e-08,2.992514575462643e-08,1.1402559240404269e-07,1.1892551988738399e-07,1.2555100263359075e-07,1.1818012105678577e-07,1.233274638906302e-07,1.30326320131181e-07 +734,"Aldehydes, unspecified","('air',)",emission,kilogram,biosphere3,1.016116804291962e-12,5.482028460525439e-12,1.434677539588483e-11,6.341524585201952e-09,1.286246531626652e-08,2.0867559860725123e-08,2.5204184350788274e-09,4.822966625730054e-09,8.375941967655152e-09,2.7579627174506517e-09,5.624541018548328e-09,1.0398767729044344e-08,2.0044651221399563e-09,4.235831350910207e-09,7.75398469378682e-09,1.6995836871092866e-09,3.5378407397709548e-09,6.384962241175749e-09,2.234929364357308e-09,4.279649361844925e-09,7.459167108122402e-09,1.3480201102323649e-11,1.4125659424625691e-11,1.500132854176834e-11,4.400280930493004e-09,4.940654109689654e-09,5.644860050891381e-09,4.007877167393778e-09,4.500265657608151e-09,5.1404954086154186e-09 +735,Aluminium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.00013963568440435067,0.00013988306143383438,0.0001404734243899661,0.00016690823056013783,0.00016697160465954742,0.00016706010588303348,0.00014606249818148814,0.00014613064938629608,0.00014622395029527646,0.00014603536098941778,0.00014611698168138783,0.00014622438193863152,0.00014603237827062645,0.00014611932169080212,0.00014624992268399024,0.00014604964729783738,0.0001461424082247641,0.00014691997133389496,0.00017691632214291865,0.00017698476325546527,0.0001777071222746387,6.931939567560967e-07,7.347217329238864e-07,7.924706332955255e-07,1.4021530946202386e-07,1.4923970616247582e-07,1.6134689099268626e-07,2.2728342731723117e-07,2.4027428261181586e-07,2.5777826405064164e-07 +736,Aluminium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.4468817954007518e-05,5.7106654090594064e-05,3.7826034400883645e-05,1.7436864830340077e-05,4.0605907984909185e-05,2.6129026581163696e-05,1.4125840579779428e-05,3.236641331424685e-05,1.455924945461024e-05,1.4057213900920139e-05,3.2046632153814136e-05,1.3874330872769785e-05,5.017487021035654e-06,1.2935149336428537e-05,1.5007887450324514e-05,1.667614993201416e-05,3.789110604399312e-05,1.481321821658343e-05,1.8238724148032805e-05,4.086050583818113e-05,1.3990819327720171e-05,2.78965696636426e-05,2.9108663631186174e-05,3.0764088147671785e-05,9.527727736722204e-06,9.905349966835812e-06,1.0415088282024008e-05,1.0585842763556403e-05,1.1024664560145456e-05,1.1621139541606605e-05 +737,Aluminium,"('air',)",emission,kilogram,biosphere3,0.0018903048155198474,0.0021490318010587944,0.0053118354400295345,0.0022081465129833774,0.002424197721220449,0.005720686479142135,0.001968557261773213,0.0022077008250132877,0.005437574863652683,0.001972034837854057,0.0022167370153631776,0.005454498485642894,0.001989766585661244,0.002260047160975181,0.0054714531652388515,0.002027399105250982,0.0023449375368199805,0.005533514942286016,0.002338100777381744,0.00255184415895183,0.006009270951421293,0.0030018775760462723,0.0037524820883453004,0.004843825052381824,0.0031408665998844494,0.0039022439367275945,0.005008372218075152,0.0030781340612118058,0.0038337313001410747,0.004931779565187213 +738,Ammonia,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.4925530808512147e-05,3.522656743928729e-05,0.00012277134024269652,1.4494789988454202e-05,3.4820742449585436e-05,8.981567882777678e-05,1.7438774147480368e-05,4.2253232596799673e-05,0.00010968279105192981,3.7353519298191104e-05,8.664667331374335e-05,0.00020779278513496124,6.307600123626451e-05,0.00023899431453349587,0.0006450759873907008,9.794952104148285e-05,0.00035308341671550793,0.0008190399881596731,1.4521893460009265e-05,4.5399604879832546e-05,0.0001859582096369669,0.00012580656297572903,0.00013199598731478615,0.00014047904416509042,0.0001635115390453825,0.00017111072266235753,0.0001814880839928526,0.0007805184478266115,0.000812689744746437,0.0008564942827224016 +739,Ammonia,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.706457971814954e-09,8.463676871052858e-09,1.3796405216678702e-08,2.6755730258309354e-09,8.289554920778465e-09,1.3399490567719603e-08,2.462014249076939e-09,7.519863489669345e-09,1.1948214876814191e-08,2.1738448690624164e-09,6.997469816724526e-09,1.1908566242140936e-08,2.5515640522523712e-08,5.822658609546442e-08,4.25988181579665e-08,0.0,0.0,0.0,2.6517269229452174e-08,2.8062889428377787e-08,3.020851352769663e-08,7.182714414952775e-09,7.57053405790175e-09,8.104663219663485e-09 +740,Ammonia,"('air',)",emission,kilogram,biosphere3,0.0007512339804848724,0.0008620475738527031,0.002122236891644277,0.0008771330897620183,0.0009712414516369536,0.002282988202658331,0.0007816599741734575,0.0008844218328563045,0.0021684443419774813,0.0007832752302584995,0.0008882328806594342,0.0021756655062438422,0.0007902367307275536,0.000906139811446277,0.0021848008021333994,0.0008051593981041666,0.0009395656908272978,0.002209166081088609,0.0009290736099292619,0.0010230255160969825,0.002399148988431883,0.0012050174039698065,0.0015004280356479814,0.001929816025541344,0.0012609329515347817,0.0015607366992466817,0.001996166385161707,0.0012351757628540593,0.0015325462861889639,0.001964569169003079 +741,Antimony,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.048898476630276e-08,1.0615048344220084e-07,2.0080256674258395e-07,7.828550889725295e-08,1.8223104722934383e-07,3.315473976224499e-07,6.620323513880544e-08,1.604635862533406e-07,3.9604793271385916e-07,7.487245874864105e-08,1.8044169052239008e-07,4.357944794227697e-07,7.632966016673566e-08,1.9565034381638047e-07,4.681150451029122e-07,7.419137421601503e-08,1.8886858777523847e-07,4.700528381697808e-07,1.094365475815721e-07,2.492765488200536e-07,6.026282368468864e-07,1.5777462220431848e-07,1.6529128285298948e-07,1.7550873954767906e-07,3.721207853613147e-07,3.9086809482429903e-07,4.1635930940601295e-07,2.86696012693814e-07,3.0090682052093634e-07,3.2024924234169386e-07 +742,Antimony,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.2062049080080575e-09,5.148960642277585e-09,3.4105441004396624e-09,1.5721763472359066e-09,3.66118844832872e-09,2.3558958543808375e-09,1.2736413719117915e-09,2.91828318637778e-09,1.312719221532673e-09,1.2674537204995592e-09,2.889450458612744e-09,1.2509642670356068e-09,4.523963736479369e-10,1.1662839640363822e-09,1.353170188617692e-09,1.5049141857611142e-09,3.4186994223854314e-09,1.347384021825928e-09,1.6457466776945038e-09,3.687678347989672e-09,1.2751051809619145e-09,2.5152644902002313e-09,2.624551651656416e-09,2.77381123980961e-09,8.604550803827396e-10,8.952950222273922e-10,9.423342569493334e-10,9.556067951823245e-10,9.959768233370309e-10,1.0508496287438867e-09 +743,Antimony,"('air',)",emission,kilogram,biosphere3,4.16849491447378e-10,4.6353036765419374e-10,1.1743935678102148e-09,1.0178910954542388e-06,4.910885283004018e-06,1.172376332224423e-05,8.85959242127899e-07,4.719129786926137e-06,1.1252906363730667e-05,7.582981882787732e-07,3.3530944663674083e-06,7.950974903010232e-06,7.974520337310432e-07,3.3605640358018253e-06,7.849413137101307e-06,7.791460456434071e-07,3.140854895389724e-06,7.531598115444621e-06,9.653714577606549e-07,3.4227318651777064e-06,7.841644016201035e-06,2.4537268744938754e-10,2.5653818520215095e-10,2.7178904522132307e-10,6.849486226641421e-06,7.1549369698578695e-06,7.571279836368207e-06,6.688881171388432e-06,6.984768737222762e-06,7.388031626997303e-06 +744,Antimony-124,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,2.579584041581135e-11,5.7014229593684144e-11,1.3973930774879162e-10,4.171318750701048e-10,9.556898451522114e-10,5.19629273669333e-10,1.917236539083912e-09,4.201413212385776e-09,6.744116417683457e-10,1.9144576150287146e-09,4.1912658090797735e-09,6.522885354153647e-10,5.716151248938295e-11,1.7902717454368194e-10,4.911621267584652e-10,2.0580706625144208e-09,4.510310436055214e-09,7.023103786783892e-10,2.4066862996271915e-09,5.246430394785563e-09,7.103011785825492e-10,1.1298385255925767e-10,1.1778728852732449e-10,1.243379970383986e-10,4.1839008971673777e-10,4.3550491009059846e-10,4.5863760560914796e-10,4.383777723814318e-10,4.572011363801018e-10,4.828256646991853e-10 +745,Antimony-125,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,2.6920128702211083e-10,5.949914311630037e-10,1.458297190602043e-09,1.7793193568400455e-08,3.9558062771057264e-08,1.0582206697349162e-08,4.03385164540259e-09,9.881067503836928e-09,1.3532019010897333e-08,3.99551857265863e-09,9.717722270511642e-09,1.3143333571083562e-08,1.326747114532909e-09,4.308394146724422e-09,1.470006020204023e-08,4.423813443843048e-09,1.0828480233523352e-08,1.4075498075968157e-08,5.0186789664395235e-09,1.1810692806102042e-08,1.3753037184924689e-08,1.1790815162222672e-09,1.2292094100320907e-09,1.2975715622082128e-09,7.333766568930003e-09,7.632996318958361e-09,8.036951236412944e-09,7.857140478358398e-09,8.189820192162895e-09,8.642103107698809e-09 +746,Argon-41,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0010812390593613872,0.0036336552887276867,0.008443777944519667,0.0001908660557987281,0.0011676734821898366,0.00405928022216656,0.0011009847413323655,0.002912191121325136,0.0028239899969768993,0.0010804084869429347,0.002799259983371875,0.0025875727085021456,0.0003560911103329635,0.001370322505902679,0.0031411946576197693,0.0012587971061200254,0.003183843559343861,0.0023322687448549895,0.0013339417085941605,0.0032429483588188135,0.0019181758557717849,0.007384864882250425,0.007705079035218286,0.008142272882456092,0.0018160438917274346,0.0018828735293299603,0.001972987413183424,0.0022461812377780896,0.0023336419751464,0.0024524641721541114 +747,Arsenic,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,8.31944884639577e-07,1.3269884173268228e-06,1.970496390181732e-06,1.1860608306655705e-06,2.057721997996637e-06,3.00856352360262e-06,1.0328060980961022e-06,1.8348656689593806e-06,3.495644897641002e-06,1.1040300909259055e-06,1.9992543565208614e-06,3.8231826726943814e-06,1.1281307174126475e-06,2.1407443513886278e-06,4.055379498166353e-06,1.08807011581506e-06,2.037943672315527e-06,4.077221023447183e-06,1.4080783661451518e-06,2.54168121955311e-06,5.343170293150581e-06,1.1312029003855167e-06,1.1865865810097122e-06,1.2620647256192573e-06,2.949458893073268e-06,3.0990859248044076e-06,3.3026822285277672e-06,2.1385733922330423e-06,2.2459824057822965e-06,2.392383856200614e-06 +748,Arsenic,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.2969810754755046e-07,3.0269647529557093e-07,2.0049865456981832e-07,9.242491250085942e-08,2.1523350264164787e-07,1.384981198738159e-07,7.487467456394867e-08,1.7155967816708726e-07,7.717197844991024e-08,7.451091566287525e-08,1.6986466326272872e-07,7.354153567171021e-08,2.659542316841828e-08,6.85633602850789e-08,7.955000499888545e-08,8.802478545593855e-08,2.0000736751523805e-07,7.67267637497113e-08,9.62354232987074e-08,2.1567973155097345e-07,7.231001970779315e-08,1.4786706465665256e-07,1.542918251025823e-07,1.630664797422491e-07,4.937341136206081e-08,5.129930995930457e-08,5.389867865920875e-08,5.497188490565914e-08,5.7218790602157076e-08,6.027363878619015e-08 +749,Arsenic,"('air',)",emission,kilogram,biosphere3,2.5013774777576174e-09,2.7819921241922938e-09,7.1028776316382306e-09,3.630992173369423e-09,7.126212423497139e-09,1.3830879389891239e-08,3.179896951239079e-09,6.531473369979219e-09,1.2588851472299028e-08,3.039389791151604e-09,5.441064841327056e-09,1.0223067797517522e-08,3.0494750195269344e-09,5.42260956747004e-09,1.0115868405937731e-08,3.0752953424548366e-09,5.363946814800395e-09,1.0841778665453729e-08,9.962946928053186e-09,3.636485996681763e-08,1.1381461686638375e-07,1.4819968705094045e-09,1.5493932066912389e-09,1.6414458361127127e-09,9.942174078125079e-08,1.0963197361595637e-07,1.2434270618846444e-07,6.454921025359639e-09,6.753310073377573e-09,7.159755741807303e-09 +750,Barium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.96162964463201e-07,9.047729472286413e-07,3.6008836337583173e-07,5.050190665272704e-07,1.1257174431999535e-06,4.641560147467995e-07,5.976883097242923e-07,1.3328742717471393e-06,6.823347205024835e-06,5.994582736225949e-07,1.3435987430921889e-06,6.847118306038976e-06,6.930198602572536e-07,1.5473350018999331e-06,6.7663597441980615e-06,5.313291048394938e-07,1.190543465425086e-06,7.14774591854163e-06,2.9336638004105556e-07,6.39477180700674e-07,7.120216035326643e-06,2.973348540719666e-07,3.105041679621909e-07,3.285142918214222e-07,9.214776845963183e-07,9.603127715670271e-07,1.0128196428112278e-06,9.559789940123473e-07,9.96687173675963e-07,1.0520084445955183e-06 +751,Barium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.4173194328702534e-07,3.307816944178754e-07,2.1910160803433613e-07,1.0100041389983977e-07,2.3520360759572184e-07,1.5134845198242617e-07,8.182180449999457e-08,1.8747757541278515e-07,8.43322601451608e-08,8.142429479645156e-08,1.856252911933632e-07,8.036497239430135e-08,2.906303803995284e-08,7.492490476627937e-08,8.693092817971293e-08,9.696267084875944e-08,2.202919882330648e-07,8.752249126376675e-08,1.0607099591270421e-07,2.376440242896153e-07,8.296143724586201e-08,1.6158667888992648e-07,1.686075506635722e-07,1.7819634787848495e-07,5.613782609376408e-08,5.840038270353821e-08,6.145499621927245e-08,6.223417081787849e-08,6.485017064695599e-08,6.840564889148049e-08 +752,Barium,"('air',)",emission,kilogram,biosphere3,3.657469736015068e-16,8.627289270361775e-16,3.531035568537045e-08,3.9417583011187935e-07,1.9020231488562138e-06,4.545114436472935e-06,3.436211578208982e-07,1.8289236065807421e-06,4.363144696858759e-06,2.9364867737116095e-07,1.2988052841265434e-06,3.0844108563300337e-06,3.088101105682925e-07,1.3016661017136788e-06,3.0449665013567423e-06,3.01821513295868e-07,1.216531047979545e-06,2.930228105385857e-06,3.7138590375629937e-07,1.3188067246067e-06,3.0295602669176707e-06,5.2320677208097535e-09,5.429795502394252e-09,5.69672764515038e-09,2.6367264985840532e-06,2.75321708996644e-06,2.9118454591977628e-06,2.5922680794653786e-06,2.7069434212642905e-06,2.8632321009282947e-06 +753,Barium-140,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.751114214710619e-08,3.870330506176351e-08,9.486005698910285e-08,4.841613666376548e-08,1.3202326683829975e-07,2.626268422520272e-07,1.580497366000218e-06,3.44529825129472e-06,3.443894379096412e-07,1.5787739394511152e-06,3.439413241655207e-06,3.321278705108301e-07,2.6049087596125117e-08,7.891070555283373e-08,1.6618991688018925e-07,1.694960017637351e-06,3.6947453186732284e-06,3.5892079804719866e-07,1.984766738930682e-06,4.311470814691421e-06,3.7143395517297925e-07,7.669749387151034e-08,7.995823859059315e-08,8.440509461720299e-08,2.32186796944397e-07,2.4169813086700804e-07,2.545623657306052e-07,2.402570209620132e-07,2.506553545999261e-07,2.6482122439308894e-07 +754,Benzal chloride,"('air',)",emission,kilogram,biosphere3,1.7531403120334583e-17,9.458327055351588e-17,2.475297142523275e-16,1.0941243266073785e-13,2.21920391754386e-13,3.600349501738211e-13,4.348561747257031e-14,8.321224716129326e-14,1.445129123439453e-13,4.7584047976127417e-14,9.704207673919355e-14,1.794133979339072e-13,3.458370337455802e-14,7.308220700206341e-14,1.3378207665448439e-13,2.932348258194874e-14,6.103954285829146e-14,1.101618769856527e-13,3.774375156173685e-14,7.20666021679723e-14,1.2563297460678085e-13,2.3257841808342625e-16,2.437147264003442e-16,2.588229385592425e-16,7.419669335328027e-14,8.343525468893437e-14,9.547018650470048e-14,6.914923766373284e-14,7.764458003840256e-14,8.86906768529119e-14 +755,Benzaldehyde,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0763915381370151e-08,2.4261017964169094e-08,4.589823791725077e-08,1.709493352044955e-08,4.1611277539473445e-08,4.986299253002018e-08,2.217652667963132e-08,5.150467993689213e-08,5.136388137777416e-08,5.483142420015932e-08,1.2146064613659252e-07,5.472693047936952e-08,3.801522705828423e-08,8.489221796273085e-08,5.3313506966132064e-08,4.543416752721541e-08,1.001256217371369e-07,5.144479730056919e-08,0.0,0.0,0.0,2.8121248727113504e-08,2.9345002522693268e-08,3.10016289560257e-08,3.119620289102267e-08,3.2549606774494796e-08,3.438340973598202e-08 +756,Benzaldehyde,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.1751273324042301e-07,3.244725270893248e-07,7.521949445907339e-07,5.577202471886002e-08,1.7589296198098574e-07,4.095054268893783e-07,5.609150834595146e-08,1.7532680076204283e-07,4.094349952822192e-07,5.843586661207809e-08,1.7466464066308383e-07,4.020478993813321e-07,5.7803309831525416e-08,1.5975805362021102e-07,3.797054258117404e-07,5.5770025129960577e-08,1.6141955579174396e-07,3.749189408509101e-07,0.0,0.0,0.0,3.050232040660631e-07,3.2104114054978365e-07,3.4291879820794795e-07,3.0434736057556773e-07,3.203431914745864e-07,3.422233985282753e-07 +757,Benzene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.0744396839140547e-05,2.5441635760101613e-05,1.741124810498189e-05,1.4362730404097302e-05,3.959326486038812e-05,7.933826109617142e-05,1.422192441447381e-05,3.931609491895779e-05,7.424700461267118e-05,1.470995984741069e-05,4.015128003802826e-05,7.591516484951787e-05,1.1115770164840364e-05,3.18830303849819e-05,7.439369768066138e-05,1.1678728073913352e-05,3.3143031645598296e-05,0.00010541461601333228,9.036954428603538e-06,2.6466007198683612e-05,0.00010412445596661071,1.4907985510023812e-05,1.580619023168138e-05,1.7057712280305703e-05,4.6530754237825465e-05,5.434392041782501e-05,6.443871329858488e-05,4.9271272219855235e-05,5.725644589870654e-05,6.759486654756842e-05 +758,Benzene,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,1.8260593505578758e-13,4.635480836979104e-12,1.3370051635416207e-11,2.973300200825212e-13,7.004385789265008e-13,1.0918138424811378e-12,1.3817690150341866e-15,2.998155850510583e-15,1.4215578993368156e-14,5.0257695102295447e-14,1.199162864652863e-13,1.0923060922218245e-10,1.4447246644136005e-14,4.057251882965068e-14,4.202727711730076e-12,1.4149298036581867e-14,4.0019400179377734e-14,4.26267906639285e-12,0.0,0.0,0.0,1.3669245378961353e-11,1.424471233928649e-11,1.5016508948102825e-11,0.0,0.0,0.0,4.536977837646159e-12,4.732157380427886e-12,4.995994051338139e-12 +759,Benzene,"('air',)",emission,kilogram,biosphere3,1.9692314367447186e-07,1.1543213502994304e-06,6.698756292458552e-06,3.6773299742556083e-06,8.652165729444638e-06,2.088013432481741e-05,1.8509545602532502e-06,4.8436302581312985e-06,1.4222557717019139e-05,1.7368072804604117e-06,4.750215993098462e-06,1.5217370677786656e-05,2.283673146031195e-06,7.3899150170048864e-06,2.7846030400234888e-05,2.6604580954322438e-06,8.417249706653927e-06,3.0054499464867334e-05,3.1318078620438833e-06,1.0770803790352117e-05,4.107263872287707e-05,5.65790792793855e-06,5.856945940938358e-06,6.1259856656375705e-06,2.8551651740649176e-05,3.9200880484742934e-05,5.275947478009409e-05,1.8654039420176248e-05,2.819103228190131e-05,4.0146921894296516e-05 +760,"Benzene, ethyl-","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.4014691620786516e-11,5.7046650704006406e-11,3.5441874530308475e-11,2.8144711274648262e-09,6.478189634980494e-09,1.423550094478063e-07,2.3468588674707353e-09,5.438927941638568e-09,1.9086386010616664e-07,4.2743459259665884e-09,1.0007588131373006e-08,2.721670334469629e-07,2.773914622786975e-09,6.599895946294925e-09,3.190198585533254e-07,2.1186707932347762e-07,3.958349342442979e-07,9.219476146062046e-06,2.5764538865279636e-07,4.306135967486589e-07,9.193580230731297e-06,3.029602680254154e-11,3.1622645653392394e-11,3.343075419701854e-11,1.114461866433166e-06,1.1672965681432374e-06,1.2383853153604005e-06,1.196210624431962e-06,1.2529050629621117e-06,1.3294064554101458e-06 +761,"Benzene, ethyl-","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,3.537973439327607e-11,4.284658968939692e-11,6.197587216487766e-11,1.2638339644915856e-11,1.5946390784936338e-11,2.3867718433842478e-11,1.2624359131545951e-11,1.577322149655029e-11,2.3357829008589186e-11,7.304469115481299e-08,1.8331187756098889e-07,3.8840131455595607e-07,6.155371793640242e-08,1.5715796292022705e-07,3.381002858643519e-07,7.873268579781198e-08,1.787945587810057e-07,3.6457042069114794e-07,0.0,0.0,0.0,2.619722323727329e-07,2.853328236343893e-07,3.159866396937503e-07,2.5783693391146026e-07,2.7995334080856305e-07,3.089647636964608e-07 +762,"Benzene, hexachloro-","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,7.129248447959288e-21,2.995389677662672e-20,7.103552735714612e-20,3.246284405365196e-20,8.724985695903671e-20,1.8132184293449898e-19,3.197815591011882e-20,8.456308340731793e-20,1.7619035245542723e-19,2.6413528974136635e-20,7.997757721558865e-20,1.7623232226272562e-19,1.873178553898475e-19,3.492141791978481e-19,6.755886957861567e-19,2.4001251337947845e-19,4.361937671803414e-19,1.1152257954075699e-17,0.0,0.0,0.0,1.1469364919117665e-17,1.2007059396303498e-17,1.2739259351765198e-17,3.444495242142673e-19,4.0828750479829356e-19,5.006327524402928e-19 +763,"Benzene, hexachloro-","('air',)",emission,kilogram,biosphere3,1.0422333429004515e-10,3.7183209867790197e-10,1.2567368169796983e-09,8.195111724668806e-11,2.74713812630555e-10,8.461336197195907e-10,7.917912804259601e-11,2.691816845028008e-10,8.26759850055089e-10,8.130387523221484e-11,2.7257503805662397e-10,8.305964734971221e-10,8.142384071715625e-11,2.820328620960362e-10,8.515431754602784e-10,9.699373000363325e-11,3.11765713400866e-10,8.838895370939312e-10,9.585730421489694e-11,3.001357170043829e-10,8.966869745109775e-10,1.03821299453743e-09,1.0973154302839982e-09,1.1797295542602313e-09,7.252912857905739e-10,7.622418482163652e-10,8.132700845671743e-10,7.252756190757533e-10,7.621268473139151e-10,8.130589904158368e-10 +764,Benzo(a)pyrene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.3601859571543416e-08,1.0545182214733588e-07,5.686450359690603e-08,7.237619775992466e-08,2.144718902243318e-07,5.283159373546109e-07,6.74890217255855e-08,2.036314968018705e-07,3.945024359648788e-07,7.08097733638759e-08,2.0933179311394007e-07,3.9719283250396737e-07,3.892070768995475e-08,1.366436634802092e-07,3.806619364243335e-07,4.5016181264488135e-08,1.5140019332267207e-07,4.0717247806751573e-07,4.658683088433347e-08,1.524389258110105e-07,4.174443946448456e-07,4.2690531260129245e-08,4.5606664378561416e-08,4.9702993647285895e-08,2.6948250280528055e-07,3.225625033252849e-07,3.908872833717042e-07,2.7104021614152604e-07,3.2432840836210435e-07,3.929748805209581e-07 +765,Benzo(a)pyrene,"('air',)",emission,kilogram,biosphere3,5.1598905374096645e-09,1.3461222564494606e-07,4.6367280682243954e-07,2.218077598837816e-09,1.2877995355955347e-07,4.500666826759185e-07,2.370011575323847e-09,1.2920789267854558e-07,4.511581367976119e-07,2.3637711870881445e-09,1.2919687386460873e-07,4.5115745604029374e-07,2.3810748498785523e-09,1.2937466213851384e-07,4.5150664520376294e-07,3.3702145958941144e-09,1.3115441111493111e-07,4.5525677189939827e-07,7.762013378105662e-09,1.357216879038672e-07,4.611461200667429e-07,1.449364742025565e-08,1.5784365202067348e-08,1.761244700865903e-08,9.53021677044323e-09,1.0371624930262032e-08,1.1562391776775927e-08,8.388664378563903e-09,9.155080487800797e-09,1.0241075900075523e-08 +766,Beryllium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.1685411865642195e-10,4.291402521010841e-10,9.624167310889208e-10,6.487681341470094e-10,1.6636074413107324e-09,3.1840599987353557e-09,5.856920147860872e-10,1.5244294861478098e-09,1.9200721405746134e-08,6.003691875263285e-10,1.5950006381466006e-09,1.9372875044637204e-08,6.293979803932549e-10,1.7121999470395098e-09,1.9328310254076644e-08,6.251685248899408e-10,1.673046480363963e-09,2.0003606178235365e-08,7.506445700456359e-10,1.7245988956533357e-09,2.0017490575803327e-08,8.359976675081849e-10,8.748284073963713e-10,9.27548685468737e-10,3.4561088630553796e-09,3.615384321152417e-09,3.83095638892798e-09,3.603200437819429e-09,3.7679735448552725e-09,3.9915857451383756e-09 +767,Beryllium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,3.0886867642186576e-09,7.208544641147511e-09,4.774761577223874e-09,2.2010468029369992e-09,5.125663633925113e-09,3.298254071470119e-09,1.7830978532805083e-09,4.0855963065051085e-09,1.8378068406825279e-09,1.7744351416307955e-09,4.04523048915987e-09,1.751349907654764e-09,6.333548991681391e-10,1.6327974879361163e-09,1.8944381924613565e-09,2.1012161823310585e-09,4.774288577368114e-09,1.8457240086084305e-09,2.2977517150599484e-09,5.148738257039698e-09,1.7419450473254058e-09,3.521370162220512e-09,3.6743721830698594e-09,3.8833355994206495e-09,1.1902081774673555e-09,1.236698668282019e-09,1.2994478780043728e-09,1.3233927895415607e-09,1.3775060736171128e-09,1.4510727279309762e-09 +768,Beryllium,"('air',)",emission,kilogram,biosphere3,6.252755841120307e-10,6.953027479591797e-10,8.989720215369502e-10,6.777664795612748e-10,7.761250584738008e-10,1.008090839178334e-09,5.651563402001113e-10,6.217926073639634e-10,7.524445888132781e-10,5.605483023548327e-10,6.099864393534124e-10,7.348174052586831e-10,5.580456875510523e-10,6.06642570952987e-10,7.35161231098194e-10,5.605745355064173e-10,6.046650095888418e-10,7.253600617698299e-10,8.106225613254727e-10,1.1607311606390458e-09,2.2182051963618633e-09,2.4025654140083755e-10,2.5217511649035437e-10,2.6853136444465196e-10,1.3348599223712467e-09,1.4686754683971697e-09,1.6612097239310008e-09,1.3940267930676462e-10,1.4743589711975514e-10,1.585262616250523e-10 +769,Boron,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,7.885096429744543e-06,2.0543215763933e-05,2.371587696093108e-05,5.059764619759089e-06,1.2572911758806063e-05,1.121943677510243e-05,6.440015859414091e-06,1.59198471882627e-05,5.17372071451988e-05,6.4090353267608046e-06,1.574019067728754e-05,5.132620068814429e-05,7.27103239588135e-06,1.777611882254797e-05,5.1071503530465986e-05,5.783676758923543e-06,1.432747035883239e-05,5.123068422886978e-05,3.4357995943922692e-06,8.699705839301938e-06,4.998531381715953e-05,2.053273338840029e-05,2.1430801057236226e-05,2.265769455645958e-05,1.3177074614878596e-05,1.3714395129052346e-05,1.4439959862294543e-05,1.4426847290156256e-05,1.5034537365200853e-05,1.5860224977082435e-05 +770,Boron,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,4.1115634263802884e-08,9.595789673895658e-08,6.356013592451737e-08,2.9299648267242e-08,6.823123497865084e-08,4.390532907393915e-08,2.3736042258383657e-08,5.438618323917925e-08,2.446431122831014e-08,2.3620726943853163e-08,5.384884607367455e-08,2.3313423512251348e-08,8.43102279751606e-09,2.173529069183337e-08,2.5218170113006185e-08,2.7930055091920694e-08,6.343849963403528e-08,2.4373788185361533e-08,3.053834480325841e-08,6.841206723062872e-08,2.2979292894510978e-08,4.6875380662757e-08,4.891209581138714e-08,5.1693751590475386e-08,1.567724282327426e-08,1.628941135947405e-08,1.71156840200695e-08,1.7451631394041217e-08,1.8165514808028687e-08,1.913611843779646e-08 +771,Boron,"('air',)",emission,kilogram,biosphere3,2.1111130812645988e-15,4.979722201784573e-15,2.0381345386672832e-07,1.6387462349833299e-09,6.469881355675719e-09,3.727831718768538e-08,4.6315085673034035e-09,1.2956300378275946e-08,3.9000049049838794e-08,1.5491517190585545e-09,6.394580570050225e-09,3.841924335237741e-08,1.4179060923216278e-09,5.727251544405305e-09,3.678393619262942e-08,1.8709916619657037e-09,3.980508833601835e-09,8.335012913330563e-08,2.2746771463644558e-09,4.303973115765192e-09,8.402304235527868e-08,3.019980321197009e-08,3.134109961943844e-08,3.288184767782499e-08,1.439662566525575e-08,1.5147853200175558e-08,1.617148253349106e-08,1.4019040401092579e-08,1.467560514828155e-08,1.5562848982905174e-08 +772,Bromine,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.6656266516343385e-06,6.129296443576757e-06,2.691247020716761e-06,1.0492731980937001e-05,2.292949338106864e-05,3.308057150701965e-06,1.1653575048746444e-05,2.5484709344376205e-05,3.400880702248999e-05,1.165839811923954e-05,2.549922808850149e-05,3.4045433355667184e-05,1.3600988648152726e-05,2.970050666287039e-05,3.3774734747397634e-05,9.822106882663973e-06,2.1523721340241096e-05,3.466081335114148e-05,3.753042994556953e-06,8.230182583688195e-06,3.407529687522433e-05,2.2465762981891145e-06,2.3450061211386683e-06,2.4794921955305847e-06,4.783347739280438e-06,4.981334911906862e-06,5.24903966942721e-06,5.133974064138173e-06,5.348709202891257e-06,5.640562772464862e-06 +773,Bromine,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.164961366971109e-11,1.7348481705812755e-10,3.5386630955214404e-10,9.468589646318243e-11,2.0411255264341472e-10,3.9489062436261646e-10,0.0,0.0,0.0,2.0191319170758058e-10,2.1759911045259096e-10,2.3890535453712714e-10,1.9683042247467352e-10,2.121371605752183e-10,2.3290497234613077e-10 +774,Bromine,"('air',)",emission,kilogram,biosphere3,1.7221404390311586e-15,4.065178265211441e-15,1.6616638231412025e-07,2.1117218082627117e-09,6.959864772547728e-09,3.6410349205792506e-08,4.311126283842737e-09,1.2088799105812124e-08,3.748880238983304e-08,1.6663728816591193e-09,5.539461294347915e-09,3.418810595932125e-08,1.7215798925848917e-09,5.492591990919871e-09,3.3739344877543483e-08,2.235083631946303e-09,5.437425198845385e-09,7.346254211667542e-08,2.7256613825443424e-09,5.9272238625852e-09,7.42299688522902e-08,2.4621495555639566e-08,2.5551979248889788e-08,2.6808130529450185e-08,1.6985978723667205e-08,1.782458489893034e-08,1.896644401221918e-08,1.6591997122632847e-08,1.73499725033123e-08,1.8376216128110515e-08 +775,Butadiene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.846612181564155e-14,7.226170232375118e-13,2.084234028776229e-12,7.625531906791777e-14,1.7971077400204154e-13,2.802368904469251e-13,5.031907176608561e-16,1.237970490074571e-15,4.498989789876866e-15,1.2931100463296215e-14,3.0891254951431396e-14,2.796364148846499e-11,3.77837431066813e-15,1.0611405645692451e-14,1.076300033695721e-12,3.717098441765578e-15,1.0476312380971947e-14,1.0916284272509816e-12,0.0,0.0,0.0,2.1308748186701217e-12,2.2205833593404016e-12,2.340897386463959e-12,0.0,0.0,0.0,1.16167205838339e-12,1.2116522925055303e-12,1.2792139438685613e-12 +776,Butadiene,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,1.7299682431246113e-13,4.391551397386626e-12,1.2666489346283554e-11,2.8167279513277704e-13,6.635538957674911e-13,1.0343195726229274e-12,1.309011537064087e-15,2.8402925888453575e-15,1.3467027426118065e-14,4.761115586125127e-14,1.1360157016798992e-13,1.0347858730904423e-10,1.3686465872485453e-14,3.843600156232787e-14,3.9814144691285786e-12,1.3404207641141226e-14,3.791201007399074e-14,4.0382088187227684e-12,0.0,0.0,0.0,1.294993881693279e-11,1.3495123406793652e-11,1.4226306335971716e-11,0.0,0.0,0.0,4.298063165499898e-12,4.482964664789906e-12,4.732907846974878e-12 +777,Butadiene,"('air',)",emission,kilogram,biosphere3,4.036591418900192e-13,1.0246952801797377e-11,2.9555140748820964e-11,6.572586699067204e-13,1.5483445944308242e-12,2.4134936513626324e-12,3.05445429561771e-15,6.6275447011788536e-15,3.142407196695694e-14,1.1109643818649062e-13,2.6507925471847125e-13,2.4145817658418787e-10,5.4590373251301575e-14,1.4073909031923821e-13,9.478075067505557e-12,4.33311895959309e-14,1.1596227290259399e-13,9.621019752982008e-12,1.2009660290538797e-12,1.7811781006833122e-12,2.0671098385006177e-11,3.021652291118759e-11,3.14886202441641e-11,3.3194713687160975e-11,2.0470697453479757e-11,2.1581975749981598e-11,2.3112204486751078e-11,1.0232967261462838e-11,1.067337371658496e-11,1.1268728974072235e-11 +778,Butane,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.166084521006278e-06,1.004612578143466e-05,1.1922302443892025e-05,6.312078472085291e-06,1.4121894549066385e-05,1.67034933361751e-05,1.449556530812253e-05,3.232279289921637e-05,2.314226806097742e-05,1.4659185600766306e-05,3.315016316200153e-05,2.2799721650512222e-05,2.3917993836993884e-05,5.306173049101287e-05,2.1669085127859218e-05,1.710079491678207e-05,3.8280269775852244e-05,2.0948690279495744e-05,2.5328803354156468e-05,5.55867404380462e-05,2.2239532854417157e-05,1.0508018050171057e-05,1.1366650064878357e-05,1.2571748712086955e-05,1.4697227881320464e-05,1.5643994803593433e-05,1.695154749345067e-05,1.4298154718540372e-05,1.5258633551061406e-05,1.65894251784045e-05 +779,Butane,"('air',)",emission,kilogram,biosphere3,2.509131683442069e-10,1.3536957177804535e-09,9.059940556538156e-09,3.4864255922156873e-07,7.923058323190958e-07,1.3869823455032278e-06,6.7446792683214075e-09,2.2752190836813937e-08,5.0630072197413695e-08,6.712684928559621e-09,2.254606865660444e-08,5.063684506018224e-08,6.771762476007519e-09,2.1730842921342635e-08,4.8367173038765155e-08,6.444085507579964e-09,1.8593391083144485e-08,4.5153944210063546e-08,6.242215031151154e-09,1.8790896999273444e-08,4.4663260699163406e-08,4.14622168635138e-09,4.3365018321751464e-09,4.594441880108901e-09,3.392704824695048e-08,3.572540386097381e-08,3.8183465789904616e-08,3.3840468962220085e-08,3.5633636699175276e-08,3.808800080939204e-08 +780,Cadmium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,9.025414813197638e-08,2.2609671394994275e-07,4.6316069374710895e-07,1.8931105579851178e-07,4.198625807891504e-07,8.329804974971822e-07,1.515944027271787e-07,3.50786437635536e-07,7.858018878107751e-07,1.7739097060789604e-07,4.102459446920128e-07,9.039880040520479e-07,1.7537176602278465e-07,4.359514086427786e-07,9.84066080890287e-07,1.780926690749564e-07,4.365703185787995e-07,9.833486644653344e-07,2.897026380691621e-07,6.515392670213619e-07,1.4047899084674319e-06,3.5341496869963196e-07,3.7303416818111955e-07,4.0001596364594846e-07,9.77643876507279e-07,1.0297489720687001e-06,1.1009104820877954e-06,6.860964192359497e-07,7.230897695657721e-07,7.73768514108598e-07 +781,Cadmium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,3.342734752049549e-09,7.801455632457887e-09,5.167491124039111e-09,2.3820854166166645e-09,5.547255322586788e-09,3.5695392362663586e-09,1.9297596884502124e-09,4.421641269473122e-09,1.988968552555517e-09,1.9203844588723315e-09,4.377955317543378e-09,1.895400438030712e-09,6.854490630720898e-10,1.7670969463756398e-09,2.050257897704974e-09,2.3453029682047355e-09,5.339402056272343e-09,2.3537040858167082e-09,2.568292880715311e-09,5.765329359997741e-09,2.271508532889657e-09,3.811006855452213e-09,3.9765934656265106e-09,4.2027443593306e-09,1.504574441528489e-09,1.5712333181184665e-09,1.6613597816585091e-09,1.6427474412991495e-09,1.717082153262459e-09,1.8181216444737226e-09 +782,Cadmium,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,9.153268092747002e-17,2.3235716221976045e-15,6.7018446647971294e-15,1.4903724211732767e-16,3.5109617982277024e-16,5.472737812465276e-16,6.9261521893400615e-19,1.5028340526986475e-18,7.125591093172506e-18,2.5191766180099416e-17,6.010826908083502e-17,5.47520518205219e-14,7.241710474133267e-18,2.0337053962250874e-17,2.106625307096933e-15,7.092363250634142e-18,2.005980221770281e-17,2.136676038190282e-15,1.6193599758290593e-17,7.248411230337317e-17,1.5089368895906547e-15,6.851817902639595e-15,7.140275291072554e-15,7.527144476535279e-15,1.5782077998930317e-15,1.6486004431680724e-15,1.7440489123891207e-15,2.2741688209659936e-15,2.372002940221004e-15,2.5042515763126375e-15 +783,Cadmium,"('air',)",emission,kilogram,biosphere3,1.953484092026224e-08,2.1156108602129857e-08,2.997705774314269e-08,2.0289714156180855e-08,2.347734361943369e-08,3.4245780735606554e-08,1.974557697906447e-08,2.261947395200896e-08,3.2712804056285465e-08,1.967769112660768e-08,2.2123386611596437e-08,3.166074284107644e-08,1.9697842597682566e-08,2.2166181188244416e-08,3.1647128340362653e-08,1.9808052673016885e-08,2.2318764070050234e-08,3.203557152798927e-08,2.4204671383195857e-08,5.647976690751699e-08,1.549526363243206e-07,5.6123539499554385e-09,5.928460268216192e-09,6.368763114345073e-09,1.2275987153386854e-07,1.3532944492742768e-07,1.5344007702630203e-07,7.684380004599208e-09,8.072071586640751e-09,8.60707786523828e-09 +784,Calcium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,9.812478038953733e-05,9.817417116035706e-05,9.82466298440395e-05,0.00011733659254311753,0.0001173889882590921,0.00011744875263636643,0.00010268103939516553,0.00010273366604004403,0.00010279508334135612,0.00010271424866541579,0.00010284326472910708,0.00010293635636299047,0.00010272041257520728,0.00010286441132796607,0.00010296074778344986,0.00010287520155053714,0.0001031676025695376,0.00010668739378339947,0.00012451239104226282,0.0001246870032105082,0.00012833140798482884,1.0810711946333975e-07,1.1492603678739811e-07,1.2425125842447677e-07,5.091188569481275e-07,5.345910477623571e-07,5.689356587849012e-07,5.750218166378238e-07,6.034445209307565e-07,6.418446407771732e-07 +785,Calcium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,7.955708748315876e-06,1.8567464466399386e-05,1.2298628942386795e-05,5.66936329487523e-06,1.320246767550465e-05,8.495503387296264e-06,4.592828061207298e-06,1.0523506227522823e-05,4.733745157860214e-06,4.570515014798953e-06,1.0419533661869904e-05,4.511053045163512e-06,1.6313687710690945e-06,4.205690734842618e-06,4.879613799402008e-06,5.456875086398696e-06,1.2397667757532198e-05,4.9624869410300505e-06,5.971190150577064e-06,1.3373006201817164e-05,4.692872810340465e-06,9.070196352941674e-06,9.46429248751011e-06,1.0002531617828304e-05,3.153218799026503e-06,3.282547867633536e-06,3.4571765546422886e-06,3.502127655821961e-06,3.6521535626575744e-06,3.856039208372411e-06 +786,Calcium,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,9.812166626231835e-08,4.746910935426035e-07,1.1193149766885962e-06,8.473815940085828e-08,4.5469229940935e-07,1.072037978789715e-06,7.295582749148098e-08,3.274974963549496e-07,7.641904209057514e-07,7.591408846918522e-08,3.255665129636168e-07,7.495133227792391e-07,7.35322925581727e-08,2.995829350802164e-07,7.13719878830483e-07,9.043971698125241e-08,3.243782140421233e-07,7.378404910512904e-07,0.0,0.0,0.0,6.391891703472785e-07,6.675241469729014e-07,7.061193482713742e-07,6.284404595494226e-07,6.563375439064653e-07,6.94368534451623e-07 +787,"Carbon dioxide, non-fossil","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.001661642985374621,0.010746210307235859,0.018513417486930354,0.04034691386858686,0.09436744122637233,0.021241818229401133,0.05108867003205233,0.12045047514097859,0.035809187982892635,0.059653386878442974,0.13875786384318886,0.03814659248582524,0.004388153600340758,0.021383091791272315,0.04305334068186089,0.003982932623829622,0.019533967639003908,0.03603929485023515,0.00435510737945515,0.019260895398165744,0.03657905310958292,0.010411920719345042,0.010870737734558869,0.011497645106859097,0.02744472785739245,0.028515449254316136,0.029961689480704212,0.028065350884361438,0.029219204535355186,0.030790076731591478 +788,"Carbon dioxide, non-fossil","('air',)",emission,kilogram,biosphere3,0.0036768722929745837,0.005213889008878076,0.008381054193495045,0.0038354038184718825,0.00508009170325323,0.0069959646816062735,0.0035483795669230406,0.004751084823650379,0.00647222870687652,0.003490767034948767,0.004514972334040063,0.006007007204141061,0.0034752188997023105,0.004499255633285719,0.00601692214248894,0.0033174660855082344,0.00410511691371227,0.005379720172511764,0.003360646536183477,0.004069756715451401,0.005491431139441013,0.004576239271621304,0.004782105105091317,0.005063589936987943,0.0017406504538644459,0.0018627941207556176,0.0020341455324861995,0.0016850666508248632,0.0017886430481524294,0.0019326968585958435 +789,"Carbon dioxide, fossil","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.8505365358334271,4.33252301797229,7.628872276441351,2.163012698280315,4.938120966294675,8.122110819223701,3.009286927573596,6.811954095937244,16.97288269497415,3.0384811478027727,6.89179994384754,16.965293086986964,3.7738487587039753,8.481322651071684,16.741347096364677,2.713954038222999,6.180991008659958,15.509361403183558,2.0965060253632277,4.740145668104739,15.40146312635631,5.493066521735323,6.509794183465018,7.982040672381807,6.195930429152259,7.246035136889014,8.761929962177193,6.328458476099439,7.384794376083733,8.910160225534739 +790,"Carbon dioxide, fossil","('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1165416836684687e-07,4.6921274436028076e-07,2.7925021241889357e-07,0.0,0.0,0.0,1.782320145181605e-07,1.888841516803914e-07,2.0370963045584388e-07,0.0,0.0,0.0 +791,"Carbon dioxide, fossil","('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,2.8832799162672644e-08,7.319251864990594e-07,2.111081432361215e-06,4.69465724469464e-08,1.1059492261316243e-07,1.7239065824223755e-07,2.1817328722420157e-10,4.73391854276959e-10,2.244554927333883e-09,7.93537956615626e-09,1.8934040919300192e-08,1.7246837899144058e-05,2.2811311959979947e-09,6.406150646383928e-09,6.635847244057819e-07,2.2340870032741293e-09,6.318816652658736e-09,6.73050672603189e-07,5.047001750488014e-09,2.2590866056625698e-08,4.7028500755082193e-07,2.1583230108255335e-06,2.249187103821889e-06,2.3710509182185566e-06,4.918744265230922e-07,5.138134519427621e-07,5.43561537752354e-07,7.163607521856914e-07,7.471783953755838e-07,7.888365746537638e-07 +792,"Carbon dioxide, fossil","('air',)",emission,kilogram,biosphere3,0.5553456466880211,0.7384083574975528,1.3071866683807503,0.6213956692268282,0.8931869536446435,1.6192925899253994,0.5580242713434433,0.8065073046923579,1.4605653450315779,0.5504606593484414,0.7889112962245639,1.4567642889186239,0.5530316413633599,0.7925994701822978,1.4559619303977442,0.574301426757761,0.8388867125830098,1.5552613428037838,0.6466908624185069,1.0345896231438796,2.2422619630811367,0.6051422516356907,0.6395005320665306,0.6873281220271762,1.4425211829691393,1.5515556800648767,1.7061756645422168,0.8596024255784689,0.904279805190719,0.966091818892821 +793,Carbon disulfide,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0007659548872000031,0.000775293832034672,0.0007917289672553227,0.0009168148758339411,0.0009274969286336989,0.0009484414250603441,0.0008026586356865256,0.0008134708213916619,0.0008340688446708075,0.0008038239997857622,0.0008164190836972247,0.0008401028151286237,0.0008040091284801736,0.000818124333425661,0.0008453594713745901,0.000804341666655151,0.0008184238988428262,0.0008448337395273818,0.0009795476711897714,0.0010006619199166454,0.0010403166101995388,2.4357498720878957e-05,2.5562276461640476e-05,2.7201731088434684e-05,5.7679642921658106e-05,6.073335907045235e-05,6.489902230277306e-05,3.817017865302856e-05,4.024612025933791e-05,4.308712162327007e-05 +794,Carbon disulfide,"('air',)",emission,kilogram,biosphere3,3.251573782042079e-18,1.7542491145613684e-17,4.5909681475855196e-17,2.0292877816843175e-14,4.115988727624329e-14,6.67761887382444e-14,8.065338652116002e-15,1.5433492551478916e-14,2.6803013166193912e-14,8.825480323649102e-15,1.7998530500329275e-14,3.3276055329671436e-14,6.4142881203437295e-15,1.3554659751294713e-14,2.4812749973764484e-14,5.438667569387394e-15,1.132108988984755e-14,2.0431878310169538e-14,7.000386703454723e-15,1.336629409380577e-14,2.330132455182585e-14,4.3136643726473774e-17,4.5202110368488924e-17,4.800425155799608e-17,1.376136510256149e-14,1.54748540710942e-14,1.7706989806745253e-14,1.2825206394862459e-14,1.4400849497104684e-14,1.6449584613934926e-14 +795,"Carbon monoxide, non-fossil","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.1902993648125234e-06,9.195529476512071e-05,0.00012181061201055659,3.2630860281651794e-05,0.0001588849293173268,0.00015891994853146552,3.7747927156221355e-05,0.00017198652011633035,0.0001632018218338385,4.3894922080877497e-05,0.00018548262224669202,0.0001714411068248741,1.245150493500638e-05,0.00012052150657833998,0.0001789117794060856,1.2802482515882637e-05,0.00012011498111925312,0.0001753025952970487,2.982462392329865e-05,0.00013034860888940804,0.00017738365647044073,1.353342445783258e-05,1.4257557816749256e-05,1.5255602739475093e-05,3.9487169642425815e-05,4.145643801290288e-05,4.414806643473007e-05,5.699679628001247e-05,5.987651559594168e-05,6.381679249904595e-05 +796,"Carbon monoxide, non-fossil","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2673534932078792e-07,1.6488971583126558e-07,2.6988016028937756e-07,7.49918240063818e-08,1.0447746381012619e-07,1.8608053981425868e-07,7.500408233875063e-08,1.0415840823365851e-07,1.8537840865132308e-07,7.50034528550228e-08,1.052142404226776e-07,1.876372323420547e-07,9.11764782395282e-08,3.4604181450967816e-07,5.745762022558846e-07,1.1129892929808968e-07,3.645617647749028e-07,5.965324335811441e-07,0.0,0.0,0.0,1.9464171294947617e-07,2.1447759791730036e-07,2.427455299423166e-07,1.9420017103097207e-07,2.1403876417188955e-07,2.4232309586339245e-07 +797,"Carbon monoxide, fossil","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0004876038427991478,0.0013842982058947608,0.03947363662366067,0.0005366091534512122,0.0016247097321680957,0.039598772952850296,0.0006162825295158233,0.001823316385078386,0.04018407191531773,0.0006388424679751306,0.0018687618132164324,0.040179088627242815,0.0008281316321391388,0.0022443943535300566,0.0401610099593482,0.0007926486881042613,0.0021650555909667538,0.041361490063337635,0.000727720337745532,0.0019436637565410611,0.041187917618737975,0.03506264292258433,0.04363646305228509,0.05610002358454261,0.03456501251569034,0.043205970404858254,0.05575192183613989,0.03475822354221323,0.04341142247025982,0.05597466173855757 +798,"Carbon monoxide, fossil","('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,3.386708509209558e-11,8.597212825192038e-10,2.479681893906894e-09,5.51441934389401e-11,1.2990656147700406e-10,2.0249281875666528e-10,2.56269549544745e-13,5.560527576671918e-13,2.6364884639732407e-12,9.321023439283157e-12,2.224022646751721e-11,2.025841121397265e-08,2.6794529823133445e-12,7.524766432616517e-12,7.794572134788281e-10,2.624194094426561e-12,7.422182517166744e-12,7.90576067431917e-10,3.8361231052819135e-12,1.7153635206035376e-11,3.567171699252501e-10,2.5351719767079107e-09,2.6419011832082167e-09,2.7850427453280754e-09,3.7307532692001517e-10,3.8971593304796037e-10,4.1227965763106457e-10,8.414487788668482e-10,8.776476746653058e-10,9.265800372584655e-10 +799,"Carbon monoxide, fossil","('air',)",emission,kilogram,biosphere3,0.025001418454905777,0.030760232688930134,0.04251471463243268,0.02547395884716188,0.03147549743256263,0.04379840077927206,0.025318669049825916,0.0313862515600582,0.04367503127995424,0.025291793082066708,0.031323870788475636,0.04369038566962781,0.025327109173432984,0.03142889339152106,0.043748096516788675,0.02541732054538533,0.031661945408945256,0.04415099397054992,0.02565174389933882,0.03174249153361649,0.044766306788235774,0.006393781862906741,0.007098396506920425,0.008100810745665054,0.00785097155226366,0.008617529816834387,0.009705300151191384,0.0076629904519182656,0.00840767317784447,0.009464379731675684 +800,Carbon-14,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.05098712130618341,0.11925002708604586,0.07094161739423811,0.029248912458822256,0.08094068618276284,0.10709778562390741,0.06352371583931363,0.15531343809622197,0.10743908928856029,0.06345948869501311,0.15463246605819803,0.10562535853572771,0.011348277076904369,0.041686661263868864,0.09737052559140806,0.06719922799602061,0.16230780287587937,0.10242224355447378,0.07749462453468697,0.1822417235949449,0.09602289316417005,0.05963843579897238,0.06223650206691862,0.0657850133329986,0.08240674858918487,0.09014940990675563,0.10125912786063967,0.09010255694633507,0.09845545877094326,0.11043543145554506 +801,Cerium-141,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,4.2450971385243965e-09,9.382556931683065e-09,2.299622411540865e-08,1.1681164972733677e-08,3.1882153895355435e-08,6.364519003492014e-08,3.8321487948234436e-07,8.353597642288599e-07,8.346073235682179e-08,3.8279712078088306e-07,8.33933344123123e-07,8.048890858809464e-08,6.311845508825008e-09,1.9119572961691835e-08,4.024830140802646e-08,4.1096771499307487e-07,8.958408612837277e-07,8.698241132946348e-08,4.812361013112303e-07,1.045376990994382e-06,9.001757477628372e-08,1.859320781565294e-08,1.9383686113009176e-08,2.04617046284648e-08,5.627496756685015e-08,5.858022748706384e-08,6.169813176486964e-08,5.8230060846793044e-08,6.075028448264575e-08,6.418364150020297e-08 +802,Cesium-134,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,2.033128494049039e-10,4.4936413382208395e-10,1.1013712452731445e-09,5.594526862396134e-10,1.5269501519523955e-09,3.0481953312307285e-09,1.835352838970064e-08,4.000836076421834e-08,3.997232379228474e-09,1.833352043436319e-08,3.99400444141661e-08,3.854901131938632e-09,3.0229681184261144e-10,9.157045963134628e-10,1.9276348192606497e-09,1.9682710741259716e-08,4.290501637879892e-08,4.16589815180355e-09,2.3048114570539548e-08,5.006683536796729e-08,4.3112629602906645e-09,8.904950828248522e-10,9.283539096596115e-10,9.799840637428106e-10,2.6952090611011104e-09,2.805616186964301e-09,2.954943751729571e-09,2.7888454591536015e-09,2.909547964752026e-09,3.073983687334724e-09 +803,Cesium-137,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,3.6040758221346817e-09,7.965765137223001e-09,1.9523731411404707e-08,1.522247989687544e-08,3.8745811950499535e-08,5.607117943860978e-08,3.1904291734261733e-07,6.958114588806492e-07,7.34212992887423e-08,3.1868455746156245e-07,6.945777554337043e-07,7.083593577677498e-08,5.64697906838786e-09,1.719564472103074e-08,3.794999180223261e-08,3.4217878478519604e-07,7.462612644474657e-07,7.651079820028464e-08,4.006351973872988e-07,8.705724096037687e-07,7.892744168352834e-08,1.578558264127679e-08,1.645669655495526e-08,1.7371931327659985e-08,4.894866154680748e-08,5.095343416576016e-08,5.36646881331334e-08,5.073278591367345e-08,5.292622778220234e-08,5.59141120821454e-08 +804,Chlorine,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,6.956359156768141e-09,1.6474605443541104e-08,1.111563556684868e-08,4.9709250850025624e-09,1.1784655919188635e-08,7.763191623718687e-09,4.0204430069819325e-09,9.427214422529627e-09,4.447025155770413e-09,4.001298691519955e-09,9.337550753166691e-09,4.255837433606554e-09,1.4324123907560678e-09,3.907826302743296e-09,4.580380153153057e-09,4.729818552291697e-09,1.0960656537510948e-08,4.442129165792351e-09,5.175458837096558e-09,1.186034113878694e-08,4.621522196098569e-09,8.043836392844e-09,8.393343016197685e-09,8.870578583594623e-09,3.143120176760667e-09,3.2694738201774922e-09,3.440149625914292e-09,3.010064973772276e-09,3.135345796409973e-09,3.3058972768180614e-09 +805,Chlorine,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,3.03520310726536e-07,7.083721584019446e-07,4.692081871819597e-07,2.1629335083719558e-07,5.036907716667416e-07,3.2411415517309546e-07,1.7522217566751835e-07,4.014850180027244e-07,1.8059834040421617e-07,1.7437090484149374e-07,3.9751833365907964e-07,1.7210235580155186e-07,6.223877349060916e-08,1.60452399028034e-07,1.861634128154599e-07,2.0594988661327319e-07,4.679676297500039e-07,1.79400524561741e-07,2.2515517601035456e-07,5.046328485416308e-07,1.690514914328083e-07,3.4603941658089376e-07,3.610746805768134e-07,3.816091814468722e-07,1.1543880904784942e-07,1.1994019023611573e-07,1.2601562819617435e-07,1.2854154100879055e-07,1.3379424498571617e-07,1.4093573765037367e-07 +806,Chlorine,"('air',)",emission,kilogram,biosphere3,1.221214790098218e-10,2.2693350068188984e-10,5.058395393654199e-10,6.821523319864582e-06,8.772960377178079e-06,1.3220462804840912e-05,2.9864646354591075e-07,4.788538406196133e-07,9.54276109505752e-07,2.967124432844706e-07,4.470542935550431e-07,8.734400470074437e-07,3.0886269202469614e-07,4.7673243526550126e-07,8.882490942681587e-07,3.132386140595253e-07,4.752407319366524e-07,8.952983372178603e-07,3.122153276823631e-07,4.6615784502689987e-07,8.535665880291651e-07,3.6071702247248616e-10,3.925854844219462e-10,4.3769442519305463e-10,4.428830918681168e-07,4.7357712540809776e-07,5.153278864874228e-07,4.665146540557937e-07,4.930707972240009e-07,5.299566380814567e-07 +807,Chloroform,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.5025836788045186e-11,5.944861542657828e-11,3.6934164389605515e-11,2.375038572970208e-09,5.3851375256878e-09,9.235389476292916e-09,2.0764100108052534e-09,4.708511956099346e-09,8.429121690069562e-08,2.069476045557511e-09,4.8633623572159944e-09,8.476909414863148e-08,2.3007792911809963e-09,5.382915498656187e-09,8.386984696348495e-08,2.1892379801775207e-09,5.043718062703418e-09,8.661503472352571e-08,2.371928218647386e-09,4.96016675349123e-09,8.653179562840629e-08,3.157164924970527e-11,3.295412575062015e-11,3.483836520001605e-11,1.0842278500676715e-08,1.1311862561374336e-08,1.194690442976333e-08,1.1166075460003554e-08,1.1655174086850202e-08,1.2320207859198485e-08 +808,Chloroform,"('air',)",emission,kilogram,biosphere3,1.4794660595619041e-18,7.981833413490304e-18,2.08889049207033e-17,9.233259806260647e-15,1.8727749521189196e-14,3.0383167190814065e-14,3.6697292455316235e-15,7.022239414824389e-15,1.2195371518381271e-14,4.015593721047503e-15,8.189331732059419e-15,1.5140605830228122e-14,2.9185012210633657e-15,6.1673704537486905e-15,1.1289801726651768e-14,2.4745938511669887e-15,5.1510961228052615e-15,9.296505033442354e-15,5.585040511518603e-10,1.832697367267562e-09,7.488185128212538e-09,1.9627172754258225e-17,2.056696006943441e-17,2.184193430121271e-17,2.3524177565582433e-09,7.274060630837858e-09,1.3410523403527194e-08,5.835469162189801e-15,6.552386804735261e-15,7.484561323233461e-15 +809,Chlorosulfonic acid,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,4.341622414113477e-14,8.585591316029137e-14,2.2232832478903773e-13,3.369363447618673e-14,6.406208809726748e-14,2.3335837070746026e-13,4.3776216255108817e-14,8.860662520734252e-14,2.309191665853868e-13,4.953609727334928e-14,1.0216775407293298e-13,2.2638384578677945e-13,2.5302655398234894e-14,4.9620365441963284e-14,2.2508329179836915e-13,4.37878159294898e-14,1.0689131932643489e-13,5.64101851113885e-13,0.0,0.0,0.0,2.0272453950966389e-13,2.1437167930335481e-13,2.3032268443995353e-13,5.560898693419596e-14,6.024663236745994e-14,6.662190421874441e-14 +810,Chromium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,7.607781688660123e-07,4.0718064377200204e-06,1.121024177336191e-05,1.0888013220630817e-06,4.5552412621577175e-06,1.2240954532860219e-05,1.1073239595112318e-06,4.602702090488237e-06,1.2482774263847999e-05,1.1356427658461584e-06,4.6578229937102765e-06,1.2551796833399737e-05,1.0247895445658463e-06,4.842753099606294e-06,1.3674940082173625e-05,1.278728942251933e-06,5.3170115491857555e-06,1.3753064357309934e-05,1.383788713584769e-06,5.410824459289498e-06,1.3918881276260066e-05,1.0483506912592e-05,1.0969747182249689e-05,1.1630289685885001e-05,1.1624049268059394e-05,1.2203231596938706e-05,1.2993095035641384e-05,1.1650733474212251e-05,1.2226647672243497e-05,1.3013435106830068e-05 +811,Chromium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.775223507374535e-12,6.25722234407442e-12,1.9339816631055758e-11,3.2176045176245516e-12,6.7306631870461114e-12,1.9327878710473725e-11,0.0,0.0,0.0,7.80027643647519e-12,8.821894996234026e-12,1.020795246236954e-11,8.156941321378385e-12,9.276230409934e-12,1.0788211902397419e-11 +812,Chromium,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,4.576688699400987e-16,1.1617995565666392e-14,3.350961965265996e-14,7.451781331911055e-16,1.7554618728701775e-15,2.736339252323084e-15,3.4630430837207315e-18,7.514103082253381e-18,3.562759523194402e-17,1.259574668455968e-16,3.005380918638706e-16,2.7375729016351883e-13,3.6208162115364283e-17,1.016841738650106e-16,1.053301231489308e-14,3.546143455263744e-17,1.0029793037694543e-16,1.0683264340268688e-14,8.096795041733979e-17,3.6242034182221374e-16,7.544679804884315e-15,3.425949467223173e-14,3.570179867223092e-14,3.7636167477075554e-14,7.8910341399926e-15,8.242997139688195e-15,8.720239191987602e-15,1.1370720793152232e-14,1.185988608475761e-14,1.2521122094559752e-14 +813,Chromium,"('air',)",emission,kilogram,biosphere3,3.866772848860903e-08,7.791634291261166e-08,2.0671707124097283e-07,3.932515548384515e-08,7.517712071837798e-08,1.7788940780303759e-07,3.820227909558235e-08,7.360133501753829e-08,1.7497162545973073e-07,3.82807197904249e-08,7.306045833900605e-08,1.7375549026484008e-07,3.872858361328342e-08,7.511329987087105e-08,1.7614138922201313e-07,4.0738306011449e-08,7.88626204360642e-08,1.833355194438222e-07,9.138981112814132e-08,2.544986056532092e-07,6.030501737438839e-07,1.427336038041365e-07,1.5093005014681562e-07,1.623643341464664e-07,4.748993547281008e-07,5.162177453020549e-07,5.751417898517056e-07,1.2260796661797906e-07,1.2915565461920997e-07,1.3823804573479023e-07 +814,Chromium VI,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.2522837285136665e-08,1.0978948319303708e-07,2.818962371257717e-07,3.3352584432042986e-08,1.2759235089749263e-07,3.1504335088606197e-07,3.444100649158756e-08,1.301592860471741e-07,4.352552659652696e-07,3.514091902894535e-08,1.3170398963796553e-07,4.374719942690542e-07,3.3384115846507744e-08,1.3852835050787607e-07,4.640562559038539e-07,3.8149750473082546e-08,1.4683334240891217e-07,4.6995598970297166e-07,3.875612397583411e-08,1.4415338878331726e-07,4.7344793025300705e-07,2.633915088131453e-07,2.753178142435629e-07,2.914872196218414e-07,3.0488404759328224e-07,3.196759161248068e-07,3.3980943426022486e-07,3.063361404377292e-07,3.210914650739555e-07,3.412147067068913e-07 +815,Chromium VI,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.5777707614956514e-08,3.682286957360921e-08,2.439055747962055e-08,1.1243442833657249e-08,2.618304434766667e-08,1.6848224696516567e-08,9.1084654599009e-09,2.087014617421845e-08,9.387931290210685e-09,9.06421437760318e-09,2.06639484872138e-08,8.946289802727705e-09,3.2353194819443986e-09,8.340697340033275e-09,9.677216990752504e-09,1.070576496120546e-08,2.4326070462779506e-08,9.32566597369099e-09,1.1704101584149263e-08,2.623201574437212e-08,8.787698616325728e-09,1.7987951878372137e-08,1.8769520658844396e-08,1.983695285058294e-08,6.000783867345873e-09,6.234776368119711e-09,6.550592083810914e-09,6.681895039715551e-09,6.9549430860752574e-09,7.326174860936905e-09 +816,Chromium VI,"('air',)",emission,kilogram,biosphere3,1.1537227674815274e-10,1.3013428072509568e-10,5.813226055146747e-10,1.4851015565180613e-10,1.9490160187800606e-10,3.270433545515122e-10,1.2155711149526042e-10,1.5401634516305682e-10,2.43853122565373e-10,1.1522439152059947e-10,1.4098137805709748e-10,2.4556790146192103e-10,1.1227266667790181e-10,1.353657527381591e-10,2.35480290879585e-10,1.1301606410098223e-10,1.3252725025026798e-10,3.2701419193229137e-10,1.8316852319748307e-10,3.167399933969512e-10,6.806035215680483e-10,1.1045864374123068e-10,1.1517751503346626e-10,1.2159980319322155e-10,3.3638376450486416e-10,3.649442387495135e-10,4.052206452793415e-10,7.231155147654748e-11,7.697604928232926e-11,8.324133136700347e-11 +817,Chromium-51,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,2.7202506924087903e-10,6.012325821902298e-10,1.4735939673251694e-09,7.485269862101168e-10,2.0430027849427293e-09,4.078372525152928e-09,2.4556341732641913e-08,5.3529706017170604e-08,5.348148974630058e-09,2.452957182891636e-08,5.343830126897451e-08,5.157715032846492e-09,4.044619441636046e-10,1.2251788548810724e-09,2.579104038158258e-09,2.6334738525905528e-08,5.7405324024335125e-08,5.573817540323713e-09,3.0837524299108796e-08,6.698757278124351e-08,5.76831027728527e-09,1.191449465358325e-09,1.2421031746052076e-09,1.3111824100716808e-09,3.6060899727794323e-09,3.753810620909698e-09,3.953605375803507e-09,3.731372004544135e-09,3.892867489571784e-09,4.112876400263633e-09 +818,Cobalt,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.00010570500108632475,0.00010578147301406057,0.00010586806035093967,0.00010084664061632506,0.00010095775520324051,0.00010107617534360435,8.825961024808081e-05,8.837662829469719e-05,8.880457242566973e-05,8.824341083280835e-05,8.836959535542262e-05,8.880946696559247e-05,8.82468825677568e-05,8.838782071832532e-05,8.883625958969055e-05,8.824195042105681e-05,8.837012194651656e-05,8.883585172260161e-05,0.00010686941518881147,0.00010696007960277906,0.0001074158288718485,1.7637752233828855e-07,1.8554675239434322e-07,1.9790517660513887e-07,2.245962876475322e-07,2.3627442710515046e-07,2.521564704179475e-07,2.851645219336681e-07,2.995842464782204e-07,3.192188113683591e-07 +819,Cobalt,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.9655279693638033e-08,4.587255755999906e-08,3.038484681345117e-08,1.4006661750546602e-08,3.2617860134399204e-08,2.098888996126576e-08,1.1346986563711229e-08,2.5999249737959893e-08,1.1695134672249473e-08,1.1291860215757972e-08,2.5742376349768267e-08,1.1144954178453957e-08,4.030440347230211e-09,1.0390529674400407e-08,1.2055516008886514e-08,1.337406887200546e-08,3.038186749049542e-08,1.1750034568589225e-08,1.4624122967309682e-08,3.2770407959650235e-08,1.1099267792019361e-08,2.240871955599725e-08,2.3382368791941665e-08,2.4712136003481696e-08,7.562335523002283e-09,7.859036676971708e-09,8.259537448599497e-09,8.407917803448233e-09,8.752853646024786e-09,9.221826450645427e-09 +820,Cobalt,"('air',)",emission,kilogram,biosphere3,8.337181521697595e-10,9.271641522235025e-10,2.5749402173744956e-09,1.2976369059678417e-09,2.7178411088368554e-09,5.398560607533427e-09,1.0890564587283375e-09,2.412494759048739e-09,4.791906153424409e-09,1.0259952283645692e-09,1.9461106956214413e-09,3.782470510308026e-09,1.0272098854196414e-09,1.929046897246665e-09,3.7211785053856548e-09,1.023990190916205e-09,1.8454993323078298e-09,3.917775860415596e-09,8.388388053958264e-09,6.809590305752376e-08,2.587255085575964e-07,5.244695129649607e-10,5.480775607178354e-10,5.803033800910535e-10,2.4576644860573734e-07,2.727495385178069e-07,3.1174719330218234e-07,2.3796024114187844e-09,2.490580864275147e-09,2.6416683381031848e-09 +821,Cobalt-58,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,3.7880614532214875e-10,8.372412068361652e-10,2.0520404749203053e-09,1.299363481754062e-08,2.9152434520198043e-08,1.0267216199734263e-08,1.9991091546427234e-08,4.4340418450921404e-08,1.3222131330058243e-08,1.994551449003628e-08,4.4162048741657923e-08,1.281661324560115e-08,1.2125604230631813e-09,3.875911573044666e-09,1.2105301507820162e-08,2.1507429732675763e-08,4.7713326495998145e-08,1.3760764918849843e-08,2.5071619803219796e-08,5.5099341754287474e-08,1.3670709711690407e-08,1.6591426010974827e-09,1.7296799837763068e-09,1.825875672888553e-09,7.66042421347269e-09,7.973391892766696e-09,8.396154513665182e-09,8.114800635642403e-09,8.460839965033986e-09,8.93160241471313e-09 +822,Cobalt-60,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,3.346399911833409e-09,7.396247218269379e-09,1.8127868670557216e-08,6.437359643287451e-08,1.4656405641103677e-07,7.134849195769912e-08,2.365208879321872e-07,5.19104519973263e-07,9.244666588265199e-08,2.3615326341901728e-07,5.177442763294343e-07,8.945623711022313e-08,7.972827252679696e-09,2.5087390693893172e-08,7.102606221642863e-08,2.5396645709302783e-07,5.57438905331589e-07,9.625850596770149e-08,2.9686778084482953e-07,6.478181838441465e-07,9.698528242666681e-08,1.4656981447448667e-08,1.528011360557497e-08,1.6129913032265485e-08,5.6541714733727017e-08,5.885404477237101e-08,6.197905759231388e-08,5.9374961503565704e-08,6.192085938489804e-08,6.538617115385553e-08 +823,Copper,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.237190000635827e-05,3.383627755334885e-05,3.836931920441115e-05,3.842570832975707e-05,4.054420103345985e-05,4.614632522802109e-05,3.3567009565681084e-05,3.54841202178955e-05,4.1318505388208984e-05,3.372903736579089e-05,3.5866432676004954e-05,4.208184018802749e-05,3.373234261814924e-05,3.613439152665477e-05,4.2780334487399496e-05,3.3743193789083195e-05,3.611280915863174e-05,4.278816967130055e-05,4.1393923381132856e-05,4.4528973362793034e-05,5.294089283253136e-05,5.600200938120308e-06,6.273565749597796e-06,7.236372661093383e-06,1.0225018292512193e-05,1.1141349997964493e-05,1.2434623905513028e-05,7.920090972256934e-06,8.716650705177418e-06,9.847661882337955e-06 +824,Copper,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.0724954291525572e-07,4.836902205696934e-07,3.2038443185773097e-07,1.4768928640166037e-07,3.4392980804370656e-07,2.2131141851993502e-07,1.196450930456987e-07,2.741417412059892e-07,1.233160423860038e-07,1.1906382884897836e-07,2.714332123592578e-07,1.1751481965581932e-07,4.24978391973868e-08,1.0956000368093854e-07,1.2711598154264009e-07,1.4237096968872799e-07,3.2351260313138835e-07,1.3657190433233355e-07,1.5574457809634709e-07,3.487485139203361e-07,1.2951455560504604e-07,2.3628241132304328e-07,2.4654878058793485e-07,2.605701352281573e-07,8.457199524927353e-08,8.84148347872417e-08,9.360693935386706e-08,9.373274624327786e-08,9.815714140629963e-08,1.041650038514642e-07 +825,Copper,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,1.5560112360866138e-14,3.949959450265526e-13,1.1392812027688912e-12,2.5337027823019464e-14,5.968799156633877e-14,9.303910045379572e-14,1.177474592685333e-16,2.554876617369016e-16,1.2113816982477595e-15,4.282717905242764e-15,1.0218686379448483e-14,9.30810486750611e-12,1.2311244517896542e-15,3.457393731953346e-15,3.581361532970821e-13,1.2057346885011309e-15,3.4102596227827735e-15,3.6324491816858446e-13,2.752914712344457e-15,1.232231162505759e-14,2.5651953673420346e-13,1.1647759293686444e-12,1.2138122912635875e-12,1.2795781830108816e-12,2.6829560388865135e-13,2.8026236563642984e-13,2.9648862220556523e-13,3.866193346888236e-13,4.032515924690061e-13,4.2573447904540353e-13 +826,Copper,"('air',)",emission,kilogram,biosphere3,1.6481900290122976e-07,3.4202112868036614e-07,7.81286673406004e-07,6.726692423679214e-07,2.7436642118056172e-06,6.502333488026163e-06,5.9948005684546e-07,2.643752267518421e-06,6.248076692718602e-06,5.292910228293501e-07,1.9313382747616065e-06,4.546791436006712e-06,5.501120276053759e-07,1.932363468522987e-06,4.4866162251068806e-06,5.52628506024685e-07,1.8476036907780545e-06,4.379018311863894e-06,7.102301328206587e-07,2.185871664538583e-06,5.089783518558706e-06,5.713771075901896e-07,5.993749868684124e-07,6.380168053852573e-07,4.280172654883401e-06,4.496833365360938e-06,4.79578233212696e-06,3.752952218624245e-06,3.922225811677108e-06,4.153497006548961e-06 +827,Cumene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.3903243292611417e-12,3.302701011900673e-12,2.0518981140717206e-12,1.319594700431854e-10,2.992038924744739e-10,5.131272048866968e-10,1.1537806752216562e-10,2.6163378192769297e-10,4.683980278689309e-09,1.1499322000178423e-10,2.7023918881150105e-10,4.710535069718121e-09,1.2784631095454363e-10,2.991097289258596e-10,4.660562256441563e-09,1.2164752884540718e-10,2.8026000573611164e-10,4.813111619999842e-09,1.317995506350849e-10,2.7561842038476623e-10,4.8084878490446436e-09,1.7539805957156682e-12,1.8307848492525054e-12,1.9354648234028175e-12,6.024824890957992e-10,6.285761453177633e-10,6.638638982570459e-10,6.20473831252211e-10,6.476517792457613e-10,6.846059897693243e-10 +828,Cumene,"('air',)",emission,kilogram,biosphere3,1.3277259545783698e-19,7.163183867874492e-19,1.8746453235252548e-18,8.286258706318354e-16,1.6806954507502678e-15,2.726694460497687e-15,3.2933467213815253e-16,6.302009659635997e-16,1.0944564058799316e-15,3.603737913829181e-16,7.349400188833922e-16,1.3587723026542294e-15,2.619167732726193e-16,5.534819575079934e-16,1.0131873229295755e-15,2.220789328372111e-16,4.622778519212725e-16,8.343017242895925e-16,2.8584913284687615e-16,5.457903595826119e-16,9.514707829010751e-16,1.761412949259953e-18,1.8457528369947165e-18,1.960173602031368e-18,5.619224262908538e-16,6.318898947392573e-16,7.230354401877137e-16,5.236959445021214e-16,5.880347065635387e-16,6.716913931704371e-16 +829,Cyanide,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.7812587395179115e-08,1.1187304726743656e-07,3.4508388623742096e-06,1.7845477349142339e-07,4.803738107190033e-07,1.952271855655635e-05,1.432028952956721e-07,4.035432282717271e-07,1.804733386726518e-05,4.187288973084279e-07,1.036656194594287e-06,2.9514388351931914e-05,1.6591756168059027e-07,4.678537097821325e-07,3.625673737012564e-05,1.536584071341049e-07,4.3868356655581833e-07,3.5687689645502705e-05,1.6018138078945858e-07,4.274017245774118e-07,2.632167096645891e-05,3.6389539128236747e-06,3.7940747957047322e-06,4.003564988229355e-06,2.5854427346044612e-05,2.6972189676098672e-05,2.8480092033642522e-05,3.5890363633211294e-05,3.743409705026215e-05,3.951721477244738e-05 +830,Cyanide,"('air',)",emission,kilogram,biosphere3,6.259279962774472e-17,3.376929754832946e-16,8.837614218735642e-16,3.90637914428271e-13,7.923278634412454e-13,1.2854416873549061e-12,1.5525777559282242e-13,2.9709474412961856e-13,5.159580251809396e-13,1.698905033861788e-13,3.4647172672498063e-13,6.405640920771027e-13,1.234750515174971e-13,2.6092721120266943e-13,4.776454571128182e-13,1.0469435512052306e-13,2.1793098955866077e-13,3.933136740362329e-13,1.1083339106628422e-11,1.0236814331277557e-10,4.13773221834944e-10,8.303804415656106e-16,8.701406768121517e-16,9.240818979498137e-16,4.0160419429252174e-10,4.409562027136513e-10,4.974666957985264e-10,2.468852334988323e-13,2.7721636449448137e-13,3.1665451715450744e-13 +831,Dinitrogen monoxide,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.9213687875243465e-05,0.00011206360994682577,0.0004261950314846671,1.8341335326537492e-05,4.439978880559431e-05,0.0004118635499687251,3.13420794452446e-05,7.363111906351554e-05,0.0005432558531899769,3.334893377236113e-05,7.830225173749e-05,0.0005559497050804109,3.945058474250345e-05,9.285178986147028e-05,0.0005588660528417174,3.240959687561674e-05,7.748129256783376e-05,0.0005671462842610282,3.442355094621221e-05,8.049459694149539e-05,0.0005699140867708272,0.0003860198228038835,0.0004649908280011752,0.0005794642808718459,0.00039156574775193787,0.0004707879174491875,0.0005855860621633248,0.00039185328948694733,0.0004709989302663372,0.0005856935928901434 +832,Dinitrogen monoxide,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.9413848885534367e-09,6.071128593220402e-09,9.896378544548273e-09,1.9192306308312755e-09,5.94622817853103e-09,9.611665421517735e-09,1.7660415599768846e-09,5.394116404114586e-09,8.57064253300852e-09,1.5593331294246946e-09,5.019395202786181e-09,8.542201943482967e-09,5.6054749558829544e-09,1.3619809778130186e-08,1.3958178437346873e-08,0.0,0.0,0.0,8.423583994302798e-09,8.897934341881174e-09,9.553840884026267e-09,5.152274067873381e-09,5.430463199995586e-09,5.813602452102014e-09 +833,Dinitrogen monoxide,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,2.7459913576584914e-13,6.970742441791318e-12,2.0105613514469143e-11,4.471064924279544e-13,1.0532762100117732e-12,1.6418021257621407e-12,2.0778222077539346e-15,4.508452137161387e-15,2.1376528054270718e-14,7.557441409521782e-14,1.8032269714953066e-13,1.6425423237026495e-10,2.1724877536216967e-14,6.101044889766645e-14,6.319801931174607e-12,2.1276841199591477e-14,6.017870344136823e-14,6.409953068851801e-12,0.0,0.0,0.0,2.0555535002369025e-11,2.1420910590538845e-11,2.2581522737642577e-11,0.0,0.0,0.0,6.822426586883994e-12,7.115925508436653e-12,7.51266677176453e-12 +834,Dinitrogen monoxide,"('air',)",emission,kilogram,biosphere3,3.2489675054210434e-05,7.364661630913997e-05,0.00010277471495454991,4.372688110598759e-05,9.97049639240286e-05,0.0006549360673084976,3.8275447646053664e-05,8.841130757921849e-05,0.0001264658632562165,3.804052680048803e-05,8.810871701629146e-05,0.0001269701735586749,3.968975660349588e-05,9.170280057629331e-05,0.00012423494746845645,4.0809595230573416e-05,9.374932242284995e-05,0.00012549830813974715,4.072577648892554e-05,9.481150849574009e-05,0.0001433508267206406,4.12484000097283e-05,4.32390505916867e-05,4.598437818925151e-05,7.323022785422343e-05,7.787800148491705e-05,8.440329659405683e-05,5.75792573715627e-05,6.026404281261661e-05,6.394391552995746e-05 +835,"Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.0401469747555104e-12,1.2927159326295663e-12,1.2372508069488275e-12,1.0033047848520342e-12,1.2572444926915598e-12,1.1947221029705702e-12,9.128916302376932e-13,1.1919845048280205e-12,2.1062902771324398e-12,9.144839758373605e-13,1.1963812201487548e-12,2.1161580195692134e-12,9.424844003769108e-13,1.2666719599666213e-12,2.1337504121148074e-12,9.106442209662758e-13,1.1881074122971344e-12,2.311017972259015e-12,9.863176952942493e-13,1.1439596103801512e-12,2.4237804921044547e-12,3.1229722716403747e-13,3.293582740881344e-13,3.5294774157980163e-13,3.59002956500356e-13,3.774801488993482e-13,4.0283186567165803e-13,3.943366092223741e-13,4.143429300793505e-13,4.418157589236112e-13 +836,"Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin","('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.7041336632421782e-17,5.3291929233549077e-17,8.686969761325616e-17,1.6846868154853466e-17,5.2195562395187214e-17,8.43705063390167e-17,1.5502185531504132e-17,4.7349165031083435e-17,7.523248245214562e-17,1.3687713826005527e-17,4.405988933273771e-17,7.49828330071867e-17,1.6276544467184584e-17,4.6544105428324306e-17,7.772964769377219e-17,0.0,0.0,0.0,4.538289376166053e-17,4.784840728631003e-17,5.124494971441595e-17,4.522629043358735e-17,4.766821458573623e-17,5.1031383327151996e-17 +837,"Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin","('air',)",emission,kilogram,biosphere3,6.594682145002509e-12,6.845955688285445e-12,8.992594022099283e-12,6.901727596970511e-12,7.442132888127985e-12,9.863812730946833e-12,6.693117020099471e-12,7.037456393389463e-12,9.233943860567839e-12,6.704296906597943e-12,7.0724143362626204e-12,9.320087508520366e-12,6.675073927099672e-12,7.02742948257531e-12,9.216913803868327e-12,6.84129934484184e-12,7.320964767017357e-12,9.848151256881493e-12,6.902341296761795e-12,7.38022587191422e-12,1.0004195263016263e-11,9.248093781579098e-13,9.780355102435821e-13,1.052279094391668e-12,1.549917298832579e-12,1.6678430761712306e-12,1.831015113169106e-12,1.48511059878493e-12,1.5955789899837548e-12,1.7483392014595658e-12 +838,Ethane,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.5588892887926557e-05,0.0001297299409978102,0.00016923544149446601,6.531298494786731e-05,0.00015260197457964608,0.0001807360182387186,5.5487058463047235e-05,0.0001311999381444026,0.00017476118270580657,5.554875738085517e-05,0.00013480475971500345,0.00017852310065823106,0.00011669237376265695,0.000268835533300106,0.00017081457744636967,6.562265683722372e-05,0.00015813659283685097,0.00016284700246560507,9.637334097514172e-05,0.00022079837789423687,0.00016342777279099312,0.00014544581138127455,0.00015467469021960393,0.00016717448543668062,0.0001263806103571751,0.0001349706557136293,0.0001465055395784557,0.0001308650368762801,0.00013978195437320127,0.00015177835695622116 +839,Ethane,"('air',)",emission,kilogram,biosphere3,3.7122146661370225e-10,2.002768026880584e-09,1.7158600187621087e-08,4.990313323222517e-07,1.1259124298348517e-06,1.945815407533341e-06,1.9728614229879652e-09,8.476544939865913e-09,1.695466947047684e-08,1.856113958465186e-09,8.315071440886325e-09,1.735227401304794e-08,1.7025577600952452e-09,7.528129688609193e-09,1.561702819751035e-08,1.455453778938937e-09,4.641919336397784e-09,1.4685801130395333e-08,1.4528217598553897e-09,4.732324354684074e-09,1.468794698780032e-08,6.690589639092463e-09,6.993130205209372e-09,7.403130920092153e-09,8.22837220959943e-09,8.66796413293508e-09,9.269178021930575e-09,8.144734404359942e-09,8.575800187865266e-09,9.165704514832684e-09 +840,"Ethane, 1,1,1,2-tetrafluoro-, HFC-134a","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.563354941534278e-09,3.589962812646531e-09,3.616848900665904e-09,3.233837034934487e-09,7.505858153782326e-09,5.0224591136231595e-09,4.039753211308292e-09,9.270567225334368e-09,4.192692059179907e-09,4.090925680934589e-09,9.323685689806932e-09,4.145852237409811e-09,1.885660407645416e-09,4.670300789528561e-09,4.524991751039511e-09,4.9387688082871374e-09,1.119837854775906e-08,4.361915694894721e-09,5.4381020047937555e-09,1.216270601344952e-08,4.148388145815206e-09,1.5323693107251712e-09,1.597803353603852e-09,1.6871344089763706e-09,2.7537585076153156e-09,2.8620687299060333e-09,3.008307168410071e-09,3.03832537930309e-09,3.163050337697986e-09,3.3326088027310904e-09 +841,"Ethane, 1,1,1,2-tetrafluoro-, HFC-134a","('air',)",emission,kilogram,biosphere3,6.229829968630751e-08,2.2355307555245056e-07,5.437350642559772e-07,5.712729949797722e-09,1.5218781832540308e-08,1.6763123575533962e-08,1.3174214492730229e-08,3.397256736583092e-08,2.137176059911055e-08,1.8584128988579006e-08,4.456877533226698e-08,2.0756803020878137e-08,5.39671954579904e-09,1.2031393033048896e-08,2.1056964802875622e-09,3.7988554378552086e-09,8.860292067386561e-09,2.807750761049093e-09,5.441734014806801e-09,1.1669667720873864e-08,5.021566687384375e-09,4.866873037356978e-07,5.071172712407728e-07,5.349538691924129e-07,3.3828046744962335e-09,3.861523874865371e-09,4.515235063091149e-09,2.200992469607837e-09,2.416089888269091e-09,2.6939719460876662e-09 +842,"Ethane, 1,1,1-trichloro-, HCFC-140","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.106281995396252e-12,1.2129919862961725e-11,7.536062038346021e-12,4.84760755875051e-10,1.099146023158766e-09,1.8850017965595893e-09,4.2393898854022984e-10,9.613331222507533e-10,1.721263811509034e-08,4.225287206240013e-10,9.9296061665849e-10,1.7310218143100973e-08,4.697593876213401e-10,1.099049353187872e-09,1.7126557120007452e-08,4.4697557445393525e-10,1.029773339989055e-09,1.7687160617588904e-08,4.842830003799463e-10,1.0127273761349262e-09,1.767018407695524e-08,6.441892254705784e-12,6.723973326482917e-12,7.108434315865776e-12,2.213891329615731e-09,2.3097743110508303e-09,2.439441688157607e-09,2.2799909310765387e-09,2.379857489689863e-09,2.515647358571226e-09 +843,"Ethane, 1,1,1-trichloro-, HCFC-140","('air',)",emission,kilogram,biosphere3,2.7367411895279997e-18,1.4764929944872244e-17,3.864064847222004e-17,1.707983929929207e-14,3.464290607771472e-14,5.6203293735026674e-14,6.788326885710676e-15,1.2989856588361532e-14,2.255920336911502e-14,7.428112810194257e-15,1.5148763588055733e-14,2.8007347339960617e-14,5.398692649885739e-15,1.1408505604679715e-14,2.088406513604493e-14,4.577545330230036e-15,9.528584252892285e-15,1.7196831384394045e-14,5.891992304250031e-15,1.1249964505275095e-14,1.961194870428299e-14,3.630667509277672e-17,3.8045109513146594e-17,4.040357834291623e-17,1.1582482613475686e-14,1.3024669201689011e-14,1.490338349757673e-14,1.0794549012789242e-14,1.2120715327011999e-14,1.3845067431139572e-14 +844,"Ethane, 1,1,1-trifluoro-, HFC-143a","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.851811394213356e-36,4.3661734835048285e-35,1.2003480881886502e-34,0.0,0.0,0.0,1.2041740220809677e-34,1.2572598544550717e-34,1.3284109749370625e-34,0.0,0.0,0.0 +845,"Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113","('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.70539428988325e-11,1.3259968162760145e-10,3.433737292945804e-10,5.203794403905802e-11,9.894033123116398e-11,3.604090216059287e-10,6.760993069282968e-11,1.368480033611906e-10,3.566418065347285e-10,7.650574649996262e-11,1.577924124762804e-10,3.4963725586547754e-10,3.907854365195681e-11,7.663589399648327e-11,3.4762862257923525e-10,6.76278457576988e-11,1.6508769624511115e-10,8.712239275220499e-10,0.0,0.0,0.0,3.130967735102789e-10,3.3108513298011214e-10,3.557205730439452e-10,8.588498673760985e-11,9.304757211253575e-11,1.0289382482423845e-10 +846,"Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,3.0034058393645604e-09,7.997599450785188e-09,8.670093779254731e-09,6.930799576947588e-09,1.7868241894307817e-08,1.1107222247913894e-08,9.777511132503833e-09,2.3444120583487847e-08,1.0763524618471542e-08,2.8367129624188947e-09,6.3181069647228075e-09,9.471740905220231e-10,1.964509740645291e-09,4.431730595769419e-09,8.869819757864499e-10,2.438167242984713e-09,5.449647358025138e-09,9.703233049050833e-10,0.0,0.0,0.0,8.112623287679097e-10,8.438218700170257e-10,8.878309872363251e-10,7.727933094428042e-10,8.038707919291644e-10,8.459783057607299e-10 +847,"Ethane, 1,1-difluoro-, HFC-152a","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.162569276747214e-10,2.4622153982012543e-10,4.152981512722343e-10,1.5100601956173997e-10,3.644307366105716e-10,3.3135712002006624e-10,2.2097712618400884e-10,5.060053285803217e-10,4.737623753184552e-10,5.151230332885015e-10,1.138371834622433e-09,4.5193165795868737e-10,3.6347935656920214e-10,8.082036093100182e-10,4.393352829241796e-10,4.366603629671518e-10,9.543034997195237e-10,4.547556888262707e-10,0.0,0.0,0.0,2.3994312013188096e-10,2.5064250424966593e-10,2.651289939406267e-10,2.3772714357008427e-10,2.484015773068917e-10,2.6289370183778594e-10 +848,"Ethane, 1,2-dichloro-","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.019992495698321e-11,2.4229815835344895e-11,1.505347087545227e-11,9.676356968569182e-10,2.193996163078971e-09,3.762674988274166e-09,8.45659690185577e-10,1.9176361738668813e-09,3.432225113592978e-08,8.428227967874273e-10,1.9806740800793567e-09,3.451684727005146e-08,9.370122456336706e-10,2.1922441024800384e-09,3.415075899866741e-08,8.916097520015103e-10,2.0541521504231366e-09,3.526850551566247e-08,9.65995731904631e-10,2.020094189050634e-09,3.5234561224011654e-08,1.2867839590644248e-11,1.3431303529768583e-11,1.4199273894339037e-11,4.415185440114901e-09,4.606413108185945e-09,4.8650196592852195e-09,4.547081451395389e-09,4.746258471886666e-09,5.01708204008645e-09 +849,"Ethane, 1,2-dichloro-","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7676402512548694e-08,5.800418731480065e-08,2.369987140062066e-07,0.0,0.0,0.0,7.44531924590287e-08,2.3022184383906165e-07,4.2443921149042245e-07,0.0,0.0,0.0 +850,"Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.2926711065987054e-08,5.319187179248001e-08,2.9296345767435614e-08,1.0310599585708014e-07,2.399423241559534e-07,1.5087177633018094e-07,1.2656841579950772e-07,2.8998056156785134e-07,1.268438502681073e-07,1.2595299607034696e-07,2.870846306260737e-07,1.2064438228947006e-07,4.4611759721374414e-08,1.1510156198969942e-07,1.3393523678709845e-07,1.4888531912656148e-07,3.382260843607881e-07,1.2891011483432602e-07,1.6276333867666923e-07,3.648478148509385e-07,1.2141592444091786e-07,2.4440538397901617e-08,2.5507379956926505e-08,2.6964647907625036e-08,8.244285160358534e-08,8.564509942588793e-08,8.996739419693584e-08,9.183310027259376e-08,9.557367402888311e-08,1.0065945505721979e-07 +851,"Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,3.0034058393645604e-09,7.997599450785188e-09,8.670093779254731e-09,6.930799576947588e-09,1.7868241894307817e-08,1.1107222247913894e-08,9.777511132503833e-09,2.3444120583487847e-08,1.0763524618471542e-08,2.8367129624188947e-09,6.3181069647228075e-09,9.471740905220231e-10,1.964509740645291e-09,4.431730595769419e-09,8.869819757864499e-10,2.438167242984713e-09,5.449647358025138e-09,9.703233049050833e-10,0.0,0.0,0.0,8.112623287679097e-10,8.438218700170257e-10,8.878309872363251e-10,7.727933094428042e-10,8.038707919291644e-10,8.459783057607299e-10 +852,"Ethane, hexafluoro-, HFC-116","('air',)",emission,kilogram,biosphere3,4.5270515688689663e-08,1.3697048139533597e-06,8.015395476310236e-06,1.1358209159064622e-08,1.3046035188108789e-06,7.867809008953649e-06,1.403320837854618e-08,1.3100229162022792e-06,7.880148249553522e-06,1.4444357342570997e-08,1.310743783211222e-06,7.881961334109603e-06,1.4547360878810513e-08,1.3121434364236083e-06,7.884901050931513e-06,7.794480913611717e-09,1.2998092810986098e-06,7.857740814938026e-06,8.957362519502302e-09,1.3007012698212177e-06,7.859356840895863e-06,1.3409508231569317e-07,1.4591056302245184e-07,1.6263153308162112e-07,2.1753863354657936e-08,2.3722003634984757e-08,2.6506239422409705e-08,2.158512029278847e-08,2.3534618549694925e-08,2.629447849612078e-08 +853,"Ethane, pentafluoro-, HFC-125","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.702620029830762e-35,5.668776492885781e-34,1.558459610302592e-33,0.0,0.0,0.0,1.563426972271057e-33,1.6323504174360514e-33,1.7247287438493202e-33,0.0,0.0,0.0 +854,Ethanol,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,8.101897559966704e-09,1.8761889747270168e-08,2.0473776098195573e-07,4.161019523462492e-08,3.8461079696289904e-07,1.1020823099821464e-06,4.300413026767224e-08,3.796884912280634e-07,1.0247153302389302e-06,4.433370037178057e-08,3.802769714526938e-07,1.0775065206571328e-06,3.027309259019598e-08,4.015190994716656e-07,1.2527032085465345e-06,4.051826903155698e-08,3.3883616028615116e-07,9.883524319742127e-07,2.6149277503177083e-07,7.471308422629985e-07,1.593912555507032e-06,2.0693516436125426e-07,2.1573821212403532e-07,2.27629454026271e-07,1.3087463234786027e-06,1.369707167898904e-06,1.4516979506326447e-06,9.946017080073112e-07,1.037633602673401e-06,1.0954473278096201e-06 +855,Ethanol,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,3.9230711210032686e-11,1.29997996379948e-10,2.0139136182300554e-10,3.808556398285729e-11,1.3196415892785592e-10,2.1286281557957966e-10,3.184449824289523e-11,1.0495130916230956e-10,1.575378715494406e-10,3.142306266623424e-11,1.0293026423743016e-10,1.5432463906036546e-10,1.1426359390134636e-12,1.2201465228830359e-11,1.8730049438398185e-11,9.240654339756992e-13,1.1571950452971782e-11,1.8071825463504904e-11,0.0,0.0,0.0,4.557956109608744e-12,4.960675953040432e-12,5.5303679218457075e-12,4.577928479830264e-12,4.9813335336716205e-12,5.5520160610148826e-12 +856,Ethene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.2997186999051473e-07,1.9417158649583686e-06,2.5033201470044795e-05,1.695649009794946e-07,1.43562788030489e-06,1.2714995121714246e-05,1.4111296917512435e-07,1.379909326662226e-06,1.0747434756852981e-05,3.1728672050818887e-07,1.7824665387308211e-06,1.740194572147814e-05,1.7421277094672233e-07,1.480989895562662e-06,2.1337853905805103e-05,1.7121136301457577e-07,1.470537866799537e-06,2.0972382095626537e-05,2.989246247003535e-07,1.4475269086326876e-06,1.5363716236767834e-05,2.4586561544670963e-05,2.5663531478438507e-05,2.7122926085982083e-05,1.470035713301852e-05,1.5330392915303497e-05,1.6181256023929074e-05,2.081871112498154e-05,2.17113520471625e-05,2.2916906297065836e-05 +857,Ethene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.315506974365904e-09,8.648207980011e-09,1.250286079776178e-08,9.573360171762254e-10,7.706639037291936e-09,1.0982266669828712e-08,1.0691695504992012e-09,8.184066604894332e-09,1.1885986304523978e-08,6.234994979173151e-10,6.528492581345939e-09,8.636551413707656e-09,9.636311464945538e-11,1.432898241049973e-09,2.0308660793779787e-09,3.895486872956759e-07,8.56326137245032e-07,1.722429420352407e-06,0.0,0.0,0.0,1.0844308931658474e-06,1.35839170665061e-06,1.705385983490688e-06,3.3222718581454e-10,3.729384179450626e-10,4.3122352100005847e-10 +858,"Ethene, chloro-","('air',)",emission,kilogram,biosphere3,1.0025686107156698e-18,5.408934938936179e-18,1.4155485573647557e-17,6.25697101277735e-15,1.2690965958641465e-14,2.0589326021133472e-14,2.4868128912036627e-15,4.758660471521466e-15,8.264262858585113e-15,2.7211899197992897e-15,5.5495472169819445e-15,1.0260117638123407e-14,1.9777389485534416e-15,4.179353658821997e-15,7.650598339679149e-15,1.6769225950576917e-15,3.490669579404063e-15,6.299829500630623e-15,1.432298594203648e-08,3.775057024613531e-08,1.0339813640535701e-07,1.330046557664196e-17,1.393731781165391e-17,1.480131137273394e-17,4.9720212310948216e-08,9.051622426986263e-08,1.4151556139921158e-07,3.954438861245018e-15,4.4402621784793e-15,5.071955541764643e-15 +859,"Ethene, tetrachloro-","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.097092269041262e-11,2.6061313009779566e-11,1.619134116942917e-11,1.0409302375046538e-09,2.3601870523102213e-09,4.047681605226019e-09,9.09841463421084e-10,2.0631761111995618e-09,3.693003693092716e-08,9.067945396399885e-10,2.1310097808034057e-09,3.7139413894563124e-08,1.0081380515471665e-09,2.3586486638595227e-09,3.674548055724123e-08,9.592795030518676e-10,2.2100544540195783e-09,3.794817622106674e-08,1.039318530802937e-09,2.1734239303094975e-09,3.791167351395178e-08,1.38405011884467e-11,1.4446556559125486e-11,1.527257670256717e-11,4.7505033902688044e-09,4.956252513017977e-09,5.234497192595858e-09,4.892400222613048e-09,5.106701341325208e-09,5.398089349626898e-09 +860,"Ethene, tetrachloro-","('air',)",emission,kilogram,biosphere3,2.167715950715636e-15,1.1694994471134206e-14,3.060645522232979e-14,1.3528585963412519e-11,2.7439926376477556e-11,4.4517461633974376e-11,5.376892733697088e-12,1.0288995606371318e-11,1.786867643757437e-11,5.883653876226361e-12,1.1999021000678247e-11,2.2184038119824882e-11,4.276192317981673e-12,9.036440336601718e-12,1.6541834235500538e-11,3.6257785811845608e-12,7.547393679529044e-12,1.3621252964107546e-11,4.6669247284501546e-12,8.910863224642503e-12,1.5534217231567666e-11,2.8757763311948306e-14,3.0134741113524694e-14,3.200283529455051e-14,9.17424391177759e-12,1.0316569954310955e-11,1.1804660527480264e-11,8.550138071948681e-12,9.600566865179857e-12,1.096639035233865e-11 +861,"Ethene, trichloro-","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8537863994186065e-10,6.083102796350655e-10,2.4854887321806472e-09,0.0,0.0,0.0,7.808167723946584e-10,2.4144173151456766e-09,4.4512430461002365e-09,0.0,0.0,0.0 +862,Ethylene oxide,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.75170721505617e-13,6.985252479402387e-12,2.0147464635772524e-11,7.371231420918774e-13,1.7371767885156454e-12,2.708913940487012e-12,4.864097206211644e-15,1.1966849750130469e-14,4.3489531795339853e-14,1.2499866834255017e-13,2.986107588641235e-13,2.7031094500680846e-10,3.6523708257357975e-14,1.0257530146584341e-13,1.0404069838919109e-11,3.593138386849707e-14,1.0126942033421253e-13,1.0552241977400675e-11,0.0,0.0,0.0,2.059832267269277e-11,2.1465499595706068e-11,2.262852763147102e-11,0.0,0.0,0.0,1.1229319754839568e-11,1.1712454410783492e-11,1.236554009074113e-11 +863,Ethylene oxide,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,1.6722702428073803e-12,4.2450843258152686e-11,1.2244036473286405e-10,2.7229859106025753e-12,6.414705060471862e-12,9.9989692193309e-12,1.2654434888294012e-14,2.7457551982005577e-14,1.3018818168814368e-13,4.602663305033257e-13,1.0982085285363187e-12,1.0003477209099063e-09,1.3230972072048796e-13,3.715682834465744e-13,3.848911146247974e-11,1.295810716990443e-13,3.6650275382333575e-13,3.903815354099614e-11,0.0,0.0,0.0,1.2518032342471616e-10,1.3045033930870625e-10,1.3751830440229054e-10,0.0,0.0,0.0,4.155021632323986e-11,4.333769523935773e-11,4.575394481056735e-11 +864,Ethylene oxide,"('air',)",emission,kilogram,biosphere3,3.9021077017957874e-12,9.905561004015731e-11,2.85704689454355e-10,6.361592920884372e-12,1.4996542372528716e-11,2.337490548530689e-11,3.716207524402212e-14,9.383147172502941e-14,3.480988801659176e-13,1.0814407934642914e-12,2.5920391467715915e-12,2.3341414640684265e-09,1.350116417569201e-10,5.116797677147059e-10,2.619807844637016e-09,1.370493814326473e-10,5.124132418795067e-10,2.6193591556248196e-09,1.616312593850436e-10,5.280182967596377e-10,2.5267127527953976e-09,2.920981612278973e-10,3.043953171144766e-10,3.2088784208660844e-10,6.440372834688479e-10,2.5067233112881964e-09,4.828506147245118e-09,7.666831066682333e-10,2.636846944748096e-09,4.969091664968963e-09 +865,Ethyne,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,7.893991587666325e-09,3.291475294023145e-08,4.4820176940912895e-06,1.048122758507179e-09,2.680995325004701e-09,2.2363107553613684e-07,7.824400454456215e-10,2.1784099391923204e-09,1.8462130094588336e-07,4.00107293431075e-09,9.502541328820493e-09,3.1923979904588685e-07,1.0792974117575103e-09,2.8483718987080576e-09,3.986942015964868e-07,8.759825581662426e-10,2.4082113182815906e-09,3.9106972298297995e-07,8.887615950334798e-10,2.297414924850984e-09,2.8089470143877585e-07,4.762528982432285e-06,4.966049047017018e-06,5.241012533699085e-06,2.989181037037239e-07,3.1170776247089914e-07,3.2897141013191315e-07,4.1685630918283523e-07,4.3464616186926734e-07,4.586601366629827e-07 +866,Ethyne,"('air',)",emission,kilogram,biosphere3,1.6942332090696858e-09,3.923531606535296e-09,6.423039016843318e-09,1.0253499784441985e-08,1.9557352776605338e-08,2.8272035819372747e-08,9.224865623132629e-09,1.8568195965826112e-08,2.598274678507779e-08,9.27769678565188e-09,1.8721073556403796e-08,2.6078602900485038e-08,8.972332086146633e-09,1.844915787765094e-08,2.7437318156083818e-08,9.107092184479658e-09,1.3682528985226339e-08,2.0748573486106946e-08,2.6352281242380415e-07,8.667765080466341e-07,1.7616044496942747e-06,5.185504249578806e-09,5.42479270056317e-09,5.749533882473274e-09,1.4246743076617089e-06,1.5565152997523304e-06,1.7444991345125536e-06,1.227299171722441e-08,1.2982922057292901e-08,1.3966951724301891e-08 +867,Fluorine,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.9131327249248818e-08,8.173844052228408e-08,1.8035290177660437e-07,3.882657918166704e-08,9.64891816625429e-08,2.1485487292783106e-07,3.595423925055369e-08,9.346566772285954e-08,2.0742657536544545e-07,4.180132817368643e-08,1.0685677283846551e-07,2.338786506266005e-07,4.200843855084815e-08,1.1416765850991464e-07,2.586225852933804e-07,4.452892410086134e-08,1.1822501124746397e-07,2.5940086113815066e-07,7.679129093371123e-08,1.8414761532922841e-07,3.874832410748645e-07,1.4437487677464463e-07,1.5137743389152952e-07,1.6091243722760376e-07,2.9685797524692454e-07,3.1236327194821255e-07,3.335186405492123e-07,2.058682954591996e-07,2.1676519005648158e-07,2.3167657942566876e-07 +868,Fluorine,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.490859667626852e-06,3.47944913249435e-06,2.304700993718094e-06,1.062410068634593e-06,2.474075810586893e-06,1.5920144586514917e-06,8.606727990327643e-07,1.972051955739909e-06,8.870799517484538e-07,8.564914467479968e-07,1.952568021677723e-06,8.453485737381095e-07,3.057102743101097e-07,7.881252179234731e-07,9.144149989863499e-07,1.0116040660758822e-06,2.2986075148267218e-06,8.811964069857316e-07,1.105938416843149e-06,2.4787031925818737e-06,8.303630505552633e-07,1.6997090201390232e-06,1.7735606468042404e-06,1.8744239434031465e-06,5.670232236404605e-07,5.891335320649934e-07,6.189754409131467e-07,6.313824575599634e-07,6.571831840780758e-07,6.922614409113817e-07 +869,Fluorine,"('air',)",emission,kilogram,biosphere3,1.0354124246074801e-11,2.619261547615013e-11,5.7741852941712805e-11,8.176460001474725e-11,1.1465304968929984e-10,1.8244558931110967e-10,3.936682666290904e-11,6.703256770734423e-11,1.0792672065739171e-10,4.1027980166984524e-11,7.001485732491165e-11,1.0740664718833056e-10,5.006403197637875e-11,9.169464894866936e-11,1.1309696177629817e-10,4.692679541277791e-11,1.0384082694606491e-10,1.486162476314112e-10,2.1576840173918065e-09,4.918965502046105e-09,8.674578952454669e-09,4.45663970842886e-11,4.689860494371153e-11,5.009321824203665e-11,5.215834756419769e-09,5.522260478454842e-09,5.9455967641559765e-09,7.654030911897679e-11,8.103782200461834e-11,8.725910941595977e-11 +870,Formaldehyde,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.1277864792022353e-06,2.591855202663537e-06,1.2900746471493649e-05,2.0666835107244103e-06,4.634224858289603e-06,1.2456601829461008e-05,3.0315229461571675e-06,7.035650377731147e-06,1.5218072316938962e-05,3.536712218060079e-06,8.061191405046763e-06,2.0011579294580287e-05,6.348810897998251e-06,1.4092525194994128e-05,2.3012891061372226e-05,4.7845659812436245e-06,1.059681233941388e-05,3.473696509691178e-05,5.034319632155149e-06,1.093240472041073e-05,3.074952942779949e-05,1.3482391422005836e-05,1.4058540185129244e-05,1.4837224782532886e-05,1.5063606363193458e-05,1.5716367483442707e-05,1.659786007156904e-05,1.949347791012887e-05,2.033544196956554e-05,2.1473180853085413e-05 +871,Formaldehyde,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,1.4416939159101312e-12,3.659762871732209e-11,1.0555802130787559e-10,2.3473237868241614e-12,5.529734728400246e-12,8.619515121728183e-12,1.0908619139846714e-14,2.3669472250342022e-14,1.1222738475070491e-13,3.967681545885574e-13,9.467000748359788e-13,8.623401262284356e-10,1.140563136614831e-13,3.2030684099408454e-13,3.3179168109267664e-11,1.11704106557478e-13,3.1594014928686984e-13,3.3652464551396776e-11,0.0,0.0,0.0,1.0792018860500487e-10,1.1246356325582416e-10,1.1855698197536437e-10,0.0,0.0,0.0,3.5817964116177646e-11,3.735884311319028e-11,3.944174780214377e-11 +872,Formaldehyde,"('air',)",emission,kilogram,biosphere3,6.053534540862622e-07,1.3246634547340675e-06,3.070257810264881e-06,2.389814812210132e-06,5.080302107318589e-06,1.0804437241657753e-05,1.773971579045399e-06,3.8782956654235915e-06,8.200076931252756e-06,1.754598471934496e-06,3.815131099500339e-06,8.084757470815754e-06,1.7620083216196468e-06,3.6890090484615436e-06,7.873908159131915e-06,1.7827850475051994e-06,3.5708554602534655e-06,7.545007367100891e-06,1.9817910994379925e-06,4.2611989553122855e-06,9.563919095809603e-06,2.3818078978280793e-06,2.479447073743322e-06,2.6109953105708314e-06,7.418167674687516e-06,7.924935666350625e-06,8.638269579226344e-06,5.585241330411843e-06,5.904689607726555e-06,6.347728710558345e-06 +873,Formic acid,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.400507443520444e-09,1.703705796380023e-08,1.3180331230835683e-05,2.455452230379769e-08,6.010043781525027e-08,6.118463759400832e-06,1.6261812603258e-08,4.223389134328851e-08,5.042255789732813e-06,1.0491132133910278e-07,2.448282157154487e-07,8.747652391499575e-06,2.597340632915302e-08,6.580288647455944e-08,1.0934605458789308e-05,2.112838707481124e-08,5.5326341084673736e-08,1.0724033989487285e-05,2.107333040714643e-08,5.1729591179648805e-08,7.69258087568978e-06,1.4077719373558253e-05,1.4676488677720458e-05,1.5484970221983967e-05,8.198311321379043e-06,8.547014443258026e-06,9.017852723672291e-06,1.1442239338421965e-05,1.1928578178432711e-05,1.2585234348220988e-05 +874,Furan,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,9.655889801523375e-10,4.837743801960771e-09,3.7426077690823406e-06,1.0714713150910817e-07,2.6225673984423297e-07,2.6698751927732028e-05,7.096074550098138e-08,1.8429359128513497e-07,2.200257574409695e-05,4.5779496290839844e-07,1.0683415545118383e-06,3.8171578725142994e-05,1.133386180526426e-07,2.8714014372573434e-07,4.7714646472939726e-05,9.219671008197431e-08,2.4142429176342323e-07,4.679578929665277e-05,9.195647057603668e-08,2.2572937484436916e-07,3.3567629483955506e-05,3.997424720988595e-06,4.167447659729321e-06,4.3970192278079805e-06,3.577444934945767e-05,3.729606297039881e-05,3.935063000982123e-05,4.992977244007146e-05,5.2051978321360514e-05,5.491738710835904e-05 +875,Furan,"('air',)",emission,kilogram,biosphere3,2.1297809394513472e-19,1.149033200389249e-18,3.007084199610478e-18,1.329183548715892e-15,2.695972721482118e-15,4.373840532520024e-15,5.282797022667516e-16,1.0108938014508505e-15,1.755597430686255e-15,5.78068983689049e-16,1.1789037936362593e-15,2.1795817088871298e-15,4.2013588822814214e-16,8.878302482508034e-16,1.6252351865098486e-15,3.5623273965432014e-16,7.415314166336917e-16,1.338288081379291e-15,4.585253469156194e-16,8.754922972063262e-16,1.5262368175255945e-15,2.825450217668377e-18,2.9607382853934183e-18,3.144278536951384e-18,9.01369449287699e-16,1.01360298109336e-15,1.1598078774670635e-15,8.400510515423282e-16,9.432556787541741e-16,1.0774478341270128e-15 +876,"Heat, waste","('air', 'non-urban air or from high stacks')",emission,megajoule,biosphere3,26.621696882709536,57.398597601375606,99.83838052426887,2.9690250971378176e-07,0.9770167577447809,2.571633435644576,2.548681576050423e-07,0.9770167530781518,2.571633470154365,2.0724142586135467e-06,0.9770221411005808,2.5882460205265514,2.1628244389194286e-06,0.9770226475515723,2.5724499228101374,1.9085532708326977e-06,0.9770216792772383,2.5724843290802193,2.007274332455763e-05,0.9770454082281986,2.5725413021967753,80.76636333076308,95.69399055355282,117.30010931848165,2.738251576936692,2.867600008278969,3.0475148258649907,2.7382175461234577,2.867560679124165,3.04746786862846 +877,"Heat, waste","('air', 'lower stratosphere + upper troposphere')",emission,megajoule,biosphere3,4.17388066666097e-07,1.0595462573415183e-05,3.056034241337896e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.124421884018996e-05,3.255958155074015e-05,3.4323701038790044e-05,0.0,0.0,0.0,0.0,0.0,0.0 +878,"Heat, waste","('air',)",emission,megajoule,biosphere3,4.88777952397467,12.90818551026781,24.176092098391212,1.427851110324048,4.994030137115306,6.0690041964073,1.4221872847667978,4.9875182841159615,6.060208389057592,1.4219185669198564,4.986823090696733,6.059133225158207,1.421845962300048,4.986766930478345,6.059420882598734,1.422027231653056,4.986746682831592,6.059085480655347,1.468486633150984,5.393106515396548,7.642340256316176,13.448887268679389,14.198253761288605,15.243862393774585,1.5187286766836128,1.6849865190915783,1.9251140432067386,0.007682604461316145,0.00809493482729635,0.008666893603921142 +879,Helium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.553124317556345e-07,2.5858184763325006e-06,8.86354659583453e-06,4.393671391242874e-07,2.810941625645048e-06,9.93384123931301e-06,2.86027593823881e-07,2.2771282102714095e-06,8.593839573064656e-06,2.8010639800778873e-07,2.235128681890607e-06,8.512743374211131e-06,1.9629385132634518e-07,1.582453609237935e-06,6.0752279365291385e-06,2.142468581943961e-07,1.6218541788212676e-06,6.153572377933079e-06,2.125059604216089e-07,1.4889183079875441e-06,5.669355547695295e-06,8.021304688833784e-06,8.887840475481265e-06,1.01383295431096e-05,5.336319108932281e-06,5.927891346935071e-06,6.781556297853762e-06,5.855879930257029e-06,6.490134376964812e-06,7.4046296171041855e-06 +880,Helium,"('air',)",emission,kilogram,biosphere3,3.869203077668331e-15,7.155927573005263e-15,1.2578451120005255e-14,5.703362765544186e-09,1.9312747303216425e-08,4.843422425017685e-08,1.1814110169726188e-09,9.548735685175294e-09,3.4508384977277535e-08,1.4599308446692867e-09,1.0236231763462004e-08,3.592491120712121e-08,2.0882385621438143e-09,3.4041947260244124e-08,9.840813022723239e-08,2.1052450497999294e-09,3.355729574594155e-08,9.672472747646206e-08,2.6407827511690338e-09,3.3883691179884604e-08,9.643317832966919e-08,9.398463534849068e-15,9.865030031702248e-15,1.0508073209271128e-14,9.657636689754099e-08,1.009411568800329e-07,1.067884061708142e-07,9.752078035871717e-08,1.0184606180952622e-07,1.0764423660402816e-07 +881,Heptane,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,2.5732758205291844e-08,7.105248416660484e-08,1.6471446509464462e-07,1.221286986663854e-08,3.851675162048554e-08,8.967282352910022e-08,1.2282829866876143e-08,3.839277449116839e-08,8.965740052859099e-08,1.2796193649704735e-08,3.824777553048438e-08,8.8039785961387e-08,1.2657677834354798e-08,3.498355556631593e-08,8.3147267822363e-08,1.2212432701974523e-08,3.5347389328613434e-08,8.209913246612327e-08,0.0,0.0,0.0,6.679347142213827e-08,7.030105311447154e-08,7.509178702986003e-08,6.664547527525939e-08,7.014821619153406e-08,7.493950820114224e-08 +882,Hexane,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.081128321870216e-07,1.1858619963838124e-06,7.854839588535295e-07,1.9490090422354403e-06,4.023976997946405e-06,1.750719095886076e-05,1.0561236763765854e-05,2.3045411548766783e-05,1.9985052857187783e-05,1.0790985392083551e-05,2.381263333840526e-05,1.9675193294691126e-05,1.5138830239351252e-05,3.3118782444815e-05,2.389087328227663e-05,1.1609051792441467e-05,2.5461508685847594e-05,2.3373768059719318e-05,1.7264734197155088e-05,3.7393621077157733e-05,2.3347332265899428e-05,5.792946824070402e-07,6.044647947942219e-07,6.388410222169688e-07,1.9240505152206068e-05,2.0099708994669647e-05,2.12567258461768e-05,1.996678699077091e-05,2.0866591683327713e-05,2.2080633199765684e-05 +883,Hexane,"('air',)",emission,kilogram,biosphere3,2.148748470816661e-10,1.1592663707231869e-09,3.033865001174525e-09,2.86934735271563e-07,6.448884354465952e-07,1.1117825890657161e-06,4.167091543504097e-15,7.973970972831067e-15,1.3848223158747564e-14,4.559831398326006e-15,9.29924055002734e-15,1.719262820156762e-14,2.2678925231245757e-14,5.0642677516065436e-14,1.7334738091476851e-13,1.31134723808595e-14,2.9354540866577815e-14,1.7999102943603345e-13,1.0302053170845702e-12,1.5294609473351766e-12,1.7681739706544398e-11,2.8506134117391804e-09,2.9871063421183796e-09,3.1722811856587194e-09,1.750550751602402e-11,1.8456315972661535e-11,1.9765512163590098e-11,1.8084802169947537e-13,1.893169277094792e-13,2.0074833082117723e-13 +884,"Hydrocarbons, aliphatic, alkanes, cyclic","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.4787995068939473e-10,3.5128728669427304e-10,2.182473440768164e-10,1.4029048836240397e-08,3.18091644135078e-08,5.45522974688731e-08,1.2260713987397023e-08,2.7802659739891113e-08,4.97620236552098e-07,1.2219588070996932e-08,2.8716618434840095e-08,5.004415796833212e-07,1.3585189220169054e-08,3.178405551687189e-08,4.951338336389026e-07,1.2926916953848539e-08,2.9781924481929775e-08,5.113394712039699e-07,1.4005401130168318e-08,2.9288148882707432e-08,5.108473483107465e-07,1.865597529032191e-10,1.9472893255967517e-10,2.0586307521575155e-10,6.401332401156666e-08,6.678582649521354e-08,7.053521758031522e-08,6.592559734515e-08,6.881335216074062e-08,7.273986970144036e-08 +885,"Hydrocarbons, aliphatic, alkanes, unspecified","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.9881984972973246e-06,1.1516329753669399e-05,1.1446195897970405e-05,4.323040814576827e-06,9.854549661235233e-06,6.0901239013298445e-06,5.126080481093675e-06,1.1615920525262195e-05,1.949372178114527e-05,5.198800230851427e-06,1.1820604177404208e-05,1.9651612334191618e-05,8.771440718934892e-06,1.951261484137265e-05,1.9057925239123186e-05,6.377089081242072e-06,1.4290272742189799e-05,1.9121096706145335e-05,5.197205754418691e-06,1.1636807387766007e-05,1.9003543459637424e-05,1.0042719174254847e-05,1.0586719875904546e-05,1.1323873790957858e-05,6.063561858884587e-06,6.319524484408633e-06,6.664706190665577e-06,6.168110008591585e-06,6.43358415056861e-06,6.792748079881367e-06 +886,"Hydrocarbons, aliphatic, alkanes, unspecified","('air',)",emission,kilogram,biosphere3,0.00012571876521398447,0.00014391825225617947,0.0001853468541874698,0.00012613040361746225,0.0001447738477486007,0.00018645043091641573,0.00012598954282688047,0.0001441286093302872,0.0001856607241419074,0.000126027836737601,0.00014419310072143855,0.0001857285913784342,0.0001261198521089578,0.00014448214129081984,0.00018580593035291644,0.00012641361538498426,0.0001450514769459989,0.00018674300096635654,0.00012633196851146377,0.00014464810785582826,0.00018715272832370256,1.359323188825185e-05,1.4374563823832473e-05,1.5465181223217604e-05,1.478210570587336e-05,1.560047564726667e-05,1.6738873870917883e-05,1.4615854719585032e-05,1.541950158760812e-05,1.6537849787089205e-05 +887,"Hydrocarbons, aliphatic, unsaturated","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.058932711734699e-06,9.278935709035631e-06,3.7395542008727853e-06,4.094861360245717e-06,9.139977396522504e-06,2.448045048239702e-06,4.640804077927869e-06,1.0377930075711069e-05,1.5297016602327677e-05,4.638338193028023e-06,1.0352781221023258e-05,1.5241883881404134e-05,5.458872376043745e-06,1.2166094790311024e-05,1.5255909796044868e-05,3.98921490957448e-06,8.950510816116022e-06,1.5425416114878003e-05,1.6884488918388455e-06,3.862199556202767e-06,1.508227188676813e-05,3.089972280767222e-06,3.2266296655990595e-06,3.4134895829604406e-06,2.9727681183371283e-06,3.0943380558366833e-06,3.2585648088583483e-06,3.2333651043403186e-06,3.3686466520663977e-06,3.552458488402617e-06 +888,"Hydrocarbons, aliphatic, unsaturated","('air',)",emission,kilogram,biosphere3,6.50814476158531e-16,1.5351500244041604e-15,6.283166335342481e-08,4.2337483504616835e-09,6.8985453580198065e-09,1.858706063922902e-08,2.78801852201276e-09,6.068672634255005e-09,1.5099886023374244e-08,1.8419387319894478e-09,4.051656443483495e-09,1.491268182808911e-08,1.7779172045080367e-09,3.7721300663719374e-09,1.425037169343413e-08,1.9734059137277584e-09,4.355559168150647e-09,3.05834953730727e-08,2.364777051109545e-09,4.69174638673864e-09,3.105129846077283e-08,9.31000300890314e-09,9.661842155436688e-09,1.013682435842849e-08,5.836264319756038e-09,6.173622768769296e-09,6.637811415283323e-09,5.742960930939625e-09,6.052337007269997e-09,6.4762687432085e-09 +889,"Hydrocarbons, aromatic","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.589069334946509e-07,1.1142851344836765e-06,4.035128842348619e-06,7.921727667323113e-08,2.7979750764134933e-07,1.8330971296064272e-06,2.1044711754214998e-07,5.461995783216076e-07,1.775717151382158e-06,2.499208806074694e-07,6.672671546014598e-07,1.8895636297749263e-06,1.6788939532693073e-06,3.719879600622367e-06,1.5766448106757296e-06,1.208584449284546e-06,2.699837274825262e-06,1.5111223816104285e-06,1.8092264307959962e-06,4.007275010314981e-06,1.6328184771207408e-06,3.636312950146927e-06,3.849680360505499e-06,4.137994243004744e-06,1.5458408220277e-06,1.6130916316274889e-06,1.7036045830549848e-06,1.4597806024836015e-06,1.5246977873610392e-06,1.6120837157859425e-06 +890,"Hydrocarbons, aromatic","('air',)",emission,kilogram,biosphere3,4.03238623357115e-07,1.4421531098243189e-06,4.866289785186534e-06,6.413980251616602e-06,1.2833029136505966e-05,2.979431468194985e-05,4.567007544661381e-06,8.983785548269527e-06,2.2317843760741062e-05,3.919604685680607e-06,8.391499494020101e-06,2.1746822162179105e-05,1.8943669046684856e-06,8.507974177211948e-06,3.0114377047242315e-05,2.0148348655849926e-06,8.78190713239614e-06,3.1703818708882845e-05,2.420202059788769e-06,8.791234077634615e-06,3.0644969354072183e-05,4.023233639437248e-06,4.2520321443434946e-06,4.571028842055772e-06,2.324990156076953e-05,2.460541596972353e-05,2.6410530483458498e-05,2.4870851795305538e-05,2.6276897529922054e-05,2.8153236365140374e-05 +891,"Hydrocarbons, chlorinated","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.1821177429314166e-11,1.2310066884903267e-10,7.647983573418314e-11,4.914378608023287e-09,1.1142704621289964e-08,1.9109692181617395e-08,4.293449621559373e-09,9.73591946349051e-09,1.7422261602785888e-07,4.278986359238024e-09,1.0055834643669218e-08,1.7521045345887594e-07,4.757127339847497e-09,1.1129851713847268e-08,1.7335250033058446e-07,4.526733530111094e-09,1.0429000801255841e-08,1.7902600844156588e-07,4.904308846594985e-09,1.0255946951997969e-08,1.7885346874357237e-07,6.537563763441498e-11,6.823834151395189e-11,7.214004948393928e-11,2.2413510570790798e-08,2.3384288605663734e-08,2.4697118728698958e-08,2.3083260437532936e-08,2.409440538712069e-08,2.5469272144206316e-08 +892,"Hydrocarbons, chlorinated","('air',)",emission,kilogram,biosphere3,2.309331201115749e-08,4.70038349281882e-08,1.0795753822257686e-07,1.5351407215630796e-08,3.198964321763872e-08,6.953748931197703e-08,1.1743658105676458e-08,2.661452344909566e-08,5.88260251343617e-08,1.2298082324832415e-08,2.7395475776780604e-08,6.022825240748359e-08,1.2336214561219817e-08,2.901613752057562e-08,6.397686107854599e-08,2.4244785997643112e-08,5.545502623780091e-08,1.1595115809138347e-07,1.518662776704984e-08,3.1483927374087614e-08,6.822372369392825e-08,8.082690190720668e-08,8.698228405692721e-08,9.562992172184333e-08,5.096656040738562e-08,5.4427422306148125e-08,5.925255723994725e-08,8.113040273253745e-08,8.721810467006782e-08,9.57633231886855e-08 +893,Hydrogen,"('air',)",emission,kilogram,biosphere3,9.929640829897475e-08,3.4060538817922373e-07,1.7325558480317227e-06,4.420753221167432e-07,7.426260097865459e-07,2.1304555040399907e-06,2.9878991185437687e-07,5.677361143531729e-07,1.9811864374778e-06,2.9994754552312154e-07,5.699448557104461e-07,1.9878475014161753e-06,3.0766759856809793e-07,5.889717833712949e-07,1.9845732323167885e-06,3.122720340735094e-07,5.984019769184986e-07,2.004755060115e-06,3.528073945968154e-07,6.403635544905039e-07,2.0607488750420323e-06,3.9995205057756175e-07,1.7224307537047986e-06,3.3710134895136244e-06,5.931151882938522e-07,1.7124321120492841e-06,3.1095514959736938e-06,5.800985799787678e-07,1.6961877113191207e-06,3.089541877545556e-06 +894,Hydrogen chloride,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.00011991485738702538,0.000281600081074952,0.00015944656667397716,0.0005905282038990991,0.0012940303181234627,0.00029659490178508873,0.0006491145429697818,0.0014228069492244434,0.0028466345078782514,0.0006493157919144299,0.0014255255071940075,0.0028543801944414682,0.000755198635001511,0.0016546607356763285,0.002827949520202791,0.0005532194825699074,0.0012164080763456173,0.0029194884956826373,0.00023044531498572703,0.0005030746557995276,0.002885875559851679,0.0001349671913962852,0.0001409809381981136,0.000149210234881045,0.00039342438830483346,0.0004100912548989153,0.0004326409568325259,0.0004174194171779085,0.0004352641927761326,0.0004595305474201175 +895,Hydrogen chloride,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2839962126171855e-07,3.655879899689781e-07,5.826964943025176e-07,2.720185496774815e-07,4.988216397437733e-07,7.51742887852644e-07,0.0,0.0,0.0,2.9877556246655176e-07,3.168175745865069e-07,3.4120899342802255e-07,2.802821064084073e-07,2.970406001269077e-07,3.197041037133896e-07 +896,Hydrogen chloride,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,7.871833760684556e-15,1.998277662450802e-13,5.763603931267959e-13,1.2817195993898867e-14,3.0194255389098844e-14,4.706552014465243e-14,5.956489779645279e-17,1.2924372492515707e-16,6.128006262300688e-16,2.166490743117009e-15,5.16930840609941e-15,4.7086739410674755e-12,6.227867791691097e-16,1.7489857376607066e-15,1.811696796774143e-13,6.0994292690110555e-16,1.725142101332665e-15,1.8375404116826007e-13,0.0,0.0,0.0,5.892581315069734e-13,6.140655423338727e-13,6.473363934338538e-13,0.0,0.0,0.0,1.9557841414526623e-13,2.0399214390820495e-13,2.1536552053864434e-13 +897,Hydrogen chloride,"('air',)",emission,kilogram,biosphere3,3.925660068511984e-05,6.080438646197818e-05,9.4496173234406e-05,4.085626351039118e-05,6.313347395526137e-05,8.952527063284008e-05,3.9997975994438226e-05,6.148090437091343e-05,8.666228047255378e-05,4.0038425488604255e-05,6.14461118951688e-05,8.705375077804663e-05,4.004894315553355e-05,6.20143424397226e-05,8.827503933540215e-05,4.015726373865518e-05,6.2044503214484e-05,9.03150358560748e-05,4.1302065488942406e-05,6.302726811246466e-05,9.2006329680462e-05,1.9491282167461197e-05,2.073533202833315e-05,2.2469448069472833e-05,2.0034352779217204e-05,2.1443863364709028e-05,2.3407923214700758e-05,1.96752091457685e-05,2.0953687706048145e-05,2.2733809329905645e-05 +898,Hydrogen fluoride,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.2705191793819926e-05,9.83083863940809e-05,3.7233501729696256e-05,5.5130012674435885e-05,0.00012384307071050145,4.168394511241859e-05,6.06327178846172e-05,0.0001364628486088972,0.0003144769291245734,6.198342882942037e-05,0.0001396558526024675,0.00031846984405314854,7.224835349576353e-05,0.00016211024006041277,0.00031641998396300615,5.546311725947714e-05,0.00012551221468379506,0.0003243227028173651,2.4704233806459046e-05,5.711343038906898e-05,0.0003205149158670826,2.9340102003203637e-05,3.064276849405753e-05,3.2424548997181584e-05,5.030833883216113e-05,5.243296054243378e-05,5.5307957101584006e-05,5.337170398771415e-05,5.564852538643087e-05,5.874442253056345e-05 +899,Hydrogen fluoride,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.01492529810239e-10,8.573379109480193e-10,1.6694490816968575e-09,6.025024104675838e-10,9.629606999098524e-10,1.7775949659151045e-09,0.0,0.0,0.0,9.028069752464384e-10,9.70830061886977e-10,1.0633155685887752e-09,9.027888701878731e-10,9.726429057502314e-10,1.0674374499458313e-09 +900,Hydrogen fluoride,"('air',)",emission,kilogram,biosphere3,3.3765524895168365e-06,0.004215605217232309,0.04206165997828513,1.0489138905516352e-05,0.004227231132401084,0.04208552367566522,1.1371288170907753e-05,0.004228903401825079,0.04208996018972225,1.1380091049568546e-05,0.004228920535680022,0.042090197241193096,1.1442792423576594e-05,0.004229837400280495,0.0420921261919878,3.4841701624642715e-06,0.00421534129967082,0.04206066565089785,3.7416936123775025e-06,0.0042157730578067315,0.04206209372142649,0.009930897328117765,0.046687970959590576,0.11050222556649028,0.009931903412779062,0.04668910223654797,0.1105035367029503,0.00993075399751156,0.04668782575043903,0.11050207738825239 +901,Hydrogen sulfide,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.2608066812428782e-06,6.778100988147101e-06,2.1844018898926142e-05,2.171422491263641e-06,6.062089351751293e-06,1.819866322404907e-05,2.095494213556996e-06,5.749196181661193e-06,1.797037884903317e-05,2.098192437233563e-06,6.319479258413496e-06,1.7671989929573705e-05,3.6329894946881783e-06,1.2118162231232056e-05,3.062079924686224e-05,3.4928119088999427e-06,1.1806760960168498e-05,3.080547007259358e-05,7.978565548310613e-06,1.9905019269762008e-05,4.821085283613152e-05,1.7185450905430404e-05,1.8127162540693725e-05,1.938921970361331e-05,3.692977010689605e-05,4.091446793823758e-05,4.606653384193351e-05,2.609519491175143e-05,2.750652520405024e-05,2.938667532073103e-05 +902,Hydrogen sulfide,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.094273464300944e-07,1.728465646055608e-06,4.3578652146698765e-06,9.116733210190727e-08,8.194186364179536e-07,2.97344612723216e-06,1.1705310613836201e-07,8.829540415712447e-07,3.1046326693382966e-06,5.4548820514971736e-08,4.361719259804551e-07,1.5515508472842308e-06,4.6148279271261015e-08,4.2202794089416553e-07,1.5307232828760925e-06,6.092681760258408e-08,4.0643381198162355e-07,1.4292470422656272e-06,0.0,0.0,0.0,1.4036784508859765e-06,1.4757208307332547e-06,1.5720502514987777e-06,1.5248390405320478e-06,1.6007822186630632e-06,1.7023734937713483e-06 +903,Hydrogen sulfide,"('air',)",emission,kilogram,biosphere3,3.935816371701247e-07,1.2882092757712198e-06,3.231193922236143e-06,3.1418271469179047e-07,9.557203575895877e-07,2.750232969121369e-06,1.2718181954986228e-07,4.046691451138773e-07,1.1650350608029944e-06,1.6344768703640562e-06,1.9811930136807114e-06,2.9064822803014016e-06,1.6404148578948897e-06,2.0027345629022495e-06,2.919303915300835e-06,1.6487872860143894e-06,2.006425487653836e-06,2.9435864367435484e-06,1.2185038092845978e-06,1.6700908252784434e-06,3.023774298688383e-06,2.753474300223622e-06,2.886430957940059e-06,3.0696228600967614e-06,1.6495060100832447e-06,1.7664207703375614e-06,1.93166357778734e-06,1.1423031545728766e-06,1.2039803396511038e-06,1.289580579281133e-06 +904,"Hydrogen-3, Tritium","('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.3125762346139109,0.729343573834999,0.4942926101092478,0.0746158399548169,0.20646233228419253,0.3677609670762044,0.12087594410927752,0.3063236790322419,0.2569929189358698,0.12033380426454203,0.3028401237090141,0.2490983042507501,0.07420123808255656,0.2058013259792668,0.2517172570565554,0.1460725833983038,0.35838837426404624,0.2417256120958138,0.15341092616721347,0.3680806373500719,0.22108313719838713,0.3453622173045171,0.3603565644676122,0.38083537718624016,0.19675481429856684,0.21260142079845012,0.23519416814729105,0.21934498530359234,0.23674230656767584,0.26153487245938895 +905,Iodine,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.1960330447029519e-06,2.7850586910887114e-06,1.4351545292093198e-06,5.367019092034751e-06,1.1732747609950677e-05,1.7170924589723807e-06,5.9660487515155894e-06,1.3052083720034948e-05,1.7335268266990374e-05,5.96823406339979e-06,1.305888059471897e-05,1.7352719576882688e-05,6.960911164168456e-06,1.5206074539818428e-05,1.7212805704463898e-05,5.029026637346389e-06,1.1025376823244129e-05,1.765981273698991e-05,1.924938762364403e-06,4.225016215761196e-06,1.735594042487328e-05,1.2091562742181855e-06,1.2620689411254744e-06,1.3343581190235241e-06,2.467489143356381e-06,2.5696397023316343e-06,2.7077562122980553e-06,2.650920144736547e-06,2.761889655345987e-06,2.9127114217226054e-06 +906,Iodine,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6721491727221725e-15,8.445774832884762e-15,3.7283260810565485e-14,4.15145324378466e-15,8.654065811707128e-15,3.678014342124436e-14,0.0,0.0,0.0,1.3020642766428024e-14,1.5173388060170204e-14,1.8094137652158916e-14,1.3766065312922947e-14,1.6147120289845357e-14,1.9361368388823253e-14 +907,Iodine,"('air',)",emission,kilogram,biosphere3,8.807510102363841e-16,2.077527444242354e-15,8.503045499930101e-08,4.867539157685023e-10,1.3958566242480262e-09,1.3668708073570796e-08,1.7878433609927242e-09,4.24160339082571e-09,1.4612574593766605e-08,4.852747224425865e-10,1.4329473462385305e-09,1.4235667672273903e-08,4.973822664675506e-10,1.4029343836126678e-09,1.4040941823597684e-08,7.667081481707441e-10,1.4453971404130626e-09,3.446771360092458e-08,9.331669422615465e-10,1.5791634419751605e-09,3.474560122900626e-08,1.2599281152863915e-08,1.307542711366765e-08,1.3718223288102555e-08,5.955374768215081e-09,6.2625998144504385e-09,6.680803480756682e-09,5.798197126662425e-09,6.065964727304122e-09,6.427318298743876e-09 +908,Iodine-129,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,5.2396507556821426e-05,0.00012261955816007122,7.066851909447245e-05,8.309481042046484e-06,1.9378967147049275e-05,1.3429896197516461e-05,1.04429890541902e-05,2.407253884222388e-05,1.366599520841855e-05,1.0388072848253987e-05,2.382959092821656e-05,1.3142674396662062e-05,4.169988299919168e-06,1.074496141055238e-05,1.2630489209875708e-05,1.2289882769564803e-05,2.8088600540828444e-05,1.211615160271288e-05,1.3371920795393299e-05,3.0047738617647237e-05,1.1436041318791408e-05,5.951974276841421e-05,6.211518700104258e-05,6.566033060402104e-05,7.998508970146076e-06,8.316747863370332e-06,8.746117327807462e-06,8.8965230136566e-06,9.266069725773004e-06,9.768401801547421e-06 +909,Iodine-131,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.00042591300304481417,0.0014351819551678268,0.0033368047076103263,4.7418305341774826e-05,0.00029924013306604114,0.0010478399501655325,0.00010603743441770418,0.0003668163345613248,0.0007085282657682522,0.00010079046701745203,0.0003376045816770104,0.0006473610289092119,9.133346776190865e-05,0.00035387961111363634,0.0008136423342722257,0.0001343912267964545,0.0004094991958620297,0.000576860847947827,0.0001202818119789999,0.00035276429724812313,0.0004657814452381279,0.0029172945892283,0.0030438011878331185,0.0032165236926403108,0.00045421352374550326,0.00047081852104292454,0.0004932043798041132,0.0005671441624276156,0.0005891081493169404,0.0006189433990469518 +910,Iodine-133,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,8.636512207422796e-08,2.006077833571437e-07,2.0494324489319174e-07,1.3839150210029985e-06,3.0767381398026595e-06,8.230605054023213e-07,3.137440094012378e-07,7.685274546965339e-07,1.0524903445543953e-06,3.1076254831142875e-07,7.558228258061769e-07,1.0222592553573023e-06,1.0319144032299738e-07,3.350973162716771e-07,1.1433379913797073e-06,3.440743707132611e-07,8.422151096900674e-07,1.094760938526113e-06,3.903416880268897e-07,9.18609419013073e-07,1.0696806477221548e-06,1.6956554481003077e-07,1.7684238143549976e-07,1.8676397629700875e-07,5.704040564127323e-07,5.936774810008273e-07,6.250961962427237e-07,6.111109149641866e-07,6.369860033418955e-07,6.721635627945732e-07 +911,Iodine-135,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.4190654531922972e-07,3.347310867441756e-07,1.984999661986315e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6887049340508527e-07,1.7619711074373342e-07,1.8618399286280808e-07,0.0,0.0,0.0,0.0,0.0,0.0 +912,Iron,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.6482204784087786e-08,1.6317683093947616e-07,4.519747946141974e-07,2.202428266417028e-08,9.566899381209598e-08,2.1191376370087234e-07,2.1974003833756864e-08,9.711348044274465e-08,2.1250837918788634e-07,2.136211054336167e-08,8.976464341846032e-08,1.9072278001403335e-07,2.041566769746195e-08,8.60434766006052e-08,1.9039163791957693e-07,2.7671879045478756e-08,9.708206017900108e-08,6.734483468879796e-07,3.221510401351288e-08,9.993620449341284e-08,6.787670095453358e-07,3.449514274378848e-07,3.642676154830126e-07,3.9112691907038317e-07,1.9704861671186498e-07,2.071439091330336e-07,2.209130568227563e-07,1.978174428328472e-07,2.0742196921082717e-07,2.2050326463211446e-07 +913,Iron,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.6608167573044633e-05,6.209958430487453e-05,4.113322773386817e-05,1.8961399106520822e-05,4.4156150482100266e-05,2.8413531107285745e-05,1.5360886464075744e-05,3.5196263001948704e-05,1.5832189002236073e-05,1.5286259639822753e-05,3.484852283943843e-05,1.5087386842426146e-05,5.456174309047764e-06,1.4066091092458989e-05,1.6320052168791127e-05,1.809416522086311e-05,4.1114107690874006e-05,1.606045207973094e-05,1.978357108792576e-05,4.433324429453672e-05,1.5153302387452511e-05,3.0335613348282618e-05,3.165368271377357e-05,3.3453843757504417e-05,1.0250599633095715e-05,1.06636177901295e-05,1.1221189200435485e-05,1.1404592239837986e-05,1.1885209927666617e-05,1.2538462606073691e-05 +914,Iron,"('air',)",emission,kilogram,biosphere3,8.174889707613808e-08,2.8441728548131535e-07,9.437154975959369e-07,2.2538783752724407e-06,1.0722961350449394e-05,2.5762828012739064e-05,1.9654551176549464e-06,1.0304037560258142e-05,2.475081425664384e-05,1.6962062072671139e-06,7.4043058794705465e-06,1.7735907978995496e-05,1.7840970981792403e-06,7.43773868329505e-06,1.753654792719764e-05,1.7518756159139298e-06,6.980107365520963e-06,1.6890791722086168e-05,2.2583180618438987e-06,7.954123837118198e-06,1.831924178702051e-05,7.741958172654562e-07,8.199423424410899e-07,8.838545178614765e-07,1.587399071321317e-05,1.6618033502376115e-05,1.763658098103505e-05,1.4923274037884652e-05,1.559162997655951e-05,1.650363695205097e-05 +915,Isoprene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.480714228667704e-11,2.2449057704543138e-10,1.736720134770473e-07,3.571566881344774e-10,8.74188186622064e-10,8.899583656418776e-08,2.3653545687304013e-10,6.143111495641914e-10,7.334190324894636e-08,1.5259828177339897e-09,3.5611375963081685e-09,1.2723857963430295e-07,3.777949957504795e-10,9.571328810862552e-10,1.5904880488231567e-07,3.0732198898225104e-10,8.047467687531661e-10,1.5598594709487613e-07,3.065211713651365e-10,7.524304218457755e-10,1.1189208609498804e-07,1.854965422301857e-07,1.9338628861370382e-07,2.0403933027040592e-07,1.192481653448953e-07,1.243202107825853e-07,1.3116876762714648e-07,1.664325702276e-07,1.7350658963516672e-07,1.8305795199208692e-07 +916,Isoprene,"('air',)",emission,kilogram,biosphere3,2.8451271175504807e-18,1.5349680172699317e-17,4.017097245566946e-17,1.7756268089736356e-14,3.6014901366731644e-14,5.842916514602633e-14,7.0571713206025296e-15,1.3504305982544425e-14,2.345263652041537e-14,7.722295283193955e-15,1.5748714187788203e-14,2.9116548413460286e-14,5.612502105301018e-15,1.1860327282387341e-14,2.1711156227054603e-14,4.7588341232149775e-15,9.905953653621632e-15,1.7877893521415342e-14,6.125338365526764e-15,1.1695507332124154e-14,2.0388658983021218e-14,3.774456437945038e-17,3.955184774445177e-17,4.2003721357432206e-17,1.2041194464908175e-14,1.3540497312394136e-14,1.5493616081117564e-14,1.1222055595520778e-14,1.2600743309984177e-14,1.439338653721274e-14 +917,Krypton-85,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0033922063241335473,0.01138552303945956,0.026460866832423557,0.0006234623954947066,0.00369255315786736,0.012691698674138009,0.004567050812366671,0.011532297722830792,0.008949875986552515,0.0045024249578976576,0.011180266713917185,0.00821295575064745,0.0011155890403840374,0.004277160238498813,0.009793546581169887,0.005138156167484479,0.012554435535578005,0.007446984632269033,0.005585445681721131,0.013195971537261144,0.006181570367970809,0.02313797738571548,0.024141213566082308,0.025510945385410565,0.005763462226203618,0.005976275471629582,0.006263264488346701,0.007093604884668768,0.007370589535368988,0.007746923678078558 +918,Krypton-85m,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0003059578456741964,0.0007389900644573675,0.0017879142749140083,0.007892243074895488,0.017767578831344173,0.006691938306785566,0.014199609125359329,0.03143234099316619,0.008531513768959796,0.014169052437972946,0.031312634624736366,0.008261669043441607,0.0007787816252815219,0.002492637219499777,0.007632244304827077,0.015272298116746852,0.033808338111513445,0.008855838340827486,0.017809946761826036,0.03908499951442991,0.008802159877424925,0.0014737304909075858,0.0015367006015389,0.0016226016287450103,0.0049938603081371834,0.005197629079465671,0.005472899142577903,0.0052951020924477555,0.00552077904354605,0.0058278169017077905 +919,Krypton-87,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,9.691093183072046e-05,0.0002618045220256943,0.0006239819791410093,0.00015826726936013635,0.00044948216013157257,0.0009440856128395587,0.005052414125253324,0.011027490171983177,0.0011703460587239472,0.005046381605063951,0.011005736826508516,0.001124994099155484,9.236844126681978e-05,0.00028769634735689427,0.0006125718358830048,0.005420429597480318,0.011827540721006736,0.0012031876432719727,0.006343436174360833,0.013789034733718173,0.0012317550821141468,0.0005258600244223773,0.0005484559023295212,0.0005792902864044799,0.000786742438501636,0.0008187659282263663,0.000862070827625523,0.0008240141970389541,0.0008594137595647891,0.0009076305065156737 +920,Krypton-88,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.00010605602742767457,0.0002716504709225656,0.0006519655135763094,0.00020759787703999769,0.0005825429909196392,0.0012054872146838361,0.006683370441548875,0.014581516515180014,0.0015192403189314362,0.006675607283024757,0.01455395822927317,0.0014617970370879793,0.00011840594012213693,0.00036585550173989144,0.0007764766580521125,0.0071693108040998925,0.01563873455644112,0.0015682962553988148,0.008391688112205914,0.0182375570732609,0.0016108142142736027,0.0005438369804300152,0.0005671450379529978,0.0005989464909730759,0.0010222062583782011,0.0010638938153082389,0.0011202702045441026,0.0010667617777021174,0.0011126913974071795,0.0011752542768539585 +921,Krypton-89,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,3.4202593418383086e-05,7.869577153065117e-05,0.00019172771841086415,8.710999360250703e-05,0.00023911469448166238,0.0004809698432097237,0.0028468994885561894,0.006206956174394281,0.0006254623052100528,0.0028437552247735608,0.0061961304896234436,0.0006029055345360322,4.760119956185036e-05,0.00014480475634662715,0.00030536553595226265,0.0030532391843666774,0.006656475446381543,0.0006505696828495336,0.00357499585026352,0.007766598832384806,0.0006722289072326365,0.00015640870091240903,0.00016307390024356415,0.00017216484447947234,0.0004215445071365063,0.00043879684560064287,0.0004621303576305528,0.00043696143956420126,0.0004558528201834982,0.0004815882818378435 +922,Lanthanum-140,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.4966084380963916e-09,3.307819232121525e-09,8.107315886128923e-09,4.118193291990024e-09,1.1240049463782743e-08,2.2438104011921025e-08,1.3510235779722406e-07,2.945059803304349e-07,2.942407093140424e-08,1.3495507701940404e-07,2.940030961041448e-07,2.8376354840253556e-08,2.2252403768264357e-09,6.740603131193118e-09,1.418953375570014e-08,1.4488661649334238e-07,3.1582858354654037e-07,3.066563835852881e-08,1.696597272783272e-07,3.685475273056442e-07,3.173568480689603e-08,6.5550330632420015e-09,6.833716086443941e-09,7.213771376907302e-09,1.9839732813408696e-08,2.065245191215894e-08,2.17516686783649e-08,2.0529000751284778e-08,2.1417505283350118e-08,2.262793487652742e-08 +923,Lead,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.932712315570423e-06,5.408004243862711e-06,7.281420609045191e-06,4.5996023575937506e-06,6.809835578135404e-06,9.91858169423424e-06,4.008597571088246e-06,6.06466683282966e-06,1.2145673106770437e-05,4.181403932857791e-06,6.464927493005168e-06,1.2941799854550623e-05,4.211395219430962e-06,6.786439041220341e-06,1.3602302346789589e-05,4.167286006407856e-06,6.619034324971158e-06,1.3596367241147658e-05,5.403919119861599e-06,8.466041292986925e-06,1.7092131180869497e-05,3.3434373387335913e-06,3.505852097674757e-06,3.726979940870406e-06,7.954179113710248e-06,8.355252931211827e-06,8.900899866976086e-06,5.978382523470531e-06,6.276801293406291e-06,6.68349871787037e-06 +924,Lead,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.1928339130513796e-07,5.11775469042442e-07,3.3898740491775533e-07,1.5626479667459637e-07,3.6389993366287675e-07,2.3416176392600163e-07,1.2659223017065216e-07,2.900596549235412e-07,1.3047633149061484e-07,1.259772151365385e-07,2.8719385659901337e-07,1.243382634392292e-07,4.496545662241189e-08,1.1592155474506218e-07,1.3449691236118834e-07,1.5040958228581523e-07,3.414665838905231e-07,1.3822851387178475e-07,1.6456919309142133e-07,3.68233424622756e-07,1.3098532420854728e-07,2.50002039932859e-07,2.608645211561793e-07,2.757000192337245e-07,8.7712663104461e-08,9.138409491946765e-08,9.634271052860318e-08,9.72413116163708e-08,1.0147867578029965e-07,1.0723683415521567e-07 +925,Lead,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,1.8306969606076638e-16,4.647252986552045e-15,1.3404005830516208e-14,2.980706733836729e-16,7.02183381741327e-16,1.0945335674188761e-15,1.3852117935374454e-18,3.0056267334101655e-18,1.425099462996922e-17,5.0382887950266055e-17,1.2021500034682674e-16,1.0950270395894808e-13,1.4483235320096884e-17,4.0673586617054747e-17,4.213196758022278e-15,1.4184544596916025e-17,4.0119090176569796e-17,4.273297452119076e-15,3.2387171003522705e-14,1.4496809733136772e-13,3.0178711373636317e-12,1.3703959379709123e-14,1.4280887779339355e-14,1.505464442073725e-14,3.156412837051789e-12,3.2971980003683763e-12,3.4880947717128156e-12,4.5482795039233e-15,4.743945241318094e-15,5.0084391325828615e-15 +926,Lead,"('air',)",emission,kilogram,biosphere3,2.974744371300571e-06,3.1411921424495904e-06,4.179476160128981e-06,3.0489763161010155e-06,3.4621882007357837e-06,4.879019938658953e-06,3.033797082365604e-06,3.4404656710721516e-06,4.835409587509307e-06,3.02643843502255e-06,3.3542411517142392e-06,4.625740965025915e-06,3.031166183055975e-06,3.362854090487019e-06,4.624048737433689e-06,3.0359346585892564e-06,3.3593212302686622e-06,4.627667700887032e-06,3.110335333333402e-06,3.596262347436441e-06,5.303103928207942e-06,4.595238602562605e-07,4.859007987809728e-07,5.22700323126108e-07,1.4097173141920382e-06,1.507197220610865e-06,1.6447638479015342e-06,8.528509320474641e-07,8.953517016709964e-07,9.539448508234737e-07 +927,Lead-210,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.00044376455125265694,0.0010075527847933604,0.0003911840106657936,0.0004297345022189485,0.0009639266132849466,0.0005325512944938252,0.0004989871190669616,0.0011171785071852319,0.0072625608379429845,0.0005006842275094578,0.0011289975550168084,0.007289966000464024,0.0005521050072502481,0.0012417185904391983,0.00720206226245888,0.0004575568429278099,0.0010305404191731633,0.0074365561324723755,0.0002999855786107214,0.0006522292109303754,0.007417100630950435,0.0003137914995003048,0.00032757547429500993,0.0003464126881964898,0.0009525082642698633,0.000992578568727892,0.0010467854521183182,0.000983962921330506,0.0010257698377911049,0.0010826184460039107 +928,Lead-210,"('air',)",emission,kilo Becquerel,biosphere3,3.657469879686949e-13,8.627289609278404e-13,3.5310357072673166e-05,2.0423388628892186e-07,5.979885895771792e-07,5.702747246955443e-06,7.442087134894955e-07,1.7781038438410862e-06,6.091921500387742e-06,2.0357984194290295e-07,6.129577522780224e-07,5.937679127428038e-06,2.0755725084159647e-07,5.965898405135887e-07,5.849154843956155e-06,3.1832273032713155e-07,6.031277548354404e-07,1.431730399899777e-05,3.874237478007028e-07,6.586463757393704e-07,1.4432694232747712e-05,5.232067926371595e-06,5.429795715724589e-06,5.6967278689681696e-06,2.473581312067846e-06,2.601240214106671e-06,2.7750194117833063e-06,2.408299684159787e-06,2.5195723426323476e-06,2.6697423376200397e-06 +929,Magnesium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,8.362899576976205e-05,8.372364355276189e-05,8.393549049223641e-05,0.00010031064239030159,0.00010074301870827749,0.00010124962550285937,8.779669775557719e-05,8.820425034300776e-05,9.720155587052877e-05,8.780939902258766e-05,8.827710986598271e-05,9.725719676153054e-05,8.776437685166318e-05,8.818289999707386e-05,9.712925249055221e-05,8.776119065061716e-05,8.816125894397753e-05,9.756470849777734e-05,0.00010626536000906729,0.00010661153012897163,0.00011597107349210334,2.5914283751108724e-07,2.7480044186343115e-07,2.9650787532713357e-07,1.3543427023366247e-06,1.4182042212237103e-06,1.5049301877851596e-06,1.4591325231428888e-06,1.5296299726332344e-06,1.6259185006177735e-06 +930,Magnesium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.440196321177702e-06,5.695062496679762e-06,3.7722684486438375e-06,1.738922316970506e-06,4.049496298953087e-06,2.605763586790804e-06,1.4087245424650868e-06,3.227798057739311e-06,1.4519470123382688e-06,1.4018806250195089e-06,3.1959073135123524e-06,1.3836422901956416e-06,5.003778053498853e-07,1.2899807432882661e-06,1.4966882333418275e-06,1.6797553839340597e-06,3.8138930081647497e-06,1.5458816829255331e-06,1.8389461558669485e-06,4.113292373573795e-06,1.4669947888822007e-06,2.782034950097642e-06,2.9029131732956785e-06,3.068003322672156e-06,9.94711541640159e-07,1.0350920303715937e-06,1.0896141400551945e-06,1.1004032657021088e-06,1.1469641821852394e-06,1.2102324360919317e-06 +931,Magnesium,"('air',)",emission,kilogram,biosphere3,5.148325192863746e-13,2.777561098501405e-12,7.269032889681754e-12,4.051790661816668e-09,9.772406830843087e-09,1.528583722016611e-08,1.7260798524994158e-09,5.066671942016976e-09,7.997088065422234e-09,1.8845723991835766e-09,5.632369417503101e-09,9.322295848723209e-09,1.357103251180189e-09,4.3891806840059775e-09,6.921640264737382e-09,1.0533131573214808e-09,2.6038579168551577e-09,4.430167556244838e-09,1.335957800253245e-09,2.957954384581172e-09,4.9210958829557506e-09,6.829968576004643e-12,7.15700079364511e-12,7.600673147728795e-12,2.437712596162809e-09,2.7337404662530463e-09,3.1222595072335974e-09,2.291376044913046e-09,2.565640470056718e-09,2.9252214068571424e-09 +932,Manganese,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.0918776338228603e-07,5.196692400968419e-07,7.196086827963989e-07,4.774676723161253e-07,1.0761881111238857e-06,1.238872600395938e-06,4.806782804251188e-07,1.099449545177158e-06,4.564766032513328e-06,5.078968328424921e-07,1.1664406367474183e-06,4.700219868206017e-06,5.550717824867445e-07,1.3038043805625401e-06,4.756290593358527e-06,4.7515986606948933e-07,1.1218921284838562e-06,4.89220055510357e-06,4.793674862283337e-07,1.0804382726743098e-06,5.3469477562724266e-06,5.670261402175805e-07,5.940541147964185e-07,6.308562952246522e-07,1.6191271042156698e-06,1.6977476213796206e-06,1.8045874945089023e-06,1.3155544210171252e-06,1.3784412344088042e-06,1.4640949758895692e-06 +933,Manganese,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,5.502141159094407e-07,1.2841195382204211e-06,8.505690019502261e-07,3.9209124044065985e-07,9.130781815387195e-07,5.875461296169512e-07,3.1763842921781997e-07,7.278021174378145e-07,3.273842077741253e-07,3.160952665046085e-07,7.206114101010962e-07,3.119828968749642e-07,1.128249102757037e-07,2.9086414317902787e-07,3.374724334934835e-07,3.7468180004875086e-07,8.506610542558126e-07,3.3050739147751967e-07,4.0975609598020003e-07,9.173971727503531e-07,3.1200468406639763e-07,6.272917001182787e-07,6.545472549765813e-07,6.917716904797338e-07,2.1183436703450775e-07,2.2023365816761894e-07,2.315722686187327e-07,2.3560962768983359e-07,2.4538274780322615e-07,2.5866899065798786e-07 +934,Manganese,"('air',)",emission,kilogram,biosphere3,1.8532936853856662e-07,2.2833335695441434e-07,3.756403917877541e-07,2.1471469973092145e-07,3.5928464676445797e-07,6.613770228488922e-07,2.1042165879286853e-07,3.535891518838793e-07,6.490376208767398e-07,2.0722497343216962e-07,3.1870984647062416e-07,5.652661129687878e-07,2.0885247025350175e-07,3.2138793269742486e-07,5.645484242208929e-07,2.0969738676828247e-07,3.1795877278733053e-07,5.652188724475241e-07,2.463368491752749e-07,4.126463532898092e-07,7.753253253040708e-07,1.0741392637558792e-07,1.1371406347196944e-07,1.2251401795071864e-07,4.429598046435492e-07,4.722988454092344e-07,5.135245967748455e-07,2.7936504200349804e-07,2.930551887773682e-07,3.1188815047233573e-07 +935,Manganese-54,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.3930695644188444e-10,3.078976555274585e-10,7.546432791220579e-10,3.8332869887926783e-10,1.0462436410755523e-09,2.0885783174116412e-09,1.2575566026255398e-08,2.7413136684255773e-08,2.7388444589909878e-09,1.256185687138713e-08,2.7366327332126942e-08,2.6413211944727073e-09,2.07129300050182e-10,6.274272336635996e-10,1.3207868434441316e-09,1.3486302101433317e-08,2.9397882240596365e-08,2.8544117532666016e-09,1.579222699924497e-08,3.430505462225693e-08,2.9540135711367126e-09,6.101540526853015e-10,6.360943605982907e-10,6.714705781567442e-10,1.8467173587015256e-09,1.9223666872471477e-09,2.0246837244779506e-09,1.9108756302996165e-09,1.9935792005491878e-09,2.106248123756818e-09 +936,Mercury,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,8.001066502520794e-08,1.894373137472579e-07,1.3587896137455367e-07,7.963088755240919e-08,1.871633910392266e-07,1.2949544097669052e-07,8.864194755632677e-08,2.0749357257543456e-07,3.917027963500333e-07,8.871900269272127e-08,2.0741624864186617e-07,3.9142384881567915e-07,1.0302833905028266e-07,2.396123186097504e-07,3.912684962419187e-07,7.772240169541521e-08,1.8385155070631826e-07,4.00325652273076e-07,3.652768308392098e-08,8.879923590703469e-08,3.857974604638348e-07,1.1727767581144103e-07,1.2860156322691468e-07,1.4474799470488861e-07,1.1914960069986662e-07,1.3039535677986193e-07,1.463823179626851e-07,1.322517202444853e-07,1.441671026679749e-07,1.610927292014452e-07 +937,Mercury,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.684738236809729e-09,3.931933443326746e-09,2.6044154091898142e-09,1.2005709834202067e-09,2.7958165275956953e-09,1.7990476753479107e-09,9.725988290620933e-10,2.2285070762755114e-09,1.0024400949177197e-09,9.67873713616799e-10,2.2064893577235873e-09,9.552817678117628e-10,3.4546630863717046e-10,8.906168116015499e-10,1.0333299231608286e-09,1.1513852961091968e-09,2.611830035214241e-09,1.027432431296568e-09,1.2595772680782844e-09,2.8170658677880356e-09,9.716920745271096e-10,1.9207473631801755e-09,2.0042030110509013e-09,2.1181830565232116e-09,6.562830193578069e-10,6.826865533221026e-10,7.183365922571829e-10,7.291143734786105e-10,7.597502477684769e-10,8.013963815908989e-10 +938,Mercury,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,6.407277350723833e-19,1.6264974598401044e-17,4.691283542311395e-17,1.043248835253998e-18,2.4576453221457134e-18,3.830872924966053e-18,4.848254952844298e-21,1.0519729923037473e-20,4.9878590902414196e-20,1.7634035962701288e-19,4.2075310371965694e-19,3.8326000467830074e-16,5.0691398800265615e-20,1.4235776431141035e-19,1.4746209478900636e-17,4.964598048023051e-20,1.4041702433164015e-19,1.4956562204186935e-17,1.13355114337498e-19,5.073884138784212e-19,1.0562550557333694e-17,4.79626463468258e-17,4.9981844741376563e-17,5.2689924580968113e-17,1.1047446581064883e-17,1.1540194726279096e-17,1.2208333525790798e-17,1.5919000735451543e-17,1.6603831783308427e-17,1.7529561709865094e-17 +939,Mercury,"('air',)",emission,kilogram,biosphere3,8.741962158975049e-08,1.2006189864669333e-07,2.425539246299907e-07,8.717508444342741e-08,1.1364137252301518e-07,2.0358492050900537e-07,8.523455723071946e-08,1.1065132710111618e-07,1.9748574460129336e-07,8.543179644181676e-08,1.1091963887349465e-07,1.9779186967703627e-07,8.548185856236321e-08,1.1221941410494157e-07,2.004579409688855e-07,8.649364848611987e-08,1.1388267539239591e-07,2.008512677453615e-07,8.81062296645969e-08,1.160381698493301e-07,2.1128860687449133e-07,1.2552898340049195e-07,1.3266403333322458e-07,1.4261129237242324e-07,9.746948019391733e-08,1.0286951404898446e-07,1.103754316721057e-07,9.088128851900212e-08,9.55722306551515e-08,1.0206194367536548e-07 +940,"Methane, non-fossil","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.4195114078366456e-05,6.726867907008263e-05,0.0006204565746744639,0.0004417664795504343,0.0009937607767596757,0.0009737258266336386,0.0005080666248456223,0.001164835368046365,0.0004970010396440344,0.0008947085976966643,0.001986136791687843,0.0006633174156334377,8.773173118168755e-05,0.00020703541255111046,0.0003699518265587485,0.00015111621699408497,0.00040114673366677166,0.0007228173600656837,0.0001767736311777869,0.0004192765963287569,0.0007543696928027752,0.0001236378754635002,0.00012864174241228524,0.0001354315190288067,0.0005526936552689009,0.0005793213626798593,0.00061538057827102,0.0005585534265061451,0.0005859429856653566,0.0006231034180341652 +941,"Methane, non-fossil","('air',)",emission,kilogram,biosphere3,1.1620750763107898e-05,3.761057889609662e-05,8.460845611254954e-05,9.346106801143719e-09,2.652682986514327e-08,4.231708056015588e-08,8.81626822128633e-09,2.672878060000397e-08,4.460687582962111e-08,7.313435627766045e-09,2.019355774505042e-08,3.122354085806407e-08,7.243696240911855e-09,1.9815289433418373e-08,3.0645827101407264e-08,1.7073507418477138e-10,2.4881283824742786e-10,4.119259837712258e-10,5.441530134043401e-09,1.4646911831808698e-08,3.640760790588423e-08,7.387348570464155e-05,7.707412516207488e-05,8.144383264287828e-05,1.9061920643320742e-08,3.041294491339433e-08,4.4649600780209834e-08,1.4897070716010353e-10,1.5857829987452834e-10,1.7198186024931898e-10 +942,"Methane, bromo-, Halon 1001","('air',)",emission,kilogram,biosphere3,4.010274478981009e-18,2.1635739802134058e-17,5.66219423330369e-17,2.5027884051107604e-14,5.0763863834550014e-14,8.235730408447992e-14,9.947251564812139e-15,1.9034641886089778e-14,3.305705143435826e-14,1.0884759679198397e-14,2.2198188867927478e-14,4.104047055247598e-14,7.910955794213336e-15,1.6717414635284775e-14,3.060239335870202e-14,6.707690380230774e-15,1.3962678317616268e-14,2.5199318002522527e-14,8.633810754114642e-15,1.6485096977911598e-14,2.873830189974563e-14,5.320186231799081e-17,5.574927125846763e-17,5.920524550334189e-17,1.6972351249302726e-14,1.908565442954932e-14,2.1838621991940486e-14,1.5817755444980097e-14,1.7761048713917228e-14,2.0287822167058603e-14 +943,"Methane, bromochlorodifluoro-, Halon 1211","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,9.849523230876497e-09,2.2047059800814394e-08,3.9542940511654745e-08,8.851012347909078e-09,2.0498379715703507e-08,2.8156666222026554e-08,5.138261516226629e-09,1.2167628141016976e-08,2.5690667880124352e-08,5.525545016953242e-09,1.3585610459416177e-08,2.725074696291655e-08,1.3604655403415898e-08,3.05211063575696e-08,2.4114471944087886e-08,1.025374162345158e-08,2.321837949053116e-08,2.340185177747134e-08,1.497379182226747e-08,3.3329883570420025e-08,2.4631988850280592e-08,3.4254590170215406e-08,3.613115774568712e-08,3.864132872394723e-08,2.2714692108390415e-08,2.3839422155833702e-08,2.5347293502476094e-08,2.1871721581113626e-08,2.2998146833196894e-08,2.45078978983178e-08 +944,"Methane, bromotrifluoro-, Halon 1301","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.987379220429476e-09,3.3088001151283104e-08,1.2188529982895243e-07,7.69168728749739e-09,5.2378430081563925e-08,1.9208400637342266e-07,5.64202961321118e-09,4.838765093405457e-08,1.8739196951037272e-07,5.5540414931019345e-09,4.755165420227187e-08,1.8587908989878714e-07,4.912251110717772e-09,4.4514158325052806e-08,1.7681656209094904e-07,5.676388161676222e-09,4.61806206845539e-08,1.7902183819655542e-07,5.305217252755174e-09,4.1616946832503524e-08,1.6481189430840405e-07,1.1137853697618036e-07,1.2363988577311238e-07,1.4134822638514488e-07,1.557687827315244e-07,1.7304694989584632e-07,1.9798583471303484e-07,1.709768761156302e-07,1.8950481998900086e-07,2.16224632763073e-07 +945,"Methane, chlorodifluoro-, HCFC-22","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.0086597248709756e-08,1.15224249731706e-07,1.545622789663822e-07,5.784537393857258e-08,1.5365064065092332e-07,3.1071434959297564e-07,4.477508290511468e-08,1.2427230419510375e-07,2.4684449775929173e-07,4.749744818462978e-08,1.3146214311451497e-07,2.5321051829966427e-07,6.363175738974055e-08,1.6300064467920102e-07,2.353042518096383e-07,5.432719616682459e-08,1.433548586779776e-07,2.4396928917600704e-07,7.147769078471646e-08,1.792196620533654e-07,2.525783694522903e-07,1.316056901056746e-07,1.3860143526638421e-07,1.479679657357946e-07,1.8479725380909037e-07,2.1006367426265137e-07,2.4267806453896544e-07,1.8244172457283003e-07,2.0778355888375605e-07,2.405148967931892e-07 +946,"Methane, chlorodifluoro-, HCFC-22","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2296777973314425e-21,1.9674407987659237e-20,5.62634449820411e-20,4.096085225142983e-23,7.029125440239334e-22,1.965952275949045e-21,4.173828572238081e-23,7.037568994561579e-22,1.966163828836958e-21,4.079851032365513e-23,8.193888060400979e-22,2.2784327329721625e-21,2.2990454856482854e-23,4.296561458559001e-22,1.1883269737974218e-21,4.574122677032735e-24,7.003062398604269e-23,1.9252813919089898e-22,0.0,0.0,0.0,1.931417944632041e-22,2.0165642169925946e-22,2.1306860535049953e-22,1.1997137880378017e-21,1.2516122044139154e-21,1.321216608209368e-21 +947,"Methane, dichloro-, HCC-30","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,7.406636800001593e-11,1.759438882169876e-10,1.0931020744154612e-10,7.027585193603488e-09,1.593422714864218e-08,2.7326929006407454e-08,6.1426602679460615e-09,1.3929228779220621e-08,2.493297118095077e-07,6.1220931188368796e-09,1.4387205839310095e-08,2.507432977658543e-07,6.806302660440361e-09,1.592408414229165e-08,2.48083671952373e-07,6.476434238323287e-09,1.4920857094963116e-08,2.562035762403216e-07,7.016811166569285e-09,1.4673560156614901e-08,2.559571461183531e-07,9.34393288387099e-11,9.753090084600207e-11,1.0310748849911829e-10,3.2072479943033195e-08,3.34615704603925e-08,3.5340106069515516e-08,3.3030468767511955e-08,3.447729634604849e-08,3.6444566560358697e-08 +948,"Methane, dichloro-, HCC-30","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,2.434530915257095e-10,6.616353782653286e-10,1.7364647786883298e-09,8.747398175720638e-09,9.638925506626116e-09,1.1625854708410539e-08,8.653470036867879e-09,9.384219927093036e-09,1.1196895514597755e-08,8.636211376837457e-09,9.375281851043608e-09,1.1252769213908128e-08,8.665463737135732e-09,9.306301729749757e-09,1.1095447317133253e-08,8.204049547102739e-09,9.103592624173833e-09,1.1483684483845885e-08,0.0,0.0,0.0,2.612549547718495e-09,2.757693702757039e-09,2.958920723341921e-09,2.168464606798002e-09,2.293140538327335e-09,2.4668632131866855e-09 +949,"Methane, dichlorodifluoro-, CFC-12","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.5691992294326665e-11,3.8102176728030045e-11,1.3797832300851752e-10,2.625252324047332e-12,9.238661905441033e-12,6.198211478231035e-11,7.115550864430515e-12,1.8349534280951998e-11,6.000594965159048e-11,8.472384678249074e-12,2.2541241232011993e-11,6.403495885892915e-11,5.73288563206589e-11,1.269363026792289e-10,5.3378155406226766e-11,4.128461190863896e-11,9.214334837399466e-11,5.115031544129693e-11,6.181528724888646e-11,1.3684939586106523e-10,5.5300479475930396e-11,1.2434110129422498e-10,1.316370453021571e-10,1.4149572946061205e-10,5.245075771530295e-11,5.4730114157070595e-11,5.77970768958162e-11,4.950745635083139e-11,5.171022850227939e-11,5.467488554061941e-11 +950,"Methane, dichlorodifluoro-, CFC-12","('air',)",emission,kilogram,biosphere3,2.6662906444898124e-18,1.4384843684008968e-17,3.76459413732945e-17,1.66401602329118e-14,3.375110842467644e-14,5.4756476157561323e-14,6.613577862895798e-15,1.2655464213989518e-14,2.1978471355084774e-14,7.236894049402447e-15,1.4758795385530534e-14,2.7286366064109433e-14,5.259716392419135e-15,1.1114821278674662e-14,2.0346455495823395e-14,4.459707520291937e-15,9.283293945699163e-15,1.675414064027583e-14,5.740317242789652e-15,1.0960361435592316e-14,1.910708661826707e-14,3.537205029713051e-17,3.706573305922593e-17,3.9363488991281786e-17,1.128431967096444e-14,1.2689380660880229e-14,1.451973201064357e-14,1.051666951112538e-14,1.1808696887811186e-14,1.348865972632103e-14 +951,"Methane, fossil","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.007025411488350935,0.016878617792532326,0.087169016193602,0.009844387262969396,0.022407672200111965,0.08656346129308136,0.011980721191559221,0.026938165802081488,0.09089725203211937,0.011972429573673782,0.026986032539683062,0.09095010134093393,0.014456074573975948,0.03216280086306938,0.08938852392042265,0.006997349427027724,0.01596909009603155,0.07053852011759375,0.004672023504753976,0.010338450367015571,0.0701199068743468,0.017109129130534858,0.018166722287880434,0.019642859055274714,0.014613144234764154,0.015565104230322192,0.0168773932039025,0.015276732006655509,0.01627642324435372,0.017657502358516444 +952,"Methane, fossil","('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,4.576688641779906e-13,1.161799541975677e-11,3.350961923185475e-11,7.451781416882673e-13,1.7554618928818404e-12,2.736339283506411e-12,3.463043111454141e-15,7.514103130885527e-15,3.5627595570812064e-14,1.2595746827890711e-13,3.0053809528098384e-13,2.737572932892386e-10,3.6208162522317e-14,1.0168417500650566e-13,1.053301243512271e-11,3.546143494991907e-14,1.002979315028017e-13,1.0683264462217362e-11,0.0,0.0,0.0,3.42594942420184e-11,3.570179822390628e-11,3.763616700446076e-11,0.0,0.0,0.0,1.137072092296431e-11,1.1859886220153739e-11,1.2521122237504187e-11 +953,"Methane, fossil","('air',)",emission,kilogram,biosphere3,8.32517585032548e-06,2.0148374957401524e-05,6.453409215739227e-05,0.0002879594660895864,0.0005589332122450762,0.0012374511907960479,0.0001937949129942314,0.00036298708198261243,0.0008719550613127783,0.0001676450873907341,0.00034110977103677596,0.0008571303640902901,0.00016900408031916768,0.0005588864055581432,0.0016530814390702828,0.00015708091215422697,0.0005327228921699856,0.0016505798804978544,0.00019949152198988176,0.0005792921352611409,0.0017039706867587737,3.3463101646497664e-05,5.7230410626811165e-05,8.707035870853616e-05,0.001259448096121334,0.0013659612422547223,0.001506091757494228,0.0012609693668305915,0.0013614471589616004,0.001493002666878366 +954,"Methane, monochloro-, R-40","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.352406366702703e-10,3.2126272848601675e-10,1.9959372178782905e-10,1.2838903386346276e-08,2.9110914252513847e-08,4.992433048439244e-08,1.122798948796427e-08,2.5460829256624994e-08,4.558742236461007e-07,1.1190636670610578e-08,2.629847654063079e-08,4.5845861819261673e-07,1.2441534851224836e-08,2.9108223448482263e-08,4.535943933716259e-07,1.183811125155074e-08,2.7273462042655316e-08,4.6844188671032145e-07,1.2826192572065147e-08,2.6821996507744774e-08,4.6799225777538633e-07,1.706144728065498e-10,1.780854318710225e-10,1.88267938252594e-10,5.863464564862677e-08,6.117409549295176e-08,6.460832118910522e-08,6.038529171445324e-08,6.303024652737038e-08,6.662662625560701e-08 +955,"Methane, tetrachloro-, R-10","('air',)",emission,kilogram,biosphere3,1.1922437293110078e-15,6.4322468040481385e-15,1.6833550007835898e-14,7.440721979002447e-12,1.509195889680309e-11,2.4484602908624903e-11,2.9572908839518353e-12,5.65894735468033e-12,9.82777164327719e-12,3.23600950107384e-12,6.599461283521816e-12,1.2201220472546393e-11,2.3519056797893694e-12,4.970041984170644e-12,9.098008461665984e-12,1.9941781390142163e-12,4.151066355887167e-12,7.491688827323468e-12,2.9923717497816525e-10,9.784092150627276e-10,3.986191153759764e-09,1.5816769492212788e-14,1.6574107266955975e-14,1.760155904458507e-14,1.2546245237768827e-09,3.8695824359530465e-09,7.1300312091163675e-09,4.70257574941775e-12,5.280311562333431e-12,6.031514449894961e-12 +956,"Methane, tetrafluoro-, R-14","('air',)",emission,kilogram,biosphere3,4.074378624580336e-07,1.2324918609872816e-05,7.199088776216751e-05,1.5619401508104465e-07,1.1828939351688015e-05,7.085549715941918e-05,1.927933408622226e-07,1.1903135234877786e-05,7.102446433924067e-05,1.9727883398974803e-07,1.1911020323958542e-05,7.104496490550294e-05,1.9868571681990064e-07,1.1930135480854828e-05,7.108511130398167e-05,1.3149349433991362e-07,1.1807074049233417e-05,7.081221987352978e-05,1.5111265174482367e-07,1.1822132750983588e-05,7.08395053968685e-05,1.2068652811478828e-06,1.3132054481185893e-06,1.4636953682607212e-06,3.6698669502773764e-07,4.001891871587262e-07,4.4715919076724526e-07,3.641233326609299e-07,3.970108329294816e-07,4.435689852619715e-07 +957,Methanol,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.6008106821741435e-07,1.2858913195171092e-06,2.9719886075107602e-05,3.611732736025089e-07,1.365078004358128e-06,1.7267137074223174e-05,3.138278422779812e-07,1.2911661588301203e-06,1.5186448406574089e-05,4.894959593305227e-07,1.6973257905024978e-06,2.1976122305842535e-05,3.08693360629793e-07,1.292072632288478e-06,2.5973814961921013e-05,3.0110066642939906e-07,1.2863948692413504e-06,2.565777205381507e-05,3.2563422845720596e-07,1.223297775519019e-06,1.9642819881394712e-05,2.6299391665742302e-05,3.250214327710542e-05,4.034359812439433e-05,1.6396045161979967e-05,2.1204864686353215e-05,2.726491743257432e-05,2.2600977100207284e-05,2.7926521585087068e-05,3.4658954482221666e-05 +958,Methanol,"('air',)",emission,kilogram,biosphere3,4.6057553495276623e-07,2.4916364294159447e-06,1.4254010494393126e-05,4.436501975161121e-07,2.1481381041628857e-06,1.192609351313945e-05,3.90707984771033e-07,2.0758657428719954e-06,1.1843460186623124e-05,3.946748306927523e-07,2.0831156445263704e-06,1.1886319822176208e-05,4.0032267096638277e-07,2.10406968910849e-06,1.1938658486804195e-05,4.01416461047806e-07,2.105040524213892e-06,1.1941749132479783e-05,5.186424515464966e-07,2.23346921768969e-06,1.207608498456092e-05,3.404757489393878e-06,1.4663672640865233e-05,2.869886792770972e-05,2.8523508678980626e-06,1.2282771744003057e-05,2.4033911042588912e-05,2.8559667609294153e-06,1.229864129356001e-05,2.406815028898775e-05 +959,Methyl acetate,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4560786884549245e-12,9.807465306275996e-12,2.266425935549375e-11,0.0,0.0,0.0,1.8414030022120794e-11,1.9436574475826176e-11,2.0845857232919918e-11,0.0,0.0,0.0 +960,Methyl ethyl ketone,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,8.302641782660212e-13,1.7521866189276135e-12,3.314040648243934e-12,8.123525043045427e-13,1.6648999737429578e-12,3.145767743903367e-12,6.170319943144612e-13,1.5099141620279607e-12,3.176263331184331e-12,7.301531063889931e-12,1.2057301279697585e-11,2.217747461521023e-11,7.882893365747206e-12,1.2088236083483977e-11,2.249854401086279e-11,0.0,0.0,0.0,9.658951997868481e-12,1.1711368049256556e-11,1.4684319290830173e-11,9.842935519231867e-12,1.1892436284521373e-11,1.4862813607172118e-11 +961,Molybdenum,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.0796941086095074e-08,2.6389537566025464e-08,2.112435649355495e-08,1.4795250994690822e-08,3.391699497287088e-08,1.5851103493801687e-08,1.7323130266129395e-08,3.970809352822219e-08,1.3064733617383326e-07,1.7312102407987196e-08,3.963894585118851e-08,1.3044184032045956e-07,1.9721981270675926e-08,4.484775832907477e-08,1.286906802837772e-07,1.4974991744135174e-08,3.444198110622813e-08,1.3264685608794816e-07,7.576613583971797e-09,1.758301399665668e-08,1.3135319994122355e-07,1.809674265520835e-08,1.8888873455199225e-08,1.997114507241593e-08,2.2828860933028077e-08,2.3777024117290263e-08,2.505952688039093e-08,2.4092582519764283e-08,2.5108090573908068e-08,2.6488635069506477e-08 +962,Molybdenum,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,4.258643944884839e-08,9.939054154830057e-08,6.583383496683428e-08,3.0347767126184057e-08,7.067203029119838e-08,4.547592824941022e-08,2.4585137554707096e-08,5.633170776557818e-08,2.5339458456535595e-08,2.44656971341422e-08,5.577514875783273e-08,2.4147400719987947e-08,8.732620752331862e-09,2.2512814294532985e-08,2.6120284685916993e-08,2.8912058001335827e-08,6.569024791236458e-08,2.5226023327379635e-08,3.160992699177836e-08,7.083786223594426e-08,2.3777194421927222e-08,4.855222581423368e-08,5.066179916637538e-08,5.354296146875557e-08,1.6233264388504508e-08,1.686687326900257e-08,1.7722057610498206e-08,1.8071660713382178e-08,1.881070747044261e-08,1.9815492807856258e-08 +963,Molybdenum,"('air',)",emission,kilogram,biosphere3,1.7982258514185317e-12,4.266157450441372e-12,6.285821781728489e-10,1.0180298609439001e-07,4.91308245236233e-07,1.1730036529171208e-06,8.861062430867025e-08,4.721386575631966e-07,1.1258936193790258e-06,7.582845192253853e-08,3.354454558497361e-07,7.955280987421318e-07,7.974318155512371e-08,3.361853786622018e-07,7.853607835725288e-07,7.791243435643464e-08,3.1419058447700474e-07,7.536724833058334e-07,9.903015697216095e-08,3.512565452876729e-07,8.010777163419815e-07,9.507069954795878e-11,9.867708725527514e-11,1.0354731904395036e-10,6.983661217340289e-07,7.300744014037654e-07,7.733582921377863e-07,6.692128486606664e-07,6.988159735369266e-07,7.391618232878576e-07 +964,Monochloroethane,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.66411048404615e-10,1.5305033814508014e-09,6.253468068045121e-09,0.0,0.0,0.0,1.964528219312208e-09,6.074652999915623e-09,1.1199288852734795e-08,0.0,0.0,0.0 +965,m-Xylene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.737302273448022e-13,1.167656524371908e-12,2.414959782607256e-12,1.4678802792828796e-12,4.177405961219146e-12,8.424952014349646e-12,1.3840332471122284e-12,3.7638344459670755e-12,7.476223023536459e-12,1.205131726563961e-12,3.507953437836128e-12,7.24649001343702e-12,8.482586272684462e-12,1.4812305538314387e-11,2.8454853799208902e-11,9.623867157791479e-12,1.6123851107848618e-11,2.0282748663088005e-10,0.0,0.0,0.0,1.9893910791035333e-10,2.0926309424626004e-10,2.2343470442356628e-10,1.3966339083850561e-11,1.6383590041976702e-11,1.9877513049610544e-11 +966,m-Xylene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,8.420128772278754e-08,2.3227524358913565e-07,5.383134271865783e-07,3.994573081047396e-08,1.2588486272781845e-07,2.9302611677739256e-07,4.017421078287316e-08,1.2547918075936175e-07,2.929737010616703e-07,4.1851227715332014e-08,1.2500616488690915e-07,2.876902519032137e-07,4.140203790063232e-08,1.1439686568893244e-07,2.7179679982039045e-07,3.995784951212345e-08,1.1559450853842838e-07,2.6838291863956437e-07,0.0,0.0,0.0,2.1824367765014813e-07,2.2970569192856159e-07,2.453609234297388e-07,2.1776111456329094e-07,2.2920736237960103e-07,2.4486448651037706e-07 +967,Nickel,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.800526660993399e-05,3.93987023422373e-05,4.078742004982413e-05,4.501046181563084e-05,4.6784173231426055e-05,4.947727312317969e-05,3.935361410913624e-05,4.0973980017858385e-05,4.5120176931307775e-05,3.948699658116608e-05,4.12901305872229e-05,4.575485826299891e-05,3.950903083185396e-05,4.150215630846543e-05,4.6180735324680684e-05,3.971992852405602e-05,4.194790400204476e-05,4.643940449176465e-05,4.814954022271638e-05,5.0612879951927306e-05,5.680039576010388e-05,2.9355221183850773e-06,3.1299243611395504e-06,3.4015994837999537e-06,6.564316037511449e-06,6.942040384539205e-06,7.461993597505559e-06,4.988263499475344e-06,5.277505380147817e-06,5.6767832670268924e-06 +968,Nickel,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,4.492635291308731e-08,1.048515583820131e-07,6.945107744279443e-08,3.201522622453811e-08,7.45551074025462e-08,4.797460467592621e-08,2.5935968774989335e-08,5.942685536734341e-08,2.6731735864458737e-08,2.580996569644757e-08,5.883971620596122e-08,2.5474180474978322e-08,9.212434896990884e-09,2.374978164270558e-08,2.755546461761548e-08,3.066432127910203e-08,6.966724106799589e-08,2.787537229705002e-08,3.353565786176487e-08,7.5120477177374e-08,2.6353644802433008e-08,5.1219929609517926e-08,5.3445413547644e-08,5.648488141972501e-08,1.765007185388745e-08,1.838662302863884e-08,1.9381215687054773e-08,1.9608042502990894e-08,2.0461848814747502e-08,2.1621982345557865e-08 +969,Nickel,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,6.407277365742783e-16,1.6264974636406334e-14,4.691283553271887e-14,1.0432487696807367e-15,2.4576451677066765e-15,3.8308726842917845e-15,4.8482547239442055e-18,1.051972950084203e-17,4.987858820204443e-17,1.7634034856642172e-16,4.207530773544413e-16,3.8325998056247303e-13,5.069139565203684e-17,1.4235775547821024e-16,1.4746208551245456e-14,4.964597740516002e-17,1.4041701561928073e-16,1.495656126327301e-14,1.1335510993198261e-16,5.073883940277284e-16,1.0562550141200327e-14,4.7962646458875676e-14,4.99818448581441e-14,5.268992470406287e-14,1.1047446145693212e-14,1.1540194271491602e-14,1.2208333044676553e-14,1.591899973388715e-14,1.6603830738659783e-14,1.7529560606976786e-14 +970,Nickel,"('air',)",emission,kilogram,biosphere3,3.810823430901601e-05,3.8139930735397e-05,3.82259356995732e-05,3.8112927282345144e-05,3.815661253178374e-05,3.8245104387126924e-05,3.8111444918065004e-05,3.8153865747599775e-05,3.823918216449412e-05,3.811080715457269e-05,3.814823067530944e-05,3.822676190786137e-05,3.811111445706933e-05,3.814919275742225e-05,3.822737392446085e-05,3.8112314882503525e-05,3.8150821612167995e-05,3.8232960010644496e-05,3.826165703650753e-05,3.954059599627264e-05,4.355520986203588e-05,8.489223424339016e-08,8.972211325258137e-08,9.645623964236985e-08,5.186020524707922e-06,5.752143881523089e-06,6.570145406833037e-06,9.533611010956598e-08,1.0021901800665194e-07,1.0696233357416465e-07 +971,Niobium-95,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.6536948719351165e-11,3.655013274534792e-11,8.958272849004829e-11,0.00013392367319067048,0.00029094875433386953,0.00047510515880993403,0.00014125164940445467,0.0003607970572981434,0.0013339594497198063,0.00013968045321739148,0.00036001629934354854,0.0013302431796652226,0.0001275352890021344,0.00034853186513517017,0.000700877235234001,0.00012830395484292998,0.00034420395714042894,0.0006941417719501504,0.00014635014973336813,0.00034277413184235497,0.0006800715323688795,7.24305991719891e-11,7.550993960272326e-11,7.970940467354171e-11,0.0005009387639029247,0.0005236705106335057,0.0005542916460571777,0.0005430065155683588,0.0005682331715455591,0.0006024935493088489 +972,Nitrate,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,7.220306948305168e-08,1.6851143861012455e-07,1.1161780656207097e-07,5.145304388967518e-08,1.198207123847235e-07,7.710204584112557e-08,4.1682808371910616e-08,9.550744936163332e-08,4.296171980901597e-08,4.148030341739458e-08,9.456383282029928e-08,4.094064857886957e-08,1.4805699443170927e-08,3.8169293218849934e-08,4.42855696357192e-08,1.1075487998050697e-07,2.484978944497733e-07,3.107237965281274e-07,1.2774299628363408e-07,2.6932603866174885e-07,3.198789546251962e-07,8.231774666860476e-08,8.58944173956726e-08,9.07792766287093e-08,2.0778396807302445e-07,2.1949564092020258e-07,2.3535255092847475e-07,2.1152602992401586e-07,2.2367846100545214e-07,2.4011182227778233e-07 +973,Nitrate,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.0992372439929138e-07,4.89931371757195e-07,3.245184147205661e-07,1.4959495140722117e-07,3.48367604552361e-07,2.2416704492239535e-07,1.2118889810061752e-07,2.776790480446125e-07,1.249072144495129e-07,1.2060013373333226e-07,2.749355704973706e-07,1.1903113735842928e-07,4.304619749028618e-08,1.1097367876945153e-07,1.2875618499668122e-07,2.7708286145809653e-07,5.660063567158188e-07,5.61346020297013e-07,3.188139787488994e-07,6.233639443712611e-07,5.928123463618476e-07,2.3933121002243685e-07,2.497300482493843e-07,2.6393232315564026e-07,3.4561106934124474e-07,3.6715842938892495e-07,3.966433997813498e-07,3.500706719848066e-07,3.71700888395261e-07,4.012960466003467e-07 +974,Nitrate,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,4.4820903951177806e-08,2.163171057959439e-07,5.164367584407191e-07,3.900819898125431e-08,2.078671739391945e-07,4.956912035067215e-07,3.3384246899026624e-08,1.4768787380062164e-07,3.5022671301508224e-07,3.510910460134833e-08,1.4801668885164986e-07,3.457521125429107e-07,3.430185320137393e-08,1.3833454004403904e-07,3.317406309166211e-07,4.2212869085536084e-08,1.4997188625015016e-07,3.430620004546551e-07,0.0,0.0,0.0,2.997238027098405e-07,3.129667443468083e-07,3.310003868252922e-07,2.9464738085611365e-07,3.0768126950753485e-07,3.2544505603508024e-07 +975,Nitrogen oxides,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0038545615414492425,0.00941422292404452,0.08087182434265401,0.00414465438100295,0.010166098040974458,0.0821908329574246,0.004958901041185651,0.011953103682405345,0.1096613020528205,0.00498215404964413,0.012025708928129939,0.1097365987209996,0.0060282915198126,0.014230499277585566,0.10888083886311452,0.00532038357690681,0.012725692580143647,0.11093470915351118,0.003361709530193227,0.008434027658882135,0.11142959522701558,0.07134586053195156,0.08884702619794134,0.11429196192942859,0.07475726351674379,0.09244533737520742,0.11814475489478814,0.07437160486189377,0.0919834737098097,0.11757385357356182 +976,Nitrogen oxides,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,4.076908359010961e-10,1.274937033675351e-09,2.078239541788544e-09,4.0303844167383674e-10,1.248707945992482e-09,2.0184497845887493e-09,3.708687360594829e-10,1.1327644707178633e-09,1.7998349730100304e-09,3.274599646531931e-10,1.0540730166433818e-09,1.793862449074637e-09,6.197999546294348e-09,1.3990508855351408e-08,9.523277302212592e-09,0.0,0.0,0.0,5.97709683634861e-09,6.3284165574030565e-09,6.81654244331299e-09,1.0819775789484187e-09,1.140397298027451e-09,1.2208565428062003e-09 +977,Nitrogen oxides,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,1.2814338991540979e-10,3.252940059979813e-09,9.382408843263919e-09,1.4399518088492664e-07,2.401041954554127e-07,5.146905111691754e-07,1.7642791274715955e-07,3.061381258333233e-07,6.656173479434081e-07,1.7664418900207237e-07,3.066278149361121e-07,7.461514138586224e-07,1.7787800498237768e-07,3.2369212104549994e-07,7.084141721284846e-07,1.3750837188732478e-07,2.493645873983348e-07,5.415559498104359e-07,1.5803600793201018e-07,2.6517231837623496e-07,5.693920314960691e-07,9.592367482285633e-09,9.996200350303285e-09,1.0537807183730115e-08,3.8620461735947646e-07,4.2103318458846075e-07,4.7029710891522314e-07,3.839770279045045e-07,4.1850484508976865e-07,4.673762496209414e-07 +978,Nitrogen oxides,"('air',)",emission,kilogram,biosphere3,0.00615650859085979,0.00838018562041501,0.020775763012889577,0.007121414472261897,0.009477424258124159,0.02316744829537429,0.006451363872836909,0.00886876566623928,0.02187825279355806,0.006329939672588201,0.008603847476995802,0.021871785999761407,0.006389618238697013,0.008719130702976367,0.02187666210145478,0.006825048792416956,0.009765314097133201,0.023823186816878054,0.007724537360216263,0.010336622480347751,0.026081448147680094,0.012520347595016808,0.01450104232171478,0.017361128390667453,0.01606269223797243,0.018222443347782058,0.02133080143023484,0.015189463428769607,0.017258540648192204,0.020236906854468776 +979,"NMVOC, non-methane volatile organic compounds, unspecified origin","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0003673159195630333,0.0013996381597868683,0.009184738180894061,0.00032504419817092094,0.0014743186063124038,0.009789841444631726,0.0002653323270576693,0.0012948723938054655,0.009285600831770022,0.00027255304641298525,0.0013059743852811881,0.009275789350487902,0.00026632727044942876,0.0011889150266361336,0.00867850821665406,0.00030287918232358314,0.0012724690035082168,0.008792691843656691,0.0002992634025526048,0.0012030456649354153,0.008643683261415631,0.008160515812638453,0.009687804432673551,0.011902952186559925,0.007522117140068372,0.009012997927035535,0.011164178885838281,0.007714941593594868,0.009219691532800242,0.01139046279153935 +980,"NMVOC, non-methane volatile organic compounds, unspecified origin","('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,6.1414357459487554e-12,1.5590130194538066e-10,4.4966391146944637e-10,9.999573564026762e-12,2.3556609271920622e-11,3.671903989673684e-11,4.64706641029182e-14,1.0083190097835733e-13,4.780878072615148e-13,1.6902280015849944e-12,4.032931987333417e-12,3.6735594488960167e-09,4.858786767365651e-13,1.3645037183012101e-12,1.4134289122442288e-10,4.758583070381616e-13,1.345901662500371e-12,1.4335912885103112e-10,2.986517631739775e-13,1.3343118769889946e-12,2.772248135653854e-11,4.5972644673718616e-10,4.790806520351544e-10,5.050378503603137e-10,2.8992589898052863e-11,3.028579606356042e-11,3.2039310623808225e-11,1.5258413308923522e-10,1.591482606671875e-10,1.6802141173072432e-10 +981,"NMVOC, non-methane volatile organic compounds, unspecified origin","('air',)",emission,kilogram,biosphere3,0.0009120124886117761,0.0011590385911036504,0.0029413317608274593,0.0010912690497960423,0.0013779354197372984,0.0033787421323443322,0.0009792765151812898,0.001277841987677447,0.0032044098299922564,0.0009674154520693498,0.0012539288237029547,0.0032355499007435612,0.0009767090573190888,0.0012845937384018736,0.003253197047150195,0.0010253323707873653,0.001398486255374649,0.003442013472719311,0.0011970519774327174,0.0016794565122210004,0.004483625499625998,0.0017789375951692051,0.0021129152088800347,0.002596601089700301,0.0029687919190300445,0.003405796644321771,0.004036320832676316,0.0021768771568636074,0.0025273225701368633,0.0030330543282273354 +982,"Noble gases, radioactive, unspecified","('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,503.660376867571,1178.6510408394386,679.4465268651994,80.0527932554506,186.70738851979954,129.6613498092357,100.33993220115916,231.3445378679287,131.5549275319989,99.81066465080254,229.00171234906682,126.50903821391177,40.277967993900205,103.75336829731273,121.69079824645374,118.15787635567692,270.08726408779887,116.67518862496885,128.5065156969715,288.80085446951773,110.1084014526618,571.9841953917921,596.9261869387465,630.9947023612198,77.04285911767272,80.1075782618707,84.24250718500942,85.7015182621506,89.2608086975717,94.09901657238596 +983,o-Xylene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,3.431030675818063e-08,9.473656439744231e-08,2.1961910227663122e-07,1.6283812182632124e-08,5.135564461324755e-08,1.1956371122331847e-07,1.637709213737659e-08,5.1190341993128307e-08,1.195431472376087e-07,1.706157673996332e-08,5.0997010562974956e-08,1.1738632966700652e-07,1.687688882762684e-08,4.664472047941757e-08,1.108629771303547e-07,1.6283228994997458e-08,4.7129831398949343e-08,1.0946546358652743e-07,0.0,0.0,0.0,8.905793762124974e-08,9.373471071128506e-08,1.00122352494927e-07,8.886061023380529e-08,9.353092903603246e-08,9.991931504142812e-08 +984,Ozone,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.93312709966068e-11,4.736850379826925e-10,1.2427382238526308e-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2645136072074093e-09,1.3165994617109479e-09,1.3862816882551855e-09,0.0,0.0,0.0,0.0,0.0,0.0 +985,Ozone,"('air',)",emission,kilogram,biosphere3,2.5950795551147414e-05,5.935243495929685e-05,7.422921141552766e-05,2.5908534914457086e-05,5.852064799407173e-05,7.084323772422935e-05,2.562240777158812e-05,5.792941305722116e-05,6.908804411660131e-05,2.5679007841574943e-05,5.8016663753873914e-05,6.902114018493175e-05,2.7409314744236948e-05,6.222644556514016e-05,7.089132535661572e-05,2.688541495789162e-05,6.0798848996145904e-05,6.92192393742644e-05,0.00025648096607561784,0.0005239303077902897,0.0008332592072673776,2.3707822532302186e-05,2.471118131742496e-05,2.608088186763541e-05,0.0004717027433201604,0.0004960681217087007,0.0005288862881381884,2.0681940673528184e-05,2.1563192243477075e-05,2.2761795423658937e-05 +986,"PAH, polycyclic aromatic hydrocarbons","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,6.006349169886644e-08,1.4917482854988915e-07,1.22285816429471e-07,8.812996038110381e-08,2.2416791078922474e-07,5.321819726461221e-07,1.7323248030659384e-07,4.1373748946816887e-07,1.21879273924234e-06,1.789059049112033e-07,4.29418224921605e-07,1.3052673806571297e-06,2.3011503429594718e-07,5.370274242127369e-07,1.3253308087463972e-06,4.2271815570260255e-07,8.888382684615692e-07,1.0730188806497965e-05,5.007276993622328e-07,9.81493011394623e-07,1.0710036715673713e-05,1.0516259187085965e-07,1.142661024018016e-07,1.2726770011989327e-07,1.4786045023185623e-06,1.563523542446766e-06,1.6774373252807315e-06,1.5664878554253501e-06,1.6552177053382768e-06,1.7744847009779572e-06 +987,"PAH, polycyclic aromatic hydrocarbons","('air',)",emission,kilogram,biosphere3,6.511882751512039e-07,4.8681183381577e-06,1.6503999480617154e-05,6.587126220866165e-07,4.84569414545695e-06,1.6394059828630822e-05,6.645233367937279e-07,4.872420537996824e-06,1.6475613217874835e-05,6.643419250185025e-07,4.8719710452111314e-06,1.6476399370782297e-05,6.665978032943946e-07,4.889726376619705e-06,1.6508234971254342e-05,6.053762592690151e-07,4.777427266955831e-06,1.6259201553889262e-05,6.373105141492902e-07,4.810576932636539e-06,1.6333032489564893e-05,5.670306773085047e-07,6.193362407417547e-07,6.935778748412748e-07,4.1912884135409593e-07,4.5912695707285763e-07,5.159721023337571e-07,3.851215570555114e-07,4.214025938516044e-07,4.729200348818002e-07 +988,"Particulates, < 2.5 um","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0018542846113307966,0.002663087390111517,0.017992497272905823,0.002476590148211016,0.003685481859084941,0.019264328949537973,0.0027457103432502123,0.004554950342929566,0.023421967445195327,0.002770409226790717,0.0046624348331223845,0.023600895864405468,0.002577581474897494,0.004250817123658107,0.022712791632329712,0.002478889533567815,0.004015184429914497,0.022799160158472834,0.0025762561759115,0.003723329113239639,0.02294561109991411,0.01445633698947269,0.018029075480033754,0.023223313747473613,0.01574459121773074,0.019390927005717824,0.024682700998536047,0.01594680814284703,0.019604731842552146,0.02491302057248252 +989,"Particulates, < 2.5 um","('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.952157057200071e-05,4.55604999738737e-05,3.0178147580650305e-05,1.4155445564726275e-05,3.3224079586791515e-05,2.2933965191866226e-05,1.1313474677772977e-05,2.62149685439616e-05,1.3040156360051987e-05,1.1271125233368415e-05,2.59902824660481e-05,1.2556570211140556e-05,4.029156822903023e-06,1.0528816252161465e-05,1.2716855080460419e-05,1.7043149124437323e-05,3.665926451987023e-05,2.3017184484287184e-05,1.9059746556697828e-05,3.9883768872300094e-05,2.3252560406768432e-05,2.225627959120443e-05,2.3223305375926912e-05,2.4544026569695673e-05,1.4428692776784466e-05,1.5143260293968304e-05,1.6111587762189497e-05,1.526487105778086e-05,1.602608130658285e-05,1.7060567159274744e-05 +990,"Particulates, < 2.5 um","('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,3.478271072942042e-13,8.829643990646537e-12,2.546721665252502e-11,5.663423747432826e-13,1.3341674979343036e-12,2.079643510806995e-12,2.631944188391184e-15,5.710785534187482e-15,2.7077300688100835e-14,9.572885662160518e-14,2.2841176940629107e-13,2.08058110101905e-10,2.7518542503530487e-14,7.728092498952435e-14,8.005188223027223e-12,2.695102244029091e-14,7.622736687801988e-14,8.119381172759346e-12,2.7308020922727597e-13,1.222317675898399e-12,2.54452356488148e-11,2.60371195023436e-11,2.7133266483553975e-11,2.8603381332029855e-11,2.661333644682409e-11,2.7800368738906075e-11,2.9409917830583616e-11,8.641854530913205e-12,9.013624743909188e-12,9.516170317814035e-12 +991,"Particulates, < 2.5 um","('air',)",emission,kilogram,biosphere3,0.00017708412931350848,0.00043088091023742544,0.0015513196423989533,0.00021576080204221076,0.0005028504132019628,0.0015632829160119408,0.00019549891483667067,0.0004839650919112563,0.001523399847425394,0.0001895001606737344,0.000461297914854695,0.0014938841989694071,0.0001919891646355342,0.0004656924939131752,0.0014928549659411576,0.00020233238923911053,0.00048789054395708743,0.0015703199525529642,0.00023793810362048373,0.000542437720818171,0.00175377148162389,0.000397849070617849,0.0004471961488518238,0.0005180702600066427,0.0006115135197687177,0.0006774362441383596,0.00077189593827376,0.0004778877559728962,0.0005294887250751516,0.0006032921688476563 +992,"Particulates, > 10 um","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.002621998082162892,0.0075246400976858585,0.07510467184784361,0.002759273172552528,0.00742934626209886,0.07556191358525285,0.0031382471153924138,0.00827264185774365,0.09591338101676505,0.003135938583095473,0.00828688540269089,0.09597933836043457,0.00351350988442545,0.00911097213636461,0.0956183141075355,0.0032379283961452197,0.008529377986422285,0.09739668721464795,0.0020179529505609563,0.005607631753058625,0.09730783731925172,0.05723516776715879,0.07154828014514222,0.09236032656745542,0.05937451033711826,0.07381292194389155,0.09478965319654982,0.05955708581326196,0.07400500358468894,0.0949958533593129 +993,"Particulates, > 10 um","('air', 'low population density, long-term')",emission,kilogram,biosphere3,4.8803926575909464e-05,0.00011390125014956035,7.544536921104674e-05,3.4778446339410064e-05,8.098992597906364e-05,5.211527173582257e-05,2.8174490849301642e-05,6.45559611547891e-05,2.9038940246774643e-05,2.803761250038986e-05,6.391814627024512e-05,2.7672845803906983e-05,1.0007556106998052e-05,2.5799614865765218e-05,2.9933764666835086e-05,4.255234314786436e-05,9.114229453030911e-05,5.570895454322725e-05,4.757608198547218e-05,9.922217722149317e-05,5.641887681158872e-05,5.564069911901308e-05,5.80582635905074e-05,6.136006658857929e-05,3.439014716156229e-05,3.609025799255612e-05,3.839567189072531e-05,3.633547718013539e-05,3.814752328036846e-05,4.061203155750909e-05 +994,"Particulates, > 10 um","('air',)",emission,kilogram,biosphere3,2.0049662943367114e-05,8.987289757924125e-05,0.0004681867826092455,0.000614112653815672,0.001260890412227137,0.0028823353938647947,5.997573275917121e-05,0.0002397550351088447,0.0007462932408389498,5.5476692593457326e-05,0.00022150619556723247,0.0007207536937494101,5.668217582295106e-05,0.00022050349255441188,0.0007172832482014792,0.0012515483731986503,0.0028249639110622025,0.001625101332660708,0.0005690058492228183,0.001432810338239444,0.002245990399962611,0.000400623651441461,0.00041666300578546825,0.00043859455966939074,0.0016529006791404237,0.0017693326478871178,0.0019330554690053132,0.001060757625572979,0.0011081175383575123,0.0011726288814779076 +995,"Particulates, > 2.5 um, and < 10um","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0014273054730490522,0.0031439095698082677,0.05929210907198415,0.001708043150392854,0.0034563958011580333,0.05970846036449911,0.0016233773775985822,0.003464889887756249,0.06438356006506368,0.0016286129125210047,0.003485905265133615,0.06445218239020217,0.0016108998963446615,0.0034534664086657532,0.06430565457514337,0.0016178893029493813,0.003461450087079452,0.0645174126038721,0.0018853173649030636,0.00365827357274087,0.0648125158262822,0.04964468297382686,0.06248097772897416,0.0811531321112827,0.05033582590257785,0.06320585265963097,0.08192275859535612,0.05034950707622826,0.0632198503211713,0.08193733694605093 +996,"Particulates, > 2.5 um, and < 10um","('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.9282355791429455e-05,6.83407498660491e-05,4.526722126840057e-05,2.0867067803646817e-05,4.859395558744119e-05,3.126916304150236e-05,1.6904694509581314e-05,3.873357669287433e-05,1.7423364148067757e-05,1.682256750023442e-05,3.835088776214947e-05,1.6603707482351857e-05,6.004533664198785e-06,1.5479768919460352e-05,1.7960258800106095e-05,2.5531471210487215e-05,5.468547226243033e-05,3.342549577239696e-05,2.856041579680382e-05,5.956105273849802e-05,3.393210087935856e-05,3.33844193382008e-05,3.4834958012276204e-05,3.681603979872967e-05,2.0696639634403775e-05,2.172581672215205e-05,2.3122255089578187e-05,2.1801360956683434e-05,2.2888591495118752e-05,2.4367300436410087e-05 +997,"Particulates, > 2.5 um, and < 10um","('air',)",emission,kilogram,biosphere3,0.00020168238688961243,0.0002733189692292353,0.0006888015613711371,0.00022284405350425973,0.00034628426425900474,0.0008075235862641698,0.0002224528319585705,0.00034839547788766297,0.0008006678382008475,0.00021870289576787744,0.0003319272686701549,0.0007751036230900623,0.0002195664332439091,0.0003326192893530397,0.0007743999852566479,0.00022552474415822121,0.0003421354899797649,0.0008098955322975596,0.00023124456641519586,0.0003569861304878217,0.0008798722415568864,0.00020958335246518925,0.00021925369850667197,0.0002325960531575209,0.0003674808493528716,0.0003876244968145082,0.00041569883959651497,0.00031050432206599174,0.00032477320330945737,0.0003443881695897832 +998,Pentane,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.757729937570945e-06,6.296304308216007e-06,2.4915206144738186e-06,5.7564783543375705e-06,1.2305496419264587e-05,1.368554574887721e-05,1.89756424812337e-05,4.178582348702571e-05,3.01616883494167e-05,1.955433660142264e-05,4.333260817887762e-05,2.9762909289787627e-05,2.952604658880356e-05,6.474675910915481e-05,2.8181173498099402e-05,2.1627902457151632e-05,4.760452433107305e-05,2.7828502582985576e-05,2.8750829320853992e-05,6.24441379425677e-05,2.908388416561731e-05,2.0625794316358206e-06,2.1532176757617823e-06,2.27708252889723e-06,1.2112085213115381e-05,1.2693946838017367e-05,1.3476270577128302e-05,1.1790040345310604e-05,1.2373851660723396e-05,1.31628071382443e-05 +999,Pentane,"('air',)",emission,kilogram,biosphere3,3.11609599594143e-10,1.6811564911608232e-09,4.710962961596524e-08,4.2266307782903884e-07,9.563105964808423e-07,1.661435013850584e-06,4.223574892648196e-09,1.5298466224453678e-08,3.349933116836257e-08,3.6150639868779225e-09,1.3935626872594924e-08,3.3388884047297544e-08,3.384172721901706e-09,1.2623458633453453e-08,3.048825400336289e-08,3.0280730170064525e-09,9.440887132870917e-09,3.623282644292034e-08,3.0395544721206266e-09,9.592585761089296e-09,3.618892126601456e-08,1.046242207808136e-08,1.089952601704127e-08,1.1490934680184611e-08,1.6594826907347892e-08,1.749263156200802e-08,1.872143664985759e-08,1.6482204944444446e-08,1.735886832547191e-08,1.8558737662200505e-08 +1000,Phenol,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.663866645764534e-08,9.239460793109353e-08,2.649258378882152e-07,4.542735086507499e-08,1.0102974906158971e-07,2.3943107411892295e-07,4.0366441598851537e-08,9.448823829221472e-08,2.3372259135973058e-07,4.181267688563343e-08,9.730885927101197e-08,2.554752934682768e-07,4.1418437741167214e-08,1.0314806659787889e-07,2.836742496077955e-07,5.020030513394021e-08,1.1809745768857732e-07,6.828790603651628e-07,5.855764422043103e-08,1.2550849547286764e-07,6.729180066842576e-07,2.224480668272625e-07,2.3346172180466057e-07,2.4849436907382315e-07,2.476637875668776e-07,2.6038439083118787e-07,2.777056950022122e-07,2.6756611597259224e-07,2.810930009685694e-07,2.995304735305831e-07 +1001,Phenol,"('air',)",emission,kilogram,biosphere3,2.8799546015813807e-09,6.385332308580801e-09,1.3208255337007356e-08,3.584181507692709e-09,7.005777345595994e-09,1.3560744745363765e-08,3.106508461329787e-09,6.373208402805494e-09,1.2386185136142188e-08,3.132303613184295e-09,6.423517005506146e-09,1.2466111154246926e-08,3.141263432784778e-09,6.978255531328722e-09,1.3844449375216803e-08,3.1290193760423702e-09,6.81570930430984e-09,1.3539757049877917e-08,4.364207522588437e-09,9.468072420425459e-09,1.830778361457928e-08,1.0579075493928487e-08,1.1034696277408756e-08,1.1646831182517353e-08,1.4021111885655773e-08,1.482221989652422e-08,1.5924885192042164e-08,1.066893582140357e-08,1.1155022362469216e-08,1.1809977886174345e-08 +1002,"Phenol, 2,4-dichloro","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,2.1219069440073214e-13,4.1960871062080784e-13,1.0865984445948555e-12,1.6467290368640065e-13,3.130944532162789e-13,1.1405062440206022e-12,2.1395010525566125e-13,4.3305242919182115e-13,1.128584976627205e-12,2.421007143217315e-13,4.993305408364551e-13,1.1064192335513237e-12,1.236631725801256e-13,2.42512563158888e-13,1.100062958700014e-12,2.1400679705733257e-13,5.224163022547405e-13,2.756968526601327e-12,0.0,0.0,0.0,9.907876988737158e-13,1.0477114578944205e-12,1.1256697539754418e-12,2.717811091562299e-13,2.9444694950358266e-13,3.2560519478808594e-13 +1003,"Phenol, pentachloro-","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.9096708687034725e-08,4.601444205277693e-08,2.145178275810021e-08,3.1864338815884166e-08,9.442437839689925e-08,2.302603517253724e-07,2.970327383876643e-08,8.962614515654013e-08,1.7128854294373862e-07,3.116189680631166e-08,9.212914839381954e-08,1.7246906018490566e-07,1.7095860961709073e-08,6.007099673888512e-08,1.6519798700509048e-07,1.979245161657192e-08,6.659625030302689e-08,1.7687417166987702e-07,2.0477081270736404e-08,6.704004787217975e-08,1.8140258023790737e-07,1.5776196376183093e-08,1.6460253749847647e-08,1.7394201244194515e-08,1.1653945635154063e-07,1.3936962791646456e-07,1.6866504756602568e-07,1.1721932747050882e-07,1.4014077323906974e-07,1.6957728083585277e-07 +1004,"Phenol, pentachloro-","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,2.62969505570094e-10,6.091646901462742e-10,7.36065672346125e-10,5.738703427839584e-10,1.3228609303774369e-09,1.5732364360055065e-09,2.590966842993775e-10,6.101725573808286e-10,8.025229215836949e-10,2.554611763015287e-10,6.062530859726924e-10,8.12129717157892e-10,2.543834069939244e-10,6.000026824148457e-10,7.930229261418509e-10,2.5489562156673105e-10,5.959972646207342e-10,7.82210794124943e-10,0.0,0.0,0.0,2.631630339679623e-10,2.782795221260629e-10,2.99214978073443e-10,2.7842666744736565e-10,2.9480367524156635e-10,3.1757378027222763e-10 +1005,Phosphoric acid,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.031701221900009e-13,1.918997953380498e-13,3.10653671664455e-13,0.0,0.0,0.0,1.7517312637596548e-13,1.84427097023846e-13,1.969189309195831e-13,0.0,0.0,0.0 +1006,Phosphorus,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.000784083731273e-09,7.777726981483434e-09,9.021088341171342e-09,2.07976433801456e-09,5.1176910870231755e-09,5.592868075046491e-09,1.7555648074764122e-09,4.3315001447596394e-09,3.819418206050363e-09,1.7723705118933767e-09,4.338548237749264e-09,3.7531943950606784e-09,7.200355839585183e-10,2.077269481090807e-09,3.747592025699614e-09,2.968007317958771e-09,6.591714903907034e-09,5.0777318782440135e-08,3.3690743534426827e-09,7.06633745506054e-09,5.141065551300067e-08,6.7392746176842826e-09,7.091453306656151e-09,7.579618404010006e-09,7.926856453781255e-09,8.54127992936926e-09,9.34904654168358e-09,7.630671791827411e-09,8.237155560625671e-09,9.035795036464783e-09 +1007,Phosphorus,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,4.1115634263802884e-08,9.595789673895658e-08,6.356013592451737e-08,2.9299648267242e-08,6.823123497865084e-08,4.390532907393915e-08,2.3736042258383657e-08,5.438618323917925e-08,2.446431122831014e-08,2.3620726943853163e-08,5.384884607367455e-08,2.3313423512251348e-08,8.43102279751606e-09,2.173529069183337e-08,2.5218170113006185e-08,2.8115104662132802e-08,6.378747821358467e-08,2.5303661356426644e-08,3.0757803701171726e-08,6.879155016098611e-08,2.393059921393411e-08,4.6875380662757e-08,4.891209581138714e-08,5.1693751590475386e-08,1.6103967039243168e-08,1.6761495897647725e-08,1.7649352586170713e-08,1.7888165741159008e-08,1.8650752970704165e-08,1.9687227056101125e-08 +1008,Phosphorus,"('air',)",emission,kilogram,biosphere3,1.2957608236370083e-10,2.407074783251222e-10,5.364954911885612e-10,1.4865512613046926e-10,2.452738735836851e-10,3.8553236293818744e-10,7.432139382343443e-11,1.568367273605861e-10,2.682782374123464e-10,7.52041331677934e-11,1.595114239437455e-10,2.7344348058349536e-10,7.309802498014544e-11,1.5314196415202794e-10,2.601843853941304e-10,1.7283935098568467e-10,4.921387624831501e-10,8.912359165731891e-10,7.38249020966562e-11,2.4108065034279286e-10,3.972709098874297e-10,3.8250687166834727e-10,4.1631234588704505e-10,4.641639052006243e-10,1.4069769510253427e-10,1.513697956886952e-10,1.663724339739617e-10,4.452572466531017e-10,4.830689443665894e-10,5.364802598487126e-10 +1009,Platinum,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.2860353765329877e-13,4.1622556458021555e-13,9.36337689700309e-13,3.3053025482049804e-12,7.287109590139813e-12,1.032255749563857e-12,4.213867965169544e-12,9.485663337361015e-12,2.2996920355311864e-12,4.884776517561087e-12,1.0938421032990554e-11,2.4762432142954127e-12,3.166176235149235e-13,1.2276269531682245e-12,2.850163308143985e-12,2.796765577092088e-13,1.0381371052702464e-12,2.1775484127254108e-12,2.373015028079042e-13,9.09050651378997e-13,2.051171205971624e-12,8.175368306245387e-13,8.529573960570263e-13,9.013157043835957e-13,1.982904379163757e-12,2.0566558269645914e-12,2.1561306717157335e-12,2.1113872295416347e-12,2.1958708198808717e-12,2.310823355443775e-12 +1010,Platinum,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2512219021212566e-08,1.4365679538010263e-08,3.344513506095392e-08,1.2748383136332276e-08,1.4895611028584331e-08,3.3812939038086926e-08,1.485445608986885e-08,1.6709120950157223e-08,3.813418832291127e-08,0.0,0.0,0.0,2.0179468142884795e-08,2.477130885232024e-08,3.143330124896131e-08,1.8596395606845638e-08,2.300604488889546e-08,2.941129591448552e-08 +1011,Plutonium-238,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,7.147732163954535e-12,1.672729347271087e-11,9.640330452259358e-12,1.1335477783686457e-12,2.643604943011509e-12,1.8320553258829906e-12,1.4245928213815718e-12,3.2838841302143054e-12,1.8642630543710846e-12,1.4171013615755359e-12,3.250742100430784e-12,1.7928736209594722e-12,5.688539331491257e-13,1.4657867409472852e-12,1.7230032671237448e-12,1.6765390328661117e-12,3.831739982247696e-12,1.652839288292901e-12,1.8241465421776386e-12,4.098998142324322e-12,1.560061231815963e-12,8.11945680008511e-12,8.473517425554393e-12,8.957132425182403e-12,1.091126151856261e-12,1.1345390904711748e-12,1.1931120386543953e-12,1.2136298098875044e-12,1.2640419658816414e-12,1.3325681958128081e-12 +1012,Plutonium-alpha,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,1.638526725628455e-11,3.834519366445858e-11,2.2099231936485046e-11,2.5985141692687765e-12,6.060128239368079e-12,4.199753917778998e-12,3.2656979286096245e-12,7.527886874675414e-12,4.273586040634697e-12,3.2485247094245755e-12,7.45191298487987e-12,4.1099348405712174e-12,1.304025320978977e-12,3.3601297520597217e-12,3.949765937313122e-12,3.843252587468652e-12,8.783776764269906e-12,3.788923936082593e-12,4.181624036609107e-12,9.396432118605672e-12,3.5762420368735295e-12,1.8612822450098005e-11,1.94244614206592e-11,2.0533087323154467e-11,2.5012679837318752e-12,2.600786626239797e-12,2.735057663328288e-12,2.7820920453650464e-12,2.8976555038747093e-12,3.0547431739675192e-12 +1013,Polonium-210,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0007920251178634788,0.001797950452092361,0.0006855262777415664,0.0007607485431385629,0.0017059697695909468,0.0009065904126448636,0.000891804266532499,0.0019966722865580586,0.01287830037167413,0.00089500765915805,0.002017816910387655,0.012926361099862418,0.0009944859253017593,0.002235299465650849,0.012768816289164476,0.0008136963350846868,0.0018327138315854554,0.013185419981203117,0.0005233358010154704,0.0011388288396399686,0.013150497588711263,0.0005519681543405444,0.0005762125835405286,0.0006093449087010147,0.0016824791325531871,0.0017531339477873087,0.0018487107228813736,0.0017378957634436776,0.0018116093617154148,0.0019118379898305944 +1014,Polonium-210,"('air',)",emission,kilo Becquerel,biosphere3,6.682950349789476e-13,1.5763834039377347e-12,6.451929113717272e-05,3.7320764377547525e-07,1.0928471794548273e-06,1.042038067168684e-05,1.3598446105093403e-06,3.249139156714025e-06,1.1131447414760848e-05,3.7200691016177315e-07,1.1201882572173514e-06,1.0849635398014325e-05,3.792642575664383e-07,1.0902428309667974e-06,1.068780895750023e-05,5.816433721091579e-07,1.1020714893034276e-06,2.6160708431988e-05,7.079054745317744e-07,1.2035156374208952e-06,2.6371550597061917e-05,9.560065141688378e-06,9.921354515820712e-06,1.0409094508751097e-05,4.519750037534772e-06,4.753010075806804e-06,5.07054179569779e-06,4.400467013134676e-06,4.603786005908979e-06,4.878178845032594e-06 +1015,Polychlorinated biphenyls,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.151745976841476e-11,1.331866011608362e-10,3.0418669254248456e-09,8.709992394868658e-11,1.4512422552865228e-10,3.055630634350454e-09,0.0,0.0,0.0,3.16111657797621e-10,3.3141046853116486e-10,3.519814716218358e-10,3.197703900183641e-10,3.3535623034152114e-10,3.5638247779608417e-10 +1016,Polychlorinated biphenyls,"('air',)",emission,kilogram,biosphere3,5.962618550889797e-09,6.423198178184783e-09,9.170146381812762e-09,5.95363283778481e-09,6.340329765949024e-09,8.712928208461899e-09,5.944223268033986e-09,6.326879929487211e-09,8.683922814374098e-09,5.94842552159315e-09,6.333826470981973e-09,8.691342878248753e-09,5.952284335408982e-09,6.357205276056045e-09,8.720755000974229e-09,5.9776381611830835e-09,6.404921246701724e-09,8.786812379160464e-09,5.9746760017804706e-09,6.377801313106602e-09,8.804573605350566e-09,1.7636987043292903e-09,1.865039131188721e-09,2.0064420413675524e-09,1.4098445756570889e-09,1.4844682448472554e-09,1.587842933501246e-09,1.4173953081805264e-09,1.4925755759490504e-09,1.5968362412434374e-09 +1017,Potassium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.1438677474058897e-08,2.0394715359607878e-07,3.1033400468382385e-07,3.2326683179923645e-09,1.6935851407744071e-07,2.095325040340809e-07,3.249017013031393e-09,1.69904418184649e-07,2.1063910681250436e-07,3.423442558455551e-09,1.7008241863909113e-07,2.1018999205167904e-07,3.3059637635957e-09,1.6989107402130155e-07,2.1026741534235585e-07,2.8374763218193287e-08,2.1716334255386936e-07,1.1756235814464765e-06,3.395540820884674e-08,2.2145518415022182e-07,1.21404419064556e-06,8.461118315722179e-08,8.969886606476743e-08,9.681268945802299e-08,1.5030933129551744e-07,1.5802718013457313e-07,1.6847217076505237e-07,1.1567758739240417e-07,1.219741063201882e-07,1.3051892040011592e-07 +1018,Potassium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,4.18510364205619e-06,9.767421812615767e-06,6.469698477221873e-06,2.9823707386124264e-06,6.945163191164071e-06,4.469062819624511e-06,2.4160589654933867e-06,5.535894492586583e-06,2.4901884583102505e-06,2.4043211788608014e-06,5.4811996844931615e-06,2.3730411868981887e-06,8.581821685552051e-07,2.212405226278338e-06,2.5669227132148855e-06,2.8477138862751024e-06,6.4697559076350415e-06,2.512101699263652e-06,3.1140678099163448e-06,6.976748116428977e-06,2.3706007797864017e-06,4.771380274219667e-06,4.97869469711409e-06,5.261835598260372e-06,1.6142535962213907e-06,1.6780029656744256e-06,1.7640538950158678e-06,1.795175241767865e-06,1.8693713796311883e-06,1.9702322814264217e-06 +1019,Potassium,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,6.035291977918629e-08,1.1191956134781642e-07,2.1028890937636779e-07,2.7048857604659615e-08,7.211316215816495e-08,1.5179466197453e-07,2.570208409266179e-08,5.760843589601374e-08,1.1658563902662415e-07,2.608796423601098e-08,5.7784290549979806e-08,1.1553250845806968e-07,2.639575902020589e-08,6.511771564509292e-08,1.2864218425688537e-07,3.181121144885457e-08,7.106116429009324e-08,1.347742736012553e-07,0.0,0.0,0.0,8.562669070883432e-08,8.981886982186353e-08,9.557004628322694e-08,8.472803957865778e-08,8.888767892901747e-08,9.460021472832351e-08 +1020,Potassium-40,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.00011857152976613077,0.00026728100689807116,8.52128059001249e-05,0.00011420808005492845,0.0002570352515783277,0.00019011538995622945,0.00013122278549233165,0.0002950959691167537,0.0024059807517735074,0.00013161620866044052,0.00029919102699505433,0.0024161996680312644,0.0001513042853422742,0.00034236586429899855,0.00238862511231737,0.00012076996818877031,0.00027387746035369387,0.0024654902477271997,8.244660244782466e-05,0.00017822876375743672,0.0024596378667893167,6.943894156232528e-05,7.249579992382564e-05,7.667380758829495e-05,0.0003136690034879832,0.0003269452833657152,0.00034490127281264785,0.0003241037853887086,0.00033796824141994536,0.00035681817593376545 +1021,Potassium-40,"('air',)",emission,kilo Becquerel,biosphere3,8.995762127755505e-14,2.1219325878101201e-13,8.684789889713806e-06,5.0348013445712717e-08,1.478489740408631e-07,1.403741531026069e-06,1.831239674501207e-07,4.380142873536688e-07,1.4993128155121955e-06,5.0164882551006395e-08,1.5148878836155086e-07,1.4614690940087547e-06,5.1100606881956164e-08,1.4730500451913405e-07,1.4393858916726122e-06,7.830196442026527e-08,1.4847227301195795e-07,3.5216037404067997e-06,9.529903962474294e-08,1.6212824611921507e-07,3.5499865377529116e-06,1.2868578625735181e-06,1.33549017468393e-06,1.4011437069027668e-06,6.084169157910046e-07,6.398188429930498e-07,6.825658424465962e-07,5.92360259499455e-07,6.197318700643442e-07,6.56672014403756e-07 +1022,Propanal,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.8958706036352553e-09,6.528208570843181e-09,1.2351583658331495e-08,4.599636828833823e-09,1.119719073515599e-08,1.3422157126769613e-08,5.9664730435207155e-09,1.3858231999151581e-08,1.3825695727167683e-08,1.4749836613361651e-08,3.2674875295949893e-08,1.4730248141903992e-08,1.0233370974674855e-08,2.2849220999558586e-08,1.4369126230557369e-08,1.2229433831056664e-08,2.6946317784323376e-08,1.386600564187706e-08,0.0,0.0,0.0,7.578802424117266e-09,7.910260003489881e-09,8.359161234072947e-09,8.406872042268242e-09,8.77323575875965e-09,9.269840333013579e-09 +1023,Propanal,"('air',)",emission,kilogram,biosphere3,9.510853052133793e-18,5.131178571370709e-17,1.342858162949432e-16,5.935666925965613e-14,1.2039267362026202e-13,1.95320357473383e-13,2.3591116211397536e-14,4.5142966964425194e-14,7.83988156842282e-14,2.5814530662266458e-14,5.2645703172806664e-14,9.733246453732893e-14,1.6235855857696584e-13,3.632477912716549e-13,1.2629398637552486e-12,9.231181486032802e-14,2.0741360504729015e-13,1.316174806356171e-12,7.632964874299866e-12,1.1329339314697687e-11,1.3109477803292312e-10,1.2617468109717692e-16,1.322161709389604e-16,1.4041243380149487e-16,1.2979660616084886e-10,1.3684560946551033e-10,1.465517051640299e-10,1.3294232156400974e-12,1.3907949433979555e-12,1.473705797599441e-12 +1024,Propane,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.4583366555316556e-05,3.401045791787172e-05,6.016929806526127e-05,1.7628303821095152e-05,4.060345725210522e-05,5.414290141104806e-05,1.896057087054872e-05,4.365139844645917e-05,5.6854397512298185e-05,1.885239277391906e-05,4.4662428188751254e-05,5.697896057557416e-05,3.5796337677087424e-05,8.176603274734253e-05,4.9897877362846843e-05,2.2336248109481857e-05,5.258540779235798e-05,4.8046768127074134e-05,3.254263669073471e-05,7.365812329421335e-05,4.8484883526014264e-05,5.453627350643202e-05,5.79528648167363e-05,6.262999535714798e-05,3.742192968976871e-05,3.976011879154548e-05,4.2962138347460705e-05,3.8296842596765466e-05,4.072082207520426e-05,4.404613176661581e-05 +1025,Propane,"('air',)",emission,kilogram,biosphere3,1.910300682908766e-10,1.0306216218709803e-09,1.2874884732747168e-08,2.6436456166799416e-07,6.010999851000282e-07,1.0506864649148837e-06,4.754392226697363e-09,1.6836616275901614e-08,3.6688553861509314e-08,4.663821808010105e-09,1.662798770697371e-08,3.6948323734772886e-08,4.6312222140174034e-09,1.5812790988756538e-08,3.4889382609395106e-08,4.361706202808307e-09,1.259882135680433e-08,3.290113991120054e-08,4.240665591890363e-09,1.2740966171432018e-08,3.259599969017008e-08,4.042344464156792e-09,4.2206827575956695e-09,4.462247821130875e-09,2.3129937419198107e-08,2.4356573493965094e-08,2.60332136358307e-08,2.306034984219567e-08,2.4280512386509698e-08,2.5950343343537215e-08 +1026,Propanol,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.0006234218255536e-16,4.222108674857243e-16,7.985587618529548e-16,1.9574630457930765e-16,4.0117807924853805e-16,7.580113407236286e-16,1.4868143082810271e-16,3.6383234600361735e-16,7.653596266353575e-16,1.7593934410405878e-15,2.9053545859184768e-15,5.343934450830072e-15,1.8994798221564166e-15,2.912808712778093e-15,5.421300069446362e-15,0.0,0.0,0.0,2.3274429313977034e-15,2.8219977482177886e-15,3.538366807861134e-15,2.371776013675643e-15,2.8656283563639956e-15,3.5813771984019646e-15 +1027,Propene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.17553005765781e-07,7.591409545133667e-07,1.530814822163729e-05,3.158281995693977e-07,7.077713572104092e-07,3.2422429465223027e-06,3.5213759321231567e-07,7.906333205884906e-07,3.6546616946037694e-06,3.9628355165532056e-07,8.900563252859537e-07,5.5032153680694024e-06,4.174849737660742e-07,9.345982449682414e-07,6.597667980746433e-06,3.061955238966201e-07,6.91170299381449e-07,6.504962533024442e-06,1.3574931558688548e-07,3.124836424532564e-07,4.963559477251193e-06,1.6235825146475137e-05,1.692861716106998e-05,1.7864539573705385e-05,4.3199261149315274e-06,4.503447556871926e-06,4.751241933891116e-06,5.961519112671982e-06,6.214886108068524e-06,6.55705634525126e-06 +1028,Propene,"('air',)",emission,kilogram,biosphere3,2.2521961730330383e-13,1.2149310716764804e-12,4.650645202025129e-09,1.6509125637554832e-09,4.36707052815592e-09,7.453824921640948e-09,8.156740933063289e-10,2.5842951353411613e-09,4.484092794896529e-09,8.157485290130004e-10,2.6879398944506315e-09,5.062287479747287e-09,5.751978937616044e-10,2.102784405444775e-09,3.924286733369893e-09,4.3454800533476425e-10,1.101627969290662e-09,3.6370202018178956e-09,6.876118912176233e-09,1.4688336142638615e-08,2.7515770969662787e-08,6.916196589141737e-10,7.1778715798852e-10,7.531141870075581e-10,1.8625848019241494e-08,2.0186775940179445e-08,2.225808386486249e-08,1.2603770230637627e-09,1.3909058061916326e-09,1.5622381749698096e-09 +1029,Propionic acid,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.906273730881863e-08,5.738895233155149e-08,1.1501936537226991e-07,2.0141946958385668e-07,4.3809060549601455e-07,2.1895234616313635e-07,2.042015470322764e-07,4.4957094295928524e-07,2.1227347898179597e-07,3.0145022767573077e-07,6.579696605457224e-07,1.863047124984396e-07,2.228319381766091e-07,4.876818260767249e-07,1.8133409430951322e-07,3.359304259828873e-07,7.264988199724496e-07,2.039658852866946e-07,0.0,0.0,0.0,1.0777710937272557e-07,1.1321098609274136e-07,1.2048506919900544e-07,9.75230281556793e-08,1.0271571899841763e-07,1.0970705218353958e-07 +1030,Propionic acid,"('air',)",emission,kilogram,biosphere3,4.335431531696411e-12,2.3389987989091577e-11,6.121290849742215e-11,5.80844680089136e-09,1.3113421337705126e-08,2.2585410524438204e-08,1.447599536715451e-11,8.98302688460499e-11,1.3516804757263886e-10,1.5017845190016793e-11,9.110794422261143e-11,1.366794582800502e-10,9.412468331366823e-12,7.018129701396394e-11,9.576302632219737e-11,1.858488640356052e-12,2.8574805915851256e-11,3.809363896115129e-11,2.140961623123093e-12,2.877112479390334e-11,3.8529473148714273e-11,5.751552497489122e-11,6.026948049405356e-11,6.400566874126947e-11,4.071297922881717e-12,4.769291440010482e-12,5.777041072724201e-12,4.0036163730492886e-12,4.695727081404671e-12,5.695299919369542e-12 +1031,Protactinium-234,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,7.252284486633236e-06,1.6927106186937944e-05,1.1208974431641342e-05,8.177241822335254e-06,1.8856571721535247e-05,1.949997772788762e-05,9.110264868656248e-06,2.0811584043618882e-05,0.00011411595906588116,9.069929331241047e-06,2.0862590183650863e-05,0.00011441193004835978,5.229595379093262e-06,1.2782438731100619e-05,0.00011378466021044052,1.0387348108334927e-05,2.3690865959616096e-05,0.00011703443101584745,1.1328480844013565e-05,2.493622463969802e-05,0.00011654627737568653,8.27211631562265e-06,8.631549889852522e-06,9.12244345755287e-06,1.8081806444673978e-05,1.884659045427184e-05,1.988040222329853e-05,1.8978177383877823e-05,1.9795571401428014e-05,2.090696755752734e-05 +1032,"Radioactive species, other beta emitters","('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,5.0120989651551265e-08,1.678224959332049e-07,3.9013137147996535e-07,7.142007466510657e-08,1.8334224961626584e-07,1.7082170982636608e-07,2.1404960688921677e-08,6.793822262584524e-08,1.3856742802813347e-07,2.060340495177819e-08,6.3644025861984e-08,1.294034025455387e-07,1.6450451976515572e-08,6.069087897436884e-08,1.5719327301098677e-07,2.598675210612147e-08,7.585505820042549e-08,1.2390044047305985e-07,2.511285919780081e-08,6.954206208209291e-08,1.0852623907968034e-07,3.4101432577015044e-07,3.5579901738562634e-07,3.759846533339644e-07,8.393720935645673e-08,8.711782591687633e-08,9.140759209287839e-08,1.0020467576407078e-07,1.041868032449716e-07,1.0959723024618034e-07 +1033,"Radioactive species, other beta emitters","('air',)",emission,kilo Becquerel,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.763765718910051e-15,7.71570354423302e-14,2.1273628520103797e-13,0.0,0.0,0.0,2.1445877316547643e-13,2.239032958475323e-13,2.365601579702592e-13,0.0,0.0,0.0 +1034,Radium-226,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.00034821361710646017,0.000803361510627673,0.4271754205241965,0.00031974195871825616,0.0007321943170884209,0.42716673278129047,0.00029845170535081495,0.0006744868181414928,0.4288059846893659,0.0002980871959188055,0.0006738793725335053,0.42880595858517845,0.00020496251276613535,0.0004780924009305419,0.4287962271970616,0.0003170154185052604,0.0007155299948454237,0.4288516919124829,0.0002951999299195059,0.0006533328617876586,0.4288380269802011,0.3775417084573865,0.4760210458901603,0.6192881864357477,0.37755918414578943,0.4760385853329387,0.6193056147486501,0.37757923175266306,0.4760597348269782,0.6193283809139478 +1035,Radium-226,"('air',)",emission,kilo Becquerel,biosphere3,9.439499724789524e-14,2.2266020141007952e-13,9.113188025077266e-06,5.2710274553476436e-08,1.543332249912436e-07,1.4718111498730148e-06,1.920714549974218e-07,4.589071666570997e-07,1.5722525612180806e-06,5.254149064377143e-08,1.5819662243044576e-07,1.5324443492209458e-06,5.356804543345334e-08,1.5397237685999505e-07,1.5095975079985693e-06,8.21553475534361e-08,1.5566008240759325e-07,3.6951276973045587e-06,9.998950677781032e-08,1.6998878510675452e-07,3.7249085585812976e-06,1.3503352196316598e-06,1.4013664374255809e-06,1.4702584879205923e-06,6.384022345081429e-07,6.713494935178729e-07,7.161998574107256e-07,6.215538140310433e-07,6.502719762432174e-07,6.890290825144703e-07 +1036,Radium-228,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,3.976176600735978e-05,9.01584052351222e-05,3.200414197571463e-05,3.798023857827689e-05,8.523900335155195e-05,4.757371801994859e-05,4.426003894582815e-05,9.931516826098508e-05,0.0006218507296297937,4.438785767254105e-05,0.00010029864629570362,0.0006241318227264912,5.108980649008315e-05,0.00011488957143401461,0.0006166598913028303,3.966065287515117e-05,8.958793282092757e-05,0.0006363790155539696,2.3916605748226423e-05,5.223704450643317e-05,0.0006342555701583768,2.632333431572378e-05,2.748042062380905e-05,2.9061733929666876e-05,8.287903264790022e-05,8.636715440858886e-05,9.108457612202184e-05,8.58797586059453e-05,8.95344902162846e-05,9.450313116605892e-05 +1037,Radium-228,"('air',)",emission,kilo Becquerel,biosphere3,2.7968887031622147e-14,6.59733904288259e-14,2.700203745586737e-06,1.7438470379444567e-08,5.80453565210193e-08,4.540226395830325e-07,5.8152681141828254e-08,1.46721835761021e-07,4.812037116754168e-07,1.7027201971274326e-08,5.850976833387462e-08,4.7109743149254556e-07,1.6605785351592005e-08,5.456396474204377e-08,4.5903929228248283e-07,2.4480715106861357e-08,4.82211577952198e-08,1.0976750014411137e-06,2.978586391131927e-08,5.24812182422662e-08,1.1065311416455495e-06,4.000993074886309e-07,4.152196676797979e-07,4.3563212622623543e-07,1.8948176933387316e-07,1.9929661396503532e-07,2.1266159338295506e-07,1.8448472505537193e-07,1.9304607980808117e-07,2.0460506071673422e-07 +1038,Radon-220,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.005216855954755213,0.01178401663987443,0.0038906258044968415,0.007430324903615883,0.016443516803012145,0.005411604712647536,0.008312750592874398,0.01840942069424961,0.05442334315783676,0.00831742237607171,0.018457496008655955,0.05455660455198926,0.009748781383672342,0.02159123088427544,0.054142885438218866,0.007228846306367813,0.01607865905108817,0.05560232874556559,0.003410910238777977,0.007520340733254101,0.05513604176541155,0.003176804942104604,0.0033166583127022973,0.0035078029099495206,0.00770821194784168,0.00803097777714286,0.008467379037259791,0.008118626693348629,0.00846289916059967,0.008930873883836512 +1039,Radon-220,"('air',)",emission,kilo Becquerel,biosphere3,1.96320077746081e-12,4.630824657017311e-12,0.00018953353845425978,1.0760035063192674e-06,3.07542435004014e-06,3.041564132453668e-05,3.980202565374348e-06,9.425296556092829e-06,3.2529678412073215e-05,1.0763569853838058e-06,3.16305294155721e-06,3.168629966998931e-05,1.1049516542922719e-06,3.102106463261387e-06,3.126395358543439e-05,1.70714285237094e-06,3.214905982156155e-06,7.6818930130937e-05,2.0778327885653477e-06,3.5127675875681185e-06,7.743798185732512e-05,2.8083894634010762e-05,2.9145227644313684e-05,3.057802526307875e-05,1.3272647322879101e-05,1.3957258956808788e-05,1.4889160207939752e-05,1.292228004630363e-05,1.351894006601062e-05,1.432412094818373e-05 +1040,Radon-222,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,22.343424553228786,52.16109501336962,34.71662698616323,18.626872528106148,43.39165018082183,28.08780653175549,15.0985153882083,34.609223906999816,15.792925984617028,15.025250982679022,34.26778216625157,15.061872225720904,5.392409226584946,13.901572096654556,16.27393729469904,17.733456991088904,40.30867760469769,15.696838191675722,19.371349688368575,43.419681969360056,14.753159311937024,25.56127540555337,26.67738058460493,28.202408754557172,10.00083841725822,10.39387556629981,10.924731672718575,11.180260768998735,11.643591229060704,12.274339563392076 +1041,Radon-222,"('air', 'low population density, long-term')",emission,kilo Becquerel,biosphere3,935.9656904387065,2184.407479738686,1446.897453624026,666.9838849726679,1553.2314165499195,999.4709386826997,540.5157522337015,1238.47895216237,557.0998501983814,537.8897987028153,1226.2427419696621,530.8919031104745,191.99075312941858,494.95475574345204,574.2666801907445,635.3029087850426,1443.5608646664975,553.4048936170695,694.5463316325571,1556.6637196020158,521.4807641219808,1067.081872866313,1113.4461217822218,1176.7683693905906,356.0993034810304,369.9849171587372,388.72609479021696,396.5178920247183,412.7211450121634,434.750829696805 +1042,Radon-222,"('air',)",emission,kilo Becquerel,biosphere3,1.102619595180375e-12,2.6008740736070064e-12,0.00010645034134165526,6.044147256084221e-07,1.727846822898039e-06,1.7083558176665745e-05,2.2355169657751635e-06,5.294152068211224e-06,1.8270794907888803e-05,6.045974374958697e-07,1.7770330790161778e-06,1.7797176039744582e-05,6.206285298627708e-07,1.7426954138062316e-06,1.755975706753594e-05,9.588124148826748e-07,1.8057240897591465e-06,4.314500741694851e-05,1.1670090226072033e-06,1.9730167875002102e-06,4.349269528431366e-05,1.5773145979200898e-05,1.6369237109801393e-05,1.717395904363402e-05,7.45452116784508e-06,7.839031661437585e-06,8.362431964324182e-06,7.257739396837154e-06,7.59285239408756e-06,8.045080962967877e-06 +1043,Ruthenium-103,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,3.633276015410567e-12,8.030303710240707e-12,1.9681912566153917e-11,9.997626890222377e-12,2.7287165275648096e-11,5.447238051417286e-11,3.279843579775736e-10,7.149642423039908e-10,7.143202452291668e-11,3.276268083975437e-10,7.137434037928361e-10,6.888851234530704e-11,5.402156073957956e-12,1.6363980574402272e-11,3.444754880252618e-11,3.517373394506121e-10,7.667285522006608e-10,7.444614452099612e-11,4.1187835382967327e-10,8.947129132966134e-10,7.704386762705627e-11,1.5913477342035116e-11,1.659002861646237e-11,1.7512678615548205e-11,4.816438527387734e-11,5.0137401549597126e-11,5.2805940499236185e-11,4.983770234682002e-11,5.1994700872151254e-11,5.493322819904224e-11 +1044,Scandium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.793895484065765e-10,4.484920185109682e-10,4.5467308686116737e-10,1.1613663490750372e-10,2.706185580733106e-10,1.7673637527552115e-10,9.443124681513397e-11,2.1677099912247764e-10,1.0094643149106793e-10,9.416685557633335e-11,2.1498103660140476e-10,9.611769351250148e-11,3.379740927502257e-11,8.720684813396975e-11,1.0313934516030469e-10,1.1368212649442674e-10,2.5723025626255803e-10,2.421334833810782e-10,1.246431617388517e-10,2.772922752296814e-10,2.3731855773315766e-10,3.387502785236715e-10,3.5581430393756703e-10,3.794031764624042e-10,7.900379683430457e-11,8.245548559497759e-11,8.709874043177393e-11,8.617124497466991e-11,9.003670052864007e-11,9.526979513665931e-11 +1045,Scandium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,8.757964724837327e-08,2.0439812975672141e-07,1.3538826245756348e-07,6.241063541955927e-08,1.4533808363972278e-07,9.352192425029426e-08,5.0559701815514684e-08,1.158469966274779e-07,5.211097399304453e-08,5.031407081039843e-08,1.1470242473270553e-07,4.965948949057962e-08,1.7958764734320556e-08,4.629793814360128e-08,5.371675477178147e-08,5.942606759925326e-08,1.3503030497902758e-07,5.176534872276378e-08,6.496768184698211e-08,1.4560991638976486e-07,4.877917401582217e-08,9.984837584215122e-08,1.0418674487002716e-07,1.1011189806893232e-07,3.3309435527601e-08,3.460829219212066e-08,3.636133703641629e-08,3.7090179707874815e-08,3.860582774606972e-08,4.066647867833625e-08 +1046,Scandium,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,6.008187872421961e-14,4.0180631557439135e-13,5.833204027637761e-13,4.211044831090683e-14,3.53617498250672e-13,5.045633250526245e-13,4.8432530819666006e-14,3.7986430112296434e-13,5.544238400625689e-13,2.5945485642889113e-14,2.9635322037148896e-13,3.9049929984028134e-13,4.49964765474719e-15,6.772829787108468e-14,9.298408148146509e-14,5.167946544642226e-15,6.817435389045192e-14,9.398318363175263e-14,0.0,0.0,0.0,1.2584985015698976e-14,1.437717743047028e-14,1.6953458905307013e-14,1.2446029163616845e-14,1.422556209240916e-14,1.6784261872083868e-14 +1047,Selenium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.7739343271284282e-07,4.2350799284339005e-07,3.568030145020242e-07,3.374052951846409e-07,7.569800701618121e-07,5.180712954477636e-07,3.5296196200739547e-07,7.963347654215549e-07,2.0565402428165256e-06,3.593703675219856e-07,8.121842595633492e-07,2.0897921696009938e-06,4.086606288024101e-07,9.293047370936821e-07,2.1004522278694108e-06,3.228953699660626e-07,7.405972871026599e-07,2.1627686940344565e-06,2.103904117884623e-07,4.754229256737234e-07,2.2533631246954487e-06,2.920623667746964e-07,3.0836647416323915e-07,3.309385390651114e-07,5.917190353132807e-07,6.22093904418175e-07,6.636417276917047e-07,5.353672786998995e-07,5.626734365697276e-07,6.001376673489566e-07 +1048,Selenium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.2234408356901041e-08,2.855332567988068e-08,1.8913016215998474e-08,8.718432042464198e-09,2.0302953124521137e-08,1.3064512732090694e-08,7.062919987955541e-09,1.6183205965304706e-08,7.279624416109404e-09,7.028606649992571e-09,1.6023315391922603e-08,6.937165139825917e-09,2.5087434032710274e-09,6.467574391731039e-09,7.503943404375882e-09,8.30631863051194e-09,1.887377195594439e-08,7.2496976977331305e-09,9.081405699754555e-09,2.035293885986751e-08,6.834010864017259e-09,1.3948284139383351e-08,1.4554331090828685e-08,1.5382043304651323e-08,4.666765810165431e-09,4.848857681576308e-09,5.094626111771645e-09,5.194761465417856e-09,5.40711942559349e-09,5.695833453727446e-09 +1049,Selenium,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,9.153268092747002e-17,2.3235716221976045e-15,6.7018446647971294e-15,1.4903724211732767e-16,3.5109617982277024e-16,5.472737812465276e-16,6.9261521893400615e-19,1.5028340526986475e-18,7.125591093172506e-18,2.5191766180099416e-17,6.010826908083502e-17,5.47520518205219e-14,7.241710474133267e-18,2.0337053962250874e-17,2.106625307096933e-15,7.092363250634142e-18,2.005980221770281e-17,2.136676038190282e-15,1.6193599758290593e-17,7.248411230337317e-17,1.5089368895906547e-15,6.851817902639595e-15,7.140275291072554e-15,7.527144476535279e-15,1.5782077998930317e-15,1.6486004431680724e-15,1.7440489123891207e-15,2.2741688209659936e-15,2.372002940221004e-15,2.5042515763126375e-15 +1050,Selenium,"('air',)",emission,kilogram,biosphere3,7.268764771494125e-10,1.1179965598500283e-09,5.244951634454969e-09,1.7712074481257935e-09,4.7727834607312825e-09,1.080790500539132e-08,1.410447320284566e-09,4.162514805754438e-09,9.576728779908443e-09,1.280867969437991e-09,3.2726182164131833e-09,7.771249880700069e-09,1.257769296925896e-09,3.184188518224014e-09,7.52356831340809e-09,1.3016466837819771e-09,3.1616992944887687e-09,8.250776183328096e-09,5.4317355020442134e-09,3.449836601017101e-08,1.266630738158007e-07,1.900292631678391e-09,1.9995167526851767e-09,2.1370720197770875e-09,1.1836534238058555e-07,1.308590678235202e-07,1.4888631889739818e-07,5.8088607491746495e-09,6.09862933315974e-09,6.49385526153741e-09 +1051,Silicon,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.116560103030894e-07,2.054307863846586e-05,2.609582875029893e-05,2.518184804318898e-07,2.0149964562653507e-05,2.4880236020861525e-05,2.0912653496641504e-07,2.0096345432514805e-05,2.4773016586511124e-05,2.109101919821023e-07,2.009901488794697e-05,2.477528422031175e-05,2.087131443581725e-07,2.011207608187657e-05,2.482103179777373e-05,2.534629893895411e-07,2.0200236611928604e-05,2.500723491477032e-05,2.7276136299423354e-07,2.0194008760065654e-05,2.5003192306099438e-05,1.5723377757938432e-06,1.6818949927996239e-06,1.8358899002362168e-06,7.080635423476815e-07,7.722289505779584e-07,8.628089152473507e-07,7.269964914348629e-07,7.921324162127476e-07,8.840632349663196e-07 +1052,Silicon,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,5.448657394437513e-06,1.2716372073674993e-05,8.423010147119685e-06,3.882799033303496e-06,9.042025719892025e-06,5.818348661736708e-06,3.145508133568548e-06,7.20727490583088e-06,3.242018577196563e-06,3.1302265101271785e-06,7.136066807776004e-06,3.089502558211693e-06,1.1172819164711347e-06,2.880367877356787e-06,3.341920204752589e-06,3.7038607871409903e-06,8.416032329895285e-06,3.2479192447615646e-06,4.049920309250916e-06,9.075892601852714e-06,3.0623305782368987e-06,6.2119408820317295e-06,6.481847044389624e-06,6.850472984484482e-06,2.0869230495015934e-06,2.168845990987654e-06,2.2794229297430637e-06,2.3227337378637374e-06,2.4182370774450257e-06,2.548073726641015e-06 +1053,Silicon,"('air',)",emission,kilogram,biosphere3,1.5281947751800957e-14,2.8263231554089226e-14,4.967997378921243e-14,7.317867261126068e-07,3.5344861069198507e-06,8.402658890828201e-06,6.351488391881608e-07,3.392591004220514e-06,8.059025085513384e-06,5.447026383736825e-07,2.4217838982239505e-06,5.711363719912025e-06,5.707449690575134e-07,2.4202762301404473e-06,5.6256423328866925e-06,5.555279145645474e-07,2.242790595659587e-06,5.371953152148499e-06,6.835238393992645e-07,2.43094015929179e-06,5.554659895837628e-06,3.7120176627366857e-14,3.896293106815613e-14,4.150269943703659e-14,4.846226716330977e-06,5.060417256146495e-06,5.352099215495191e-06,4.764560243941524e-06,4.9754376461824e-06,5.262853157896563e-06 +1054,Silicon tetrafluoride,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.0088747373371603e-09,1.1774898433129772e-09,1.5872870862422114e-09,1.84292168579712e-09,2.09904748472669e-09,3.1891729752205973e-09,1.7468805574414099e-09,2.007698194281045e-09,3.274569649929309e-09,1.7446248198212524e-09,2.014154009051708e-09,3.4275366476722034e-09,1.7412568307589332e-09,2.0347446629863706e-09,3.488704942890056e-09,1.7337451343771368e-09,2.0198270978425566e-09,3.450683622268415e-09,2.051649066149453e-09,2.376408466151694e-09,3.968242774969133e-09,5.887361859723762e-10,6.319573897624267e-10,6.929451973169112e-10,1.8620143264400133e-09,2.072610113044533e-09,2.3682035711501307e-09,1.7030057208317721e-09,1.8828848455525e-09,2.1390037835141065e-09 +1055,Silver,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.2022150824783536e-08,1.202434830941088e-08,1.2024635574067287e-08,1.4378366420211247e-08,1.4422380208619734e-08,1.4443704426396692e-08,1.2582785275971398e-08,1.266274925162161e-08,1.2691394429493094e-08,1.2580454162569609e-08,1.2661617961179969e-08,1.2691725201885565e-08,1.257990495143625e-08,1.2661219530447273e-08,1.2693892204159477e-08,1.2582586249090661e-08,1.2665464231848323e-08,1.279736133944287e-08,1.524135591808288e-08,1.5324251593058535e-08,1.5451605508756597e-08,3.0728179205094673e-12,3.3190179382639968e-12,3.638991368922543e-12,2.2362667886046303e-11,2.4235345635401934e-11,2.6709835310632052e-11,3.104923554288341e-11,3.333057742131225e-11,3.6363436182253154e-11 +1056,Silver,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,3.6636370241838224e-09,8.550394729651562e-09,5.6635698699120436e-09,2.6107654058555767e-09,6.07979134275911e-09,3.9122146871334375e-09,2.1150164478048605e-09,4.84611844013587e-09,2.1799093576282497e-09,2.1047411970170083e-09,4.7982386406860705e-09,2.0773587123876827e-09,7.512521124816217e-10,1.9367380968836193e-09,2.2470824744897305e-09,2.4868476269438484e-09,5.650729461217894e-09,2.173403342329365e-09,2.7188050236994294e-09,6.093385515498867e-09,2.0484421651979592e-09,4.1768632054268145e-09,4.358346117457221e-09,4.606207479661554e-09,1.396564302188462e-09,1.4513359472437823e-09,1.5252632637951748e-09,1.5548596158526456e-09,1.6187429207895248e-09,1.7055930331050763e-09 +1057,Silver,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.8005959006228833e-11,2.8553665568945776e-11,4.998502702522343e-11,7.403527918025136e-12,1.59477358401089e-11,3.175218797710707e-11,7.15782753909329e-12,1.330807808047179e-11,2.5330082765767267e-11,7.2346520139421e-12,1.3395455328665003e-11,2.5224867483636923e-11,7.113540784475669e-12,1.2549095014179676e-11,2.4055339406072498e-11,8.565453963182821e-12,1.4065175250510546e-11,2.5623306168906765e-11,0.0,0.0,0.0,1.5650722062291426e-11,1.6405014156955733e-11,1.7438604677477112e-11,1.5530014843213407e-11,1.6280985843978593e-11,1.7311383011834916e-11 +1058,Silver-110,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,3.600854840432127e-11,7.958646108219177e-11,1.9506283038145567e-10,2.3800297507594288e-09,5.2913135526402066e-09,1.415483212450302e-09,5.395707573070788e-10,1.3216983527601737e-09,1.8100521248869718e-09,5.344432993288152e-10,1.2998491827358414e-09,1.7580612945542623e-09,1.774666026315987e-10,5.762937508576418e-10,1.9662901146361522e-09,5.917323142521366e-10,1.4484249276587011e-09,1.8827482569115103e-09,6.71301933847893e-10,1.5798063539608804e-09,1.8396156677633078e-09,1.57714750665172e-10,1.6441989205522036e-10,1.7356406032661755e-10,9.809696360746403e-10,1.0209948122720488e-09,1.075028098551557e-09,1.0509764880905147e-09,1.0954759543231048e-09,1.155973626685806e-09 +1059,Sodium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.568386191276059e-08,4.6323820789192813e-08,7.242590395284483e-08,2.043584253771967e-08,6.875646822656608e-08,1.1639650441649799e-07,1.9027540071030974e-08,6.591289431873196e-08,1.161297754422157e-07,1.815072397469188e-08,5.835666770120779e-08,9.582197780960614e-08,1.4855470207622533e-08,4.754437510244823e-08,8.995499568537121e-08,3.274509295719374e-08,8.241943703654831e-08,6.554671545102947e-07,3.818645655371679e-08,8.647056293604837e-08,6.621425342984151e-07,5.262818341458602e-08,5.5511909419474103e-08,5.952201706917771e-08,1.3951928143755163e-07,1.4673643316376062e-07,1.565769323677278e-07,1.3859512032712504e-07,1.4537598997527747e-07,1.5459484328084352e-07 +1060,Sodium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.437375899428836e-06,3.3546258190713166e-06,2.222021115737506e-06,1.0242966975317252e-06,2.3853197150929656e-06,1.5349018242225204e-06,8.297966404231064e-07,1.9013056871925053e-06,8.552564512031874e-07,8.257652918290554e-07,1.8825207284425643e-06,8.150221631995333e-07,2.947430880242065e-07,7.598516634899299e-07,8.816108688039802e-07,1.0040693271955192e-06,2.2811682592854463e-06,9.447337581644367e-07,1.1004360965819264e-06,2.4638794581791107e-06,8.95057906254177e-07,1.638732897898184e-06,1.709935138130663e-06,1.8071800195008619e-06,5.889361348909772e-07,6.138459914458976e-07,6.474960691200359e-07,6.543809994162453e-07,6.832658907153764e-07,7.225247192709582e-07 +1061,Sodium,"('air',)",emission,kilogram,biosphere3,2.8765754504850958e-11,6.081114541835457e-11,1.408113527901059e-10,9.309291854380585e-08,4.4364862389099164e-07,1.0564368381145705e-06,8.02201193112175e-08,4.25178578127785e-07,1.0123988002738023e-06,6.875860635498486e-08,3.0255646854162355e-07,7.159961225486007e-07,7.223367302471362e-08,3.0309098217273e-07,7.066133613410828e-07,7.050649388437111e-08,2.8330182766197966e-07,6.781591161992526e-07,8.673250327856154e-08,3.070992674768748e-07,7.012807586843562e-07,1.0642358908044041e-10,1.1387138400753201e-10,1.242811561660276e-10,6.112491380167942e-07,6.382745631247381e-07,6.750783983993123e-07,6.009621568415055e-07,6.275694291687352e-07,6.638347125884296e-07 +1062,Strontium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.1363638366563565e-07,9.415462120147784e-07,3.560519761252775e-07,5.307200125100321e-07,1.1820686342075244e-06,5.755744942916951e-07,5.917098171666864e-07,1.3181232835128355e-06,6.2755307203098615e-06,5.924776980245934e-07,1.3270020471408136e-06,6.297682975848905e-06,6.828541445753567e-07,1.5232430194134086e-06,6.226214929517935e-06,5.216299689143527e-07,1.1690531687815866e-06,6.427962325748218e-06,2.8526613763137733e-07,6.234590002369888e-07,6.3994635325873536e-06,2.930334156074254e-07,3.0601868154722597e-07,3.2377783273653324e-07,8.590387471899994e-07,8.953402364840058e-07,9.444265766525908e-07,8.928057379097269e-07,9.309796205800844e-07,9.828739170325789e-07 +1063,Strontium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,8.891673896239692e-08,2.0751870677920222e-07,1.3745525555565402e-07,6.336346792233974e-08,1.4755698189404946e-07,9.494973745151827e-08,5.133160434297409e-08,1.1761565004679754e-07,5.29065600248236e-08,5.10822232525751e-08,1.1645360380175763e-07,5.04176483418724e-08,1.8232943880768533e-08,4.7004775687848094e-08,5.453685649877313e-08,6.073527787342258e-08,1.3798540672804593e-07,5.402333138375287e-08,6.643926607137629e-08,1.4884581024762892e-07,5.1139948605444364e-08,1.0137277605785325e-07,1.0577737962302285e-07,1.1179299303392956e-07,3.492003383387783e-08,3.628903465474467e-08,3.813693245414435e-08,3.8737297242262616e-08,4.0323677926862676e-08,4.248022531089846e-08 +1064,Strontium,"('air',)",emission,kilogram,biosphere3,3.33475178315391e-16,7.86605778280314e-16,3.2194735740517035e-08,5.7574413372711495e-09,2.7456083561125672e-08,6.936846957764558e-08,5.525290362508482e-09,2.747457014967922e-08,6.713493992045591e-08,4.3360824797003316e-09,1.8953867091877054e-08,4.8963443407130785e-08,4.549140395153928e-09,1.8963067309835312e-08,4.829510133951697e-08,4.545259367605062e-09,1.7720000588548805e-08,5.421569114200783e-08,5.5889907598672605e-09,1.9213064309638848e-08,5.5721295608766594e-08,4.770414638381801e-09,4.950695849179943e-09,5.194075153349457e-09,3.9426795837834246e-08,4.1185446476837904e-08,4.3580227503686044e-08,3.874065811544565e-08,4.045894723926565e-08,4.2799465766668954e-08 +1065,Styrene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.4947856961280455e-10,6.009166100052133e-10,2.824793660702513e-10,1.0061512786802745e-09,2.563672663312631e-09,5.266618006892729e-09,9.027071359586753e-10,2.330556913370372e-09,2.3463369352333894e-08,9.195095876296735e-10,2.4015031708742156e-09,2.35990733844355e-08,7.988222154792325e-10,2.124522157365661e-09,2.3279547955114866e-08,3.3797045604145444e-07,6.300234793792256e-07,1.4364848745849784e-05,4.114880335930444e-07,6.862873079987088e-07,1.4429773625035295e-05,2.0885688243433684e-10,2.1791635940904108e-10,2.302844899766391e-10,1.4945142676629992e-06,1.5670490129850569e-06,1.6645633464395298e-06,1.5118536566060645e-06,1.585747682300388e-06,1.6854176178071191e-06 +1066,Styrene,"('air',)",emission,kilogram,biosphere3,6.259280031243349e-19,3.3769297919244136e-18,8.837614315890098e-18,4.8037401350812315e-08,1.326374328855985e-07,3.0747711187897684e-07,2.2801291943943873e-08,7.190742897369115e-08,1.673977405855748e-07,2.2933728641210666e-08,7.167973866803382e-08,1.6737270676019877e-07,2.389976778098369e-08,7.14257626624136e-08,1.6435264862876646e-07,2.363720271245986e-08,6.532384989822842e-08,1.5521963429936247e-07,2.2808385805301386e-08,6.600741220331695e-08,1.5327005499407141e-07,8.303804506970739e-18,8.701406863807984e-18,9.240819081115627e-18,1.2469382980731153e-07,1.312419412826881e-07,1.4018549969527595e-07,1.2441104479087296e-07,1.3094976787583953e-07,1.3989388391880003e-07 +1067,Sulfate,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,5.455465165788771e-07,1.2732265508685403e-06,8.433525640632549e-07,3.8991482757266284e-07,9.079388039871723e-07,5.8705361982153e-07,3.1594940681246636e-07,7.239081068464996e-07,3.657025165458076e-07,3.144159795157985e-07,7.168540594576852e-07,3.506652343208731e-07,1.1298731918904608e-07,2.910153369884645e-07,3.754995192648935e-07,3.736183360144231e-07,8.489169813932399e-07,3.7502483167124373e-07,4.0870569752111364e-07,9.152459932804003e-07,3.5683456075762663e-07,6.219717163310847e-07,6.489961253806113e-07,6.859048702278576e-07,2.1984083862422986e-07,2.28565758986042e-07,2.4034373953777376e-07,2.4357177036204736e-07,2.5366538316861255e-07,2.673848602302838e-07 +1068,Sulfate,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,2.2530030444163374e-05,5.258180675544161e-05,3.482888743280267e-05,1.605525440019802e-05,3.7388497828716674e-05,2.405869249272386e-05,1.3006579240689255e-05,2.9801859728709e-05,1.3405646952269627e-05,1.2943390198481397e-05,2.9507416436686574e-05,1.2774997911741676e-05,4.619926308785414e-06,1.191023244841457e-05,1.3818737104924812e-05,1.531912323400476e-05,3.4803299825521336e-05,1.3444779383181101e-05,1.6750869523069277e-05,3.753196258917549e-05,1.2684099023605902e-05,2.5686184165383726e-05,2.6802237830661234e-05,2.8326494735164755e-05,8.651477403000028e-06,8.990704439139132e-06,9.448579802864073e-06,9.623929872190116e-06,1.001898903445892e-05,1.0556069274155617e-05 +1069,Sulfate,"('air',)",emission,kilogram,biosphere3,2.048893449159185e-10,5.967020047462302e-10,1.5428959497688012e-09,4.028521704097597e-07,1.8877898356184374e-06,4.489233403013465e-06,3.4265117171202566e-07,1.802955455751614e-06,4.293365406256731e-06,2.9407344067830734e-07,1.2830363854198177e-06,3.036562527337502e-06,3.089825061805764e-07,1.2859553159432886e-06,2.997952732412177e-06,3.019384888686729e-07,1.2019202099565338e-06,2.8763361698857433e-06,3.71358391596612e-07,1.3034409458946469e-06,2.974916070521322e-06,1.3414153248268987e-09,1.4818915407984756e-09,1.6835915027843235e-09,2.5926132963326844e-06,2.707243793641541e-06,2.8633512977473645e-06,2.5490771227777606e-06,2.661942395423979e-06,2.8157777661153174e-06 +1070,Sulfur dioxide,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.13593196834151394,0.14712674055172806,0.17820782123971823,0.1347679210276656,0.15012198548788128,0.17207718539883335,0.12017611802041199,0.13677558982433718,0.17915025059569903,0.12040130149278282,0.13732830154217604,0.17987134798747798,0.12197716136401059,0.14074118215976533,0.17866745192989228,0.11815678874750479,0.13259763033017472,0.16651735508855212,0.1359268152431143,0.14381875953563694,0.18856188271792515,0.022433609682097795,0.038145205302560645,0.06494107595056789,0.021190905627602848,0.0367120044720351,0.06321933490185841,0.022141098611735008,0.03772509526318774,0.06432480370312493 +1071,Sulfur dioxide,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9971711064795575e-06,7.521210069465729e-06,2.1945037349536743e-05,0.0,0.0,0.0,1.7002660601623463e-05,1.94812413357621e-05,2.306972180804326e-05,0.0,0.0,0.0 +1072,Sulfur dioxide,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,9.153268123170725e-12,2.3235716307078333e-10,6.701844689425376e-10,1.4903724188403208e-11,3.5109617927614505e-11,5.4727378039932616e-11,6.926152241524595e-14,1.5028340702164898e-13,7.125591118159545e-13,2.519176614235909e-12,6.010826899235932e-12,5.475205173264889e-09,7.241710465923207e-13,2.033705393934795e-12,2.1066253037325693e-10,7.092363243295505e-13,2.0059802195905785e-12,2.1366760347779812e-10,1.36026143770753e-12,6.08866127257367e-12,1.2675061332593482e-10,6.851817927847581e-10,7.140275317340987e-10,7.527144504225802e-10,1.32569365927927e-10,1.384823439804603e-10,1.465000099948944e-10,2.2741688173254914e-10,2.37200293642412e-10,2.5042515723043664e-10 +1073,Sulfur dioxide,"('air',)",emission,kilogram,biosphere3,0.0012676454624646419,0.001853549455887658,0.004784767111005647,0.001817411677460112,0.0029125997871839214,0.0067334854228027164,0.0016385643445641766,0.0025436542871259196,0.006036149916994717,0.0015894922977234202,0.0024956044742719067,0.0060156287681402635,0.0013339982306889181,0.0019981183715129082,0.004787846514506813,0.0013214794856711036,0.0019748954689337906,0.004825200166754685,0.001446695451908041,0.004079067314545803,0.013106537842184846,0.0003352816943382982,0.0003562478579629287,0.00038557257988734896,0.008821116351995091,0.009414871592659826,0.010249492903556031,0.0004913392984092676,0.0005248699945058434,0.0005709348556423205 +1074,Sulfur hexafluoride,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,3.9338086446592373e-11,1.6053300369676956e-10,4.0127994804219043e-10,2.161310343872189e-12,4.871423382758019e-12,9.216008567637498e-12,3.4325294594516046e-12,8.355220324711148e-12,1.0012100403363824e-11,4.452873773686874e-12,1.034173844381784e-11,1.0313467190134631e-11,1.1009722772284948e-11,2.4388351410037776e-11,1.0988741247273488e-11,7.633161405936024e-12,1.704569594767324e-11,1.0704936818195674e-11,9.12409487809184e-12,2.011089164328897e-11,1.0339642336153158e-11,3.282181006455376e-10,3.4207738482958937e-10,3.607662010310378e-10,5.649172143646297e-12,5.895021931635253e-12,6.227836671949409e-12,6.263954482074957e-12,6.535707437123393e-12,6.903920784112024e-12 +1075,Sulfur hexafluoride,"('air',)",emission,kilogram,biosphere3,8.336955857738467e-07,1.8742599313001699e-06,2.442725839703886e-06,3.410586878796325e-07,8.483218429275141e-07,4.019268862838875e-06,3.308068327628882e-07,8.121471076512903e-07,2.265074334685159e-06,3.325255270966556e-07,8.167510681549479e-07,2.2676322211533727e-06,3.2902773382882207e-07,8.154420440866518e-07,2.2836538274941206e-06,3.247206463961143e-07,8.004827970134949e-07,2.2419967797400334e-06,3.2761478813603107e-07,7.97329783167452e-07,2.2400998009406988e-06,4.163587510269267e-07,4.3295172101036055e-07,4.5555458924218816e-07,4.959498397807906e-07,5.172509845934613e-07,5.460634529374717e-07,5.057208305235961e-07,5.280133289582616e-07,5.583627620942166e-07 +1076,Sulfuric acid,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.6292028198534874e-13,8.622234226255438e-13,2.0093608716313186e-12,1.412392948122495e-12,2.679103513104941e-12,1.361151037321522e-11,1.3302869663187018e-08,9.441281979813177e-08,2.1320472395530338e-07,1.4055522609628866e-08,9.58254231917925e-08,2.1593503321825143e-07,1.3316997800735407e-08,1.0918141049824972e-07,2.605606666087187e-07,1.4761301121772549e-08,9.606110653845465e-08,2.0288382691542904e-07,5.489061643623195e-10,3.1393399769831775e-09,6.23667022384967e-09,1.7516538849981419e-12,1.8275320181372213e-12,1.9311243009219356e-12,4.321288345661952e-09,4.553081404778483e-09,4.868926596081622e-09,1.5394950571387254e-07,1.6173381259320554e-07,1.7232174243757965e-07 +1077,Sulfuric acid,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.3939107636127073e-12,3.5472267087642913e-12,4.841679217092056e-12,2.3380030041680494e-10,1.6542061632690526e-09,3.732972021265495e-09,2.477202519190453e-10,1.6839896961461562e-09,3.792087112024146e-09,2.346296303566606e-10,1.9181082180247585e-09,4.5752057749369e-09,2.590102603655188e-10,1.6863928605599011e-09,3.5599963405996215e-09,4.083622501563166e-09,2.3916563555960767e-08,5.081880953160267e-08,0.0,0.0,0.0,3.828589168017917e-08,4.017283542641773e-08,4.27288203325155e-08,2.7008853065525806e-09,2.83719749005289e-09,3.0225747678814298e-09 +1078,Terpenes,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,4.2368387772037863e-10,2.1227204684620253e-09,1.6421942624546459e-06,3.3483440742797508e-09,8.195514537245096e-09,8.343359830221703e-07,2.217519987964144e-09,5.759167224154027e-09,6.87580357688619e-07,1.4306089293191621e-08,3.338566583117653e-08,1.1928617000929282e-06,3.541828147700999e-09,8.973120913425375e-09,1.4910825686366298e-06,2.881143701371701e-09,7.544501080857954e-09,1.4623682775056289e-06,2.873635925610361e-09,7.054035058693013e-09,1.0489882834870376e-06,1.7540037180239814e-06,1.8286069657426767e-06,1.9293391651113158e-06,1.1179515248911209e-06,1.1655019497971432e-06,1.2297071687670119e-06,1.5603053709613148e-06,1.6266243039723074e-06,1.7161683275063984e-06 +1079,Thallium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.289380020237114e-11,3.8281155943059224e-11,6.12668064387056e-11,1.4274849547077375e-11,4.2296121396946265e-11,1.0266355709221708e-10,1.3553457488030548e-11,4.0983308109492147e-11,7.826644236207668e-11,1.421859371366049e-11,4.203138870327329e-11,7.838433558068734e-11,7.871310095617711e-12,2.748501122882427e-11,7.494955213185096e-11,9.499055122723144e-12,3.120158387744521e-11,9.817460280169552e-11,9.953999611439911e-12,3.152089393416345e-11,1.0039049646274407e-10,4.60329888862525e-11,4.862625261303982e-11,5.2239673060729284e-11,5.518497593910127e-11,6.550326398913015e-11,7.875715274033937e-11,5.54617863622974e-11,6.58092360829789e-11,7.910982480066525e-11 +1080,Thallium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.939326797185832e-12,2.0066712031062193e-11,3.3294472873376936e-11,1.0776468403496936e-11,2.209779897405492e-11,3.55272105306249e-11,0.0,0.0,0.0,2.585869913221874e-11,2.6982924701214494e-11,2.850321561246937e-11,2.5695353600824646e-11,2.679460527219659e-11,2.8280279422724275e-11 +1081,Thallium,"('air',)",emission,kilogram,biosphere3,2.7095149390827826e-09,3.0129105605013133e-09,3.8953674008771845e-09,2.886650074487835e-09,3.25686294531272e-09,4.194701568246736e-09,2.48612268934648e-09,2.7490483475310016e-09,3.3443572282708187e-09,2.4723400124915044e-09,2.7193046014283678e-09,3.305926675253759e-09,2.467870113986914e-09,2.7202611062202193e-09,3.3346903865098397e-09,2.4903641572562105e-09,2.765761830845115e-09,3.373990367358046e-09,4.115383529993208e-09,1.2236135674126288e-08,3.842160254281487e-08,1.0409443897191054e-09,1.0925835383451795e-09,1.1634497458311394e-09,3.36591822309664e-08,3.7354239590488914e-08,4.26943323515154e-08,7.79394555828124e-10,8.197656584309852e-10,8.755598741546674e-10 +1082,Thorium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.7602634755882236e-11,7.090494569977358e-11,2.0457323620956975e-10,8.82244786108303e-13,2.2858712446725313e-12,4.251147760270733e-12,1.0719985266043657e-12,3.0120892172600947e-12,5.119738717420854e-12,1.2490977442669827e-12,3.2721724965013192e-12,4.656147387739398e-12,6.458317682159348e-13,1.81932476274905e-12,4.128982757759434e-12,5.47762238976281e-13,1.6176870365687787e-12,4.2655728311486754e-12,5.909131923538645e-13,1.6561209009052193e-12,4.39619305059568e-12,1.5430263146710305e-10,1.6335250888414723e-10,1.759960092358549e-10,3.043848916708887e-12,3.3992313151587485e-12,3.8679679563142115e-12,3.0277066142351134e-12,3.3765900247052954e-12,3.836493013175196e-12 +1083,Thorium,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.760585082383027e-13,1.1665246488052913e-12,1.6896966239661656e-12,1.2597092174012886e-13,1.0335920431666004e-12,1.4737695206936446e-12,1.4255846829841283e-13,1.1034146680513053e-12,1.6061740029758488e-12,8.006757955286482e-14,8.713053452392345e-13,1.1505869963750354e-12,1.3028094927014043e-14,1.948184779062474e-13,2.7210478490676077e-13,1.4932281198466677e-14,1.9604832466574557e-13,2.748855833240828e-13,0.0,0.0,0.0,4.117607377917895e-14,4.655203230006066e-14,5.426187002638397e-14,4.082352656144804e-14,4.616551673648667e-14,5.382816060294682e-14 +1084,Thorium-228,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,2.141466926239859e-05,4.855335352732785e-05,1.7239389692258398e-05,2.076992194844189e-05,4.6616280211639417e-05,2.695844858037042e-05,2.410225875194099e-05,5.408130144713653e-05,0.00034709597234735396,2.4170720111144204e-05,5.4636885245853465e-05,0.00034840246053923803,2.7806940218635473e-05,6.255749359691982e-05,0.00034425002090276806,2.1650324657440347e-05,4.89139981580057e-05,0.0003552690193116905,1.3218288157255757e-05,2.883060609770023e-05,0.00035411373935068216,1.4177505812661992e-05,1.4800755578091856e-05,1.5652513996544473e-05,4.619363115166118e-05,4.813987879657943e-05,5.077201291064023e-05,4.785713513563179e-05,4.989616669970186e-05,5.2668280123136985e-05 +1085,Thorium-228,"('air',)",emission,kilo Becquerel,biosphere3,1.5060169437580537e-14,3.552413223798791e-14,1.45395582667953e-06,8.706033173746675e-09,2.658930770216467e-08,2.3766791058397297e-07,3.085540988257401e-08,7.495670367038645e-08,2.533260044625888e-07,8.622565813962287e-09,2.7099180291281142e-08,2.472007128233527e-07,8.68040107641289e-09,2.6031721871692152e-08,2.427832520187851e-07,1.3129373400842817e-08,2.5163443955599824e-08,5.899942061179281e-07,1.5977926775285973e-08,2.7451591897287976e-08,5.9475028179769e-07,2.154380832647627e-07,2.235798154719608e-07,2.3457113903002742e-07,1.0192173925207351e-07,1.0718730596108581e-07,1.143558649741266e-07,9.92330670035481e-08,1.0382384819880112e-07,1.10020183220798e-07 +1086,Thorium-230,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,2.8624872779425946e-05,6.465917360212687e-05,4.549982678869534e-05,2.4595876910430365e-05,5.414110922860393e-05,4.618077074446552e-05,2.0457731017407808e-05,4.4129539685316073e-05,0.00012871640119766967,2.0378776158817996e-05,4.4003997567923874e-05,0.00012937091608850832,1.0801307252816416e-05,2.3842656549270828e-05,0.00012955658168245558,2.3315115574835993e-05,5.049216980675679e-05,0.00013240373538163624,2.5688977905653124e-05,5.4123651157302113e-05,0.00013244010846877327,3.2893026230189e-05,3.435336561806843e-05,3.635057432205402e-05,2.8411363207673565e-05,2.9805232479563917e-05,3.170786977071696e-05,2.9411122797144103e-05,3.083721303626424e-05,3.279494575381172e-05 +1087,Thorium-232,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,3.363978655697246e-05,7.624515772809325e-05,2.163314564262403,3.1567636420567163e-05,7.077130146631533e-05,2.1633258268463695,3.693252638181419e-05,8.279849458714837e-05,2.163795887308128,3.704362490137376e-05,8.360511497368298e-05,2.163797742720659,4.26426877072826e-05,9.579597472124087e-05,2.1637916128978842,3.304445235888074e-05,7.456442615019663e-05,2.1638077219360903,1.9808438401049154e-05,4.327981946000171e-05,2.163806388414412,1.9130348135646402,2.4114517549014174,3.136532781338024,1.9130807863719803,2.4114996479713904,3.1365832615373956,1.9130828849226926,2.411501840924178,3.136585599619324 +1088,Thorium-232,"('air',)",emission,kilo Becquerel,biosphere3,2.3665980319576864e-14,5.582363572711385e-14,2.284787693905457e-06,1.3252620791988188e-08,3.894228858131823e-08,3.6936200384003516e-07,4.818137722877796e-08,1.1527397859696868e-07,3.9449717133814656e-07,1.320313646318602e-08,3.98973862346284e-08,3.8454563773214366e-07,1.3447027718853814e-08,3.8788254572818906e-08,3.787193925018386e-07,2.0600133726846683e-08,3.9067569990308e-08,9.264716971926763e-07,2.5071783875638313e-08,4.2660216760621136e-08,9.339387229088879e-07,3.385455544175915e-07,3.513397048400032e-07,3.6861178446195105e-07,1.6006381297802736e-07,1.6832523313549112e-07,1.7957140275890445e-07,1.558396301503187e-07,1.6304075662948423e-07,1.7275926178122236e-07 +1089,Thorium-234,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,7.254028252174958e-06,1.6931110410081835e-05,1.1213008647772818e-05,8.180719123181203e-06,1.8864669008424482e-05,1.9505116484271492e-05,9.114602317383197e-06,2.082151781109596e-05,0.00011412026593941393,9.074245812259053e-06,2.0872425288528335e-05,0.00011441602584085171,5.231124055379167e-06,1.2786378190274766e-05,0.00011378920323893992,1.0392451315727249e-05,2.3702455000725747e-05,0.00011703880620162433,1.1334059374994256e-05,2.4948726319224453e-05,0.00011655039719635839,8.273825516347819e-06,8.633332075981534e-06,9.12432528396113e-06,1.808461031555787e-05,1.8849503198771024e-05,1.9883461921877365e-05,1.8981301128012276e-05,1.9798822355760652e-05,2.0910391470467243e-05 +1090,Tin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,6.052083696566164e-07,6.764371331388768e-07,8.122219970613744e-07,6.121687777881708e-07,7.142335806121794e-07,9.139159386234159e-07,5.311405800822644e-07,6.219435557714683e-07,7.929417275689325e-07,5.39695783722266e-07,6.416856832260639e-07,8.320150578127268e-07,5.382759918866618e-07,6.520186335389838e-07,8.68506883433711e-07,5.416826372294588e-07,6.57118814778145e-07,8.679035927835812e-07,6.832549216074014e-07,8.371784186351128e-07,1.1189029138935252e-06,1.9812083789840578e-07,2.07667752154221e-07,2.2066377867791095e-07,4.180524117951063e-07,4.3930375654652275e-07,4.682365553247381e-07,3.144725026920096e-07,3.3032545725548155e-07,3.5194876349611703e-07 +1091,Tin,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,5.101012936767991e-09,1.1905020589556674e-08,7.885591004036673e-09,3.6350621211351602e-09,8.46511109918194e-09,5.4471165379499114e-09,2.9448131026057265e-09,6.747424160271609e-09,3.035165823648657e-09,2.9305065031539774e-09,6.680759401746592e-09,2.8923808897079886e-09,1.0459952056128136e-09,2.696589773539208e-09,3.128693358568499e-09,3.720172497437984e-09,8.330842916235775e-09,4.193251664147217e-09,4.0878676100326444e-09,9.063713059961273e-09,4.1543956396996475e-09,5.815596121388256e-09,6.068281274205372e-09,6.413387518510306e-09,2.436281923658601e-09,2.5668322656904592e-09,2.7433476027474685e-09,2.6537369722784656e-09,2.7998532477105487e-09,2.9979924245660216e-09 +1092,Tin,"('air',)",emission,kilogram,biosphere3,9.91419017243524e-09,1.5691646541978904e-08,3.192623570257716e-08,8.268403769407917e-08,3.603017469045657e-07,8.52734149597323e-07,7.208433250984518e-08,3.4535950956749194e-07,8.172706078282468e-07,6.327645028082102e-08,2.500041344159182e-07,5.866516798819994e-07,6.602054792468079e-08,2.5126180585691197e-07,5.8150204897269e-07,6.488681639517681e-08,2.3611187444058579e-07,5.59185644402953e-07,1.0338778476832685e-07,3.1240352515481893e-07,7.389750700420189e-07,2.1322917688925217e-08,2.342723847628477e-08,2.6414109116117016e-08,6.296562998802615e-07,6.671457359540787e-07,7.195049990625184e-07,4.89208031624592e-07,5.120459111037301e-07,5.432929536422481e-07 +1093,Titanium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.7197501077754898e-09,1.0940433624557857e-08,3.151878630881255e-08,1.449401866086719e-10,3.8282404625605267e-10,6.960247146755551e-10,1.8450958920825855e-10,5.286431491720397e-10,9.112126901650633e-10,2.0918155298092018e-10,5.573615997826156e-10,8.170193210571447e-10,1.1771246118438077e-10,3.324371097974509e-10,7.302361631730593e-10,1.2123281720077908e-08,2.2690738872339503e-08,5.117328785472211e-07,1.4749958062640846e-08,2.470269824017689e-08,5.140713781580627e-07,2.3773335931382683e-08,2.5167496632334234e-08,2.7115252894901134e-08,5.365974249368019e-08,5.628855747718928e-08,5.982202231529772e-08,5.426898091213629e-08,5.694410217479919e-08,6.055137719509504e-08 +1094,Titanium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.5978271024968552e-06,3.7290955240467163e-06,2.4700605924304372e-06,1.138636739848663e-06,2.651587836253963e-06,1.7062396211297162e-06,9.224250587408185e-07,2.1135443610600695e-06,9.5072689356474e-07,9.179436993540342e-07,2.092662477675328e-06,9.060013383296203e-07,3.2764462645396555e-07,8.446722741269439e-07,9.800231982484807e-07,1.0863481304393375e-06,2.4682723947294895e-06,9.520987374484129e-07,1.1878328724703317e-06,2.662138046910227e-06,8.987703476834783e-07,1.8216611493671789e-06,1.9008115438528543e-06,2.0089116640146243e-06,6.131843807696229e-07,6.371489300592315e-07,6.694949144846859e-07,6.81945388971675e-07,7.09839718288992e-07,7.477638933744456e-07 +1095,Titanium,"('air',)",emission,kilogram,biosphere3,1.4558637090635781e-08,1.4932342407881695e-08,1.921824981744229e-08,5.841191995258263e-08,2.2648858780196518e-07,5.240308514589684e-07,5.271252978899276e-08,2.182003749437685e-07,5.037208868689767e-07,4.722432458560601e-08,1.5942108870931112e-07,3.6162520978078145e-07,4.891118687518092e-08,1.5974496454677267e-07,3.57210535343854e-07,4.8133133410856975e-08,1.5023949450293822e-07,3.4348982976913125e-07,5.5854835460268006e-08,1.6156953929292782e-07,3.5453378342940997e-07,1.3919187176721907e-09,1.473502068787681e-09,1.5874915328887437e-09,2.9423471323876313e-07,3.072497446385737e-07,3.249751296149614e-07,2.8931276541003553e-07,3.021284442096962e-07,3.195973181214701e-07 +1096,Toluene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.341575214271614e-06,5.398538947553539e-06,5.1375596802431095e-06,2.9724019996987288e-06,6.765335899776025e-06,6.675116362801443e-06,3.709545088742903e-06,8.656016936546968e-06,1.3300475160660526e-05,4.0961375018019784e-06,9.40476236278963e-06,1.422257932264822e-05,6.847333549596122e-06,1.5315467427742357e-05,1.4943426916226021e-05,5.368514176572221e-06,1.2034809285740102e-05,2.5259301156551848e-05,4.485164826406255e-06,9.827167536350494e-06,2.369544478840717e-05,4.910526211921438e-06,5.140689016459431e-06,5.455468926611394e-06,6.624798897591324e-06,6.931479153557339e-06,7.3443202406129654e-06,8.175124907896428e-06,8.56292346474528e-06,9.087944474008231e-06 +1097,Toluene,"('air',)",emission,kilogram,biosphere3,9.652532152214056e-08,4.933708063701181e-07,2.785978806704194e-06,5.4512833690479555e-06,1.151176921949064e-05,2.150131154762801e-05,2.3752181448959426e-06,5.066387125057354e-06,1.1186832039314387e-05,2.4701335978078904e-06,5.506925451302753e-06,1.2797682645740767e-05,2.770376032773519e-06,6.636945017461897e-06,1.5440639099938693e-05,2.630401718726144e-06,6.375071806208232e-06,1.4994920454370742e-05,3.1470772203500464e-06,6.90018504318789e-06,1.6561557568834035e-05,2.328279164890138e-06,2.4091608244796345e-06,2.518414542475271e-06,1.2146606450039021e-05,1.3160087146248872e-05,1.4508421629974155e-05,1.1466979544465987e-05,1.2328912327080432e-05,1.3463609500510615e-05 +1098,Tungsten,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.166092068760069e-11,5.0553431266548567e-11,3.348534171677829e-11,1.543591309584176e-11,3.5946213549936995e-11,2.3130613645861275e-11,1.2504842454005957e-11,2.865223467658731e-11,1.2888515883374699e-11,1.2444090967930708e-11,2.8369149715490186e-11,1.2282194517121442e-11,4.441709812503312e-12,1.1450787912939338e-11,1.3285670829551062e-11,1.4697745166719456e-11,3.3396808716164116e-11,1.2803032990909862e-11,1.6068342908011246e-11,3.6013445467675774e-11,1.2064467633336481e-11,2.4695323835716384e-11,2.5768325045480527e-11,2.723378280384243e-11,8.238364320747027e-12,8.559608263589575e-12,8.993185773059889e-12,9.173449153831597e-12,9.548311727240129e-12,1.0057968911427868e-11 +1099,Tungsten,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,9.89449426810664e-09,2.30923072558192e-08,1.5295772808977014e-08,7.050972389487872e-09,1.6419874721601936e-08,1.0565835474475217e-08,5.71208831836721e-09,1.3088057334047164e-08,5.8873465450948e-09,5.684337640562934e-09,1.2958746924472364e-08,5.61038494353018e-09,2.0289290990189676e-09,5.2306066321265636e-09,6.068762995322845e-09,6.713784582408755e-09,1.525533181565493e-08,5.848298805527539e-09,7.339860070845418e-09,1.6450585596478113e-08,5.510929457073558e-09,1.128057960584321e-08,1.1770715942702847e-08,1.2440122548176382e-08,3.7632033168124135e-09,3.909944371729531e-09,4.107998288528934e-09,4.190340817446848e-09,4.361574332338195e-09,4.59438069186502e-09 +1100,Uranium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,8.949988052091266e-12,3.605096895636797e-11,1.0401292670011821e-10,5.24009669899706e-13,1.503439716604709e-12,2.7983809913068675e-12,7.581492239182072e-13,2.3876233357905567e-12,4.367423608385486e-12,8.108515589812843e-13,2.3465549844851355e-12,3.729710546300909e-12,5.294332750803262e-13,1.5796365381358304e-12,3.3343673919313525e-12,3.5967127537654267e-13,1.20726313889673e-12,3.356422756907242e-12,4.2318359119224064e-13,1.2647938356883302e-12,3.534399958194544e-12,7.845340804176887e-11,8.305470718593502e-11,8.948313842383913e-11,2.526029666609454e-12,2.7563137450928594e-12,3.0636174965571996e-12,2.460309136273306e-12,2.6716821653033767e-12,2.952109136543528e-12 +1101,Uranium,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,2.7621162244103193e-13,1.827376958770172e-12,2.6459682323869592e-12,1.982786538669963e-13,1.6209056960622214e-12,2.3109452342902056e-12,2.2381469268514667e-13,1.728664697013295e-12,2.515222895073104e-12,1.2663114956034858e-13,1.367687676244283e-12,1.806698678435389e-12,2.03997620571204e-14,3.0472662591988767e-13,4.2680329736500914e-13,2.3373554925347274e-14,3.0663666020979557e-13,4.311290457581485e-13,0.0,0.0,0.0,6.568095853890429e-14,7.414637641229928e-14,8.628245647852185e-14,6.514160388903683e-14,7.3554516857858e-14,8.561764436238162e-14 +1102,Uranium alpha,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0003936778797339272,0.0009188740387785849,0.0006081399765054616,0.0003498860989386931,0.000814789844827134,0.0005242230806593704,0.0002843831979006915,0.0006516041655033769,0.00029303018184678763,0.00028300158572613053,0.0006451656244816801,0.00027923995564625275,0.00010100517395053032,0.0002603946973720238,0.00030212898967884585,0.00033425649123580204,0.0007595093869623938,0.00029114987125473214,0.00036542653173456856,0.0008190195212900036,0.00027435312459318773,0.00044929477301388954,0.00046881705492572256,0.00049547973738735,0.0001873351157860071,0.00019463972503846953,0.00020449863842557782,0.00020859905544852634,0.00021712295609621914,0.00022871191905549654 +1103,Uranium-234,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,8.614448820771779e-05,0.00019890283918291588,0.031426627766560584,6.846194875094924e-05,0.00015611614887589133,0.03141105221945242,5.8308298675532336e-05,0.0001307960814691096,0.0315605846686846,5.804957698503889e-05,0.0001300611936755101,0.031560112308963766,2.615877166895116e-05,6.276311829658616e-05,0.031562028390381414,6.74959131868264e-05,0.00015096627284907942,0.031566876932453664,7.396384781282512e-05,0.00016188483014944295,0.03156472684496042,0.03355923465788149,0.034984384869383545,0.036908405691113616,0.03352571030998573,0.034949426561317554,0.036871462874552265,0.033529746154853726,0.03495366987198489,0.03687601275589087 +1104,Uranium-235,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,4.091507193594818e-06,9.548981336120127e-06,6.325008919851539e-06,2.915672427921984e-06,6.789840230700848e-06,4.369115842349e-06,2.4724594798051676e-06,5.665124491115814e-06,2.5483194525392513e-06,2.4604476861171376e-06,5.609152886656677e-06,2.4284374935836983e-06,8.782155851112312e-07,2.2640516448508e-06,2.6268449929646305e-06,2.9060405601171357e-06,6.603222440364906e-06,2.531417761164568e-06,3.1770353680022453e-06,7.120584283609444e-06,2.3853884987822307e-06,4.664672221258913e-06,4.867350225307207e-06,5.144158909972992e-06,1.6288907307598659e-06,1.69240713528356e-06,1.7781341508350914e-06,1.8137758557395873e-06,1.8878937446020174e-06,1.9886632457877166e-06 +1105,Uranium-238,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.00017043061954360398,0.0003897927192226965,0.005919045272161439,0.00014974443260576116,0.00033794900679268966,0.005926809498810723,0.00015662083375010512,0.0003507461927483032,0.007434388864406506,0.0001567681563874139,0.00035249587701255235,0.007439409598802639,0.00013959306089764568,0.00031712702894236175,0.007423039762182222,0.0001556627516009151,0.0003494856644598936,0.007475091310414804,0.00012727754287845575,0.00027777396601880806,0.007469169277904043,0.005207555469141361,0.006533689884753156,0.008462367313943007,0.005305857464849804,0.006635973530435068,0.008569958248526788,0.005315817904753609,0.0066464674471103605,0.008581256027766009 +1106,Uranium-238,"('air',)",emission,kilo Becquerel,biosphere3,7.866249610477774e-14,1.8555016403437545e-13,7.594323196806633e-06,4.392797095413762e-08,1.286290131442077e-07,1.2265352683157375e-06,1.6006154770637917e-07,3.824386914775641e-07,1.3102333238006717e-06,4.378680623576563e-08,1.3184754705718685e-07,1.2770616508264295e-06,4.464135112262443e-08,1.283239343256086e-07,1.25801592767215e-06,6.846298860375036e-08,1.297197079241955e-07,3.0792772508855333e-06,8.33248164246414e-08,1.4166031114624024e-07,3.1040946756708204e-06,1.1252793263668834e-06,1.1678053403136196e-06,1.2252153812027303e-06,5.320025636099552e-07,5.594586980313277e-07,5.968341232794999e-07,5.17962208912506e-07,5.418940955980094e-07,5.741918056028542e-07 +1107,Vanadium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,8.672116930182561e-08,2.0232528520845363e-07,1.1248273956913665e-07,1.5053485510489502e-07,3.6234125780880503e-07,2.604195234483699e-07,1.7139205523024051e-07,4.103559797263784e-07,1.7107576028465151e-06,1.7090903054198972e-07,4.0362875994563877e-07,1.6913346320068024e-06,1.9540303325245286e-07,4.518884655833023e-07,1.6641580827321523e-06,1.4737194743821683e-07,3.451864641032716e-07,1.8028631777194997e-06,8.815252210320747e-08,2.0503206340440444e-07,1.8081817035621606e-06,9.360164494010183e-08,9.776515270606116e-08,1.0345478689680977e-07,3.1575929759600246e-07,3.298171297260922e-07,3.489682733882774e-07,3.169099071666175e-07,3.3042723694505833e-07,3.488583822069912e-07 +1108,Vanadium,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.5176015516982832e-07,3.5418607891756346e-07,2.346040932620937e-07,1.0814667541859665e-07,2.51845385833362e-07,1.6205707758651827e-07,8.761108783375792e-08,2.0074250900135973e-07,9.029917020210229e-08,8.718545242074645e-08,1.9875916682953587e-07,8.605117790076186e-08,3.111938674530469e-08,8.022619951401662e-08,9.308170640772876e-08,1.0332021975603028e-07,2.347805565284305e-07,9.095698230518258e-08,1.1296979528346746e-07,2.5334779914242646e-07,8.612764837725848e-08,1.7301970812084267e-07,1.8053734010765112e-07,1.9080459052701346e-07,5.8515407975845415e-08,6.080668843446607e-08,6.389924362082503e-08,6.497435456684653e-08,6.763350828460571e-08,7.12488400569244e-08 +1109,Vanadium,"('air',)",emission,kilogram,biosphere3,1.1822728273769602e-08,6.837765895326701e-08,9.424157312911133e-08,1.9127012147017762e-08,1.0245645563091679e-07,1.6703844399174795e-07,1.814754033598369e-08,9.936263126313322e-08,1.6138633627920838e-07,1.7129353754369797e-08,8.982708709387282e-08,1.390220588172057e-07,1.740678405294345e-08,8.993028585596228e-08,1.3833073594851256e-07,1.7096811791634134e-08,8.770172834530724e-08,1.3706212452131753e-07,2.8472275032789137e-07,2.847821821550728e-06,1.1019565613576731e-05,5.421747142046633e-09,5.710891456393109e-09,6.112248793446329e-09,1.0514738324542675e-05,1.1685647116503773e-05,1.337870171957549e-05,4.890955051628798e-08,5.112370852073688e-08,5.414794645496024e-08 +1110,Xenon-131m,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.00046628402751303804,0.0012310283870490871,0.0029427238061038308,0.0008337679987393256,0.0023774107338036224,0.005017862438576785,0.0265408292513181,0.05793622172108603,0.006186940713974653,0.026508847429913964,0.05782030688404917,0.005945263536513749,0.0004903207537823427,0.0015311482950245568,0.0032635600007205794,0.028475229213482268,0.06214044394962533,0.00635188897633228,0.03332196108747288,0.07243877374385914,0.006495575733195435,0.002469173021048505,0.002575155683394552,0.0027197706566534615,0.004157802146513967,0.004326933292429247,0.004555642951435463,0.004360000949224582,0.0045471689689241,0.004802100616843854 +1111,Xenon-133,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.015655872280919986,0.04026537516153738,0.09658476873645434,0.47053031537807494,1.054605306558666,0.347627258024808,0.45078614909453235,1.012967976375416,0.43605794864923453,0.44933428597907266,1.0069867305084583,0.4223430705725889,0.041429591290814305,0.13424043696593113,0.42904119658234524,0.4862981397967695,1.092561961174985,0.45108350586527407,0.564666401516471,1.2515726363727036,0.44366197158383774,0.08063123411114541,0.08408767759083102,0.08880369618149703,0.24742106222088148,0.25749271526373224,0.27109402583029146,0.26455029657752693,0.2757670973563518,0.2910224566848858 +1112,Xenon-133m,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,4.644102169580189e-05,0.00014487838346691206,0.00033939902998657295,3.2824438083307324e-05,0.00010984920244028018,0.0002734280792878618,0.0009151878183827543,0.002011037649365837,0.00028027124590593425,0.000913583169202272,0.002004221842990625,0.00026603554550867894,2.566052670346694e-05,8.686637349775328e-05,0.00019089757963688017,0.0009839125314131056,0.002158544057416739,0.0002729612234140138,0.0011477562658796304,0.002504057321216273,0.00026696492261390505,0.00029335410314886473,0.00030603811797332947,0.000323352989313277,0.00018621881393905302,0.0001936102012854303,0.00020359858697905579,0.00020418625150372274,0.0002127179450199769,0.00022433060211314929 +1113,Xenon-135,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.006356238591407252,0.01642488123133467,0.03937378300287325,0.1330558633593093,0.30016480440797655,0.11647000156410359,0.24555550275139107,0.5437060587138925,0.14682353150343905,0.24502023216993274,0.5415890235618251,0.14206816308099626,0.013453274201428759,0.0432096044167881,0.13125829109097545,0.264141031116345,0.5848011759492912,0.15197743570931035,0.30796463568366417,0.6759086856498984,0.1508224141113585,0.03290057915290137,0.034311268413375375,0.03623605827315675,0.08617500441727839,0.08968616130284965,0.09442930109909248,0.09158267328473545,0.09548053989750165,0.1007836105477856 +1114,Xenon-135m,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.0038503623584162155,0.009822448464314565,0.023586800085436274,0.007600182617340474,0.02119921504446734,0.04353659143216974,0.24569851409270083,0.535952311204833,0.055331098916233994,0.24541702027050252,0.5349611042839386,0.0532652050249506,0.0042848834417453146,0.013185020353826255,0.027936272334164354,0.26354725895076103,0.5747987569700576,0.05723554722974259,0.30851062115930833,0.6704129895354839,0.058883737757180026,0.019659193236861938,0.02050158658140775,0.021650932299512825,0.037245984711289794,0.03876641016915038,0.04082261888811174,0.03879850365741577,0.04047084970772431,0.042748893441094046 +1115,Xenon-137,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,9.369086137459241e-05,0.00021564303761399583,0.000525348604437931,0.00023826597426253055,0.0006533178924504969,0.001312220512665568,0.00779264358435793,0.01698935159466016,0.0017091670722008535,0.007784058521854177,0.016959840087735524,0.0016476771119049093,0.00012992017210446146,0.0003949029952974642,0.0008324951560419565,0.008357357799270444,0.018219684334602165,0.0017784497743193197,0.009785671243825752,0.02125876894839862,0.001838206245213068,0.0004286031737688998,0.0004468680151066447,0.00047178022422882733,0.0011520289653380084,0.0011991858088706668,0.0012629649887854174,0.001193756889069302,0.0012453779350791402,0.0013157009195843802 +1116,Xenon-138,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,0.000758944301710896,0.0018122025188298764,0.0043915528353026066,0.0017808249524806296,0.004907357337924381,0.009921543830277862,0.058048427793333114,0.12657529113408003,0.012829565450414325,0.057983743579329526,0.12635133911825808,0.012362898469971068,0.0009805765802841729,0.002991442539957119,0.006315815774962748,0.06225801177381412,0.1357439043703496,0.013326677455506428,0.07289291241904133,0.15836842992502823,0.01375581725049711,0.0036111526827180777,0.0037653558590880066,0.00397570537570162,0.008644196085791868,0.008997751092182439,0.009475920540136035,0.008971091490655683,0.009358657992853932,0.009886624787377332 +1117,Xylene,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,1.756734636304925e-05,4.014558301262192e-05,1.674120002608554e-05,1.7563138130640668e-05,3.9288238513270604e-05,1.1245558008678464e-05,1.9886482745600722e-05,4.4560280931041275e-05,6.5965403012319e-05,1.9881016012058885e-05,4.4464388212716287e-05,6.593404861802779e-05,2.3386747935889613e-05,5.220476747481436e-05,6.610142159653082e-05,1.735621325467231e-05,3.9026020621337146e-05,6.70605209336557e-05,7.214814599253325e-06,1.6507486488102366e-05,6.479315846908702e-05,1.4025403198823337e-05,1.4658378139874543e-05,1.5525071673151847e-05,1.313431290013631e-05,1.3673148598973134e-05,1.4401237256805267e-05,1.488961117772532e-05,1.5527883199893593e-05,1.6396520777599745e-05 +1118,Xylene,"('air',)",emission,kilogram,biosphere3,7.299872616093508e-08,4.479151068773078e-07,2.88895464488165e-06,3.2340577258624396e-06,7.022199140869467e-06,1.4202428883859085e-05,1.4739907643023295e-06,3.339157881403789e-06,8.172890702594299e-06,1.48546743191531e-06,3.5015301872093922e-06,9.098200336797575e-06,1.6555003753394047e-06,4.141944788282108e-06,1.0600044161056571e-05,1.680120265022048e-06,4.257768767923668e-06,1.0953007176710422e-05,2.2560919688168447e-06,7.545181296451486e-06,2.4246962500933756e-05,2.257283158264902e-06,2.3354379755975465e-06,2.441003131351072e-06,2.0897467104926414e-05,2.2838748936669616e-05,2.5569225473071995e-05,8.63223787906821e-06,9.201781197613254e-06,9.954105262465216e-06 +1119,Zinc,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,9.824197490151832e-06,1.199389978808706e-05,1.5942428955794304e-05,9.742711776202035e-06,1.2082147304305774e-05,1.5416850054701633e-05,8.735593985342176e-06,1.1574632113704656e-05,1.8916537998540906e-05,8.785766695098083e-06,1.1688619368885512e-05,1.913781731909941e-05,8.880183106061532e-06,1.219881400985957e-05,1.9966968065139493e-05,8.721902732367013e-06,1.1627696053330812e-05,1.9378024581756433e-05,1.0055239246484916e-05,1.1800447005454174e-05,1.9536929618510385e-05,6.250896070271471e-06,6.7903634824964084e-06,7.5518903128522414e-06,5.579302534945877e-06,6.0914418539285056e-06,6.815799646694029e-06,6.722508988557369e-06,7.290763656159726e-06,8.09192156647777e-06 +1120,Zinc,"('air', 'low population density, long-term')",emission,kilogram,biosphere3,1.5710852183702988e-07,3.6666838673063115e-07,2.428720653355298e-07,1.1195800542972428e-07,2.6072097885070983e-07,1.6776833039155422e-07,9.069869794359778e-08,2.0781712267862793e-07,9.348151432918239e-08,9.025806218945583e-08,2.0576388310576502e-07,8.908381330599672e-08,3.221610333110223e-08,8.30535496910304e-08,9.636211331577874e-08,1.0922351874905459e-07,2.480470230113384e-07,1.1052749214146656e-07,1.1958308564693466e-07,2.674644317955533e-07,1.054722830188576e-07,1.7911730881983544e-07,1.8689987894541164e-07,1.9752897019818103e-07,6.770151471758891e-08,7.094814655735014e-08,7.53366052259179e-08,7.466002908556477e-08,7.836311840129248e-08,8.338966154408896e-08 +1121,Zinc,"('air', 'lower stratosphere + upper troposphere')",emission,kilogram,biosphere3,9.1532684690394e-15,2.32357171935713e-13,6.701844945205064e-13,1.4903723657276928e-14,3.510961667679485e-14,5.4727376090810856e-14,6.926152074947336e-17,1.5028340419477408e-16,7.125590910219852e-16,2.519176524708867e-15,6.0108266858563074e-15,5.475204977872783e-12,7.241710211861462e-16,2.0337053226855942e-15,2.1066252285775885e-13,7.092362995339692e-16,2.005980149277991e-15,2.1366759585470507e-13,1.6193600093202017e-14,7.248411382489951e-14,1.5089369217571853e-12,6.851818189383499e-13,7.140275589886473e-13,7.527144791536774e-13,1.578207833559224e-12,1.6486004783353879e-12,1.7440489495918763e-12,2.2741687361782595e-13,2.372002851786248e-13,2.504251482947983e-13 +1122,Zinc,"('air',)",emission,kilogram,biosphere3,9.388378769439405e-07,1.609417216151893e-06,3.5255372880121415e-06,1.1595499814344237e-06,2.6140740566980407e-06,5.681367552423678e-06,1.120352452242181e-06,2.5541665703336494e-06,5.505504383948262e-06,1.0914289626864398e-06,2.2431318501022812e-06,4.762240617758057e-06,1.1013327569987528e-06,2.2915587008551246e-06,4.855957270217971e-06,1.1240207378297834e-06,2.288602336450153e-06,4.844619354880578e-06,1.2679786652199632e-06,2.593711962339621e-06,5.541122090856916e-06,2.2346008656209732e-06,2.349294742245391e-06,2.5074454445953223e-06,3.917061698852871e-06,4.118775422063225e-06,4.396773707941695e-06,3.427827004042981e-06,3.5872408337688225e-06,3.8051504981501156e-06 +1123,Zinc-65,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,6.95593470289694e-10,1.537407785604891e-09,3.76811721603192e-09,1.9140533357870554e-09,5.2241487117936835e-09,1.0428779021809842e-08,6.279285632361281e-08,1.368804513151933e-07,1.3675715820763185e-08,6.272440318326142e-08,1.3664672084981197e-07,1.3188758470158838e-08,1.0342469274756054e-09,3.1328966340159527e-09,6.595009629480082e-09,6.734038280589853e-08,1.4679076806171534e-07,1.4252771387315434e-08,7.885442602609266e-08,1.7129347191590494e-07,1.475010744920844e-08,3.0466474112635323e-09,3.176173670258011e-09,3.352815718324805e-09,9.221108436629379e-09,9.598843913484242e-09,1.010973773887751e-08,9.54146628522101e-09,9.954425305282085e-09,1.0517008613092142e-08 +1124,Zirconium,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,2.1694903230570537e-10,8.737566728750191e-10,2.520775265869577e-09,4.580676896503661e-12,1.314716723522783e-11,3.117709079119117e-11,4.4396946970548124e-12,1.2840720931536315e-11,2.3969646928426642e-11,4.788464780752051e-12,1.3525030841458143e-11,2.4221312519058836e-11,2.61779297355641e-12,8.61770866972645e-12,2.312959259874911e-11,3.001552219230558e-12,9.588377885894409e-12,2.481258064932107e-11,3.500554581120466e-12,1.0260513394040872e-11,2.6130880788252765e-11,1.9013345023941583e-09,2.012845292963869e-09,2.1686354727155983e-09,1.6755715943311068e-11,1.982966260877591e-11,2.3779802047806574e-11,1.6555454312251325e-11,1.9638257975983495e-11,2.360517253134869e-11 +1125,Zirconium-95,"('air', 'non-urban air or from high stacks')",emission,kilo Becquerel,biosphere3,6.799162786846996e-10,1.50275789883695e-09,3.683191910381492e-09,4.3991891479659686e-08,9.782419801109549e-08,2.636333647002219e-08,1.1314982121552513e-08,2.7352141563016634e-08,3.371948476703355e-08,1.1218823347051533e-08,2.6943636028720144e-08,3.274892133415756e-08,3.2994312294685443e-09,1.0709507988135002e-08,3.645230101456508e-08,1.237606369783674e-08,2.9905558054489366e-08,3.507434021140967e-08,1.4093163522638102e-08,3.2858896555895775e-08,3.42885347056016e-08,2.977982494147481e-09,3.10458950826637e-09,3.2772504223341828e-09,1.8313427867630264e-08,1.9060678128572022e-08,2.006947348485531e-08,1.961309885286375e-08,2.0443731238812894e-08,2.1573013010949795e-08 +1126,Aluminium,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.8665509913176403e-06,9.144955962781009e-06,1.1142141978650995e-05,3.579470831774447e-06,6.458643006731681e-06,1.406285846583218e-05,6.979352795453303e-06,1.883675172607006e-05,1.921610030875721e-05,9.349201446488324e-06,2.349416972698503e-05,1.9024080828084053e-05,2.4550478475494533e-05,5.5090797518091513e-05,1.7198976377242647e-05,1.736182447269759e-05,3.948341140409239e-05,1.646594339031296e-05,2.1738060870372217e-05,5.423845244067758e-05,2.5887863637618124e-05,1.0785095553801172e-05,1.1193956474944275e-05,1.1748664848738097e-05,1.590116609982363e-05,1.657199791618862e-05,1.7485194949795364e-05,1.4354582928193797e-05,1.4937501112265149e-05,1.5731460833925286e-05 +1127,Aluminium,"('soil', 'industrial')",emission,kilogram,biosphere3,4.852142775089507e-06,2.8040587077569998e-05,0.00010627359868353758,4.245451510192344e-06,2.698981586542765e-05,9.736481996800782e-05,3.235351692788634e-06,2.6162701831102127e-05,0.00010076038786684464,3.1980363103775572e-06,2.579202242486295e-05,9.99873043700096e-05,3.162820517279183e-06,2.4750701992088413e-05,9.40417258402155e-05,5.818439420803463e-06,3.090231963007902e-05,0.00010752603883362908,6.179447267473957e-06,2.914436310741372e-05,0.0001005038666181752,9.744552731931858e-05,0.00010813437403792482,0.00012355407213685582,9.081204527497398e-05,0.00010039422941547064,0.0001141669865303293,9.880444569581508e-05,0.00010906631196784593,0.00012380324681458786 +1128,Aluminium,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.8940985185268965e-08,9.140023407278586e-08,2.18163229297948e-07,1.648494123699022e-08,8.782947585509024e-08,2.0939770439878729e-07,1.4110105840612413e-08,6.241695550892772e-08,1.4796991455759533e-07,1.4836815110668737e-08,6.255412045978964e-08,1.4608541481877293e-07,1.9967077550406384e-05,3.721605636162318e-05,0.0008487874516316103,2.4317758433283222e-05,4.055144379154907e-05,0.0008526321745853725,0.0,0.0,0.0,8.831828358085806e-05,9.259207842127107e-05,9.833878101280084e-05,8.933687137460329e-05,9.369065455990029e-05,9.956424926829348e-05 +1129,Antimony,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.2195312071015053e-12,5.040478888884509e-12,1.2298515395248194e-11,1.6228410609575267e-12,5.153089591621308e-12,1.3414962478821697e-11,1.4469802704164603e-12,4.8667747695144575e-12,1.2624576089267079e-11,1.4547104509468789e-12,4.8777094739857985e-12,1.2657530755556902e-11,1.4539383481999944e-12,5.381382303483816e-12,1.299332864342701e-11,1.428380114384123e-12,5.253249672673934e-12,1.2804732673284647e-11,1.7341867275124771e-12,5.9448346469674736e-12,1.427704453349995e-11,1.1471447729673822e-11,1.1944698852630358e-11,1.2578671692878325e-11,1.1587105011145208e-11,1.2118757548239966e-11,1.2832840656494789e-11,1.1333886185006675e-11,1.183605504451456e-11,1.2511359506356395e-11 +1130,Antimony,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8437791290611091e-09,4.361652743639965e-09,1.1774109780237636e-08,2.0038232935502296e-09,4.644900426165629e-09,1.2285672044008356e-08,0.0,0.0,0.0,6.18487769971105e-09,6.789213953058155e-09,7.609782468841782e-09,6.2345168189328555e-09,6.871145834530753e-09,7.73277909331879e-09 +1131,Antimony,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.1683886159151157e-10,5.638092364532048e-10,1.345756880172542e-09,1.0168856937864255e-10,5.41782750065704e-10,1.2916860779606878e-09,8.703920098748631e-11,3.850235243404523e-10,9.127637069684846e-10,9.152198674307744e-11,3.858696576613774e-10,9.011389553012079e-10,9.121034281511285e-10,1.8927275020029934e-09,3.585602282318848e-08,1.1119891397798863e-09,2.060411083414539e-09,3.604396029116855e-08,0.0,0.0,0.0,4.417389696261796e-09,4.627892640693533e-09,4.9115300327799686e-09,4.446164750575355e-09,4.659415899786615e-09,4.947574328596067e-09 +1132,Arsenic,"('soil', 'agricultural')",emission,kilogram,biosphere3,9.189010391134416e-10,2.611054051116417e-09,2.73970514562821e-09,5.150709793458542e-09,1.047086401937996e-08,1.772107008313775e-08,4.014552189489594e-09,9.336794764612492e-09,1.118836441772151e-08,4.7779901149640554e-09,1.1175231128367362e-08,1.1979932236514558e-08,7.909609962988342e-09,1.8114006997535867e-08,6.685480052096208e-09,5.602902830712541e-09,1.3089819672460944e-08,6.425671599694583e-09,6.9619607296716415e-09,1.6679555430113393e-08,7.887144921792035e-09,2.5493911868225107e-09,2.6501944476859553e-09,2.7864416059099857e-09,6.0836805835861046e-09,6.344477982203938e-09,6.697141939628563e-09,5.7806276315672075e-09,6.023903265404403e-09,6.353112763393095e-09 +1133,Arsenic,"('soil', 'industrial')",emission,kilogram,biosphere3,1.940857167688344e-09,1.121623508179699e-08,4.250944035058456e-08,1.6981806377466285e-09,1.07959265602205e-08,3.8945928759380324e-08,1.2941407027737834e-09,1.0465080939928368e-08,4.030415594583738e-08,1.2792145495137495e-09,1.0316809174495379e-08,3.999492254097946e-08,1.265128231994779e-09,9.900280993126144e-09,3.761669108190587e-08,1.979877219934478e-09,1.1363933482478995e-08,4.0250313425440956e-08,2.0915600230838892e-09,1.069265888437494e-08,3.748543801569015e-08,3.8978211719464145e-08,4.325375049292404e-08,4.942162985654068e-08,3.472894831986726e-08,3.842484391141293e-08,4.37483734789962e-08,3.7871891568139956e-08,4.182743915019074e-08,4.7520922873818605e-08 +1134,Arsenic,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,2.426909137785205e-10,1.1193651985063796e-09,2.6155043628325492e-09,2.382809290813193e-10,1.1334782259088837e-09,2.5783978292615926e-09,1.8574990438799693e-10,7.796412272612316e-10,1.7977618869685488e-09,1.9398481768492322e-10,7.809419682245053e-10,1.7764211903927827e-09,2.9400229171593333e-09,5.854045529989832e-09,1.186769128821613e-07,3.5784904895586876e-09,6.370485162876375e-09,1.192616092916723e-07,0.0,0.0,0.0,1.3660865640633468e-08,1.4315952055343604e-08,1.5197963885513376e-08,1.3777453229929617e-08,1.444262375494235e-08,1.5340924967068296e-08 +1135,Barium,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.1525357199025245e-10,2.9986455229315165e-10,1.916850628715799e-09,1.1937414689902893e-10,6.476530794903594e-10,2.5856823694808103e-09,9.62716934419179e-11,6.084873244713107e-10,2.5277065036889636e-09,9.547541540616676e-11,5.99090331245362e-10,2.5134567751985175e-09,9.332989413039647e-11,6.025829471867696e-10,2.5045692907164605e-09,9.28996458103945e-11,5.694637700970167e-10,2.2461961334008583e-09,9.434867628024714e-11,5.489491927562146e-10,2.1992878847924725e-09,1.6471781026514556e-09,1.9243565271687363e-09,2.3247659818774666e-09,2.0159406220267354e-09,2.279999594538171e-09,2.6617083280244608e-09,2.09022255849299e-09,2.361933004083862e-09,2.754748827154841e-09 +1136,Barium,"('soil', 'industrial')",emission,kilogram,biosphere3,2.4260713871026824e-06,1.4020293538284008e-05,5.3136799342321955e-05,2.122725755096215e-06,1.3494907932713475e-05,4.8682409984003445e-05,1.6176758463940923e-06,1.3081350915549801e-05,5.038019393341931e-05,1.599018155188888e-06,1.2896011212432073e-05,4.999365218500587e-05,1.5814102586394527e-06,1.2375350996043087e-05,4.702086292010397e-05,1.748150598523219e-06,1.2739032056075191e-05,4.772851060307575e-05,1.7423325554295847e-06,1.1725597477718937e-05,4.406705463629378e-05,4.8722763661072e-05,5.406718702047198e-05,6.177703607007682e-05,4.1620486905120496e-05,4.614565679881622e-05,5.267166772719567e-05,4.556987405787068e-05,5.042100436424002e-05,5.741141102694421e-05 +1137,Barium,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,7.329616324167541e-09,3.5369297391782016e-08,8.442310226466695e-08,6.379197019797627e-09,3.39875163744225e-08,8.103109263230596e-08,5.460199275120859e-09,2.4153552418591968e-08,5.7260187833179844e-08,5.741420676923447e-09,2.4206636038684805e-08,5.653092364905941e-08,9.64556712361013e-08,1.918066860745195e-07,3.918218977844352e-06,1.1754412010450721e-07,2.0887532051208276e-07,3.937560036451908e-06,0.0,0.0,0.0,4.5054469507842476e-07,4.7214357518694064e-07,5.012228856658592e-07,4.543571520475284e-07,4.762859094924767e-07,5.058986005418275e-07 +1138,Beryllium,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5938560497126953e-10,3.617435933794098e-10,6.021419159690141e-10,1.918261685875625e-10,4.013371654749062e-10,6.473014042947585e-10,0.0,0.0,0.0,4.678097405472487e-10,4.881270450548334e-10,5.155960716754599e-10,4.633354726927695e-10,4.829779916920445e-10,5.095338349090261e-10 +1139,Beryllium,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.188736157865877e-09,2.213777293767246e-09,5.0560761153674486e-08,1.4477419818945297e-09,2.412199969450122e-09,5.078953631599502e-08,0.0,0.0,0.0,5.254288376083831e-09,5.508579419842305e-09,5.8505028502446206e-09,5.3151024387730385e-09,5.5741643797714365e-09,5.923654709747345e-09 +1140,Boron,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.7832201940992903e-11,6.571614164228743e-11,4.915276149530691e-10,2.753432884436498e-11,1.6248919804886222e-10,6.744091540309031e-10,9.921124429389752e-11,3.949379846202301e-10,1.0561194915047233e-09,9.807684507625235e-11,3.8728733311927365e-10,1.0406539601208732e-09,9.136434423074447e-11,3.6441530416947333e-10,9.954063813510816e-10,8.308341059388628e-11,3.406602885280516e-10,9.227488878355123e-10,9.403498284895575e-11,3.433056813316011e-10,9.159533795964897e-10,4.191381493536802e-10,4.948938670972451e-10,6.045080586612752e-10,7.274323741586389e-10,8.104577009440174e-10,9.299093660445845e-10,7.491160820335286e-10,8.343457222907026e-10,9.569850426744106e-10 +1141,Boron,"('soil', 'industrial')",emission,kilogram,biosphere3,4.852142761231892e-08,2.8040586996345414e-07,1.0627359837467574e-06,4.245451497836963e-08,2.698981578687998e-07,9.736481968464957e-07,3.235351683372392e-08,2.616270175495767e-07,1.0076038757359023e-06,3.198036301070138e-08,2.5792022349799453e-07,9.998730407901098e-07,3.162820508074262e-08,2.4750701920056264e-07,9.404172556652197e-07,3.8253765127345885e-08,2.615676517557452e-07,9.66929394640163e-07,3.8794776916345136e-08,2.41867957634146e-07,8.94284749128301e-07,9.744552703593047e-07,1.0813437372344196e-06,1.235540717775152e-06,8.410404266243804e-07,9.32002982458973e-07,1.0631454511828137e-06,9.200524563225955e-07,1.0175413319398882e-06,1.1579804463459435e-06 +1142,Boron,"('soil',)",emission,kilogram,biosphere3,1.774583983925921e-07,4.152517024046271e-07,5.286853453597215e-07,1.0109854983307046e-07,2.347029304574529e-07,2.8692811144816346e-07,1.0036404156061213e-07,2.3163585699948972e-07,2.7765514746582125e-07,1.0102135915843366e-07,2.3301331796012287e-07,2.784176010115656e-07,1.0052804562338043e-07,2.3331326545095245e-07,2.8286949733296555e-07,1.3005276590468548e-07,2.87579968549369e-07,1.561658050443093e-06,1.3700141601037774e-07,2.9200139666947213e-07,1.5662581251261463e-06,1.689785681756381e-07,1.7777006209682984e-07,1.8991750349557038e-07,2.0531042728853128e-07,2.1498325458575098e-07,2.2803233460031592e-07,2.0919718225237766e-07,2.1919855368694353e-07,2.3275157189844882e-07 +1143,Bromine,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.026388366082193e-09,4.51561382790603e-09,1.0000133679068274e-08,2.3036755511475446e-09,5.181193829263384e-09,1.0950386634252788e-08,0.0,0.0,0.0,5.760067095086308e-09,6.226236241833174e-09,6.8593507490688136e-09,5.667921811053147e-09,6.135437346662956e-09,6.769243734999768e-09 +1144,Bromine,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.1683886489268218e-09,5.638092523818193e-09,1.3457569181883842e-08,1.0168857225183656e-09,5.4178276537245285e-09,1.2916861144504616e-08,8.70392034469138e-10,3.850235352194994e-09,9.127637327553483e-09,9.152198932898983e-10,3.858696685642424e-09,9.011389807604027e-09,8.941945974779771e-10,3.6064734222435138e-09,8.646351591874734e-09,1.1005602706219591e-09,3.910093214808318e-09,8.94245098585792e-09,0.0,0.0,0.0,7.810749675188644e-09,8.155917075182883e-09,8.625954933659974e-09,7.677626715982724e-09,8.017258402204466e-09,8.480138682605785e-09 +1145,Cadmium,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.9597325513376766e-09,5.075248155704443e-09,1.3155186479450121e-08,2.4787774728882824e-09,3.6697381942054414e-09,1.3695514670849978e-08,4.658572335152034e-09,1.1382206188030263e-08,1.3954725789045513e-08,6.244362510635215e-09,1.4497246546811324e-08,2.7650927315566526e-08,1.671389184778786e-08,3.8223002073837614e-08,2.212309345241981e-08,1.1825149003464694e-08,2.7578299304105517e-08,2.153690017253564e-08,1.4965792003902896e-08,3.444648934838657e-08,2.3707092877561386e-08,1.3215979372761287e-08,1.3777678754128216e-08,1.453685803184483e-08,2.1440868739724415e-08,2.241287022085657e-08,2.3732073179128093e-08,2.0776575327100928e-08,2.1666705221799534e-08,2.2870256576462352e-08 +1146,Cadmium,"('soil', 'forestry')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367638925270546e-11,1.713494318320993e-10,2.380850078268263e-10,0.0,0.0,0.0,4.259616609973731e-11,4.486196461965501e-11,4.797766419301484e-11,0.0,0.0,0.0 +1147,Cadmium,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.386096073068302e-11,3.384736365329001e-10,1.2774334440788388e-09,3.2975625923607415e-11,3.181113004346667e-10,1.2522325059764276e-09,3.2932423152738945e-11,3.54542592720272e-10,1.3371606712015872e-09,2.993071226966661e-11,3.377810403170782e-10,1.2841294364766798e-09,2.4202353481487666e-09,6.220200254501708e-09,1.4028388854328372e-08,2.7202226478829122e-09,6.921373515791127e-09,1.4713900360693597e-08,0.0,0.0,0.0,8.85229319889055e-09,9.501585037314759e-09,1.0388214449749536e-08,8.952100095585675e-09,9.675458719057946e-09,1.0668765515818376e-08 +1148,Cadmium,"('soil',)",emission,kilogram,biosphere3,5.1679171350885747e-11,1.8715473189096065e-10,4.486593397288921e-10,2.7797617865962723e-10,1.3327740790014666e-09,3.1794977632755024e-09,2.4192512893423726e-10,1.2804915266848348e-09,3.051456531804968e-09,2.0736942581469246e-10,9.112946008721793e-10,2.1591269425151314e-09,2.1792093720821816e-10,9.127899981951937e-10,2.1308092931701473e-09,3.068732689185729e-10,1.028129600097925e-09,6.035377202977149e-09,3.7601605812610244e-10,1.1151179532242067e-09,6.121642781526225e-09,4.018081353910159e-10,4.1868445591435236e-10,4.4168365374791575e-10,2.2582260255082015e-09,2.3597757900938026e-09,2.4977250079537633e-09,2.233203149164922e-09,2.334029443785429e-09,2.4711838204817965e-09 +1149,Calcium,"('soil', 'agricultural')",emission,kilogram,biosphere3,3.8487794728410494e-05,9.553354659934788e-05,7.412364230470856e-05,4.782026927845248e-05,7.153039605988881e-05,0.00015043211820041326,9.253069327724769e-05,0.00022908724214351663,0.00019868104028056282,0.00012459223965233943,0.00029205632602962784,0.00019551417240868562,0.00033215225149495285,0.0007327710340907665,0.0001886561216270109,0.00023433864079411854,0.0005204460832002955,0.00017969151048037412,0.00029252016937167933,0.0006605228803923714,0.0002255300667509024,6.435301459839846e-05,6.695394211317543e-05,7.048690369861722e-05,0.00016412993682221407,0.00017112317013458803,0.000180619321371319,0.00015284735147292795,0.00015926236966661857,0.00016798325533991696 +1150,Calcium,"('soil', 'industrial')",emission,kilogram,biosphere3,1.940857129256695e-05,0.00011216234859485355,0.0004250943950783511,1.701190669995861e-05,0.00010819154928966022,0.00039033594987873584,1.2964037102567248e-05,0.00010486911900018869,0.0004039009267126992,1.281474592396536e-05,0.00010341140324237382,0.00040086687676003333,1.2671822753915547e-05,9.923461848517309e-05,0.00037704816865642547,1.5630311764757214e-05,0.00010594366496857991,0.0003911607493460347,1.5790745339260796e-05,9.80557565455158e-05,0.0003615898533869342,0.00038978210946688085,0.00043253749635379854,0.0004942162887671015,0.0003378516284454732,0.0003744894710319445,0.00042729296490658325,0.00036982057385171976,0.0004091594531294815,0.00046580782564158857 +1151,Calcium,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,5.217835517447102e-08,2.517881239891811e-07,6.009933236383083e-07,4.541247868677367e-08,2.4195144972582405e-07,5.768461743000166e-07,3.8870307451448866e-08,1.7194531199820896e-07,4.076255644665818e-07,4.087224630077861e-08,1.723231806093636e-07,4.0243414074112134e-07,3.684519817909184e-06,6.948354228935696e-06,0.00015540208557284602,4.487830522593573e-06,7.57026421604077e-06,0.0001561167184325887,0.0,0.0,0.0,1.645811651810495e-05,1.72531706779493e-05,1.8322476459088094e-05,1.6638623356448093e-05,1.7448057555823636e-05,1.8540243305027003e-05 +1152,Carbon,"('soil', 'industrial')",emission,kilogram,biosphere3,1.4556428517853725e-05,8.412176151828085e-05,0.00031882079639699055,1.3108312649671203e-05,8.383983655061424e-05,0.0003029275956404984,9.985701296555365e-06,8.118581386542119e-05,0.0003129005855154227,9.873388772913009e-06,8.038272726858531e-05,0.00031130155911644595,9.742285710119145e-06,7.711662144352451e-05,0.0002930150978942064,9.425974179143071e-05,0.00022092911284408935,0.000538081088244038,0.00011104397766552165,0.00023478430974951885,0.0005355151534849034,0.0002923365821481463,0.0003244031223166951,0.00037066221663141366,0.00040103716574707126,0.0004374139984983936,0.0004891580396562062,0.0004250918414634536,0.00046397703334585133,0.0005193177798308954 +1153,Carbon,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0360954061652353e-06,3.7918101071315054e-06,8.660166752396994e-05,2.4797267073455943e-06,4.131673158956915e-06,8.699351903275227e-05,0.0,0.0,0.0,8.999669400454189e-06,9.435225114472826e-06,1.0020879652938914e-05,9.10383316538403e-06,9.547560585037085e-06,1.0146175888065513e-05 +1154,Chloride,"('soil', 'industrial')",emission,kilogram,biosphere3,1.698250026013422e-05,9.814205752614034e-05,0.0003719576054699089,1.485908068105681e-05,9.446435804258817e-05,0.00034077687895574114,1.1323731226071436e-05,9.156945884543256e-05,0.0003526613669179558,1.1193127384159296e-05,9.027208088906885e-05,0.00034995557460701176,1.1069872105033528e-05,8.662745927738053e-05,0.00032914604919901844,1.579781096532573e-05,9.508878309621913e-05,0.0003439701602216589,1.6426700050092742e-05,8.99780216277388e-05,0.0003208628399684494,0.0003410593547976259,0.000378470319315112,0.0004324392641071449,0.0002967265138112863,0.00032872289609165806,0.00037483768723329673,0.0003241048072707703,0.00035836553147009247,0.00040770765644027805 +1155,Chloride,"('soil',)",emission,kilogram,biosphere3,5.556297038265278e-05,0.0001986984181590433,0.0004847716724610878,7.360742826474217e-07,3.359534963462995e-06,8.352543169330978e-06,6.300121558991899e-07,3.166970643059201e-06,7.80115313141897e-06,6.309385856694908e-07,3.157832771204194e-06,7.772527690635435e-06,6.571154119125796e-07,3.332819164255626e-06,8.160996168648493e-06,7.688553621714865e-07,3.419629513769281e-06,1.2922736770633317e-05,9.013966591462253e-07,3.633680398064081e-06,1.312928015052299e-05,0.0004343762175415627,0.0004529516816442829,0.00047829203507565425,7.961115354342376e-06,8.323327073456567e-06,8.814365845468317e-06,7.871904300950514e-06,8.23004993441844e-06,8.716331360046087e-06 +1156,Chromium,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.6654796344406545e-08,7.136369498499142e-08,1.4030122057301386e-07,3.421733374394511e-08,5.4736034042163294e-08,1.5939707196852053e-07,6.48037024552826e-08,1.6382000588715408e-07,1.823873731055814e-07,8.727379385558824e-08,2.0807887054674335e-07,1.4091917312208634e-07,2.285867314185261e-07,5.077914461620741e-07,1.7215535272959188e-07,1.6137505681640357e-07,3.6183526919156905e-07,1.6533302287729025e-07,2.0369694376570575e-07,4.714377243368896e-07,2.1812084704060157e-07,1.393740723420702e-07,1.4512086301332584e-07,1.5289791213002958e-07,1.6310586542514383e-07,1.704770674765209e-07,1.8052676689653073e-07,1.4894754403543065e-07,1.551805020660208e-07,1.6364203391872467e-07 +1157,Chromium,"('soil', 'forestry')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.848823298915804e-10,1.958287575896466e-09,2.7285896792212035e-09,0.0,0.0,0.0,4.949847591162911e-10,5.212271644598901e-10,5.573044802327623e-10,0.0,0.0,0.0 +1158,Chromium,"('soil', 'industrial')",emission,kilogram,biosphere3,2.4260713801738276e-08,1.4020293497674006e-07,5.313679918790193e-07,2.1227257489184805e-08,1.349490789343999e-07,4.868240984232478e-07,1.6176758416862092e-08,1.308135087747879e-07,5.038019378679507e-07,1.5990181505357923e-08,1.2896011174900497e-07,4.999365203950635e-07,1.5814102540370943e-08,1.2375350960027994e-07,4.702086278326066e-07,3.326139418106968e-08,1.6658882179593555e-07,6.004817122842399e-07,3.377060862235081e-08,1.550913736242553e-07,5.62916335606095e-07,4.872276351938926e-07,5.406718686324279e-07,6.177703589042009e-07,4.739640222336897e-07,5.259627970866112e-07,6.003835823269455e-07,5.157941602114299e-07,5.716849593926731e-07,6.515669517346458e-07 +1159,Chromium,"('soil',)",emission,kilogram,biosphere3,2.464658854859837e-10,8.925679091468268e-10,2.13972217434563e-09,1.4073457820115518e-09,6.750136532076221e-09,1.61037916162142e-08,1.2248274077992029e-09,6.485403304622743e-09,1.5455364431565552e-08,1.0497904310172496e-09,4.615118631458343e-09,1.0934954128017546e-08,1.1032443675168824e-09,4.6228417110176465e-09,1.0791780734015235e-08,1.4398984542204466e-08,2.9128579838634434e-08,5.769169642067738e-07,1.7547964357078622e-08,3.171340008987939e-08,5.798265032226074e-07,1.916281047157421e-09,1.9967666405490344e-09,2.1064531119747203e-09,6.821495077444755e-08,7.14771255398561e-08,7.587060234367689e-08,6.874487497885173e-08,7.205487728708998e-08,7.65260062067885e-08 +1160,Chromium VI,"('soil',)",emission,kilogram,biosphere3,1.001598078306838e-06,2.3437056462037348e-06,2.98428814202831e-06,5.685534508183447e-07,1.3199192286334976e-06,1.6136718776390995e-06,5.645637327850449e-07,1.3029919957187383e-06,1.5618846964131255e-06,5.682527780344245e-07,1.3107212763033234e-06,1.5661496680583393e-06,5.65476578448011e-07,1.3124054956418463e-06,1.5911910247563822e-06,5.619812613291244e-07,1.30186242564665e-06,1.5719392704438517e-06,5.64005367916979e-07,1.2981773340236621e-06,1.5650449616260672e-06,9.541407308377849e-07,1.0037996574008655e-06,1.072416092151182e-06,4.053088313968325e-07,4.234423003757197e-07,4.4806590231660067e-07,4.18577987371186e-07,4.378836827738792e-07,4.6426908890494156e-07 +1161,Cobalt,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.458975880224661e-09,6.982793752129419e-09,7.152879890760326e-09,3.0630885053829713e-09,5.055938740784389e-09,1.0828631115474172e-08,5.914000005748394e-09,1.5289115140609814e-08,1.4398925739761576e-08,7.955865744700717e-09,1.9302291652314032e-08,1.4221126822262093e-08,2.1113744762836245e-08,4.694420660222679e-08,1.321560388270291e-08,1.4907479387237413e-08,3.347000007588819e-08,1.2617951280034148e-08,1.865145476751345e-08,4.4324247316019836e-08,2.3476734963996213e-08,6.691853927194305e-09,6.948271160616427e-09,7.296025818813247e-09,1.7632187393387907e-08,1.8376892416721597e-08,1.938691618274477e-08,1.092029257801236e-08,1.136691913343222e-08,1.1974398736793859e-08 +1162,Cobalt,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.729190878336826e-11,6.736288789300062e-10,2.5423429359433723e-09,6.562795894673692e-11,6.331038389925382e-10,2.492188129631448e-09,6.554197696479844e-11,7.056092513245464e-10,2.661211824700471e-09,5.956798395978698e-11,6.722504767087691e-10,2.555669273257056e-09,1.12290039658122e-09,2.9602526209772135e-09,6.721631599702398e-09,1.2751507619648323e-09,3.443398065883225e-09,6.606186657250117e-09,0.0,0.0,0.0,4.752530061791038e-09,5.022799367883516e-09,5.398547208112528e-09,5.215815235726695e-09,5.637610198324729e-09,6.233434279552282e-09 +1163,Cobalt,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,7.474807086446803e-10,3.6069870672123895e-09,8.609513752562101e-09,6.505562432708392e-10,3.466071869091543e-09,8.263594131177165e-09,5.56836692849182e-10,2.4632023259412607e-09,5.8394322999589444e-09,5.855151094738244e-10,2.46861519918291e-09,5.7650636019574694e-09,5.139424048342201e-09,1.0813026021743174e-08,1.997959939512347e-07,6.266599107278535e-09,1.1769647462170665e-08,2.008644253443382e-07,0.0,0.0,0.0,2.5184963998780754e-08,2.6382822323666216e-08,2.7997267841768722e-08,2.5333456722168537e-08,2.654610423327275e-08,2.8185044119209513e-08 +1164,Copper,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.422760627998914e-08,1.1032710377302688e-07,-2.941991741814541e-07,2.8749886074764315e-08,6.563387406039375e-08,-6.384372686188354e-07,5.8042074776832486e-08,1.751586812516423e-07,-3.286175955867227e-07,8.833549524685759e-08,2.3710440239617312e-07,-1.7433448813073152e-07,1.9449486467559788e-07,4.6657646530798174e-07,-4.182423615098261e-07,1.3841882635301463e-07,3.4425952206194214e-07,-4.225084888267901e-07,1.7420007383614107e-07,5.253142373960786e-07,-2.4712033110827367e-07,-3.258611948395219e-07,-3.4038115035255075e-07,-3.59917504599463e-07,-4.4546310038333475e-07,-4.642113597505646e-07,-4.894154965914477e-07,-4.820396635539342e-07,-5.027581235209297e-07,-5.306334723024607e-07 +1165,Copper,"('soil', 'forestry')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.023904923779664e-10,-2.5523923152552954e-09,-4.293123964000307e-09,0.0,0.0,0.0,-1.4363991088766923e-09,-1.504255778706564e-09,-1.5967197359814794e-09,0.0,0.0,0.0 +1166,Copper,"('soil', 'industrial')",emission,kilogram,biosphere3,2.4436763880475475e-09,1.3242585811260804e-08,7.596542524541872e-08,3.2470801205311257e-09,1.7001301399408713e-08,8.890436339790629e-08,2.7988225040097324e-09,1.6329692821653368e-08,8.815710712938482e-08,2.805155816037124e-09,1.6700967043400576e-08,8.9013206456242e-08,2.78608713415103e-09,1.656915982440917e-08,8.838292721315593e-08,4.371425290451216e-08,1.1390333694587028e-07,3.9046216966095463e-07,5.1090065253236805e-08,1.233519110224492e-07,4.080649328141426e-07,1.7920108637856267e-08,7.817223527231073e-08,1.5327928300875943e-07,1.781298365244331e-07,2.6342912877247826e-07,3.716287399428443e-07,1.7801641403970754e-07,2.5690043463880357e-07,3.573121883280725e-07 +1167,Copper,"('soil',)",emission,kilogram,biosphere3,6.289871988704865e-07,1.4762496320766624e-06,1.8937064579649204e-06,3.6545517160898826e-07,8.737707221810263e-07,1.1256103550686555e-06,3.616268301389512e-07,8.612717015490375e-07,1.0885431094378242e-06,3.6264601865334006e-07,8.524417400717947e-07,1.0582212042897112e-06,3.613023995180858e-07,8.535353768028813e-07,1.0727877890824743e-06,3.718922481906712e-07,8.688742002385664e-07,1.6084080195468255e-06,3.777806385059344e-07,8.713645061368761e-07,1.6090695219208979e-06,6.226559410112508e-07,6.547869972050905e-07,6.991624028263453e-07,3.786150721545501e-07,3.957264181504242e-07,4.1893722444161704e-07,3.8650804596894464e-07,4.043688898933231e-07,4.2871975866668694e-07 +1168,Fluoride,"('soil', 'industrial')",emission,kilogram,biosphere3,2.426071556506685e-07,1.402029451750855e-06,5.313680305378737e-06,2.1227259033654364e-07,1.3494908875314603e-06,4.868241338440776e-06,1.61767595938659e-07,1.3081351829266737e-06,5.038019745242077e-06,1.5990182668774586e-07,1.2896012113201907e-06,4.999365567700566e-06,1.5814103690979135e-07,1.2375351860446507e-06,4.702086620446064e-06,1.870243561581151e-07,1.2950201919257852e-06,4.816550165508439e-06,1.8976002103360476e-07,1.197867416740816e-06,4.456464348492317e-06,4.8722767064266496e-06,5.406719079696668e-06,6.1777040385093385e-06,4.18856904192884e-06,4.643058787498289e-06,5.298341941482523e-06,4.581457880566505e-06,5.0685078886745276e-06,5.770176766827541e-06 +1169,Fluoride,"('soil',)",emission,kilogram,biosphere3,6.782192455293904e-07,1.5870260164397566e-06,2.0205937144468823e-06,3.8637762497789976e-07,8.96987162069469e-07,1.0965903854935565e-06,3.8357018811965916e-07,8.852640999304893e-07,1.0611459581210452e-06,3.8608240870143526e-07,8.905286363078037e-07,1.0640594603137042e-06,3.841968285923186e-07,8.916744038629013e-07,1.0810731999688011e-06,3.818220192607856e-07,8.845113823638674e-07,1.0679945923842773e-06,3.831956934502793e-07,8.820011372284551e-07,1.063296758402176e-06,6.458586281302653e-07,6.794629813520096e-07,7.258951747710012e-07,2.7534698090566604e-07,2.8766511364886095e-07,3.04391889802483e-07,2.8437486667384925e-07,2.9749028089224953e-07,3.154152574844876e-07 +1170,Glyphosate,"('soil', 'industrial')",emission,kilogram,biosphere3,1.379123890300746e-08,1.263070823327016e-07,7.627827269959668e-07,4.696046330162722e-08,2.8322734227883443e-07,1.4026640182194517e-06,4.7705753316738774e-08,2.854042950420007e-07,1.3975917823228235e-06,4.7795434352993005e-08,2.8548206160947536e-07,1.3973746280171154e-06,5.408629897973353e-08,2.976922605528326e-07,1.3989377073940822e-06,7.905601619608428e-08,3.504264123697378e-07,1.5684475659133393e-06,3.8706326479327376e-08,2.5966979443201056e-07,1.5592618601845278e-06,7.240727198086665e-07,7.488017626459372e-07,7.821996854336486e-07,1.4379212260785595e-06,1.4857259451110903e-06,1.5502770180197313e-06,1.4452383514606903e-06,1.4934425163890245e-06,1.5585556348792964e-06 +1171,"Heat, waste","('soil', 'industrial')",emission,megajoule,biosphere3,0.000527274503572784,0.0020628264800394785,0.004304334738988064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003742601669465929,0.008449094182835078,0.01577141981935805,0.0044366106105307454,0.009070679380708902,0.01659415993249011,0.0041577977464876915,0.004410031518735514,0.004762306502155442,0.011413370569637935,0.01203206771229556,0.012870994485435867,0.01138544170964128,0.012002140475117645,0.01283624355348408 +1172,"Heat, waste","('soil',)",emission,megajoule,biosphere3,0.11623796308113027,0.2708773579774862,0.31065730432874333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10787800846857126,0.11372751052721551,0.12182670837556095,0.0,0.0,0.0,0.0,0.0,0.0 +1173,Iodide,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.565746641508131e-13,6.313401608004418e-13,2.4951260413155602e-12,2.673967567206162e-13,6.029837825587661e-13,2.4584011560260774e-12,0.0,0.0,0.0,1.009885511008763e-12,1.1533757906583839e-12,1.3481458141098618e-12,1.060397547139093e-12,1.218570431810974e-12,1.432257734585559e-12 +1174,Iron,"('soil', 'agricultural')",emission,kilogram,biosphere3,3.647923951671339e-06,3.2663333623751715e-05,7.245799484646278e-05,4.737674343507659e-06,1.991627057685717e-05,4.7491013135596346e-05,8.57150913556543e-06,3.852318436554057e-05,6.400981591681846e-05,1.1409913324014805e-05,4.418266732188323e-05,6.439452260765506e-05,2.8172907695443508e-05,7.211616019133157e-05,4.944705337387834e-05,2.0160801017989423e-05,5.464136392889434e-05,4.784510306662582e-05,2.598627979754912e-05,0.00011793974933883367,0.00012177988659579765,7.583521156972198e-05,7.859080077588034e-05,8.232654026138341e-05,5.53707912968359e-05,5.761880520438657e-05,6.0694486765772084e-05,4.6113081311320636e-05,4.77877629697365e-05,5.0079139027029966e-05 +1175,Iron,"('soil', 'industrial')",emission,kilogram,biosphere3,9.704285547807097e-06,5.6081174150399966e-05,0.0002125471973601259,8.490903020385156e-06,5.397963173085952e-05,0.00019472963993602993,6.470703385575887e-06,5.232540366219391e-05,0.00020152077573365608,6.396072620755631e-06,5.1584044849727596e-05,0.00019997460874002053,6.325641034558361e-06,4.9501403984176826e-05,0.00018808345168043103,7.915115059956849e-06,5.318277074891158e-05,0.0001986282377178995,7.955791903963481e-06,4.910554091823198e-05,0.00018396262230198132,0.0001948910546359493,0.0002162687480728022,0.0002471081442701474,0.00016989224576363082,0.00018841992344831798,0.00021510352890928127,0.00018581925041713976,0.00020569004742220908,0.00023428176583077982 +1176,Iron,"('soil',)",emission,kilogram,biosphere3,2.6103859187131506e-05,0.00023826422437829328,0.001350181813326187,1.8936346921524222e-05,0.00017514052790296365,0.0010102420833553877,2.750332727443916e-05,0.00019364917298496655,0.00100813830183469,1.8551465208344292e-05,0.0001741529209157011,0.001004693370310756,2.0015041207866435e-05,0.000176660602006839,0.0010060203978243317,6.526665500889495e-05,0.00030328523203929764,0.001589157807405239,3.538529167458711e-05,0.0002347333696923133,0.0015821476497356328,0.001350162729581009,0.001396288967067756,0.0014585904055689543,0.0013259168196303635,0.0013697776764808921,0.0014290065837297664,0.0013323845924828534,0.001376662257467275,0.0014364792372297507 +1177,Lead,"('soil', 'agricultural')",emission,kilogram,biosphere3,9.299866365744955e-09,3.5685917266219374e-08,7.505988091777706e-08,1.245572976367854e-08,2.5793995222966522e-08,9.611230927922052e-08,2.2480778289556297e-08,6.419383972038719e-08,9.719803072551322e-08,3.023669027116192e-08,7.957488961707978e-08,1.1643532293895971e-07,7.71865396372846e-08,1.7772471179097702e-07,1.0985327940021018e-07,5.4710226650208064e-08,1.2883145900469867e-07,1.06809318791735e-07,6.940624111131518e-08,1.8877756049480297e-07,1.7506083235220795e-07,7.618626043430425e-08,7.920479619058776e-08,8.329670696564263e-08,1.326601514099362e-07,1.3834434506415601e-07,1.4605564672028279e-07,1.0346683817881623e-07,1.077553753514145e-07,1.135749565959418e-07 +1178,Lead,"('soil', 'forestry')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8720688588781194e-11,1.4605383644036407e-10,2.1861420947258312e-10,0.0,0.0,0.0,5.31444690047716e-11,5.579186227821648e-11,5.941453539381918e-11,0.0,0.0,0.0 +1179,Lead,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.9694430474372926e-09,1.5198129249918196e-08,5.7359263752851664e-08,1.4806701934532425e-09,1.428382047532222e-08,5.622769227087837e-08,1.478730304420486e-09,1.591965685705697e-08,6.004113323860922e-08,1.343947606307375e-09,1.5167030323236947e-08,5.7659926926981394e-08,5.765149204528313e-08,1.409647170649497e-07,3.925160834436471e-07,6.382803610442421e-08,1.465468327529858e-07,3.834174452665249e-07,0.0,0.0,0.0,2.2057287398186608e-07,2.3972739058842934e-07,2.6593307718940116e-07,2.3616579148881603e-07,2.600403979614647e-07,2.928934109210868e-07 +1180,Lead,"('soil',)",emission,kilogram,biosphere3,2.126767750131058e-09,7.702014203366564e-09,1.846377606489406e-08,1.0425768753064524e-08,4.9955573854797513e-08,1.1916892205465481e-07,9.073615651088007e-09,4.7995108714432377e-08,1.1436880289714827e-07,7.778656316145074e-09,3.416173684918683e-08,8.093464646181903e-08,8.17398438370305e-09,3.421593264864248e-08,7.987015991706717e-08,1.6617137978493844e-08,4.805380214386936e-08,4.435106096696893e-07,2.0321564113581786e-08,5.2165434303764144e-08,4.4772067235823177e-07,1.6535688912543924e-08,1.7230203249724965e-08,1.8176693464061412e-08,1.072137930122403e-07,1.1211252908112382e-07,1.1875207928794056e-07,1.0654326512637505e-07,1.1143615251877788e-07,1.1807953013704796e-07 +1181,Magnesium,"('soil', 'agricultural')",emission,kilogram,biosphere3,4.349447875043565e-06,1.0789439297796373e-05,8.347977726559801e-06,5.404203322663631e-06,8.077233081552349e-06,1.6977588801236693e-05,1.045780289346894e-05,2.5884090217192036e-05,2.2427687877988766e-05,1.4081588974663863e-05,3.300125435549098e-05,2.2069650485252334e-05,3.754171803284096e-05,8.281704834704194e-05,2.1299924941368916e-05,2.6486072290474568e-05,5.88186670787952e-05,2.0288557221512272e-05,3.3061922003353874e-05,7.463624738082598e-05,2.5449500067659082e-05,7.2440537818939575e-06,7.535562741771436e-06,7.931379041146746e-06,1.8528445521342653e-05,1.9316790689302518e-05,2.0387130782179906e-05,1.7255115284836893e-05,1.7978204625775484e-05,1.8961049380520696e-05 +1182,Magnesium,"('soil', 'industrial')",emission,kilogram,biosphere3,3.8817144912852246e-06,2.2432471230438057e-05,8.501888488979652e-05,3.396361445385027e-06,2.159185420050567e-05,7.789186141505995e-05,2.5882815350184644e-06,2.0930162926826644e-05,8.060831592387296e-05,2.5584292270039296e-06,2.0633619381123044e-05,7.998984908320904e-05,2.5302565905567565e-06,1.9800562976714763e-05,7.523338592713785e-05,3.627933811804591e-06,2.2239737883128265e-05,8.024281876766847e-05,3.7637185219860897e-06,2.073371140597357e-05,7.450971663173494e-05,7.79564273048455e-05,8.650750527724027e-05,9.884326461834398e-05,6.910434599000816e-05,7.650756157680405e-05,8.7169996785031e-05,7.544588472542074e-05,8.337749517614717e-05,9.479167154370558e-05 +1183,Magnesium,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.421460488049499e-07,1.7545537892964796e-06,4.007249298365967e-05,1.1474239922001753e-06,1.911815885392104e-06,4.02538112802636e-05,0.0,0.0,0.0,4.1643446277497185e-06,4.365885819661415e-06,4.636881033206167e-06,4.212543488771076e-06,4.417865908294037e-06,4.694858352162798e-06 +1184,Manganese,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.696032322004791e-06,6.0977390898828285e-06,3.5393677773262494e-06,3.344761024622285e-06,4.677462555434827e-06,9.690369982510505e-06,6.4909613563732715e-06,1.563421340000833e-05,1.2787825925005415e-05,8.742100935299488e-06,2.0053197225232744e-05,1.2548176415436037e-05,2.3356518872847626e-05,5.128357860539425e-05,1.2446672808624102e-05,1.6471890493916292e-05,3.6341254332431536e-05,1.1838243286704743e-05,2.0540720626572896e-05,4.489190780644223e-05,1.329300968809497e-05,2.7473503042309654e-06,2.8653426848906765e-06,3.025697362403282e-06,1.0515337873222493e-05,1.0965603282769036e-05,1.1576337981288565e-05,9.931220376458198e-06,1.0354013215036702e-05,1.0928303593587628e-05 +1185,Manganese,"('soil', 'industrial')",emission,kilogram,biosphere3,1.9408571236426734e-07,1.1216234826892466e-06,4.250943938417491e-06,1.698180599134351e-07,1.0795926314749028e-06,3.894592787385027e-06,1.294140673348954e-07,1.0465080701983005e-06,4.0304155029436e-06,1.2792145204286344e-07,1.03168089399204e-06,3.9994921631605086e-06,1.265128203229679e-07,9.90028076802241e-07,3.7616690226608576e-06,1.843412340001436e-07,1.1038238145582683e-06,4.019557178595089e-06,1.9190370038840878e-07,1.0305561025791386e-06,3.73727042351562e-06,3.897821083327623e-06,4.325374950952654e-06,4.942162873290874e-06,3.438191963251135e-06,3.8097522651780636e-06,4.344801970004592e-06,3.7534946693894033e-06,4.15155938689239e-06,4.7243025805589954e-06 +1186,Manganese,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,2.982660678429288e-09,1.4392909541834518e-08,3.4354437849032224e-08,2.5959043562960743e-09,1.3830617768543756e-08,3.297411964420456e-08,2.2219360342635058e-09,9.828876175579779e-09,2.330100820157258e-08,2.33637187276903e-09,9.850475727645936e-09,2.3004253610491866e-08,5.2365385771551895e-08,1.0247533466398967e-07,2.152249688974068e-06,6.380438006134665e-08,1.1161016857000089e-07,2.1626441081418803e-06,0.0,0.0,0.0,2.4130787427746406e-07,2.5290256191322573e-07,2.68508061784457e-07,2.435301957978386e-07,2.553117546238086e-07,2.7121778383469996e-07 +1187,Mercury,"('soil', 'agricultural')",emission,kilogram,biosphere3,3.180062786935031e-11,3.1628472973076165e-10,1.8682035098049367e-09,7.087562518511342e-11,2.602358165254666e-10,6.331684247906163e-10,9.386588743688894e-11,3.9426534189471845e-10,7.909463229099462e-10,1.4066212456211955e-10,4.957212266101289e-10,1.5639542965931972e-09,1.4591518337859417e-10,4.147092241481266e-10,7.411512485538555e-10,1.0962965105196999e-10,3.346243245650812e-10,7.222348438285177e-10,1.3514018390495862e-10,9.24215364575127e-10,1.17025721208061e-09,1.966192475933789e-09,2.048159674633208e-09,2.1593931655946736e-09,4.884260317550962e-10,5.092541838473335e-10,5.379281225024409e-10,7.187457084022985e-10,7.496772606197654e-10,7.921518823433565e-10 +1188,Mercury,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.729190487246666e-12,6.736288487496897e-11,2.5423428220397756e-10,6.562795600645577e-12,6.331038106278874e-11,2.4921880179749844e-10,6.5541974028386995e-12,7.056092197115108e-11,2.661211705471423e-10,5.956798129099201e-12,6.722504465902085e-11,2.5556691587564e-10,1.653299418907349e-10,3.6712325945495794e-10,9.72750975604096e-10,1.8846799633660078e-10,3.9727202475277736e-10,9.326495858603871e-10,0.0,0.0,0.0,5.668435470182282e-10,6.108246280634221e-10,6.714424851564478e-10,6.257013681815948e-10,6.876511034554915e-10,7.739517007284282e-10 +1189,Mercury,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.300763459854993e-11,8.009289891859482e-11,1.8292526279555917e-09,5.23782823785582e-11,8.727169118071107e-11,1.8375295517464126e-09,0.0,0.0,0.0,1.900964423923993e-10,1.9929651275218418e-10,2.1166706096679879e-10,1.9229665222830617e-10,2.0166933028062614e-10,2.1431364357743387e-10 +1190,Molybdenum,"('soil', 'agricultural')",emission,kilogram,biosphere3,5.184789324405471e-10,2.030465672098846e-09,3.0506722728499616e-09,6.507175110312749e-10,1.3764966984730258e-09,3.0663679256136503e-09,1.3096279307398976e-09,3.8319849444243926e-09,4.444122745399573e-09,1.7349044368289736e-09,4.66707770863501e-09,4.413079592028479e-09,4.436383363457923e-09,1.0145229534008793e-08,3.807558040761264e-09,3.149688102083126e-09,7.352528106268308e-09,3.6636337157722105e-09,3.985380064666307e-09,1.0909572888214083e-08,1.997280613310699e-08,3.055931126347407e-09,3.1686314502366333e-09,3.321375663279196e-09,1.8002594795727098e-08,1.876605903556792e-08,1.9798925687685374e-08,3.2081357934828304e-09,3.335797260555788e-09,3.509890053227314e-09 +1191,Molybdenum,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.42741097928497e-10,1.929141231408545e-09,3.6415170011694795e-09,1.1231284559825825e-09,2.0954764944620655e-09,3.824529122532542e-09,0.0,0.0,0.0,2.4493925883725798e-09,2.59025004905347e-09,2.7812364493801773e-09,2.45380307036954e-09,2.5972955343812856e-09,2.7915563188915548e-09 +1192,Molybdenum,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.640095088313538e-10,7.914328470990869e-10,1.8890729844798787e-09,1.427426724227889e-10,7.605137377493421e-10,1.8131724722049743e-09,1.2217896169963557e-10,5.404666262346953e-10,1.2812690443253182e-09,1.284716059553916e-10,5.416544048833768e-10,1.264950954439756e-09,1.4798711358862423e-09,3.028449957860616e-09,5.881859719111095e-08,1.8039296732107067e-09,3.2971366691383345e-09,5.912080931842765e-08,0.0,0.0,0.0,7.0827306188960616e-09,7.420901513014283e-09,7.876442120707609e-09,7.133330660764155e-09,7.47616007982992e-09,7.939317091750755e-09 +1193,Nickel,"('soil', 'agricultural')",emission,kilogram,biosphere3,7.878429953275379e-09,2.5543539115620966e-08,3.193254628832151e-08,8.765162393197243e-09,1.4024064392762988e-08,-9.361100246518574e-08,1.8333776900722652e-08,4.740871123999794e-08,-1.496567587360164e-09,2.463236488174845e-08,5.982632345882804e-08,2.667383249515174e-08,6.535188220851062e-08,1.5602754383478298e-07,-3.6857021617900556e-09,4.6394269185310885e-08,1.146370682164732e-07,-5.633591398839847e-09,5.8489130408339725e-08,1.493475938921541e-07,3.7276477180333035e-08,3.039629393093754e-08,3.165856283254902e-08,3.337167578864109e-08,1.3151843016413593e-08,1.3887594154104386e-08,1.4897791708077285e-08,-1.5980829122279074e-08,-1.661905245048351e-08,-1.7470335280334965e-08 +1194,Nickel,"('soil', 'forestry')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3073551294869928e-10,1.1740697722945813e-09,1.6195736599284917e-09,0.0,0.0,0.0,2.7923273079683114e-10,2.9422050238396994e-10,3.1484351023499756e-10,0.0,0.0,0.0 +1195,Nickel,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.579143914057967e-10,5.077104397092261e-09,1.9161501091665525e-08,4.94634374152612e-10,4.7716693646964875e-09,1.8783487031363403e-08,4.939863326090654e-10,5.318138732739189e-09,2.005740947187963e-08,4.489606707009964e-10,5.066715454163626e-09,1.9261940974648097e-08,7.724264837650413e-09,2.2561607380010083e-08,7.546473352153902e-08,8.016160967924611e-09,2.2807448015798783e-08,7.034047070838556e-08,0.0,0.0,0.0,4.149801987807044e-08,4.530486936523447e-08,5.0537974775079785e-08,4.650415503002903e-08,5.179221048963562e-08,5.912521651635407e-08 +1196,Nickel,"('soil',)",emission,kilogram,biosphere3,6.678557861271076e-10,2.418617702281748e-09,5.7980695015044735e-09,1.7868547347529968e-09,8.511285474255717e-09,2.0293613182934766e-08,1.5550741045130918e-09,8.17599833984209e-09,1.9474455202913253e-08,1.3348768804794064e-09,5.827153723614721e-09,1.379809428463521e-08,1.401965269639951e-09,5.833404673533283e-09,1.361177309682382e-08,9.488307579406114e-09,2.0571565479946418e-08,3.5829754990769324e-07,1.1567293786900564e-08,2.2379015392243213e-08,3.602835699776863e-07,5.192604773371767e-09,5.410699028093536e-09,5.7079197880967666e-09,4.763119124611652e-08,4.988710884538187e-08,5.292944246267205e-08,4.786674308445016e-08,5.014957521592996e-08,5.32366467164015e-08 +1197,Nitrogen,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.386095775840582e-09,3.3847361359589466e-08,1.277433357512208e-07,3.297562368898824e-09,3.181112788775301e-08,1.2522324211175256e-07,3.2932420921067782e-09,3.5454256869438335e-08,1.3371605805875937e-07,2.9930710241403346e-09,3.377810174270244e-08,1.2841293494563187e-07,4.124818988154179e-07,8.263275021304043e-07,1.606070016580094e-06,4.973223983935247e-07,9.239001200495621e-07,1.6811317980492948e-06,0.0,0.0,0.0,1.0365428793512023e-06,1.102781627862777e-06,1.1936056728147929e-06,1.0531114077431906e-06,1.127003075256139e-06,1.2287934340071704e-06 +1198,Nitrogen,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.353921795828312e-08,1.1832876206293559e-07,2.702526714462645e-06,7.738335603427776e-08,1.289346661187988e-07,2.7147549913648143e-06,0.0,0.0,0.0,2.8084732859706095e-07,2.9443945662922136e-07,3.1271562937416895e-07,2.8409790523569044e-07,2.979450428236726e-07,3.166256744370801e-07 +1199,"Oils, non-fossil","('soil', 'forestry')",emission,kilogram,biosphere3,7.778603561434702e-07,1.7578248167538262e-06,3.9588726842747215e-06,1.6506555108743143e-06,3.6452358851193413e-06,6.552709830942122e-06,2.6504249474979487e-06,6.437018407734045e-06,7.200150679653835e-06,3.4487022112024186e-06,7.994540710285687e-06,7.3885797170653874e-06,7.966816800825642e-06,1.764016037027924e-05,7.34078116159535e-06,5.549336920187699e-06,1.2383766174581519e-05,7.136167095745466e-06,6.672175245462806e-06,1.4689575578945182e-05,6.9774793454894e-06,1.7128906019674953e-06,1.789165421060258e-06,1.8925985342027846e-06,3.947912731732309e-06,4.119785028683214e-06,4.3524887641731985e-06,4.292529679491585e-06,4.479097409731366e-06,4.731990356370209e-06 +1200,"Oils, non-fossil","('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.524604672659209e-10,1.438462479010473e-09,2.0424482505096347e-10,7.566530142753503e-10,1.7032717375295996e-09,4.1301984635406475e-10,1.4006629390997953e-09,3.1364878447002442e-09,7.100560187174425e-10,0.0,0.0,0.0,1.0382675936484162e-19,2.381724522289627e-19,4.049037107282385e-18,2.2074340389628007e-11,2.4530210138090633e-11,3.20500545806087e-11,0.0,0.0,0.0,8.018343140242678e-12,8.413578432706847e-12,8.95864829533611e-12,4.254127502243537e-18,4.4386636200418655e-18,4.688349988817402e-18 +1201,"Oils, non-fossil","('soil',)",emission,kilogram,biosphere3,1.4835433598252964e-07,1.3587033914041128e-06,8.20536312572502e-06,5.05160434463937e-07,3.0467171151756284e-06,1.5088657884390469e-05,5.13177625977121e-07,3.070134908066556e-06,1.5034095115860003e-05,5.14142337737793e-07,3.0709714541787035e-06,1.5031759155868548e-05,5.8181407018193e-07,3.2023183142702073e-06,1.50485734247583e-05,8.504168971267755e-07,3.7695871436217717e-06,1.6872015268283735e-05,4.1636950162091523e-07,2.7933051965379466e-06,1.6773203315179966e-05,7.788954028189443e-06,8.054967886438978e-06,8.414234128841905e-06,1.5467924722646203e-05,1.59821669370108e-05,1.6676552080233855e-05,1.554663608914107e-05,1.6065175200260156e-05,1.6765606348363927e-05 +1202,"Oils, unspecified","('soil', 'forestry')",emission,kilogram,biosphere3,0.0006651619617917299,0.004145161937278034,0.015805824258040297,0.0004375429616745968,0.0033294843147361787,0.012522892161676928,0.0003451965435453404,0.003332142780352551,0.013121222711012804,0.00034194527994590204,0.0032712141630777095,0.013003886286319242,0.0003064074382764575,0.003023682543309368,0.012143458905979098,0.00036696938869497993,0.0031558990056319933,0.012301810236580222,0.00033194038538454434,0.002824797028122357,0.011301890314752417,0.01453710839666014,0.016158125950133106,0.018500459880817777,0.010776732686120956,0.011970463825615585,0.0136947856343274,0.011837234796743163,0.013118450845946646,0.014967368180840162 +1203,"Oils, unspecified","('soil', 'industrial')",emission,kilogram,biosphere3,1.338263261754273e-06,1.5656902134519713e-06,2.6111322397666906e-06,2.0887716083759134e-06,2.39323861008381e-06,4.256497178151442e-06,1.9792494072221156e-06,2.2876233206989816e-06,4.098700046854412e-06,1.9800575466569565e-06,2.3023963601394814e-06,4.583754995127007e-06,1.988152275176283e-06,2.3586037032013585e-06,4.67332977671198e-06,1.9844272879384714e-06,2.351317126049627e-06,4.629579234297915e-06,3.7294383492340855e-05,6.990931906849526e-05,0.0002010288644414465,1.3203993745637883e-06,1.4006673500282658e-06,1.5125382374925287e-06,0.00015559726897768436,0.00017769342730564064,0.00020964985140039204,2.6515300048948267e-06,2.9063147950801674e-06,3.2680037469597986e-06 +1204,"Oils, unspecified","('soil',)",emission,kilogram,biosphere3,3.169523333813983e-06,1.570307061845227e-05,6.6055756257885e-05,7.586602819973947e-07,5.445663590257526e-06,2.0374604084414515e-05,6.018005753777146e-07,5.1899621976509764e-06,2.008146313819767e-05,5.744358691251388e-07,5.042322849987274e-06,1.9828283927894766e-05,5.269071864739089e-07,4.935405334514276e-06,1.9650665803561738e-05,5.592608019483345e-07,4.71160038279492e-06,1.7024306268564422e-05,5.133231997167083e-07,4.392245910754006e-06,1.61775246338048e-05,5.958705486108741e-05,6.694025103461293e-05,7.756680585660879e-05,1.534855527401626e-05,1.7200646522660262e-05,1.9884768246538455e-05,1.620883147842636e-05,1.815661069235305e-05,2.0979033514389564e-05 +1205,Phosphorus,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.3204202328492543e-06,2.9629506762136845e-06,1.666884480702046e-06,1.6379660149366766e-06,2.2773781116745723e-06,4.710959490708921e-06,3.177866573187201e-06,7.635567488348597e-06,6.208479109122851e-06,4.280680409559342e-06,9.800375380842434e-06,6.090650920673837e-06,1.144178014458665e-05,2.511137717235774e-05,6.056823251000789e-06,8.06863231619824e-06,1.779038015271169e-05,5.759811579300733e-06,1.0060991287131499e-05,2.1928289732400985e-05,6.4026687629612804e-06,1.2748996262507543e-06,1.3299473053037845e-06,1.4047451946589174e-06,5.105694565251489e-06,5.324230470291223e-06,5.62059746682324e-06,4.827709260036945e-06,5.033300649451355e-06,5.312518066217701e-06 +1206,Phosphorus,"('soil', 'industrial')",emission,kilogram,biosphere3,2.426071556506685e-07,1.402029451750855e-06,5.313680305378737e-06,2.1432803529383026e-07,1.3653526907796043e-06,4.928105374411661e-06,1.6331292424175532e-07,1.32304275123893e-06,5.096702796111951e-06,1.614451303904742e-07,1.3062160499424059e-06,5.062028585403226e-06,1.5954367220504152e-07,1.2533645323339902e-06,4.762264448992084e-06,2.588156526611102e-07,1.4606019950933733e-06,5.2917626153304906e-06,2.673992954726717e-07,1.363562290957664e-06,4.91556263685116e-06,4.8722767064266496e-06,5.406719079696668e-06,6.1777040385093385e-06,4.444857797188616e-06,4.922776566186949e-06,5.610079267026288e-06,4.858456686155475e-06,5.374485600376538e-06,6.115933399454928e-06 +1207,Phosphorus,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.58842139334463e-07,2.9581090726049705e-07,6.756065603697844e-06,1.9345119780097874e-07,3.2232468164988235e-07,6.786635159414356e-06,0.0,0.0,0.0,7.020922185415229e-07,7.360712753211142e-07,7.817600085308656e-07,7.102183580172356e-07,7.448349149848407e-07,7.915347577738322e-07 +1208,Potassium,"('soil', 'agricultural')",emission,kilogram,biosphere3,7.343153067423707e-06,1.6477633263874602e-05,9.269918454511866e-06,9.109096388519611e-06,1.2665010472244084e-05,2.6198702349119695e-05,1.7672828777294144e-05,4.246310338439907e-05,3.452674482584167e-05,2.3805823871509863e-05,5.450208561938849e-05,3.3871475842188055e-05,6.363030566129506e-05,0.0001396500006871054,3.368335258393721e-05,4.487147402418589e-05,9.89362942341786e-05,3.203160406081999e-05,5.595142912780479e-05,0.00012194813749870631,3.5606677045613466e-05,7.090002764464822e-06,7.396135254041676e-06,7.812103092769668e-06,2.8393912633763762e-05,2.9609239817114752e-05,3.1257403156992256e-05,2.6847974002134e-05,2.799131383076715e-05,2.954410451108857e-05 +1209,Potassium,"('soil', 'industrial')",emission,kilogram,biosphere3,1.6982500710525768e-06,9.814206013541961e-06,3.719576153648075e-05,1.4859081076443074e-06,9.446436055620073e-06,3.407768880235153e-05,1.1323731527384772e-06,9.156946128200352e-06,3.526613763019312e-05,1.1193127681995387e-06,9.027208329112911e-06,3.499555839190368e-05,1.1069872399587948e-06,8.662746158245304e-06,3.291460579572974e-05,1.520295191937556e-06,9.591416529266375e-06,3.5014844417136895e-05,1.5605960315894786e-06,8.908337512609773e-06,3.2481877015340995e-05,3.410593638715762e-05,3.784703293844469e-05,4.32439275612422e-05,3.0076341035705723e-05,3.331815695222533e-05,3.7986978145603494e-05,3.285693915389001e-05,3.633156249118908e-05,4.133139828265449e-05 +1210,Potassium,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.6400951345228173e-08,7.914328693963606e-08,1.8890730376976586e-07,1.4274267644461001e-08,7.605137591760857e-08,1.813172523286418e-07,1.221789651421878e-08,5.404666414627579e-08,1.2812690804231443e-07,1.2847160957510158e-08,5.4165442014463456e-08,1.264950990077616e-07,1.501323214678762e-06,2.823155926445637e-06,6.344358432997362e-05,1.8285984805491094e-06,3.0759221347034012e-06,6.373425836417395e-05,0.0,0.0,0.0,6.690103512393109e-06,7.01342239537026e-06,7.448244772086153e-06,6.764398279757073e-06,7.093614521134014e-06,7.537813198713923e-06 +1211,Scandium,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3456358577056704e-09,6.230560621873052e-09,1.4230062271540527e-07,4.074594227898137e-09,6.789010883835715e-09,1.4294449846648147e-07,0.0,0.0,0.0,1.4787920331582855e-08,1.5503609198844626e-08,1.6465934843421433e-08,1.495907833613764e-08,1.568819464460865e-08,1.667181693299369e-08 +1212,Selenium,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.415576194372392e-10,7.798668086102027e-10,1.361967444233558e-09,4.078122515109509e-10,8.655594459406255e-10,1.4634830622007975e-09,0.0,0.0,0.0,1.014760062227564e-09,1.0635405619661622e-09,1.1295383786666217e-09,1.0050046781988288e-09,1.052766140187355e-09,1.1173546124779007e-09 +1213,Selenium,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.1683886489268218e-09,5.638092523818193e-09,1.3457569181883842e-08,1.0168857225183656e-09,5.4178276537245285e-09,1.2916861144504616e-08,8.70392034469138e-10,3.850235352194994e-09,9.127637327553483e-09,9.152198932898983e-10,3.858696685642424e-09,9.011389807604027e-09,3.7034378295603463e-09,8.838112788724518e-09,1.281324756910201e-07,4.5218908472405295e-09,9.610648711299148e-09,1.289692207717221e-07,0.0,0.0,0.0,2.0227780958558907e-08,2.1173893647318265e-08,2.2451971268350892e-08,2.023837491493132e-08,2.1190226562347608e-08,2.2479028842063492e-08 +1214,Silicon,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.1255752203103154e-05,3.0670708744501506e-05,2.9178784238432065e-05,1.4007137586710334e-05,2.2415805533086393e-05,4.773466023424778e-05,2.7038017558396388e-05,6.89246091497542e-05,6.322525533786983e-05,3.639366700330614e-05,8.730952758234074e-05,6.237909291428162e-05,9.677327993668981e-05,0.00021462584267777118,5.871426919303693e-05,6.830659110863684e-05,0.0001528249258932099,5.6018631588020434e-05,8.536195278929845e-05,0.00019958811434716376,7.748237869873558e-05,2.6828869072108398e-05,2.7867266026608158e-05,2.9275765807626914e-05,5.2525642759350684e-05,5.4742281109123296e-05,5.775384582954239e-05,4.827143006453014e-05,5.0258526480345647e-05,5.296048639483106e-05 +1215,Silicon,"('soil', 'industrial')",emission,kilogram,biosphere3,4.852143113896361e-07,2.8040589036013117e-06,1.062736061064483e-05,4.245451806731767e-07,2.698981775063518e-06,9.736482676883486e-06,3.2353519187732303e-07,2.616270365853366e-06,1.0076039490484155e-05,3.198036533754916e-07,2.5792024226403814e-06,9.998731135401132e-06,3.162820738196372e-07,2.475070372089426e-06,9.404173240892362e-06,6.377252498075549e-06,1.683391132373856e-05,3.946799080050694e-05,7.1998792348493235e-06,1.7384472413233412e-05,3.8841189177006935e-05,9.744553412568908e-06,1.0813438159089414e-05,1.235540807668666e-05,2.479403889886631e-05,2.7061105462087306e-05,3.021422616318171e-05,2.6134039327259742e-05,2.8577019620904742e-05,3.1967524218444506e-05 +1216,Silicon,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0522774808697023e-07,5.077792749405756e-07,1.2120182185772091e-06,9.158305416518207e-08,4.879417198692032e-07,1.1633208394549628e-06,7.838952506915137e-08,3.467610586275166e-07,8.220553538223008e-07,8.242679168286042e-08,3.475230790972733e-07,8.115859322502472e-07,3.1417392356511085e-05,5.868328053933779e-05,0.0013336358288026952,3.82637581896324e-05,6.394134311445857e-05,0.0013396933509982893,0.0,0.0,0.0,0.00013921433615868671,0.00014594891410276854,0.00015500485864629521,0.00014080549615256023,0.00014766534350384608,0.00015692011817811013 +1217,Silver,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0904258278373735e-18,3.2797431301095456e-17,5.88135073024721e-17,1.1548373744864522e-18,3.143790160424032e-17,5.602465039167508e-17,1.5122969850426577e-18,3.395495535151891e-17,6.021769076409436e-17,9.443340165131847e-19,3.2674640828489505e-17,5.987211257066937e-17,9.15927534974333e-19,3.1419814728717776e-17,5.689001883006516e-17,1.1929379615513978e-18,3.259499092552667e-17,7.774943092607129e-17,0.0,0.0,0.0,8.049659834139143e-17,8.421654927831845e-17,8.959243812879628e-17,6.213832077567877e-17,6.225767965006423e-17,6.24233160964783e-17 +1218,Silver,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.987124045349629e-11,9.882128802809443e-11,3.41632469689984e-10,4.161648795846374e-11,9.456985343867272e-11,3.3835387023231884e-10,0.0,0.0,0.0,1.5525462545807803e-10,1.742383827944017e-10,2.0000598426450126e-10,1.616039263489681e-10,1.8240009309458896e-10,2.1050337368584427e-10 +1219,Silver,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,5.856456710985441e-12,2.8260498017415752e-11,6.745501433420692e-11,5.097060136257609e-12,2.7156437582994002e-11,6.474475756529695e-11,4.362771950268235e-12,1.929900344089894e-11,4.5751568754422346e-11,4.587468126944798e-12,1.934141524610348e-11,4.516888703450661e-11,4.868489783416059e-10,9.163865835153696e-10,2.0559950312144718e-08,5.929830888706634e-10,9.984246642849116e-10,2.065426716875247e-08,0.0,0.0,0.0,2.171242715599346e-09,2.276159389339101e-09,2.417261549857405e-09,2.195252656422616e-09,2.302077523697128e-09,2.4462143137327244e-09 +1220,Sodium,"('soil', 'industrial')",emission,kilogram,biosphere3,9.704285547807097e-06,5.6081174150399966e-05,0.0002125471973601259,8.490903020385156e-06,5.397963173085952e-05,0.00019472963993602993,6.470703385575887e-06,5.232540366219391e-05,0.00020152077573365608,6.396072620755631e-06,5.1584044849727596e-05,0.00019997460874002053,6.325641034558361e-06,4.9501403984176826e-05,0.00018808345168043103,7.86393230091355e-06,5.298199294955453e-05,0.0001944785246744492,7.974863606379971e-06,4.911683963279598e-05,0.00017980453753513458,0.0001948910546359493,0.0002162687480728022,0.0002471081442701474,0.00016821349448718632,0.00018646763872608702,0.00021278005205624926,0.0001841119434821876,0.00020368574093605098,0.00023187669298389428 +1221,Sodium,"('soil',)",emission,kilogram,biosphere3,1.3858129026308243e-07,1.183406357765398e-06,3.2638595557933625e-06,5.270588843331759e-07,2.4154270981390883e-06,5.987197284396851e-06,4.5165841303898524e-07,2.28030144511126e-06,5.603184364385991e-06,4.475428053464472e-07,2.2235965289961144e-06,5.461770088550392e-06,4.6639230116403044e-07,2.340195994852148e-06,5.716258760044853e-06,9.632313074096375e-07,3.1779498230482056e-06,2.687154596922146e-05,1.1502225441398816e-06,3.40069757496828e-06,2.7099866712207492e-05,3.2106212460078147e-06,3.3440319254858917e-06,3.523274204856595e-06,7.4153364906239685e-06,7.757810750323134e-06,8.221159349868747e-06,7.373383966964184e-06,7.714675035887105e-06,8.177324015966608e-06 +1222,Strontium,"('soil', 'agricultural')",emission,kilogram,biosphere3,3.373271964187506e-10,7.469098194299707e-10,6.169267163152701e-09,3.2416568967152917e-10,2.0144905324644802e-09,8.544009868580129e-09,2.51725598316271e-10,1.8908412338125536e-09,8.386654417369797e-09,2.482674246015421e-10,1.8556194380898802e-09,8.332094536305091e-09,2.4045044457964847e-10,1.8331615702452575e-09,8.275983958087996e-09,2.406590549955051e-10,1.7206583603154638e-09,7.341569608032825e-09,2.2285054086777025e-10,1.591224859858117e-09,7.0546377005112436e-09,5.238114728724769e-09,6.221566255346581e-09,7.645729582121933e-09,6.572842902066664e-09,7.50319599302298e-09,8.851890757051565e-09,6.872602396934968e-09,7.83397196982116e-09,9.227387034988094e-09 +1223,Strontium,"('soil', 'industrial')",emission,kilogram,biosphere3,4.852142761231892e-08,2.8040586996345414e-07,1.0627359837467574e-06,4.245451497836963e-08,2.698981578687998e-07,9.736481968464957e-07,3.235351683372392e-08,2.616270175495767e-07,1.0076038757359023e-06,3.198036301070138e-08,2.5792022349799453e-07,9.998730407901098e-07,3.162820508074262e-08,2.4750701920056264e-07,9.404172556652197e-07,4.6039713692852806e-08,2.7974351809585733e-07,9.951946572614221e-07,4.812182594876773e-08,2.6288632067400115e-07,9.261392894026192e-07,9.744552703593047e-07,1.0813437372344196e-06,1.235540717775152e-06,8.637607951112304e-07,9.556191704065069e-07,1.0879722329255555e-06,9.421278578876824e-07,1.0404234145159428e-06,1.181954748144134e-06 +1224,Strontium,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,8.418209716954923e-10,4.062230339532524e-09,9.696139984040914e-09,7.326635246395149e-10,3.903530080910785e-09,9.306561315873589e-09,6.271152842381827e-10,2.774084747269362e-09,6.576437402145025e-09,6.594135425692553e-10,2.780181037173492e-09,6.4926816505599815e-09,1.2282952674340992e-07,2.3014344595004107e-07,5.203160716212874e-06,1.4960034768925313e-07,2.5075724760849155e-07,5.226888905960785e-06,0.0,0.0,0.0,5.456941436965795e-07,5.720803580709875e-07,6.075639110047678e-07,5.518490540638382e-07,5.787216607059553e-07,6.149778268421794e-07 +1225,Sulfur,"('soil', 'industrial')",emission,kilogram,biosphere3,2.911285833596226e-06,1.6824352884527867e-05,6.376416132609076e-05,2.5494597329540318e-06,1.621078051871842e-05,5.848264022271721e-05,1.942856624191013e-06,1.5713495962300915e-05,6.051872344913723e-05,1.9204652381469598e-06,1.5492906304423128e-05,6.0059111418259956e-05,1.899185970385148e-06,1.4867277591099424e-05,5.6489117827258307e-05,2.3821407339159178e-06,1.5916501774845213e-05,5.856321413150401e-05,4.4802239916097504e-06,2.6788320734269013e-05,7.978796879194944e-05,5.8467318278274126e-05,6.488062651321017e-05,7.413244566635286e-05,7.006630946734948e-05,7.649909453000705e-05,8.568862154745472e-05,5.554970860669214e-05,6.142907788881902e-05,6.989664641356503e-05 +1226,Sulfur,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,3.439853297673216e-08,1.659910838332832e-07,3.962042601145551e-07,2.9938135264242105e-08,1.595062653726026e-07,3.8028527466936274e-07,2.562521575328046e-08,1.1335479239978592e-07,2.687267643636729e-07,2.6944991014011753e-08,1.1360390104538184e-07,2.653043262182065e-07,6.660975491288271e-06,1.2461852188794686e-05,0.0002824474785033359,8.112638106783241e-06,1.3578248546667827e-05,0.00028373306226818945,0.0,0.0,0.0,2.955552631701448e-05,3.098495386709894e-05,3.290715723333057e-05,2.9891023224871566e-05,3.134691522720791e-05,3.331114044080154e-05 +1227,Sulfuric acid,"('soil', 'agricultural')",emission,kilogram,biosphere3,6.098399895443076e-14,1.7159819715542015e-12,4.9379326171758545e-12,2.5391501006576586e-15,4.3629249098114924e-14,1.2500543828001787e-13,2.285329093617917e-15,4.197413272046136e-14,1.1768830913275418e-13,2.311217330338324e-15,4.201890990008556e-14,1.178005091396601e-13,2.6985948115395044e-13,5.845440406723045e-12,1.6340237208644745e-11,2.91522878658058e-13,5.7794353021850884e-12,1.6046681128583568e-11,2.688796644969791e-07,3.159395664849103e-07,7.129774271627517e-07,5.061846048798763e-12,5.269357142795795e-12,5.546708340221047e-12,3.7424445749056407e-07,4.593458616446945e-07,5.828595222738023e-07,1.6260346765202577e-11,1.6962987212148948e-11,1.790524626606471e-11 +1228,Thallium,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.636165492268911e-10,5.993952022949765e-10,9.994363752367229e-10,3.179324578704103e-10,6.595347569189188e-10,1.065339163088289e-09,0.0,0.0,0.0,7.822868618677666e-10,8.157578356330659e-10,8.610116216329372e-10,7.774462398049094e-10,8.101594299808873e-10,8.543671378484504e-10 +1229,Thallium,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0582161220170747e-10,3.833005403621745e-10,8.754253251183996e-09,2.5066671590152866e-10,4.1765608236834366e-10,8.793864120615299e-09,0.0,0.0,0.0,9.097444351946249e-10,9.53773206632136e-10,1.0129749321187678e-09,9.202739781443427e-10,9.6512879811712e-10,1.0256406810007158e-09 +1230,Tin,"('soil', 'agricultural')",emission,kilogram,biosphere3,8.616160396060948e-11,3.83636312815751e-09,1.0185998331797146e-08,1.3867725447102752e-10,2.177199867024109e-09,5.427541905500526e-09,1.72917371944161e-10,3.0820618914462413e-09,7.352219673268645e-09,2.1361134609609726e-10,3.1752984161376493e-09,7.451280130955234e-09,2.2730279985332578e-10,1.990005601623956e-09,5.121566472745453e-09,2.0299263686723072e-10,1.9256618999781884e-09,4.992125946780906e-09,3.7983707603482156e-10,9.924993588204493e-09,1.5789948957634484e-08,1.0827312699479717e-08,1.1214022107693758e-08,1.173781247884186e-08,6.346378919621824e-09,6.596640015467471e-09,6.939714527168074e-09,5.062126698854905e-09,5.231364763892126e-09,5.463392166593303e-09 +1231,Tin,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.635566926919643e-09,1.7519501620385457e-08,4.6749365231255715e-08,9.664227994966511e-09,1.9944257706052352e-08,5.011301654113693e-08,0.0,0.0,0.0,2.233435909193668e-08,2.463292862434046e-08,2.775014590850732e-08,2.2529027693247834e-08,2.4974936590826964e-08,2.8280515514110738e-08 +1232,Tin,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3533222708875183e-09,4.382580081989477e-09,1.0009434344926168e-07,2.866072026114354e-09,4.7753943314974244e-09,1.0054724603901958e-07,0.0,0.0,0.0,1.040183203917584e-08,1.0905248018065332e-08,1.1582148454183253e-08,1.0522224682436603e-08,1.1035085531545898e-08,1.1726966039721458e-08 +1233,Titanium,"('soil', 'agricultural')",emission,kilogram,biosphere3,1.859367394990869e-07,4.1723186980425894e-07,2.3472463446731332e-07,2.3065236012075993e-07,3.2069202542861104e-07,6.633800257269277e-07,4.474955041230031e-07,1.0752125872108489e-06,8.742552775206812e-07,6.027896993534753e-07,1.3800528864155051e-06,8.576631438608469e-07,1.6111894690486542e-06,3.53609194067448e-06,8.528996760447117e-07,1.1361951785128862e-06,2.5051760242740567e-06,8.110755887941642e-07,1.416751855094169e-06,3.0878612655964866e-06,9.016003997559232e-07,1.7952675596347759e-07,1.8727837111559171e-07,1.9781113950066857e-07,7.189652498765798e-07,7.497386784904343e-07,7.914719975931272e-07,6.7982036124969e-07,7.087709904451892e-07,7.480893683931487e-07 +1234,Titanium,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.103607195310814e-08,1.3624527844926274e-07,2.2362054531909672e-07,7.211249105460481e-08,1.6123277788685693e-07,2.568614098764913e-07,0.0,0.0,0.0,1.6279816709147492e-07,1.7059546679160284e-07,1.81158081738252e-07,1.5651134679616775e-07,1.6360270625597805e-07,1.732252255195713e-07 +1235,Titanium,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,2.2134091042461518e-08,1.0680866163117264e-07,2.549416378720087e-07,1.9264002478740143e-08,1.0263593839385439e-07,2.4469840384855553e-07,1.6488811784058786e-08,7.29393163505626e-08,1.729149752312007e-07,1.7338032508448877e-08,7.3099606020915e-08,1.7071277876679359e-07,1.1377999366546852e-06,2.1556937238730374e-06,4.7837576837716166e-05,1.3859261384916955e-06,2.348538425119822e-06,4.805889846242006e-05,0.0,0.0,0.0,5.10224010849775e-06,5.348550211821285e-06,5.679854517296188e-06,5.157059826284164e-06,5.407763542441336e-06,5.74606708845416e-06 +1236,Vanadium,"('soil', 'agricultural')",emission,kilogram,biosphere3,5.322101747683372e-09,1.1942504793869132e-08,6.718564736018643e-09,6.602005601051086e-09,9.17922772017181e-09,1.898805021620059e-08,1.280874738806746e-08,3.077601053109035e-08,2.502397087526085e-08,1.7253762155314083e-08,3.950151136633373e-08,2.4549051155913725e-08,4.611737722985123e-08,1.0121422009376945e-07,2.4412704942008485e-08,3.252152685621351e-08,7.170612109280754e-08,2.321556611110905e-08,4.055195298560204e-08,8.838442941704723e-08,2.5806674039184276e-08,5.138625838948603e-09,5.360501679504853e-09,5.661982956451336e-09,2.05790741747114e-08,2.1459907632760536e-08,2.2654448028122493e-08,1.9458623246353456e-08,2.0287282383394927e-08,2.1412699475441358e-08 +1237,Vanadium,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1955541240071125e-08,5.1129951199174665e-08,8.151678129663917e-08,2.49659148760599e-08,6.598343283397561e-08,1.0315464776432975e-07,0.0,0.0,0.0,5.1987361977495556e-08,5.4658580786243184e-08,5.82679965945049e-08,4.61542880084959e-08,4.8350041469351686e-08,5.1333383583420055e-08 +1238,Vanadium,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,5.856456814182542e-11,2.8260498515319355e-10,6.74550155223965e-10,5.097060226076819e-11,2.715643806145502e-10,6.474475870577055e-10,4.362772027158697e-11,1.9299003781006613e-10,4.5751569560472e-10,4.587468207782657e-11,1.934141558694244e-10,4.5168887830298246e-10,2.5681542615669118e-08,4.792390814655715e-08,1.0908453889612269e-06,3.127770153037697e-08,5.2218383356905734e-08,1.0957940801226062e-06,0.0,0.0,0.0,1.1370742608610999e-07,1.1920886164162602e-07,1.2660646855812922e-07,1.1501229187766381e-07,1.206163408869891e-07,1.2817677957878422e-07 +1239,Zinc,"('soil', 'agricultural')",emission,kilogram,biosphere3,2.3669639443904433e-07,6.623957450868187e-07,4.5339177106425976e-07,2.9932090997147746e-07,4.949784470252079e-07,-4.2198862123605666e-07,5.693428351711405e-07,1.4584145237692304e-06,6.371584334693107e-07,7.705862779814376e-07,1.857868028920885e-06,1.39682738909861e-06,1.9549617782367597e-06,4.340637736453184e-06,2.4509085665298216e-07,1.3831158773755357e-06,3.0987743199814202e-06,1.9220143080567766e-07,1.7293545613464567e-06,4.1070020433408856e-06,6.593069117675753e-07,3.786418121316305e-07,3.9634605176037575e-07,4.209331625038523e-07,-9.550293063148219e-09,-6.628507742833799e-09,-1.771495483261048e-09,-4.531628594222808e-08,-4.4825900678370624e-08,-4.3217707984998295e-08 +1240,Zinc,"('soil', 'forestry')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.6401313305167816e-09,-8.32741427488643e-09,-1.503465551813119e-08,0.0,0.0,0.0,-5.79038522036027e-09,-6.058728624589521e-09,-6.423803924914529e-09,0.0,0.0,0.0 +1241,Zinc,"('soil', 'industrial')",emission,kilogram,biosphere3,7.278214572218548e-08,4.206088340933679e-07,1.5941040899041022e-06,6.806787287681363e-08,4.386946276190926e-07,1.5882157372836708e-06,5.182784115049834e-08,4.2425168276574544e-07,1.6366291656843276e-06,5.1263790098436876e-08,4.223346202654313e-07,1.633525728368689e-06,5.0435382097093094e-08,4.0503865755604894e-07,1.53903892107925e-06,1.545365116010804e-07,6.522721415280565e-07,2.279569748492617e-06,1.6553222285125468e-07,6.359519820247948e-07,2.1582649259539474e-06,1.4616830110131699e-06,1.6220157229317993e-06,1.8533112104877346e-06,1.707870934551136e-06,1.8874755262102966e-06,2.1432198843556854e-06,1.8533772166828335e-06,2.053418431334775e-06,2.33806155177273e-06 +1242,Zinc,"('soil',)",emission,kilogram,biosphere3,1.4595175280939896e-07,5.285599438387779e-07,1.2670981871469998e-06,4.4370503281671766e-07,2.1168051024610924e-06,5.0448979940182916e-06,3.8615197452654714e-07,2.0334994612928783e-06,4.841255043435478e-06,3.3135822418561503e-07,1.4487944107749833e-06,3.428183427151817e-06,3.480587405472815e-07,1.4505406262951174e-06,3.3819768803136635e-06,3.4042407466193304e-07,1.3564765563059694e-06,3.244451130580916e-06,4.1766738659277976e-07,1.4692106069151327e-06,3.3505774399229645e-06,1.1347813892113075e-06,1.1824432732932388e-06,1.2473973069569248e-06,2.9208196578078476e-06,3.049933252718575e-06,3.2257756139189126e-06,2.875484665458997e-06,3.0031086466754053e-06,3.1771103068267956e-06 +1243,"1,4-Butanediol","('water', 'surface water')",emission,kilogram,biosphere3,4.4839772370912784e-13,1.11780220447942e-11,1.8459375971189385e-10,5.7713928013337854e-11,1.345433993937618e-10,2.393017111726645e-09,4.4184278393698316e-11,1.0624858503149653e-10,1.4675711322475417e-09,5.3945002344286305e-11,1.2805690246480326e-10,1.4341157778980381e-09,3.3120307855540656e-11,7.950309383708591e-11,2.1410830709058327e-09,3.3174974672555375e-11,3.426391516817656e-10,3.005882041774979e-09,5.0276897415958995e-11,3.6178743291010083e-10,2.430426028204322e-09,1.9577153985730245e-10,2.0404780263130964e-10,2.1520460213895572e-10,2.5280845630996036e-09,2.6332605160410353e-09,2.775585523194601e-09,3.1663373842112323e-09,3.295587572406797e-09,3.4700884440608526e-09 +1244,1-Pentanol,"('water', 'surface water')",emission,kilogram,biosphere3,4.193153582239476e-12,5.803558523787296e-12,2.8476552776478158e-11,9.87467264682729e-12,1.708294897455962e-11,2.2893757206813867e-10,8.216277742287701e-12,1.4253275756901024e-11,1.6253814157060813e-10,9.948514243476298e-12,1.81779652505522e-11,1.951148411776919e-10,5.07220113670853e-12,7.1728496639355876e-12,2.0343572844862232e-10,4.975858273791143e-12,6.888582828468551e-12,2.013625892919648e-10,8.965500914646144e-12,1.2105520816850317e-11,3.3014063618407435e-10,2.345984086532233e-11,2.5770971291667797e-11,2.9055720354364913e-11,3.4023731087971187e-10,3.5666997319432036e-10,3.7910179719682503e-10,2.08380113834005e-10,2.1854647646523485e-10,2.3243645995115878e-10 +1245,1-Pentene,"('water', 'surface water')",emission,kilogram,biosphere3,3.1686762583512515e-12,4.385624879156069e-12,2.15192104361728e-11,7.462107194677001e-12,1.2909282824529364e-11,1.730044633945604e-10,6.208887210802913e-12,1.0770945669693035e-11,1.2282745608770064e-10,7.517911235218092e-12,1.373677217282941e-11,1.4744516330136606e-10,3.832957620515185e-12,5.420378402476229e-12,1.5373312363401307e-10,3.7601525677610066e-12,5.2055621290760814e-12,1.5216648547064665e-10,6.775083614349434e-12,9.147946556710974e-12,2.4948209932655493e-10,1.7728194942130562e-11,1.9474670709189708e-11,2.1956890621033887e-11,2.57112004981184e-10,2.6952990914132605e-10,2.864812851847475e-10,1.574695511701486e-10,1.6515210302662012e-10,1.7564853269221357e-10 +1246,2-Aminopropanol,"('water', 'surface water')",emission,kilogram,biosphere3,5.721605899821968e-14,1.1914271885511276e-13,2.7485192386540017e-11,2.337913062660334e-11,5.177358157357618e-11,2.606638651598985e-10,2.691000159325221e-11,6.06993146877252e-11,1.7944450234934087e-10,4.791991110995842e-11,1.0748919908392651e-10,1.4946452075226513e-10,6.934119470394562e-13,1.6677603966172937e-12,2.0098117550510347e-10,5.616905349465692e-13,1.3503760095575845e-12,1.9903629770964072e-10,9.205002133366854e-12,1.2406818326241635e-11,3.561774919516352e-10,2.926295486499657e-11,3.051476113866356e-11,3.220594577301362e-11,3.6771750198398544e-10,3.853666469823657e-10,4.094469501141892e-10,2.12276218279496e-10,2.2129993194277842e-10,2.334840692289467e-10 +1247,2-Methyl-1-propanol,"('water', 'surface water')",emission,kilogram,biosphere3,7.271432393238703e-12,1.0202098246733618e-11,1.81090855805195e-10,2.3918445100918875e-11,4.503181100688542e-11,8.109856094213423e-10,1.9146459637996236e-11,3.603079309080008e-11,5.948534797503783e-10,2.482429493828622e-11,4.9014874871563987e-11,1.9076572297443775e-09,9.748189942377265e-12,1.5017840097782026e-11,8.170219399413101e-10,9.421667834515004e-12,1.4116336285131195e-11,8.108287624393671e-10,2.8262149724755368e-11,3.8704954958955205e-11,1.2303155545687394e-09,1.814051748896654e-10,1.91379343397044e-10,2.0512922041142732e-10,1.2751928662479997e-09,1.3355194590822553e-09,1.4177314493579462e-09,8.540738430016089e-10,8.926517547448242e-10,9.450237600432571e-10 +1248,2-Methyl-2-butene,"('water', 'surface water')",emission,kilogram,biosphere3,7.028623114980912e-16,9.728006143054246e-16,4.773251462132391e-15,6.039376363252224e-12,9.292680469829565e-12,1.3410897596179183e-11,5.184343939259346e-12,9.197755270408805e-12,1.4112870794214313e-11,5.199127576764377e-12,5.790458692387967e-12,6.636918860024249e-12,3.1255885849589412e-15,8.66962654772213e-15,1.0231949944206685e-13,4.699405288086036e-15,1.9365755928098002e-14,1.2088379876205043e-13,7.703102176533827e-15,2.405912964457017e-14,1.8656618073943392e-13,3.932341205520904e-15,4.319734863264573e-15,4.870327401463105e-15,1.687886786665355e-13,1.8675647361765565e-13,2.1008444834130276e-13,1.0732000867467145e-13,1.1755558307815022e-13,1.3091874593527708e-13 +1249,2-Propanol,"('water', 'surface water')",emission,kilogram,biosphere3,9.525228198794356e-13,1.4485229263180043e-11,9.616062202817456e-11,5.1234038093235965e-11,1.510232271394894e-10,1.1248590532001857e-09,3.3964602198977474e-11,1.1237946925983089e-10,7.671592367577743e-10,5.669108953318805e-11,1.6187705559633195e-10,7.115758480485343e-10,1.1608100529109319e-11,5.637209660647424e-11,9.184984753886238e-10,4.4483896664170286e-12,3.137628856831952e-11,8.768902492296275e-10,4.674987595461896e-11,1.1469329482019441e-10,1.5260390696165565e-09,8.423246515562958e-11,8.807113230649621e-11,9.328635192633107e-11,1.507069476986437e-09,1.580453190698271e-09,1.6806867496653508e-09,9.018580029218807e-10,9.407328973733833e-10,9.932898277630539e-10 +1250,2-Propanol,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.113362694810041e-09,2.204798638324541e-08,1.26081139722046e-07,1.98328354597461e-08,1.0283359761817003e-07,5.763494061020565e-07,2.3976956825981918e-08,1.0535904436396174e-07,5.71620832275361e-07,0.0,0.0,0.0,1.292418518352095e-07,5.83499321609861e-07,1.14949381717275e-06,1.365437647935141e-07,5.9269139918407e-07,1.1612253717546496e-06 +1251,4-Methyl-2-pentanol,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,9.664809587500255e-18,2.0396580361648008e-17,3.857756683785631e-17,9.456306171214216e-18,1.938050761451469e-17,3.6618761893702085e-17,7.1826496798752e-18,1.7576372979736158e-17,3.697375016060536e-17,8.499452123068054e-17,1.4035474738347606e-16,2.581600788182843e-16,1.6989595983161255e-12,8.306199703233955e-12,1.3338859402847007e-11,0.0,0.0,0.0,7.179574133815289e-12,7.529250760079038e-12,8.004996234283586e-12,1.1457810480796407e-16,1.384356128685072e-16,1.7301271677510492e-16 +1252,4-Methyl-2-pentanone,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.294015148315717e-10,1.610501037510148e-09,2.5862837178637493e-09,0.0,0.0,0.0,1.3920597636785014e-09,1.459855585137262e-09,1.5520934137106903e-09,0.0,0.0,0.0 +1253,4-Methyl-2-pentanone,"('water',)",emission,kilogram,biosphere3,1.040445518293361e-13,5.613283814349516e-13,1.4690278043511162e-12,3.216357823525334e-10,6.207183386596278e-10,1.4046524234499668e-09,2.2470193314555143e-10,4.18470739341928e-10,1.0130229471056136e-09,1.892333570201869e-10,3.8488834881027274e-10,9.786514710597349e-10,1.947982218775939e-10,6.742599879846023e-10,2.025044270958164e-09,1.8074744360701574e-10,6.43432247805205e-10,2.027984245434859e-09,2.2858281207688811e-10,6.788855561980151e-10,2.0082217450257474e-09,1.3802955506034557e-12,1.4463867938807602e-12,1.5360503068496216e-12,1.4922393697694843e-09,1.5925133444678683e-09,1.7249829179911341e-09,1.5731287792219387e-09,1.674267966772509e-09,1.8081153112818555e-09 +1254,Acenaphthene,"('water', 'ocean')",emission,kilogram,biosphere3,1.9380159999481323e-11,1.207739578562251e-10,4.6051857636626413e-10,2.3749967578203158e-12,1.80725440593261e-11,6.7974646806535e-11,1.749420595403078e-12,1.688695705612326e-11,6.649700779666357e-11,1.7329435257200342e-12,1.6578177087425126e-11,6.590235885886551e-11,1.3815053275220791e-12,1.3632937783152793e-11,5.475145534170629e-11,1.654562201137421e-12,1.422906478357203e-11,5.5465417143938766e-11,1.4966262353417829e-12,1.2736218694532775e-11,5.095705825136519e-11,4.235534239288317e-10,4.707831911378418e-10,5.390291412846135e-10,4.8589269578139066e-11,5.397146897289832e-11,6.174595309932222e-11,5.33707765934972e-11,5.91474209453399e-11,6.74836714054216e-11 +1255,Acenaphthene,"('water', 'surface water')",emission,kilogram,biosphere3,4.2065095495125514e-11,2.4586617802364486e-10,9.240957683253226e-10,3.919041759453177e-11,2.981368395597389e-10,1.12136944613938e-09,3.0177194813876597e-11,2.9119114114837016e-10,1.146668988577724e-09,4.483871697015306e-11,3.315562013108833e-10,1.8395331472298127e-07,4.2198040594966483e-11,3.148319792960197e-10,5.2820557246481725e-09,4.6441380541765075e-11,3.2315072799309627e-10,5.280819273464664e-09,6.612687212312768e-11,3.338010942930713e-10,5.2482322581778745e-09,8.466573707386156e-10,9.403405636760393e-10,1.075666882200398e-09,5.435080152180723e-09,5.734302898856724e-09,6.148636024703236e-09,5.511965830717916e-09,5.818890094809905e-09,6.2443307374248255e-09 +1256,Acenaphthylene,"('water', 'ocean')",emission,kilogram,biosphere3,1.2120389851134696e-12,7.553226807150171e-12,2.8800921254350366e-11,1.4853275861898817e-13,1.1302604163799253e-12,4.251147616552008e-12,1.0940910389224861e-13,1.0561135748786394e-12,4.158735785817777e-12,1.0837862475332777e-13,1.036802415650364e-12,4.121546325727063e-12,8.639961156492727e-14,8.526065773965537e-13,3.4241666535045086e-12,1.034766414870007e-13,8.898884758108854e-13,3.4688179633154884e-12,9.359929550421989e-14,7.965255913905248e-13,3.1868643223452205e-12,2.6489113428601478e-11,2.944287224597941e-11,3.371098722742177e-11,3.0387823587370773e-12,3.3753861544722304e-12,3.861603902069081e-12,3.3378187363700294e-12,3.699091196349128e-12,4.220441919586039e-12 +1257,Acenaphthylene,"('water', 'surface water')",emission,kilogram,biosphere3,2.6307591187672243e-12,1.5376518353270237e-11,5.779312865738082e-11,2.4509763297903738e-12,1.8645535864393115e-11,7.01306630073054e-11,1.887287626111249e-12,1.82111505364248e-11,7.171290130629045e-11,1.910590000555375e-12,1.8004149002645537e-11,5.75469786697895e-10,1.7442549675855838e-12,1.6915428499965093e-11,7.900726640256925e-11,2.0766177156850052e-12,1.763839322476863e-11,7.984370477060554e-11,1.9455508065158455e-12,1.5911893801946897e-11,7.444964123427946e-11,5.295011633176879e-11,5.88090814102822e-11,6.727241564991593e-11,7.217642516599764e-11,7.933533521823557e-11,8.962683002850584e-11,7.801447621480131e-11,8.565874616377338e-11,9.664187365329027e-11 +1258,Acetaldehyde,"('water', 'surface water')",emission,kilogram,biosphere3,6.354495218943142e-10,1.6013887490539875e-08,6.906499826390191e-08,5.199877110630542e-08,2.8939014614668474e-07,1.5527740205381264e-06,5.892131305528403e-08,3.361466742069411e-07,1.8547502590057798e-06,5.946532565128601e-08,3.371933990735817e-07,1.909383014235666e-06,5.975500392007712e-08,3.563925165389748e-07,1.924266537090515e-06,6.02252825223142e-08,3.564624957096994e-07,1.9220189335507624e-06,7.36382930854642e-08,3.620572576862655e-07,1.9363110393159614e-06,7.16085702291578e-08,7.45865036097144e-08,7.85829746876148e-08,6.241233773901778e-07,1.9915470288177674e-06,3.6963485330370745e-06,6.206352317413567e-07,1.989674607448033e-06,3.696916918798687e-06 +1259,Acetic acid,"('water', 'surface water')",emission,kilogram,biosphere3,6.5686636123848e-08,3.7129419337073796e-07,2.1497416907914597e-06,7.843620407203299e-08,3.9935147697099007e-07,2.1983975192574226e-06,6.923158883573192e-08,3.8607170465585915e-07,2.1297548336097467e-06,7.082497922353854e-08,3.893424703408468e-07,2.8350839929071936e-06,7.004104627296279e-08,4.076591575561261e-07,2.243087646002233e-06,7.11276072136604e-08,4.112121212655222e-07,2.2528956794363555e-06,8.59786049420299e-08,4.207679969274296e-07,2.38426806449329e-06,7.330405821876514e-07,2.2230654225742266e-06,4.081742593504287e-06,9.607845655348905e-07,2.461407897677869e-06,4.333645238249557e-06,8.351457128852249e-07,2.3319235130154737e-06,4.199240484630655e-06 +1260,Acetone,"('water', 'surface water')",emission,kilogram,biosphere3,1.490123860659509e-11,3.365904334742559e-11,9.119840400343126e-09,7.164699017209406e-11,1.5509726692260122e-10,1.906815467107544e-09,7.797625523100982e-11,1.733814176274032e-10,1.7249336356996371e-09,1.333455666017451e-10,2.965541182329761e-10,1.7119179231682765e-09,1.307062005576731e-11,2.6607137611894865e-11,2.6139583325321257e-09,6.40158365942321e-08,1.4862492521653793e-07,1.6409976116354764e-07,8.513488031248934e-08,1.9617217156935586e-07,1.9323990604960244e-07,9.716480378297886e-09,1.01308149403834e-08,1.0690416182925333e-08,9.217279518532587e-08,9.615399138512424e-08,1.0154032670458329e-07,7.713178222061887e-08,8.052113175883104e-08,8.512355805084201e-08 +1261,Acetone,"('water',)",emission,kilogram,biosphere3,2.4798588799753054e-13,1.3379029963537577e-12,3.501367056628918e-12,7.666055947459292e-10,1.4794565072880684e-09,3.3479310001364905e-09,5.3556777122117e-10,9.974077127555974e-10,2.4144983284377024e-09,4.5102988586359413e-10,9.173654728091822e-10,2.3325753357802367e-09,4.64293497767268e-10,1.607070787007012e-09,4.826609278498728e-09,4.308040505822432e-10,1.5335941472557836e-09,4.833616595738738e-09,5.448176712146254e-10,1.6180956381277625e-09,4.786513486057366e-09,3.2898773982624997e-12,3.4474031450627777e-12,3.661112422421803e-12,3.556690838934719e-09,3.795689710065994e-09,4.111425459375895e-09,3.749487405997405e-09,3.990548476512608e-09,4.309568086436676e-09 +1262,Acetonitrile,"('water', 'surface water')",emission,kilogram,biosphere3,1.0521014574939026e-13,2.788146973295619e-13,9.237512973693072e-11,5.204870714033946e-12,1.1812017598647591e-11,3.461297428712402e-10,3.033963884173789e-12,7.004548258402625e-12,2.0295745023003428e-10,4.442035910622272e-12,1.0148461571656626e-11,1.676972844909168e-10,7.106434978720896e-13,1.7486931383054696e-12,2.680892699612367e-10,5.93514540387139e-13,1.4581279017784005e-12,2.65711577904159e-10,3.0878946374802405e-12,4.3799227484850374e-12,1.908557476972489e-10,9.849435693178786e-11,1.0267996009189332e-10,1.083312455107627e-10,1.9973623819373378e-10,2.0886442028960912e-10,2.212685302071837e-10,2.835074063258088e-10,2.9555658017484414e-10,3.118254071233149e-10 +1263,Acetyl chloride,"('water', 'surface water')",emission,kilogram,biosphere3,3.2940111458499406e-12,4.559095197498349e-12,2.237027857745083e-11,7.757225276608111e-12,1.3419810261934296e-11,1.7984600783884668e-10,6.454441501396668e-12,1.119690573171391e-11,1.2768474596505302e-10,7.815226148010294e-12,1.4280005051883254e-11,1.5327521202185056e-10,3.9845603973189295e-12,5.634760443668575e-12,1.5981251538577173e-10,3.9088772556487185e-12,5.41145105770958e-12,1.5818392380520595e-10,7.043009273890499e-12,9.509706885457785e-12,2.593478294404691e-10,1.8429304487922575e-11,2.024485599398203e-11,2.2825251787506987e-11,2.6727944895562447e-10,2.801884185551833e-10,2.9781013617379804e-10,1.6369665622818788e-10,1.7168302258031654e-10,1.8259454547873126e-10 +1264,"Acidity, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,3.874427754153705e-08,6.908561301460475e-08,5.290090974368019e-05,2.4344950947841374e-08,5.269605059320277e-08,5.28687909147975e-05,2.2107245969088813e-08,6.670244252666183e-08,5.292013542969539e-05,2.230161890560365e-08,6.659182224699339e-08,5.291896107068908e-05,2.3117712199290626e-08,5.49705301778601e-08,1.3402729842824621e-06,2.5292168519538395e-08,5.925894639118541e-08,1.3361717418982686e-06,3.520865208276964e-08,7.437574022900966e-08,1.3547393803449138e-06,5.64731318681718e-05,5.892079062341558e-05,6.222056307308262e-05,1.361866444585295e-06,1.4606685319185894e-06,1.5906089741822629e-06,1.3588340585987505e-06,1.4568575095242343e-06,1.5858828321705707e-06 +1265,"Acidity, unspecified","('water',)",emission,kilogram,biosphere3,5.217873238867856e-12,2.8150828644198455e-11,7.367229485228811e-11,1.61301550173032e-08,3.112925729666155e-08,7.044384542654937e-08,1.1268886153816748e-08,2.098646439900818e-08,5.080348042551926e-08,9.490123769354153e-09,1.9302294928929576e-08,4.9079738021229335e-08,9.769204000132025e-09,3.381439156845537e-08,1.0155673023107793e-07,9.064552177309845e-09,3.2268368784937464e-08,1.0170417093696775e-07,1.1463513872769566e-08,3.4046365532521746e-08,1.0071307417701885e-07,6.922233910009205e-11,7.253683971628081e-11,7.703349849045661e-11,7.483636446283751e-08,7.986514193653428e-08,8.650854077723576e-08,7.889299867181695e-08,8.396516689226744e-08,9.067766146160078e-08 +1266,"Acrylate, ion","('water', 'surface water')",emission,kilogram,biosphere3,1.1131908769026925e-10,3.1323219370200787e-09,9.013611356310455e-09,4.653929445641967e-12,7.996735471263813e-11,2.2912073080217942e-10,4.188709685552134e-12,7.693372345390887e-11,2.1570928217988256e-10,4.236159791713233e-12,7.701579445896936e-11,2.1591493332824184e-10,4.925574603148897e-10,1.0669313634199586e-08,2.9824804406380767e-08,5.320982937361399e-10,1.0548838679451665e-08,2.928899500670247e-08,6.622029774720274e-10,1.0732145543127615e-08,2.959284926084692e-08,9.239800635304437e-09,9.61858756830023e-09,1.0124859341217011e-08,2.983411573821557e-08,3.114797164549489e-08,3.290870505284585e-08,2.9678985554743793e-08,3.096147085321879e-08,3.268131688440484e-08 +1267,"Actinides, radioactive, unspecified","('water', 'ocean')",emission,kilo Becquerel,biosphere3,8.510647113339751e-05,0.0001991681958370039,0.00011478528942536382,1.3496903511481126e-05,3.147682128551395e-05,2.1813878896861417e-05,1.6962312679054145e-05,3.9100484420849356e-05,2.2197369219933826e-05,1.687311351860182e-05,3.870586957822488e-05,2.1347350973767926e-05,6.773218380692668e-06,1.7452799598304928e-05,2.0515420073248385e-05,1.9962180678780944e-05,4.562368327862675e-05,1.9679993044653848e-05,2.171971075273641e-05,4.8805867274796695e-05,1.8575305178723168e-05,9.667658216768236e-05,0.0001008923039804009,0.00010665060116504536,1.299179855628962e-05,1.3508706846192531e-05,1.42061220280705e-05,1.4450422607052237e-05,1.5050669035339532e-05,1.5866595748828253e-05 +1268,Aluminium,"('water', 'ground-')",emission,kilogram,biosphere3,1.2793209317858452e-05,1.7242034051988194e-05,2.41389337747076e-05,1.4875399642277466e-05,1.871912456528357e-05,2.4108333093938147e-05,1.3560922831416588e-05,1.792779077122817e-05,2.39332326256828e-05,1.3608941614833274e-05,1.8006828343606774e-05,2.4069337054381485e-05,1.3887995130179761e-05,1.8736435457168332e-05,2.4418987848330228e-05,1.3704999557617397e-05,1.831591278534396e-05,2.5340766021849893e-05,7.566331550024192e-05,8.749883382787882e-05,0.00010874501314803147,7.320085408128815e-06,7.639377515908319e-06,8.07396478644719e-06,2.734239212030891e-05,2.8685138305655246e-05,3.0507571095499244e-05,7.246328904820949e-06,7.593650859144257e-06,8.064080441640575e-06 +1269,Aluminium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.008233849296468499,0.012036540663012567,0.03209416400099659,0.010032455957633123,0.014113403615398654,0.019973837621753743,0.012928489805878489,0.021357967075504827,0.040542359498764564,0.013001393868197106,0.021491803236278494,0.04078610720999674,0.013772141818098216,0.02327376383413533,0.04093866315190369,0.013070540269449536,0.021150954691316736,0.04319267816230717,0.0995248431989704,0.1166314812251596,0.15898113692051877,0.007265874936587741,0.00758717289642347,0.008024355445894985,0.03746516993287034,0.039320699897591106,0.04184284647742382,0.009751274127825543,0.010219870200801855,0.0108583077991265 +1270,Aluminium,"('water', 'ocean')",emission,kilogram,biosphere3,6.039539625909151e-06,1.5353753943941004e-05,1.6073468584182076e-05,6.737239500324272e-06,1.6631939253073918e-05,1.3250467300413839e-05,3.741261892745544e-06,1.0156934613661701e-05,1.2715860112377093e-05,3.800724132526111e-06,1.030187651494158e-05,1.2668394136230117e-05,5.269476129572621e-06,1.3439544483780865e-05,1.3064837030090583e-05,3.912797612213954e-06,1.0510953649893658e-05,1.3071608102500035e-05,5.866144049425812e-06,1.4509526273073817e-05,1.2453131562252797e-05,1.4452990010011258e-05,1.5948644104065484e-05,1.8097601156258274e-05,1.1562234840504633e-05,1.2664758433516114e-05,1.4243237737376495e-05,1.2349442227510463e-05,1.3526623070604124e-05,1.5212018900818547e-05 +1271,Aluminium,"('water', 'surface water')",emission,kilogram,biosphere3,1.2782674875222742e-05,5.2495381238756165e-05,7.65538501866125e-05,9.033448975275052e-06,4.337992301012987e-05,3.27352461863119e-05,1.5210748051192379e-05,5.6563501336619585e-05,7.062319194367123e-05,1.5248689554049203e-05,5.660700793001437e-05,7.069461337845398e-05,1.3107008925959308e-05,5.195222296821494e-05,7.114599025474776e-05,1.4924746090121568e-05,5.605908481011271e-05,7.131021159179307e-05,1.1772132356236912e-05,4.886810398107778e-05,6.750837027978603e-05,4.209759378492642e-05,4.343834596407874e-05,4.5285091789447785e-05,2.95392064424683e-05,3.034998519643818e-05,3.146621764135826e-05,3.1419616380634255e-05,3.229970161955881e-05,3.35210389726915e-05 +1272,Aluminium,"('water',)",emission,kilogram,biosphere3,6.955433372756604e-09,2.2488398343679473e-08,6.247482108085955e-08,1.4192847770543599e-06,2.744932034493458e-06,6.211702341478046e-06,9.927169847160783e-07,1.8555213937430057e-06,4.492475639373589e-06,8.372736212081712e-07,1.708559184431185e-06,4.3421157099992e-06,8.615634944194732e-07,2.978963955822512e-06,8.936559447925828e-06,8.010877284483061e-07,2.847546654759559e-06,8.952345791383545e-06,1.015806119370228e-06,3.0296017598215994e-06,8.960276198808533e-06,5.380959555924702e-08,5.8294772633660405e-08,6.467102174233727e-08,6.677530929772159e-06,7.1304243366655635e-06,7.73019979227356e-06,6.944465182878392e-06,7.391413752168263e-06,7.98317056150061e-06 +1273,"Ammonium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,5.606212330746825e-07,2.1046260485024415e-06,3.2076488261841457e-06,1.5494514783034105e-06,4.11122019413601e-06,6.656582178644242e-06,9.83478881459034e-07,2.593878987826308e-06,4.13837489313647e-06,1.2958390802395786e-06,2.8672728302585894e-06,4.206268992167394e-06,1.2871312750572948e-06,2.857370823570273e-06,4.181109677776349e-06,2.5729406588033746e-06,5.9367318804755115e-06,1.103760210277601e-05,9.508448927507518e-06,1.3533954981890906e-05,1.9824482261730823e-05,2.675412868668924e-06,2.8266866247910125e-06,3.036576023028547e-06,9.312820894089103e-06,9.852910113245748e-06,1.059122237085452e-05,7.771957648819011e-06,8.229099066545352e-06,8.853873777647567e-06 +1274,"Ammonium, ion","('water', 'ocean')",emission,kilogram,biosphere3,2.6868558383657624e-07,2.3273720258034146e-06,9.348844029255784e-06,2.750947701944073e-07,2.5365544146358566e-06,1.0009741491849964e-05,2.222517375896426e-07,2.4401517436645134e-06,9.872363746042025e-06,2.1248925811653786e-07,2.390505473634178e-06,9.789768846257817e-06,2.0198821276740068e-07,2.288030668627561e-06,9.47214949566642e-06,2.289306130397807e-07,2.346071142282488e-06,9.571686239862612e-06,9.129670851816494e-10,4.312919059426064e-09,8.336824409121019e-09,8.81874112282934e-06,9.835546802945265e-06,1.1305326013983428e-05,6.334131245954505e-09,6.646846108966111e-09,7.0699583368652484e-09,9.194970155113363e-06,1.0278642537369245e-05,1.1846494011346602e-05 +1275,"Ammonium, ion","('water', 'surface water')",emission,kilogram,biosphere3,7.513544365134884e-06,4.7245283787327675e-05,0.00010730537182081813,1.1813144889871628e-05,4.66616259010542e-05,9.724396308645452e-05,9.680736339026312e-06,4.3112589027387056e-05,8.88052111028709e-05,1.0663898540161743e-05,4.4037075151802755e-05,8.913089684940459e-05,9.325911466372431e-06,3.1704270322958374e-05,7.114577430745894e-05,9.7803164518188e-06,3.369083078516875e-05,6.819675481998537e-05,1.2135696213999354e-05,9.744559287352421e-05,0.00014986958636746937,0.00010673876629072428,0.0001126059969826881,0.00012055927297110341,6.640238440836597e-05,7.043183394654511e-05,7.586784944372883e-05,6.15332650293014e-05,6.563392367368791e-05,7.120625523096068e-05 +1276,"Ammonium, ion","('water',)",emission,kilogram,biosphere3,3.0587533064172125e-10,1.6502209851215042e-09,4.318720709974685e-09,9.59664575308558e-07,1.8527800386389272e-06,4.191181045486981e-06,6.734788582534902e-07,1.2566648954818753e-06,3.0370682350088606e-06,5.697677973448706e-07,1.1592059444753094e-06,2.9399268220506218e-06,5.855416210370648e-07,2.0085961564957215e-06,6.012945833054092e-06,5.442858671764363e-07,1.915654578231179e-06,6.017904979722697e-06,7.56457372227767e-07,2.5960608485199316e-06,8.23570201229155e-06,4.057861232149173e-09,4.252159542973667e-09,4.5157567798972884e-09,6.583764491668628e-06,7.125276249844737e-06,7.871140348617046e-06,4.661927065444869e-06,4.964354022317781e-06,5.365151605651445e-06 +1277,Aniline,"('water', 'surface water')",emission,kilogram,biosphere3,1.5499727786941936e-11,2.4341903483465888e-11,3.1233554030570884e-09,8.033030251577566e-11,1.6370507455319113e-10,3.9414663358197885e-09,7.899577037216763e-11,1.6632938032797648e-10,3.5027985644532515e-09,1.201594704145755e-10,2.578780943481943e-10,3.262632272031832e-09,2.8567794166275857e-11,5.179416142863764e-11,3.794441417101328e-09,2.543954721102247e-11,4.4710292543379326e-11,3.762166818149435e-09,3.6130573458439653e-10,4.404142215003381e-10,5.452384092247031e-09,3.3115496272292527e-09,3.456973862681419e-09,3.6539032691219315e-09,5.310212309130202e-09,5.625736651540896e-09,6.062921133252844e-09,3.989930892349416e-09,4.164280458487465e-09,4.400279750244091e-09 +1278,Aniline,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9718663500989984e-10,5.922949856303592e-10,1.8410327581256405e-09,3.4459391571587376e-10,6.368950448543438e-10,2.8504782395582056e-09,0.0,0.0,0.0,1.212806002306828e-09,1.2890370130892578e-09,1.3944686163166105e-09,9.39430800861728e-10,9.977408305282591e-10,1.0777057253107565e-09 +1279,Antimony,"('water', 'ground-')",emission,kilogram,biosphere3,8.366052297442886e-08,1.794439532364634e-07,3.4552144390519233e-07,5.5116800744950375e-08,6.536507015553842e-08,7.245713065561485e-08,8.705499646403255e-08,1.7111358730745175e-07,2.8152765469300384e-07,8.647566194726577e-08,1.681464522085819e-07,2.751177646164826e-07,7.837356043310607e-08,1.5406277565978787e-07,2.7585886458622345e-07,8.66052870121094e-08,1.6857958791765186e-07,2.6000409076434476e-07,1.6608224802895287e-07,2.478623304371303e-07,3.472986167516196e-07,2.6404020050159434e-07,2.7556848088886025e-07,2.913091718270183e-07,1.87716522651866e-07,1.957513834195505e-07,2.0660921570683034e-07,1.8295729210464935e-07,1.9090792684257726e-07,2.017066074842492e-07 +1280,Antimony,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,2.57262390259415e-05,2.995690198382557e-05,3.712823755539775e-05,3.089705405519125e-05,3.554117054393345e-05,4.133948065227995e-05,2.767049680032001e-05,3.2919647462672785e-05,4.0238157121142563e-05,2.773372564710861e-05,3.295125494416382e-05,4.0257223345726493e-05,2.7845166358086085e-05,3.34534567336175e-05,4.093068219358933e-05,2.770853907941304e-05,3.3039689226736596e-05,4.072876527229257e-05,7.4242248273438195e-06,9.505116787764192e-06,1.5168036404470738e-05,8.776044813279852e-06,9.294010030946815e-06,9.980305586631623e-06,4.7167107232649105e-06,5.026071883169646e-06,5.434839015051933e-06,1.029828728491785e-05,1.088669536789867e-05,1.1672170819321512e-05 +1281,Antimony,"('water', 'surface water')",emission,kilogram,biosphere3,8.501704861827113e-08,4.5282961895654277e-07,4.746443160655382e-06,5.72614816794985e-08,3.529798806251293e-07,3.2086557990419185e-06,3.7805800563066225e-07,1.0620308056283972e-06,5.038360522820534e-06,3.8491603582517526e-07,1.0781253438494983e-06,5.064119621129143e-06,4.369493522544013e-07,1.2142555029951817e-06,5.092697884855676e-06,3.22782137273221e-07,9.406305654641917e-07,4.9956055073080115e-06,1.5417035450712566e-07,5.622377144198251e-07,4.8573545318507105e-06,3.5928520210752727e-06,3.7073532621893605e-06,3.854015549597292e-06,3.5730130065431106e-06,3.6656946772483416e-06,3.785548591620126e-06,3.601858828514498e-06,3.7063602190407863e-06,3.841144772816964e-06 +1282,Antimony,"('water',)",emission,kilogram,biosphere3,2.7927749909822305e-13,1.5067235949264985e-12,3.9431799850687285e-12,8.635550338042024e-10,1.6691886061662285e-09,3.77436709930424e-09,6.036875347236455e-10,1.1292637486660861e-09,2.7275065776380746e-09,5.085715824655754e-10,1.0394552444463031e-09,2.6358747424946708e-09,5.232329674373214e-10,1.8151652896226687e-09,5.442600360651846e-09,4.871545778589738e-10,1.7497814397609065e-09,5.473874957504988e-09,6.158613419606398e-10,1.8451649477810442e-09,5.421304090636129e-09,3.705003920773628e-12,3.882406735438068e-12,4.123082485914513e-12,4.009092611394217e-09,4.27894081381171e-09,4.635517917641948e-09,4.226142446165074e-09,4.498306465252737e-09,4.8585726541158995e-09 +1283,Antimony-122,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.0399912941610984e-08,2.298599356982479e-08,5.633763429931042e-08,6.873951580258724e-07,1.528225987779313e-06,4.0881686918885764e-07,1.558376848178411e-07,3.8173012298493815e-07,5.227754276553695e-07,1.5435678323959438e-07,3.75419691834001e-07,5.077595458193439e-07,5.125552883668341e-08,1.6644394271392096e-07,5.678997536305601e-07,1.709028753907708e-07,4.183310244524672e-07,5.437713712488482e-07,1.9388400456318808e-07,4.562763299598235e-07,5.313139079725032e-07,4.5550840787015234e-08,4.74874055471187e-08,5.0128404894696226e-08,2.833215775032769e-07,2.948815643065307e-07,3.104873438599248e-07,3.035408085366796e-07,3.163930503329311e-07,3.338658602142846e-07 +1284,Antimony-124,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.6602801691759454e-05,3.818024598799975e-05,1.9673887357638e-05,0.00015321672743499824,0.00033535173243436545,0.0004491463719647939,0.00013588076964946865,0.00034633354470879905,0.0012232707638082255,0.00013437402844115848,0.00034518192469862324,0.001218920119402161,0.00012042820331612731,0.0003291224349354772,0.0006591597044831002,0.00012644190416913995,0.0003362804427492627,0.0006509172157498955,0.00014318513821755992,0.0003355753431004221,0.0006371423805324229,1.633827239042437e-05,1.7050610476028613e-05,1.802360292383779e-05,0.0004651430427001057,0.00048616053403003387,0.0005144741683778118,0.000504341255379144,0.0005276835156505309,0.0005593856341098656 +1285,Antimony-125,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,2.1125165851283128e-05,4.769280220614243e-05,1.840784165485984e-05,3.307521054182351e-05,7.408336665937231e-05,2.2320160360093378e-05,9.313592930552967e-06,2.2826673291489945e-05,2.7450653572820446e-05,9.222636853993221e-06,2.2420398896401918e-05,2.652216908769962e-05,5.171006687644009e-06,1.4457075417984287e-05,3.0068622021694427e-05,1.1111798175299866e-05,2.687542388780104e-05,2.8261084725432226e-05,1.192481985735085e-05,2.7990165386401603e-05,2.7274234378988036e-05,1.4993921083707946e-05,1.565063517245162e-05,1.6547922396845325e-05,1.562454400288534e-05,1.6251913618056707e-05,1.7098714549044796e-05,1.697044870773504e-05,1.7679288161181235e-05,1.864289747699746e-05 +1286,"AOX, Adsorbable Organic Halogen as Cl","('water', 'ocean')",emission,kilogram,biosphere3,3.4083471768264264e-09,1.3003451730837982e-08,3.137913307517699e-08,3.593734436342045e-09,1.309867938548336e-08,2.8096656356309405e-08,2.11741676580792e-09,9.968539804482285e-09,2.7473807934678596e-08,2.1158900396958937e-09,9.856602513935422e-09,2.7154540962052216e-08,1.5747391779520184e-09,8.433341442187285e-09,2.576034068604388e-08,1.3922669826143436e-09,8.039513201172259e-09,2.6019343130652006e-08,1.0917969297975559e-09,2.4145128388500593e-09,4.974624237015296e-10,2.9246292601111353e-08,3.2284153740792826e-08,3.6660611432379256e-08,4.304208163668898e-10,4.644185743615001e-10,5.126889117142613e-10,2.5065515787115155e-08,2.7792177942262223e-08,3.1728464055102015e-08 +1287,"AOX, Adsorbable Organic Halogen as Cl","('water', 'surface water')",emission,kilogram,biosphere3,3.2307222333668033e-08,9.539002857569696e-08,2.7618490484104197e-07,1.1562183521930415e-07,1.8932379413754295e-05,6.256225369508256e-05,1.1446135400269903e-07,1.3791302624669846e-05,4.5338067495787475e-05,1.763173265923606e-07,1.3928810367692933e-05,4.5383134170504556e-05,4.099881490423573e-08,2.2872330533681843e-06,7.470982917472186e-06,4.203058116001777e-08,1.9514508215792173e-06,6.364934920110504e-06,4.771770404549995e-08,1.952155104874603e-06,6.351570039284729e-06,2.021521535987804e-07,2.3494924747336515e-07,2.798395569447736e-07,6.691307336989763e-06,6.9493512684009606e-06,7.298735090473546e-06,6.700746877627199e-06,6.970642045724335e-06,7.335117509323787e-06 +1288,"AOX, Adsorbable Organic Halogen as Cl","('water',)",emission,kilogram,biosphere3,3.9643610195141815e-10,2.044515791347702e-09,1.1341673928725796e-08,1.2852239182118404e-09,4.495438869847987e-09,1.473845972508395e-08,1.1913940597809076e-09,4.419086679349043e-09,1.4777194417309376e-08,1.10225486508599e-09,3.990836655143087e-09,1.3862982939607134e-08,1.0331260046866305e-09,3.7927239098488004e-09,1.3694808040052475e-08,4.684062999390101e-10,2.351947544537581e-09,1.1538596631812282e-08,7.366911573284936e-09,5.75667064814213e-08,2.2878115168913876e-07,2.822446360247036e-09,1.1632351183717718e-08,2.2615587607909296e-08,2.0888527394733877e-07,2.4054742600769614e-07,2.84578070793627e-07,3.099092598352262e-09,1.1429930345161884e-08,2.1817991704401778e-08 +1289,"Arsenic, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,8.377573705476628e-05,0.00010044267207824081,0.00011251831758923527,0.00010022863281101248,0.00011818675937719823,0.0001359883030084817,8.768160258870837e-05,0.00010417616570639693,0.00011804577051945445,8.809322379957738e-05,0.00010511071563404656,0.00011985839495382082,8.822557319542087e-05,0.00010614517614274477,0.00012209533737655748,8.93851472762218e-05,0.00010791850684477747,0.00012393672286368758,1.2528573976385458e-05,4.6789601194166785e-05,7.225652797677015e-05,2.6574399557689005e-05,2.7753751490360012e-05,2.9354235618602473e-05,5.639492929653927e-05,5.8931150227717875e-05,6.236677030379673e-05,3.0503591817287003e-05,3.195353552306461e-05,3.392068736552734e-05 +1290,"Arsenic, ion","('water', 'ocean')",emission,kilogram,biosphere3,1.683732258579176e-08,3.671322400917468e-08,7.816704208541514e-08,1.2127571593821489e-08,2.9592204890190404e-08,4.168281367272216e-08,8.186424312815434e-09,2.131197853477173e-08,4.044746338716572e-08,8.423899479570759e-09,2.179604403193638e-08,4.1193958189240466e-08,9.119113412717146e-09,2.3344454892247973e-08,4.105617792504735e-08,5.618417563314014e-09,1.7980023823733027e-08,3.672493584613673e-08,6.117003632740368e-09,1.5663316452635776e-08,1.5591235849001104e-08,6.648452529166296e-08,7.24798570254544e-08,8.104930416162947e-08,1.4518806426950569e-08,1.5839038877679336e-08,1.7725518659393806e-08,3.4089397705291816e-08,3.733571784968905e-08,4.198882151199562e-08 +1291,"Arsenic, ion","('water', 'surface water')",emission,kilogram,biosphere3,9.327403245522077e-07,2.7580614683958014e-06,3.497253178108404e-05,3.2643241243440747e-07,1.1412895754642632e-06,1.7901616298894753e-06,4.552131047060718e-06,1.0253436763691576e-05,2.5163450172639637e-05,4.569593418338624e-06,1.0311209646553015e-05,2.5268911397168306e-05,5.246336669109583e-06,1.1767169705931985e-05,2.5177932637995844e-05,3.773485541037431e-06,8.719748586943363e-06,2.5293180220638922e-05,2.409978136763605e-06,5.669701568843841e-06,2.6744131849488867e-05,4.5835196588670485e-06,4.768594950911382e-06,5.021277221843123e-06,6.296196804232347e-06,6.607468029229272e-06,7.031029215987395e-06,4.378045823964579e-06,4.578036461072685e-06,4.8517176341035e-06 +1292,"Arsenic, ion","('water',)",emission,kilogram,biosphere3,9.168613220784752e-10,4.2528540050107566e-08,1.5514601347324755e-06,1.8073197521442812e-08,7.555647583511893e-08,1.6253949243228982e-06,1.2902241352359239e-08,6.354604483568937e-08,1.6031133405617775e-06,1.1057382116093433e-08,6.181956267606924e-08,1.6013461902157385e-06,1.1400792983688916e-08,7.723797263503119e-08,1.6565559550552648e-06,1.0773941189070222e-08,7.592838355078369e-08,1.6572852724608072e-06,1.3389480925510251e-08,7.840076608502126e-08,1.659618075787436e-06,1.605176751801555e-06,1.673468698280554e-06,1.7656851854829668e-06,1.6868474609305416e-06,1.7607498185661371e-06,1.8604165956416018e-06,1.6879821500126958e-06,1.761584200409637e-06,1.8608250421296204e-06 +1293,Barite,"('water', 'ocean')",emission,kilogram,biosphere3,0.00031393927068062993,0.0008148997706869958,0.0009203785742813624,0.00033528378605586593,0.0007836726980616785,0.00041228576217714055,0.00018470186647034115,0.00045773885757786057,0.00039256767811515124,0.00018834163666360665,0.00046691725876599026,0.00039230921284680694,0.0002203268030625544,0.0005336441716884599,0.0003910171509497295,0.00016167482345450356,0.0004070667073827785,0.00038990621014904696,0.0002452744818474754,0.0005823295648242795,0.0003783883799306162,0.0008311004129745433,0.0009183930361229644,0.001043946654057632,0.00035202690566692586,0.0003836061664924528,0.0004287086206844229,0.00036965486683833106,0.0004030152423468877,0.00045066818946596753 +1294,Barite,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.46017126558864e-06,1.872354723189422e-05,3.967249344348816e-05,6.286293864940742e-06,1.60505728716018e-05,3.453200966327227e-05,8.040691394709608e-06,1.8260456917084712e-05,3.723271302686792e-05,0.0,0.0,0.0,2.675588134452078e-05,2.9141880332074972e-05,3.2272772381788185e-05,2.6336484037170957e-05,2.859555684302843e-05,3.1558909033210595e-05 +1295,Barium,"('water', 'ground-')",emission,kilogram,biosphere3,8.691806052946094e-08,1.6797147410484043e-07,2.2680381015056084e-07,9.599571482391196e-08,1.905143338734194e-07,2.9991353781339373e-07,9.48838571847486e-08,1.9507938831196742e-07,2.984535553319287e-07,9.415465891537026e-08,1.8543697897576774e-07,2.7465549466081854e-07,1.0230420807649319e-07,2.0363954181539988e-07,2.786766339856832e-07,1.3567740112405327e-07,2.80185709017916e-07,4.3385144066688637e-07,1.0078275893375347e-07,2.045846359940101e-07,4.2201189190543596e-07,8.810577984239211e-08,9.193503022186055e-08,9.715958718125003e-08,2.2695408382468302e-07,2.3791438805927576e-07,2.5273324857510667e-07,2.3498431882877856e-07,2.463393094760458e-07,2.6171048870109256e-07 +1296,Barium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,6.076341055136004e-05,0.00012725881265334096,0.00019143021624469717,7.043079128661963e-05,0.00013865380099553656,0.0002343408115583733,6.307254667863485e-05,0.0001223884191725056,0.00018477558032771165,6.312809618887111e-05,0.0001222036008756957,0.00018409640567373207,6.733915743418299e-05,0.00013241218332150302,0.00018696375552360538,7.931764045405615e-05,0.00014656360994278023,0.00021847084261033804,0.002074018561329551,0.00233260048419619,0.0027261411392531685,9.750066234907232e-05,0.0001017553253979883,0.00010756205733308253,0.0005712863349344481,0.0005992192510541106,0.0006371543775093838,8.304643225518427e-05,8.708148927675178e-05,9.256917857931383e-05 +1297,Barium,"('water', 'ocean')",emission,kilogram,biosphere3,2.717325332333807e-06,1.6938778007713547e-05,6.458820230631548e-05,3.380434220056807e-07,2.5732712115131256e-06,9.679377447817032e-06,2.4914406549215705e-07,2.404844743393482e-06,9.469482507283294e-06,2.466375539353137e-07,2.360437480486208e-06,9.384106678365572e-06,1.9710750780011035e-07,1.9462674786358633e-06,7.817391853127667e-06,2.3597734752487822e-07,2.0311020585588973e-06,7.918985581996938e-06,2.0938155589699528e-07,1.7815367171139049e-06,7.127473803012794e-06,5.9406466196279836e-05,6.602908950702312e-05,7.559853202392874e-05,6.796276007848524e-06,7.549092777017117e-06,8.63652210223406e-06,7.620238934599365e-06,8.445035029760744e-06,9.635298107135773e-06 +1298,Barium,"('water', 'surface water')",emission,kilogram,biosphere3,5.949694975720572e-06,3.460482034628312e-05,0.00012993910072217876,5.5329179138927194e-06,4.188316335971275e-05,0.00015749292197493175,4.270452168315419e-06,4.090891629278233e-05,0.0001610580885075381,4.231106611832137e-06,4.0162310526283296e-05,0.00015961838350640005,3.843049470104361e-06,3.768617047725904e-05,0.00015140735533148624,4.613192399710416e-06,3.936697359297022e-05,0.0001533773280445913,4.17437951613979e-06,3.5222989364302495e-05,0.00014084916710733542,0.00011907677082787454,0.00013221976095111827,0.00015120462175433676,0.00013427798317372497,0.00014912047118798553,0.00017055985084730093,0.00014755425487139056,0.00016349418997583205,0.00018649674198749103 +1299,Barium,"('water',)",emission,kilogram,biosphere3,7.064077401242669e-09,3.8111242422233305e-08,9.97392553738458e-08,2.1837389426988545e-05,4.214368787125401e-05,9.536874097118992e-05,1.5256110373671954e-05,2.841231451239862e-05,6.877941791411427e-05,1.2847986011523088e-05,2.6132266650974196e-05,6.644581268949654e-05,5.765623753759047e-06,2.705547080534672e-05,9.781776525974834e-05,5.985623803670589e-06,2.7636428278750254e-05,0.00010315923726241823,7.486423212303672e-06,2.7893836038586544e-05,9.93454085976224e-05,9.371480241278754e-08,9.82020499453928e-08,1.0428973051201502e-07,7.477454831802597e-05,7.922019055317719e-05,8.511729789791542e-05,8.047088920603916e-05,8.507867537905265e-05,9.120291197560152e-05 +1300,Barium-140,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,4.555713987257217e-08,1.0069085566802106e-07,2.4678875139401895e-07,1.2535884671359908e-07,3.421499529994472e-07,6.830215686574589e-07,4.112550048181467e-06,8.964836760081123e-06,8.956761763519509e-07,4.108066783927921e-06,8.949528836485415e-06,8.637834324369272e-07,6.773688015982163e-08,2.0518566601796141e-07,4.3193300165567853e-07,4.410385364817926e-06,9.613902210918478e-06,9.33469805974241e-07,5.164485142997345e-06,1.1218680236559773e-05,9.660422932393348e-07,1.995368689887943e-07,2.0802005088265804e-07,2.1958903029600122e-07,6.039264984385433e-07,6.286658738874159e-07,6.621263109795269e-07,6.249079873728904e-07,6.519542905432194e-07,6.888000741746306e-07 +1301,Benzene,"('water', 'ocean')",emission,kilogram,biosphere3,2.574112950933301e-07,1.6043663310277698e-06,6.117223937400896e-06,6.727364556386134e-08,5.102835248285751e-07,1.9175741277318868e-06,4.9611472232795046e-08,4.7677851761443847e-07,1.876205316563285e-06,4.909696430476759e-08,4.6800553812027903e-07,1.8592901276208785e-06,4.843976462361103e-08,4.48882579330574e-07,1.7724175834653598e-06,5.618240158308409e-08,4.658022368020981e-07,1.7953048378434056e-06,5.171095392313692e-08,4.126640890194336e-07,1.6167157076942117e-06,5.626858175222035e-06,6.2538886212512525e-06,7.159904685544962e-06,1.5414126303525724e-06,1.711934093387082e-06,1.958232833300494e-06,1.727451337256969e-06,1.91425846615478e-06,2.1838264273685567e-06 +1302,Benzene,"('water', 'surface water')",emission,kilogram,biosphere3,1.20240605959949e-06,6.444344437717688e-06,3.1215555200499214e-05,1.3460849570120944e-06,4.671045627844352e-05,0.00016515478560606773,1.1362913893930932e-06,2.8246363068994757e-05,0.000104298612440559,1.1382027025394154e-06,2.8201999056788222e-05,0.00010419086795349108,1.0001539774413277e-06,9.570775103323782e-06,4.10547846684224e-05,1.110879243197838e-06,1.0340898324989798e-05,4.292087783099587e-05,1.2536442266368261e-06,1.0193944745106069e-05,4.200547014842139e-05,1.3927159280672362e-05,3.193654177496477e-05,5.456929958082181e-05,2.8012688080080464e-05,4.419100579953576e-05,6.461282231343045e-05,2.9126921408810387e-05,4.5408484016941086e-05,6.597832808722958e-05 +1303,Benzene,"('water',)",emission,kilogram,biosphere3,4.161782222280721e-11,2.2453135605758654e-10,5.87611128416032e-10,1.2865431397199715e-07,2.482873374534671e-07,5.618609738823017e-07,8.98807739784929e-08,1.6738829707810812e-07,4.052091820892715e-07,7.569334341463625e-08,1.5395534075783855e-07,3.9146059156092323e-07,2.678551249167559e-07,1.2857330459763441e-06,6.627503316053342e-06,2.6248138465904145e-07,1.2729156256450793e-06,6.628694375016408e-06,3.206617834945942e-07,1.3074904810057425e-06,6.582128780314136e-06,5.521182256975403e-10,5.785547232891555e-10,6.144201288608803e-10,1.8886164734407027e-06,6.552912138328534e-06,1.2367441822714735e-05,1.993546511900465e-06,6.667221863394328e-06,1.2495415309514552e-05 +1304,"Benzene, chloro-","('water', 'surface water')",emission,kilogram,biosphere3,3.060376999198969e-09,7.650379672218746e-08,2.415968215794678e-07,4.214168244495374e-08,3.6755135425263414e-05,0.00012237780669529288,3.278541052241483e-08,1.9857086076433233e-05,6.597327012098865e-05,3.4343239499536084e-08,1.986051684034628e-05,6.596134271974545e-05,2.1773710083761355e-08,3.2318504183506118e-06,1.0622899702318771e-05,2.583935998379048e-08,3.754205817555825e-06,1.2337013444323331e-05,3.505221297024538e-08,3.767593812224464e-06,1.238000046702744e-05,2.480673345502779e-07,2.5836196460578115e-07,2.721479221910623e-07,1.3164105509406758e-05,1.3653130614954456e-05,1.4313191861750025e-05,1.312954403247087e-05,1.3614878841955443e-05,1.4270095311283518e-05 +1305,"Benzene, ethyl-","('water', 'ocean')",emission,kilogram,biosphere3,7.479231584021771e-08,4.6609758623377337e-07,1.777269597302058e-06,9.17612597336673e-09,6.981994195794274e-08,2.6261869270780013e-07,6.759318261102132e-09,6.523973418847662e-08,2.569104107502825e-07,6.69532094835941e-09,6.404571592413697e-08,2.546112358785873e-07,5.33852247485007e-09,5.267695737972066e-08,2.1157065870187774e-07,6.393493197747382e-09,5.498009410504333e-08,2.143290828126487e-07,5.774763747787719e-09,4.914296720469071e-08,1.9661887900601124e-07,1.6346142271937794e-06,1.816884501143157e-06,2.080260708345445e-06,1.8748271670330584e-07,2.0825004605666535e-07,2.3824805626846145e-07,2.062341765717887e-07,2.285570190060034e-07,2.6077100337488954e-07 +1306,"Benzene, ethyl-","('water', 'surface water')",emission,kilogram,biosphere3,1.623185300352377e-07,9.487340754469039e-07,3.5658501401817292e-06,1.5122458310631585e-07,1.1504183325110578e-06,4.3270234802591335e-06,1.1644464501747388e-07,1.1236138997355728e-06,4.424636927652496e-06,1.153379605388017e-07,1.1030646985315823e-06,4.385052755922889e-06,1.0507181906508917e-07,1.0357698899494412e-06,4.159008461436578e-06,1.2576938104908363e-07,1.0809541686920588e-06,4.213218740555262e-06,1.1379833995655193e-07,9.675765208897838e-07,3.870684019250394e-06,3.267036346211866e-06,3.6285342236720895e-06,4.150721416337782e-06,3.6906871095209653e-06,4.099467146778735e-06,4.6899382751314195e-06,4.0539820864028905e-06,4.492737206582301e-06,5.125899175279801e-06 +1307,"Benzene, ethyl-","('water',)",emission,kilogram,biosphere3,2.3390465427591746e-12,1.2619336711639096e-11,3.302551087298719e-11,7.23075902718536e-09,1.3954494421541908e-08,3.1578275018547664e-08,5.051569572370654e-09,9.407725266075524e-09,2.2773973610657088e-08,4.254193344128625e-09,8.65275275737148e-09,2.2001261511025535e-08,4.379298256971733e-09,1.5158175264252778e-08,4.552543005243802e-08,4.0634198614019274e-09,1.4465130585707179e-08,4.5591524173185735e-08,5.138816462037552e-09,1.5262163590613807e-08,4.5147239412477345e-08,3.1030703184881284e-11,3.251651377867972e-11,3.453225732997273e-11,3.354733527467923e-08,3.580161479347035e-08,3.877969008530386e-08,3.5365826450794215e-08,3.7639556994269874e-08,4.064860623370904e-08 +1308,Beryllium,"('water', 'ground-')",emission,kilogram,biosphere3,3.5040370549376656e-08,4.6687511780691613e-08,5.5976908650037584e-08,4.0271018463159994e-08,5.067916762422834e-08,6.209594834676508e-08,3.639567622141725e-08,4.73500382364e-08,5.771159939570921e-08,3.654704542957394e-08,4.768535167635529e-08,5.834586789913797e-08,3.742677929300088e-08,4.989706250005923e-08,5.944904099786801e-08,3.723070651186231e-08,4.938673928477216e-08,5.992653676212183e-08,3.629364056041711e-08,4.5506341443785056e-08,6.641151909906058e-08,1.4399369108955027e-08,1.5032295677368873e-08,1.5892816949535097e-08,1.8988681249888596e-08,1.9926394245314584e-08,2.1195634449844328e-08,1.5147542765366696e-08,1.587293761765834e-08,1.685509567485626e-08 +1309,Beryllium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.1893045099562791e-05,1.556368708366724e-05,2.0134422517865246e-05,1.4011479108197772e-05,1.762755524404836e-05,2.1145737662702658e-05,1.3135373299345012e-05,1.7681676231957233e-05,2.3368005679263528e-05,1.315180062353305e-05,1.7717381475757307e-05,2.350400605863717e-05,1.345084952481925e-05,1.848870024138452e-05,2.3854391960737168e-05,1.3399020757849712e-05,1.8150127548941295e-05,2.3916432010858598e-05,1.2311535707370792e-05,1.591585550847761e-05,2.4930247593184738e-05,5.658281310258873e-06,5.906108279079644e-06,6.24317291443218e-06,7.856366492461342e-06,8.249713168966565e-06,8.782842414393361e-06,6.8710716899070785e-06,7.207093987618022e-06,7.6630113432048e-06 +1310,Beryllium,"('water', 'surface water')",emission,kilogram,biosphere3,5.129606980707409e-10,1.2041727068572361e-09,2.657597928830992e-08,3.92633669403043e-10,9.742533237635106e-10,2.4110060441693527e-08,1.3151972499352158e-09,3.047033011549761e-09,2.9646184555196158e-08,1.295480241432152e-09,2.998636219466889e-09,2.9598013481740452e-08,1.32098784179362e-09,3.062849803412872e-09,2.9589833168445953e-08,1.2526921766478865e-09,2.813343290614658e-09,2.9434711829684375e-08,7.700909203686271e-10,1.7293750516163053e-09,2.910079399898469e-08,2.6244890605040037e-08,2.6276004668592028e-08,2.6318386842948007e-08,2.7006058488842403e-08,2.708338227145734e-08,2.718821829389724e-08,2.705577709717338e-08,2.7134327093458292e-08,2.7241290462883592e-08 +1311,Beryllium,"('water',)",emission,kilogram,biosphere3,2.4876817380091084e-13,1.3421234503353506e-12,3.5124121998246902e-12,7.692252421231252e-10,1.486955510722777e-09,3.362191737300112e-09,5.377588718963687e-10,1.0061256364543177e-09,2.429858890021356e-09,4.5303711533588226e-10,9.261407691505917e-10,2.3482610248831295e-09,4.660864147842505e-10,1.6170706318642554e-09,4.848293348260947e-09,4.34011260064786e-10,1.5594861880832345e-09,4.877035617289352e-09,5.486692092853561e-10,1.6444579382393517e-09,4.830225781698657e-09,3.3002553850977977e-12,3.458278050295471e-12,3.6726614782479734e-12,3.5712607687522463e-09,3.811655902900187e-09,4.129317038949201e-09,3.7645964529891095e-09,4.00705416579154e-09,4.3280010316067915e-09 +1312,"BOD5, Biological Oxygen Demand","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.001783117983585772,0.0022485867183939835,0.003021727889319121,0.002256906214716569,0.0034646692685204998,0.005934456395058625,0.0016081455103202776,0.0020152324857522,0.0026696417949578265,0.0016169659576212051,0.0020174853670877715,0.002662589560628126,0.0016221413720456125,0.0020321453268036162,0.0026484197202705233,0.0022806801723197325,0.0031348271937092693,0.004643143830060396,0.0027463671775964206,0.0036904194458046934,0.005522577442892476,0.001208469135763011,0.0012888186285023948,0.0013982198734477985,0.0024505716729581067,0.0025860835610545603,0.0027721706167738126,0.002116705145154931,0.0022324783098321096,0.002391007528740287 +1313,"BOD5, Biological Oxygen Demand","('water', 'ocean')",emission,kilogram,biosphere3,0.001044885086321094,0.0033977729230220024,0.0072617515776339635,0.001020202708339873,0.003150454458496818,0.005076468570757408,0.0005761517877843588,0.0021990948568683714,0.004918195087662844,0.00058468279001931,0.0022023977560258444,0.004886719569392407,0.0004285495985922999,0.0018222684118897616,0.004620713195426159,0.00035754334430748914,0.0016634338256753872,0.0045202590900904355,0.0004742396758101026,0.0017976030585849204,0.004159672257113268,0.006596694624412204,0.0073503336320385184,0.008438775901674463,0.003948766388340587,0.004383535136820741,0.005011417989668571,0.004349038969539685,0.004803452071934112,0.00545828010099181 +1314,"BOD5, Biological Oxygen Demand","('water', 'surface water')",emission,kilogram,biosphere3,0.0018717767769943568,0.010820586738973993,0.040916839400061925,0.0013580165154774815,0.008872559581820769,0.03290555465204869,0.0010873000920923815,0.00891213853582795,0.03462844233892366,0.0010814409229019087,0.008760863174129213,0.03433596249378781,0.0009792253730432573,0.008016043630291588,0.03160672812970527,0.0011333009189733998,0.008351863649775785,0.03200803407061408,0.0010856938835727462,0.007600385928741708,0.029553099510773846,0.03738212186594799,0.04167293091202772,0.04784205956720039,0.027816171059795537,0.030978202491195685,0.035526562255772665,0.03053476158431195,0.03392218656767052,0.038791526294004466 +1315,"BOD5, Biological Oxygen Demand","('water',)",emission,kilogram,biosphere3,2.3405002965842495e-06,6.693752709818198e-05,0.0023302629030239287,1.68700184324614e-05,9.532478865469787e-05,0.002390947045294394,1.2664291099264081e-05,8.487158498218598e-05,0.002372505102798342,1.114762011850885e-05,8.31074509127536e-05,0.0023701895743917425,1.446043347536642e-05,0.0001086112385107454,0.0024803208938686356,1.4566857826595393e-05,0.00010944997278313492,0.0024889051975280647,1.7788315336023765e-05,0.00011420246547780738,0.0024992079525803824,0.0024071632865327194,0.0025113070182846693,0.0026517961828220367,0.002500137631409328,0.002663981837787791,0.0028794227756444657,0.0024938934556944514,0.00265683242348232,0.0028709521165918655 +1316,Borate,"('water', 'surface water')",emission,kilogram,biosphere3,0.0002040003324803398,0.0002040004568693389,0.0002040032847732916,0.0002040010340972313,0.0002040019193714932,0.00020403041638589352,0.0002040008320237252,0.00020400154022987547,0.00020402133449423985,0.0002040010423496877,0.0002040020172443722,0.00020402184472944677,0.00020400042715484288,0.00020400062977760208,0.00020402656658954118,0.00020400041493899793,0.00020400059603278075,0.00020402629314204926,0.0002040011887410111,0.000204001601635022,0.00020404460119056205,2.9645552862124134e-09,3.190317271742589e-09,3.5076112814834016e-09,4.599989821781248e-08,4.821337809594869e-08,5.123404489260027e-08,2.754947421674677e-08,2.881973264220229e-08,3.054723037388819e-08 +1317,Borate,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.775340798122679e-08,4.121293323109226e-08,5.037490180062339e-08,1.796401613528267e-08,4.145720546813143e-08,4.9681163633398045e-08,1.7738713546248016e-08,4.092795247495165e-08,4.897835740206846e-08,1.7650483630276052e-08,4.097763439515068e-08,4.975853191849591e-08,1.7541725433251897e-08,4.064661309394253e-08,4.9146529879263625e-08,1.7604376748290995e-08,4.0528798654966566e-08,4.892346713641118e-08,0.0,0.0,0.0,1.273232616532875e-08,1.3305328807467722e-08,1.4083825809388283e-08,1.3155938516440057e-08,1.3766272148475525e-08,1.4600814861471573e-08 +1318,Boron,"('water', 'ground-')",emission,kilogram,biosphere3,0.00019222012311004023,0.00021450153713443017,0.0002363218055916515,0.00023189953252417855,0.00025788071019283693,0.00028765614543723735,0.00020234501227765422,0.00022693169552563132,0.0002535385133624434,0.00020331247034752317,0.0002292117201406789,0.00025811626182128294,0.00020326549719407145,0.00023067873398636225,0.00026266990255232654,0.00020352404920067108,0.00023073382196823136,0.0002616016501774936,2.7267783623302095e-07,4.055804248377162e-07,6.253091574562245e-07,4.4777204977036255e-05,4.678311987900972e-05,4.949787253241532e-05,3.5080310559787633e-07,3.663876509258641e-07,3.8746370851491446e-07,5.7871774676842066e-05,6.0606082503070594e-05,6.431674045553182e-05 +1319,Boron,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0020084220833965142,0.002257923512634767,0.0025392808065545524,0.002422092173419651,0.0027179972917530356,0.0030822084546357964,0.0021374660274089768,0.002435484370435777,0.00282444179279795,0.002147454118543472,0.0024589811460144642,0.002871693555685261,0.002151037718345314,0.002483364597990215,0.0029179936021587975,0.0021462759483683,0.0024669169122667365,0.002912227315949136,2.8051918196405752e-05,5.0170655075178695e-05,0.00019775310658731558,0.0005062344656037631,0.0005289267444835477,0.000559659949824007,4.871752916634628e-05,5.0961824739196366e-05,5.399543217875232e-05,0.0006481282377870644,0.0006786525687654525,0.0007200849589813888 +1320,Boron,"('water', 'ocean')",emission,kilogram,biosphere3,2.57128962887249e-08,1.8254212377236865e-07,6.999296246867835e-07,5.299997881984142e-08,2.4056157166917997e-07,8.39951103509321e-07,4.071784019289838e-08,2.1519452746246357e-07,8.345933402824734e-07,4.679864837758205e-08,2.2708659919796116e-07,8.241082814770938e-07,4.932174950094352e-08,2.2765337578859026e-07,7.92863066133873e-07,3.536471090856293e-08,1.973346295626598e-07,7.989207890392229e-07,2.8434787975344997e-08,4.9085251194635006e-08,3.194084877844506e-07,6.545062630587433e-07,7.207412753561726e-07,8.16055144326361e-07,7.195658449776785e-08,7.698336649403387e-08,8.395379261468265e-08,6.600496686375773e-07,7.306002487645657e-07,8.322087561445679e-07 +1321,Boron,"('water', 'surface water')",emission,kilogram,biosphere3,2.385949615022467e-06,0.000469608684251915,0.0005665130868398407,2.231191731291517e-06,0.00046927402427348935,0.0005667337906304289,2.885014289975063e-06,0.00047064045394785184,0.0005724038868340605,3.5785773765913294e-06,0.0004721948690832053,0.0005739067567005833,4.19174438493892e-06,0.000473530936115227,0.0005738337811634646,3.050034133511519e-06,0.0004710509604449393,0.0005739200261248998,1.2280102507476904e-06,0.0004669676870183888,0.0005731661289055064,1.8010042679751752e-06,1.928747460153825e-06,2.108967834794166e-06,2.0104913257864763e-06,2.115779264442618e-06,2.2611528803807098e-06,2.5764889493778985e-06,2.7315032187070015e-06,2.9484489118725812e-06 +1322,Boron,"('water',)",emission,kilogram,biosphere3,7.791607083146623e-11,4.203632096943205e-10,1.1001140557603308e-09,2.4086408991802914e-07,4.648386962521525e-07,1.05190512433414e-06,1.6827302681946518e-07,3.1338109538582183e-07,7.586247041172634e-07,1.417115968484076e-07,2.882321773345724e-07,7.328848618753546e-07,1.4587897365443585e-07,5.049345596430719e-07,1.5164993467631711e-06,1.3535673600362324e-07,4.818485210752763e-07,1.5187010089275462e-06,1.8397264441249108e-07,6.16760486252272e-07,1.9346963088977436e-06,1.0336649390898507e-09,1.083158832538155e-09,1.1503053429773868e-09,1.527221755876827e-06,1.6482462031353378e-06,1.8138219316382655e-06,1.1780723991716552e-06,1.253812724625441e-06,1.3540472793875006e-06 +1323,Bromate,"('water', 'surface water')",emission,kilogram,biosphere3,3.039874916545063e-07,4.4723471255737645e-05,0.00011881991974601913,3.495746359855987e-07,3.9189989846445105e-05,0.00010324737872214976,3.23854879655328e-07,3.3942734632885924e-05,8.612031043372736e-05,3.407806353299864e-07,3.398051816684064e-05,8.61534402254264e-05,2.9979720812358947e-07,3.7661337613197e-05,9.908427722445371e-05,2.703380058009756e-07,3.728804267746322e-05,9.524578140190798e-05,3.178105648165218e-07,3.7359859178587385e-05,9.555607676265811e-05,0.00012830026707138478,0.00013155181025015862,0.00013591330256692842,0.00010332356078161223,0.00010574952007429391,0.00010899365234532333,0.0001032200724220854,0.00010550119371578994,0.00010856413834117963 +1324,Bromide,"('water', 'surface water')",emission,kilogram,biosphere3,1.6638362830767863e-08,2.3819521978893028e-08,9.086745338363603e-07,6.757771739742175e-08,1.3208532635482774e-07,2.4827664458789067e-06,5.7594966427168764e-08,1.1420862268427838e-07,1.919707199322183e-06,8.147595446569661e-08,1.6847584426278943e-07,7.650973514629724e-06,2.5121625631071072e-08,4.156866310657928e-08,2.6745761389363477e-06,2.3691576398890074e-08,3.795236002662316e-08,2.657280786481114e-06,1.0235530906474306e-07,1.3632478692118728e-07,3.7971614005380108e-06,9.432522994699612e-07,9.884925108047352e-07,1.0502178781110015e-06,3.913794628097454e-06,4.1031885139069335e-06,4.361765430343479e-06,2.809658985975489e-06,2.9343355227520284e-06,3.1033299102641374e-06 +1325,Bromine,"('water', 'ground-')",emission,kilogram,biosphere3,9.010089317887666e-08,2.9392673481957627e-07,6.795545323646545e-07,4.975699033120523e-09,9.871933928905493e-09,1.818028649519499e-08,5.9149391220408764e-08,1.7741905195399818e-07,3.848692953724086e-07,5.772770569317552e-08,1.7044462907953718e-07,3.69608143765393e-07,5.352131043672433e-08,1.661769411736997e-07,3.676672047420801e-07,5.5410517292605395e-08,1.6507753133574394e-07,3.445685578466725e-07,4.878989295470802e-08,1.3908690489533424e-07,3.0610655133960146e-07,5.924265173669823e-07,6.182654140853081e-07,6.535576985149364e-07,2.564571773906913e-07,2.671792109906116e-07,2.8165312791060293e-07,2.931147362592355e-07,3.0591902056850985e-07,3.2331198122303885e-07 +1326,Bromine,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.3476753548676605e-06,1.94716893718709e-06,8.947012095269514e-06,1.4263616283133621e-06,1.754697976672066e-06,2.284821140930035e-06,2.482979650740098e-06,4.235885904130914e-06,8.892497613566091e-06,2.4958788065456486e-06,4.270623225770773e-06,8.9576630532288e-06,2.6852486660418183e-06,4.696221438287979e-06,8.958252925213384e-06,2.2714235776145455e-06,3.832884751894963e-06,9.010687698052164e-06,1.6228994730146832e-06,2.4319298215191796e-06,8.45142069992413e-06,1.681351449322393e-06,1.7896385614613494e-06,1.93304265612681e-06,1.6797828233744881e-06,1.7839967102247216e-06,1.9227245243720934e-06,1.801074521974627e-06,1.912937304536572e-06,2.0619257227820173e-06 +1327,Bromine,"('water', 'ocean')",emission,kilogram,biosphere3,2.181046973027732e-06,1.359192471808106e-05,5.1826850217715453e-05,2.672825974307624e-07,2.0338876263529615e-06,7.649879983232368e-06,1.968801343405939e-07,1.9004614342314879e-06,7.4835862014304715e-06,1.9502580171121945e-07,1.8657112764489019e-06,7.416664294220161e-06,1.5547487847663003e-07,1.5342534718395593e-06,6.161739441816393e-06,1.862047521853552e-07,1.601341720505793e-06,6.242088842015081e-06,1.6843060785161885e-07,1.4333365310547772e-06,5.734717254668506e-06,4.766678477190953e-05,5.2982031966897515e-05,6.066244448051919e-05,5.468245856481003e-06,6.0739596240406956e-06,6.948901580972764e-06,6.006357586735435e-06,6.6564622665461404e-06,7.5946255160189125e-06 +1328,Bromine,"('water', 'surface water')",emission,kilogram,biosphere3,5.72968113380738e-06,8.113653860363809e-05,0.00022746862787300428,5.662284440995914e-06,8.754493012076645e-05,0.00022704520626758552,8.583296796970566e-06,9.535257598557178e-05,0.0002522563334135002,8.56972009388113e-06,9.503258856156691e-05,0.0002519884467807307,8.995352342345815e-06,9.432750450777718e-05,0.00024411877426237132,8.697201062848562e-06,9.324142052289569e-05,0.0002471819277090311,6.276357172911135e-06,8.509356631995249e-05,0.00023558705951695903,0.00020412689121613464,0.00021508182190948329,0.0002308562287432122,0.00021837531350631047,0.00023079479178165244,0.000248682084029945,0.0002292902604833182,0.0002426062672093644,0.0002617687021059124 +1329,Bromine,"('water',)",emission,kilogram,biosphere3,5.319570942711976e-09,2.869949559053256e-08,7.510818695071964e-08,1.6444535914611506e-05,3.173597458059717e-05,7.181681421149928e-05,1.1488519662416776e-05,2.1395496023432686e-05,5.179365341175851e-05,9.675088738575517e-06,1.9678501654380325e-05,5.003631482180514e-05,9.959608301651164e-06,3.4473442772379735e-05,0.00010353609709135539,9.241222634504214e-06,3.289728760933902e-05,0.00010368641146385687,1.1686940711299283e-05,3.470993797057352e-05,0.00010267599796944657,7.057150039701181e-08,7.395060148697248e-08,7.85349013028716e-08,7.629494450130346e-05,8.142173414425397e-05,8.819461454086433e-05,8.043064355904713e-05,8.56016696457312e-05,9.244499246472798e-05 +1330,Butanol,"('water', 'surface water')",emission,kilogram,biosphere3,3.0905239232332574e-10,8.620070920263197e-09,2.4953562132733662e-08,1.4860267108376965e-08,7.32104653143396e-08,4.044686743140953e-07,1.5472837528665403e-08,8.341399378660237e-08,4.745012508481397e-07,1.5548716423152307e-08,8.355238958094483e-08,4.764217823723595e-07,1.5763462141208474e-08,8.421999182405907e-08,4.7544791578148667e-07,1.5841997227373398e-08,8.43793895049263e-08,4.7567546473257857e-07,1.964374356903835e-08,8.760183961736104e-08,4.776095259443707e-07,2.5582793745142893e-08,2.663188840309343e-08,2.8034190838669747e-08,1.1590962658554229e-07,4.874378115364397e-07,9.504077802682624e-07,1.1807796491553268e-07,4.901827500132844e-07,9.540033404793018e-07 +1331,Butene,"('water', 'surface water')",emission,kilogram,biosphere3,3.31237186747687e-10,2.747807846130367e-09,7.041370939022372e-09,1.2626162667996393e-09,2.105482432961437e-08,6.235348470906729e-08,1.1366605787940796e-09,2.0254020403674337e-08,5.800770052788568e-08,1.160382007912031e-09,2.0300775991410294e-08,5.7996074422317316e-08,1.1013088435030609e-09,2.3593259341628873e-08,6.792805448202152e-08,1.2638487115958276e-09,2.363933083438022e-08,6.74803792740428e-08,1.5136747845167362e-09,2.2585953705980044e-08,6.397682979571088e-08,7.0263907365469066e-09,7.331802115210131e-09,7.739440197922586e-09,6.447862749752459e-08,6.731859217914364e-08,7.112682041517284e-08,6.842826681371442e-08,7.138215128274562e-08,7.534490410523306e-08 +1332,Butyl acetate,"('water', 'surface water')",emission,kilogram,biosphere3,4.0167867516804484e-10,1.1205643279503806e-08,3.22409048790005e-08,1.929504817640213e-08,9.512038804464806e-08,5.240920957125033e-07,2.0100250180888146e-08,1.0840445683000816e-07,6.158016278406942e-07,2.0191042498172044e-08,1.0856680841321792e-07,6.183658157530536e-07,2.0488415190887862e-08,1.0947573648153252e-07,6.165651570736436e-07,2.054043940200922e-08,1.0944480069983953e-07,6.162241799350584e-07,2.545273444048456e-08,1.135834187627139e-07,6.18829285390839e-07,3.3045463372421356e-08,3.440026556606341e-08,3.621107888260018e-08,1.4859069070539638e-07,6.314872363289073e-07,1.233226069070041e-06,1.5126332120783771e-07,6.349067199008263e-07,1.2377480012270897e-06 +1333,Butyrolactone,"('water', 'surface water')",emission,kilogram,biosphere3,6.890341346090854e-13,1.9020927196563486e-11,5.470835610609514e-11,5.2268610548583056e-12,3.336286351212157e-11,7.37247953068718e-11,4.689047683976994e-12,3.195358467433992e-11,6.933657668155115e-11,4.719836034245894e-12,3.2045057718084076e-11,6.924256137861132e-11,4.191744115671142e-12,3.42962895306828e-11,7.83933114918741e-11,0.0,0.0,0.0,0.0,0.0,0.0,5.606390328509991e-11,5.836247963513729e-11,6.143478905614823e-11,0.0,0.0,0.0,0.0,0.0,0.0 +1334,Butyrolactone,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3081923628401421e-12,1.0405323010141759e-11,2.3607448240475763e-11,1.7326956728928689e-12,1.109603235513649e-11,2.4908011200279665e-11,0.0,0.0,0.0,2.0970127588739454e-11,2.1909759933738686e-11,2.317197356634838e-11,2.0049649823570023e-11,2.0931659879285266e-11,2.2116557867381115e-11 +1335,"Cadmium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,5.119536954377108e-05,5.8173564608591915e-05,6.468917361211794e-05,6.163258245934617e-05,6.952234998982387e-05,7.830141154891027e-05,5.387646183740066e-05,6.136078168108078e-05,6.904238367321884e-05,5.4133845221352724e-05,6.194978580405513e-05,7.019838874646894e-05,5.422970845443581e-05,6.258357348841307e-05,7.144776047649384e-05,5.4311128473339405e-05,6.260896104663124e-05,7.141633047531531e-05,3.910044869986018e-05,4.4680595591990676e-05,5.241906107180894e-05,1.3111570602144458e-05,1.3699109329278629e-05,1.4494955230586324e-05,1.204578069544855e-05,1.2637239330499864e-05,1.3440489222061115e-05,1.633201029636736e-05,1.7106899632663102e-05,1.8158214917808235e-05 +1336,"Cadmium, ion","('water', 'ocean')",emission,kilogram,biosphere3,4.506555823458048e-09,1.069798170429437e-08,3.24889297044774e-08,2.2657816375117186e-09,7.934612629422418e-09,2.2109923150057742e-08,1.7820455604664791e-09,7.014968971476058e-09,2.177683752733579e-08,1.7765254521883093e-09,6.931214328091136e-09,2.1670480749613533e-08,1.7982990794419847e-09,6.945306927809064e-09,2.125075230171212e-08,1.2927058515009545e-09,6.30058273278118e-09,2.0452136677767346e-08,1.181597873777195e-09,4.305780008163106e-09,8.996512298753083e-09,2.8182025137847077e-08,3.0641651704080774e-08,3.415125927527218e-08,8.346766635502402e-09,8.817281255587765e-09,9.463436154093253e-09,1.933603629189379e-08,2.128737945750957e-08,2.409312685818881e-08 +1337,"Cadmium, ion","('water', 'surface water')",emission,kilogram,biosphere3,1.5685951821980313e-08,9.783951801187956e-08,1.4762457634439385e-07,1.5747512612006123e-08,9.030587392012009e-08,1.2788094826351902e-07,1.4291964631983197e-08,9.708671593158878e-08,1.463703284770837e-07,1.5099819828036547e-08,9.88137137425024e-08,1.4881961555407735e-07,1.5411042370385318e-08,1.0321569123822114e-07,1.6283812613296715e-07,1.578225528615616e-08,1.0116538009612728e-07,1.56448233621745e-07,1.6843480985902862e-08,9.884883293743869e-08,1.495882818325672e-07,1.39575370345219e-07,1.4539951372191088e-07,1.5340828227497165e-07,1.3381869526405788e-07,1.3886863888118924e-07,1.4574248177724763e-07,1.444986459748282e-07,1.5075905388655705e-07,1.5937918453695737e-07 +1338,"Cadmium, ion","('water',)",emission,kilogram,biosphere3,3.2756790546559835e-09,5.049815442725503e-08,1.5767398752967106e-06,6.256578825631746e-09,5.5421214073162814e-08,1.5838572119469745e-06,5.164959152475027e-09,5.210312043675397e-08,1.5790401866797786e-06,4.988498073827883e-09,5.2008948541105355e-08,1.578931344241169e-06,5.1745602262372695e-09,5.476327670752334e-08,1.587356366846598e-06,5.4266645758961466e-09,5.520686696560584e-08,1.5885256049334513e-06,5.8981791421718854e-09,5.5351109391873164e-08,1.589651036638321e-06,1.6261330929359836e-06,1.6958016245639726e-06,1.7899538374369063e-06,1.6354806463804827e-06,1.7057058609636407e-06,1.8005664662418373e-06,1.6352911854523134e-06,1.7054283232060968e-06,1.8001647608045312e-06 +1339,"Calcium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.1026493947142311,0.14260821613090013,0.17969248327424778,0.12330623598430208,0.16460956836930263,0.20141746617205192,0.10820521080578664,0.14596147873712992,0.1757499334502388,0.11044171785650944,0.15079778628144228,0.18233560821520556,0.11325202454360382,0.15815558082283276,0.1860931964422521,0.11437047473013744,0.16091036595990674,0.1921556111121279,0.04486976202576443,0.06891881255667212,0.11569991772189288,0.06654671401134758,0.06947557375371867,0.0734630396936885,0.046636205142852556,0.04882539379210182,0.05177830162185001,0.06543146112222797,0.06847536217206406,0.07259938642863717 +1340,"Calcium, ion","('water', 'ocean')",emission,kilogram,biosphere3,0.00024218621787107183,0.0007753744973464676,0.002761360184008693,6.144390615273633e-05,0.000165935432191497,0.0005050838596213973,5.4765635831694595e-05,0.00015524924291545104,0.0004991399723426484,5.5212906755013766e-05,0.00015496536949159391,0.0004986712057714253,5.365040403886764e-05,0.00014108503466286193,0.0004425369034139358,5.3473666841738994e-05,0.00014074729226979063,0.0004458481458752137,5.917503789929244e-05,0.00012320737621891812,0.0003724265793039892,0.0024486182711072144,0.0027011012449046088,0.003064709515247695,0.0002860735515422836,0.0003175744667041195,0.0003628419876643281,0.00037954874014598986,0.00042043633579876537,0.00047933838358640553 +1341,"Calcium, ion","('water', 'surface water')",emission,kilogram,biosphere3,0.01106702291817848,0.028981082297201328,0.05138711121830381,0.013109629315092167,0.02903582876922361,0.04956751406788569,0.011543134314322452,0.03225337286336326,0.05890244580160358,0.011847671978723641,0.03292751834581479,0.059650230369367827,0.011948612117931889,0.032999923735891494,0.05923162999059465,0.012048991957737735,0.0319384739867431,0.05645713990162742,0.013890727257754271,0.03334830894778621,0.0588555726329053,0.04291319714503111,0.04500902745140371,0.04788138449899073,0.04636434143020951,0.04864111538755328,0.05176401802611866,0.046660671781046575,0.048973739231598486,0.05214812505045902 +1342,"Calcium, ion","('water',)",emission,kilogram,biosphere3,7.979356926064497e-08,4.3049245397048714e-07,1.1266228530222955e-06,0.0002466680485726893,0.00047603963772497275,0.0010772522562047394,0.00017232780182013877,0.00032093245317158485,0.0007769048322109524,0.0001451263368758189,0.0002951775366065097,0.0007505447523071869,0.0001493941251927492,0.0005171016480880863,0.0015530414867719667,0.00013862570712947446,0.0004934717054892077,0.0015553219593464622,0.00017531152555114057,0.0005206609116658761,0.0015401649904059683,1.0585725504370297e-06,1.1092590689672687e-06,1.1780235691734182e-06,0.0011444370723041424,0.0012213406715808472,0.001322936393969428,0.0012064730625288604,0.0012840402272333662,0.0013866926139093662 +1343,Carbon disulfide,"('water', 'surface water')",emission,kilogram,biosphere3,2.0237907025837718e-10,3.176020109291983e-10,7.034165756664139e-10,2.8521166846675884e-10,4.926707653484295e-10,1.4287787378829976e-09,2.4959315868126455e-10,4.4775785678813176e-10,1.2394756778587662e-09,2.514730902592066e-10,4.4763457552329456e-10,1.1569624688928208e-09,2.3414756207650453e-10,3.937437367394218e-10,1.2286661117513605e-09,2.172079941398691e-10,3.30180443279247e-10,1.1352651150026544e-09,1.942615601316112e-10,2.9294403360721294e-10,1.32882762853938e-09,3.6561758266777917e-10,4.4479971310845117e-10,5.596673281362452e-10,1.066284531820769e-09,1.1593844424742355e-09,1.2910187637730495e-09,8.255221971521326e-10,9.244294007069041e-10,1.0659266031115815e-09 +1344,Carbon-14,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.0,0.0,0.0,1.3392355530033798e-05,2.9094847053252738e-05,4.751049122981234e-05,1.4125026332018368e-05,3.6079403424964006e-05,0.00013339591771201653,1.3967906870884437e-05,3.600132821467952e-05,0.00013302429193447766,1.2753526877184086e-05,3.4853179986330215e-05,7.008770686192957e-05,1.283024663109071e-05,3.442007111642565e-05,6.941414399904829e-05,1.4634840719284585e-05,3.4277034392933465e-05,6.800711900776126e-05,0.0,0.0,0.0,5.00938561191217e-05,5.2367029977571236e-05,5.5429142417670173e-05,5.430063062315032e-05,5.682329533027181e-05,6.024933189303096e-05 +1345,Carbonate,"('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,7.834217160775417e-09,1.5492223967888113e-08,4.0117914716118e-08,6.079829709852394e-09,1.1559648952824756e-08,4.21082254059823e-08,7.899175743379934e-09,1.598857472007113e-08,4.1668084532681246e-08,8.938514368764163e-09,1.8435605307825693e-08,4.0849711015975844e-08,4.565724013085996e-09,8.953720092974406e-09,4.061503325258079e-08,7.509219299679069e-09,1.2962710182121818e-08,8.435119626163888e-08,0.0,0.0,0.0,1.9002700972008614e-08,2.0330201933770308e-08,2.2170991406223337e-08,1.003433367017683e-08,1.0871171100365985e-08,1.2021553592852324e-08 +1346,Carbonate,"('water', 'surface water')",emission,kilogram,biosphere3,1.2646736308533668e-06,4.415561681105223e-06,9.886086083063737e-06,1.2773722432246173e-06,4.283715697985482e-06,1.0408193166618715e-05,1.2787967169543218e-06,4.756039103226351e-06,1.1507077541826103e-05,1.2893915549881346e-06,4.698460891876053e-06,1.1263214889392397e-05,5.891743235288526e-07,2.9839339199016008e-06,1.0304649118218437e-05,9.343893847572202e-07,3.6724197666369087e-06,9.118410994663214e-06,1.057929494608509e-06,3.7862055418778225e-06,8.84571281476092e-06,6.653133844597976e-06,9.892329603298433e-06,1.3954250345047446e-05,6.161613753873249e-06,8.990433553147487e-06,1.253933746941848e-05,6.598813611386354e-06,9.392852136449523e-06,1.2900239314427836e-05 +1347,Carbonate,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,2.3577614678020222e-11,5.402978249706771e-11,6.532927328832123e-11,5.154970242581143e-11,1.1783296473532887e-10,1.4067074439511772e-10,2.218781522505623e-11,5.136062415158037e-11,6.510119420300239e-11,2.2605975391978687e-11,5.262241300718697e-11,6.620615184818059e-11,4.359949447934885e-10,7.471600708980894e-10,1.5105727101996233e-09,4.5317673379546524e-10,8.010806909788928e-10,1.6482712933297563e-09,0.0,0.0,0.0,8.801866306585689e-10,9.864257156233597e-10,1.1382002364580528e-09,7.727688792585813e-10,8.73406354625497e-10,1.0177437639511027e-09 +1348,"Carboxylic acids, unspecified","('water', 'ocean')",emission,kilogram,biosphere3,2.0510797064933704e-05,0.0001157345872298461,0.00041829416698046834,8.510478788818606e-06,4.602702154435069e-05,0.00014634683407526835,5.617218696785419e-06,4.011454098169209e-05,0.00014306650492100422,5.619709146404735e-06,3.956746661149114e-05,0.0001418201686379663,5.9808371624056164e-06,3.933696229662883e-05,0.00013705649918251635,5.940529750793348e-06,3.9266155760473224e-05,0.0001387666615702714,6.560782684922936e-06,3.775998229670862e-05,0.00012774054728216297,0.00038455243521170524,0.00042736822476848493,0.0004892290436122013,0.00012169778968035527,0.0001350820786004299,0.0001544086904044274,0.00013345719606581402,0.00014781556418025233,0.0001685296201755369 +1349,"Carboxylic acids, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,2.488759547429788e-05,0.00014546483019615064,0.000546733220433624,2.3187351676669953e-05,0.00017639143813607224,0.0006634494408409874,1.785550611466937e-05,0.00017228378013840507,0.0006784197306887916,1.7685802463708968e-05,0.00016913294792880515,0.0006723502602798174,1.611083048690224e-05,0.00015881301030770797,0.0006376926124697005,1.928368451973428e-05,0.00016573917523580374,0.0006459985835268297,1.7449023876458016e-05,0.00014836160795787213,0.0005935046274091404,0.0005009173745725797,0.0005563441400546469,0.0006364086580632029,0.0005659051698580149,0.0006285847629956991,0.0007191236518655113,0.0006215835663748547,0.0006888563567996744,0.0007859368729413353 +1350,"Carboxylic acids, unspecified","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,2.6572646886806293e-11,6.089311201629208e-11,7.362796169882373e-11,5.809799075891908e-11,1.3280112540206806e-10,1.585399570381879e-10,2.5006303106426416e-11,5.7884894129613566e-11,7.337091003862323e-11,2.5477581588560876e-11,5.930696630120207e-11,7.461622894522958e-11,2.51994296911026e-11,5.837586641942532e-11,7.270452428902954e-11,2.5167298383187037e-11,5.773075850123002e-11,7.19342060178323e-11,0.0,0.0,0.0,2.2857502109282335e-11,2.4043585695306122e-11,2.5675233293563734e-11,2.3991543408138797e-11,2.527073437781817e-11,2.7038731306298747e-11 +1351,Cerium-141,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.8214488750822995e-08,4.025784881237864e-08,9.867017347609024e-08,1.7837815767226996e-07,4.191212019644531e-07,3.223193299950374e-07,1.4918247480130344e-06,3.2601700881438517e-06,4.200774209568782e-07,1.4899432048230021e-06,3.25350150296765e-06,4.0582019038456743e-07,3.405073570477022e-08,1.0532223337077044e-07,2.640614013263333e-07,1.6006000922454084e-06,3.497955540959802e-06,4.375959201462373e-07,1.873060154890579e-06,4.075636116270645e-06,4.4674591939425585e-07,7.977809903202869e-08,8.31698137038613e-08,8.779528062292043e-08,2.697784528454377e-07,2.808207483010452e-07,2.9574994036087614e-07,2.811711717802298e-07,2.9328487396879556e-07,3.0978061565731183e-07 +1352,Cerium-144,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,5.545086550340773e-09,1.2255806842177129e-08,3.003843031885434e-08,3.6650938321696035e-07,8.1482849751639e-07,2.1797537351600082e-07,8.30904508757696e-08,2.0353310558563893e-07,2.7873646682077e-07,8.230085508698136e-08,2.0016847294362452e-07,2.707302110465245e-07,2.732872331503398e-08,8.87455567125943e-08,3.027961194412786e-07,9.112299749575904e-08,2.2304818869088464e-07,2.8993120667930537e-07,1.0337621084088649e-07,2.4328008953909586e-07,2.832890635417581e-07,2.4287064506832618e-08,2.5319613464875203e-08,2.6727756988097686e-08,1.5106305792057825e-07,1.572266793943312e-07,1.6554746034402748e-07,1.6184366590491701e-07,1.6869629946080547e-07,1.7801255457109703e-07 +1353,Cesium,"('water', 'ocean')",emission,kilogram,biosphere3,3.1157813155433286e-09,1.9417034979078414e-08,7.403835629379519e-08,3.81832276307807e-10,2.905553708283544e-09,1.0928399811871832e-08,2.8125733054700685e-10,2.7149448652586166e-09,1.0690837270007504e-08,2.7860828397342667e-10,2.6653017834577977e-09,1.0595234546857266e-08,2.2210696591576648e-10,2.1917906411294637e-09,8.802484784641325e-09,2.660067848400638e-10,2.2876309949273796e-09,8.917269640344817e-09,2.406151504590006e-10,2.047623585031771e-09,8.192453097882557e-09,6.809540576903874e-08,7.568861593188556e-08,8.666063364135945e-08,7.811779677619204e-09,8.67708504684816e-09,9.927002109402629e-09,8.580510709290117e-09,9.509231666496246e-09,1.0849464859894682e-08 +1354,Cesium,"('water', 'surface water')",emission,kilogram,biosphere3,6.7628769485988995e-09,3.952832424337563e-08,1.485684512990139e-07,6.300710226360836e-09,4.793196779130015e-08,1.802844769330556e-07,4.85163903926403e-09,4.681529602060638e-08,1.8435192748725354e-07,4.805518794407203e-09,4.5959091139497744e-08,1.827026200442145e-07,4.3777815331132156e-09,4.315524775306247e-08,1.7328445207540145e-07,5.240131607929647e-09,4.5037818884491554e-08,1.7554309150583472e-07,4.741582525321181e-09,4.031565391292508e-08,1.6127842966720128e-07,1.3611854826357262e-07,1.5118015484143134e-07,1.7293679768596933e-07,1.537785771505613e-07,1.7081107510690222e-07,1.954140337805015e-07,1.6890857604509452e-07,1.8718922542504285e-07,2.1356980018644528e-07 +1355,Cesium-134,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,2.090843756020895e-05,4.72070429093548e-05,1.632451108939902e-05,5.0256465112903185e-06,1.1749934185100814e-05,8.211276254136945e-06,7.64097865445625e-06,1.767848431282167e-05,1.3069742350745902e-05,7.599884949804892e-06,1.7518197148269685e-05,1.2721712463757223e-05,3.718320301923885e-06,9.401827338454222e-06,1.016000457013087e-05,9.041229533380731e-06,2.0760202815226156e-05,9.843851880718675e-06,9.744947333124039e-06,2.190383370142435e-05,9.344730351597704e-06,1.3303018961843917e-05,1.3887948104620083e-05,1.4687347702572938e-05,6.839329816469431e-06,7.1198455832890134e-06,7.498132870335713e-06,7.565910083844801e-06,7.888357555273861e-06,8.326560801863187e-06 +1356,Cesium-136,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,3.2327164404184403e-09,7.144982854157572e-09,1.751203104436601e-08,2.1367040946307896e-07,4.750348740427152e-07,1.2707693037036807e-07,4.8440698896290706e-08,1.1865726777741088e-07,1.6249989159256568e-07,4.7980374376769655e-08,1.166957288292453e-07,1.5783234414287025e-07,1.5932305647324427e-08,5.173755522869223e-08,1.7652636950163477e-07,5.312357364784594e-08,1.3003431842633296e-07,1.690262854460328e-07,6.026704452265409e-08,1.4182926476299992e-07,1.6515399856552996e-07,1.4159056358915153e-08,1.4761019551300865e-08,1.558194970085767e-08,8.806788267758983e-08,9.1661197288637e-08,9.65121090278242e-08,9.435284306851013e-08,9.834784315315376e-08,1.0377910394520598e-07 +1357,Cesium-137,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.009752413997050355,0.022822832095351728,0.013153331919057286,0.0015466202390384772,0.003606952425744365,0.0024996686510448873,0.0019437240599672835,0.004480553669961634,0.0025436130931606165,0.0019335026616486312,0.004435334460852036,0.002446208868412419,0.0007761481455428848,0.00199992932183768,0.002350877286089071,0.0022874811712836523,0.005228051891916086,0.002255145079841322,0.0024888778531808133,0.005592700729231323,0.0021285580734344426,0.011078241649320093,0.011561324355804458,0.01222117192456603,0.0014887398855281816,0.001547972791965607,0.0016278901177720403,0.0016558847033118587,0.0017246673891783556,0.0018181650397751524 +1358,Cesium-137,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,5.1925595869380424e-05,0.00011679016912194075,6.318364782771928e-05,9.089120097562435e-05,0.0002090589550758682,0.00011751074248608752,0.00040467144057945394,0.0008881478365884291,0.00015281143021334743,0.0004040393245075784,0.0008857918942558089,0.00014769660697715593,1.7964742370788045e-05,5.215029740455827e-05,0.00011335132038339294,0.0004361736620240347,0.0009571711403793168,0.00015593260421759508,0.0005084751006318418,0.0011094531533866752,0.0001567078367917786,5.1217011400869345e-05,5.343704790155463e-05,5.646837475912931e-05,9.449344379247737e-05,9.83464508863301e-05,0.00010355325824788002,9.966744959623049e-05,0.00010393109769718042,0.00010973438589921696 +1359,Chloramine,"('water', 'surface water')",emission,kilogram,biosphere3,5.4975760854129726e-11,7.640527950778663e-11,5.866103796861679e-10,2.929773620700945e-10,5.85503262148902e-10,5.4555950479041064e-09,2.799226955674943e-10,5.917210173367726e-10,4.184411432800528e-09,3.888059867621863e-10,8.362453241019994e-10,4.295367222823309e-09,1.2053877093282968e-10,2.3928719795177326e-10,4.786735514505967e-09,1.1871150498359533e-10,2.3126796374269188e-10,4.740606274247434e-09,2.553320683397379e-10,3.9730704927337507e-10,7.863983755466738e-09,5.353674397406933e-10,5.752723310941225e-10,6.312957212281857e-10,8.037600941117225e-09,8.424252023242375e-09,8.951798885945983e-09,4.898737254213304e-09,5.125063891094159e-09,5.432885513530811e-09 +1360,Chlorate,"('water', 'surface water')",emission,kilogram,biosphere3,2.744109711661639e-06,0.0003421202743044896,0.000908324041424461,3.159622713615251e-06,0.0002999201627625833,0.0007894726304070645,2.8984602974613227e-06,0.00025977427158612023,0.0006586077001603032,3.028870613212815e-06,0.00026006484842870485,0.0006588613168552131,2.7041641302409677e-06,0.00028815250892519193,0.0007575911474378718,2.5445579048178437e-06,0.0002854102291960841,0.0007284040636489411,2.9980261506434974e-06,0.00028603361856586817,0.0007307384193037918,0.0009801452126555566,0.0010051864443426583,0.001038759817913436,0.0007894192637372058,0.0008080209928264175,0.0008328950602396823,0.0007886489596231797,0.000806264162864555,0.0008299035049288881 +1361,Chloride,"('water', 'ground-')",emission,kilogram,biosphere3,0.00922773067546327,0.021344331532822648,0.07848219788748585,0.014370360248317275,0.031200304370185925,0.07929839184627789,0.014430821941150787,0.03137051234322525,0.08244620691674727,0.014436771762660939,0.031377128923745876,0.08247144408809737,0.01679638010012881,0.03651108654929361,0.08295927327371852,0.009724011098480263,0.020918273623625354,0.08197157154090924,0.005659697214100606,0.01124208043125954,0.08196073372073952,0.01140381063472119,0.011855966853419789,0.012471801231229087,0.01225204359653851,0.012862562131413204,0.013682037833044171,0.012691088762800437,0.013327182051930843,0.014184235012573898 +1362,Chloride,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0024567465270941584,0.006237566462996974,0.011227022416532433,0.002441322565288914,0.00559233320360153,0.00983032949205361,0.0026406539854115564,0.006101986176773528,0.010238817029645533,0.0026415199576536627,0.006078228052268823,0.010463354892569889,0.002940575730104927,0.00679570908022177,0.01063923575831234,0.002909158161508386,0.0068985588314818685,0.011838769198296066,0.0023614178792180566,0.004751182396269669,0.012703845711017781,0.007410277123187882,0.007744287327926862,0.008200429322729913,0.007313759996258376,0.007664847896136285,0.008139740075772523,0.0072295678969446645,0.007574560503643437,0.008042996310123294 +1363,Chloride,"('water', 'ocean')",emission,kilogram,biosphere3,0.0015655236360398797,0.009751359602309788,0.03716576235853841,0.000337313277982136,0.0017702446741738483,0.00631647978020019,0.00025355369879662723,0.0016004338561223515,0.006230306076826753,0.0002843929850445021,0.0016533339708977226,0.006172935889739244,0.00027456747642624397,0.0014588212443344436,0.005256425975437676,0.00021894223771105523,0.0013385227605193562,0.005311025170350042,0.00025557266256137927,0.0012585870584819248,0.005596588771154377,0.03418453690513513,0.03799501506528241,0.043500987131108476,0.00424603343236589,0.004702504122532834,0.005360500610482449,0.004595053796863381,0.005087937404589517,0.005798198157093358 +1364,Chloride,"('water', 'surface water')",emission,kilogram,biosphere3,0.005497490214217608,0.07340733013354182,0.18107837170733743,0.005110115297638961,0.071480843579388,0.18389410858507835,0.0046372085617117755,0.08163937933816245,0.20956832105968162,0.005177710427350917,0.08247803374316952,0.2101362223295952,0.005300900069924826,0.08261946320018398,0.20819945822059285,0.004937905216933679,0.07884401806637785,0.20260230270723492,0.003630934468719615,0.07441427437664822,0.19647774429465178,0.18122099792639831,0.1935397821385521,0.2108531692759951,0.19526533103931318,0.20850720275988918,0.2271899034234354,0.20213970024959943,0.21611964460181166,0.23583097828226807 +1365,Chloride,"('water',)",emission,kilogram,biosphere3,4.02764656136995e-06,1.3898906306527396e-05,3.6277551639469976e-05,0.0027841426426101793,0.005375150528419302,0.012161526977612623,0.0019450877771832256,0.0036247032486941846,0.008774983180301447,0.0016385819307521501,0.0033346296804343733,0.008478163630778806,0.001688519733557475,0.005840696349163571,0.017525746656717127,0.0015700102683944548,0.0055810609558165376,0.0175602470691796,0.0020136783939831487,0.006093893740859002,0.018166335974217872,3.2387410053861065e-05,3.515306215871716e-05,3.9077665711971265e-05,0.013635807654692637,0.014602486777355336,0.015888048840507023,0.013620172217858212,0.014496189761541598,0.015655652968931937 +1366,"Chlorinated solvents, unspecified","('water', 'ocean')",emission,kilogram,biosphere3,2.9223752690638675e-16,1.1807651577066783e-15,2.9578849769656155e-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.427507662502691e-15,2.5301494914909672e-15,2.668665709075334e-15,0.0,0.0,0.0,0.0,0.0,0.0 +1367,"Chlorinated solvents, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,1.7947336343451044e-09,1.0192916592682382e-07,2.7788805881199035e-07,1.9296943825677624e-08,1.2552831849916657e-07,3.0465992207809306e-07,1.9033894114953316e-08,1.1411405039109378e-07,2.746626172277464e-07,2.7102934303949736e-08,1.3254984077225485e-07,2.7651675692038635e-07,1.5401674797818586e-08,1.1540554642649928e-07,3.003352320066511e-07,8.567559689235399e-09,9.956976071684839e-08,2.8508854172773717e-07,1.793384390504511e-08,1.2214881561854693e-07,3.762261813993998e-07,2.866274074719386e-07,3.055714045310161e-07,3.298739738446986e-07,2.897004712977526e-07,3.0232127826683375e-07,3.193568600346041e-07,2.482264188093406e-07,2.649194056683486e-07,2.8638574081602584e-07 +1368,Chlorine,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.0407161436166915e-08,1.467305885561492e-07,3.5023129978525103e-07,2.646431843295721e-08,1.4099822445024893e-07,3.3615944705569704e-07,2.2651843376142447e-08,1.002018816690253e-07,2.3754549167931628e-07,2.3818477679075987e-08,1.0042208282483578e-07,2.3452017936527473e-07,2.327129775787734e-08,9.385801154628784e-08,2.2502011523540221e-07,2.8641939974846027e-08,1.0175968190597258e-07,2.3272608005142158e-07,0.0,0.0,0.0,2.0327363572219032e-07,2.1225656796658313e-07,2.2448923600373221e-07,1.9980911370169758e-07,2.0864797899435398e-07,2.206943710047105e-07 +1369,Chlorine,"('water', 'surface water')",emission,kilogram,biosphere3,5.500782884451969e-08,1.0551789195189702e-07,7.61576477220637e-07,2.246755960658172e-09,5.582023203244988e-09,1.0810175162802254e-08,2.7556646949741224e-09,7.046499717996925e-09,1.5374200478120648e-08,2.78535113833957e-09,7.0882077829711284e-09,1.5282831685140107e-08,1.6972916047438276e-09,4.8864687351689085e-09,1.2822655147624607e-08,2.3002723678348316e-09,5.9749152061780085e-09,1.0450679109934822e-08,7.451920518714274e-08,1.5619907915828232e-07,3.106701066353773e-07,5.779787265323052e-07,6.099088206810997e-07,6.528864568278917e-07,1.9866158646632535e-07,2.166439271067026e-07,2.421682694370686e-07,5.3849424691188395e-09,9.49977965812398e-09,1.4649761294220754e-08 +1370,Chlorine,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2313122519694803e-10,3.4559259434831844e-10,6.735053480866011e-10,9.936905364118108e-11,2.880323616167323e-10,5.371067419937082e-10,1.0029556653271448e-10,2.9044336344163756e-10,5.40293105331852e-10,7.020089754624404e-11,2.860283614387022e-10,5.944613948011979e-10,3.085492215787943e-11,1.4071708910957835e-10,2.3793492061349026e-10,3.427486842773606e-11,1.292043697817613e-10,2.2079781974955185e-10,0.0,0.0,0.0,1.1104015067331135e-10,1.1960492437262243e-10,1.317809383580737e-10,1.1994741145568922e-10,1.2907993979355764e-10,1.4216988681544603e-10 +1371,Chloroacetic acid,"('water', 'surface water')",emission,kilogram,biosphere3,2.4054809961953345e-09,6.340572553566885e-09,1.8680984334437812e-06,8.841438568457157e-09,2.0207643439464284e-08,3.211399661644907e-07,9.663056775650736e-09,2.2551192478571974e-08,3.049425131840758e-07,1.6733209153153637e-08,3.826410547924601e-08,3.999761941347309e-07,1.89412930368111e-09,4.927943396867824e-09,4.824549774109121e-07,1.7335439910982785e-09,4.4444593706429225e-09,4.745866282298297e-07,1.6826600451066138e-09,3.117662873175923e-09,9.562076797806661e-08,1.9911794469923815e-06,2.075852110724818e-06,2.190184159634575e-06,9.923521700452122e-08,1.0372969453089581e-07,1.0983753451743674e-07,5.047603568553433e-07,5.263061863708847e-07,5.55414225696457e-07 +1372,Chloroacetyl chloride,"('water', 'surface water')",emission,kilogram,biosphere3,7.630852354426085e-14,1.58898714099785e-13,3.665620211983969e-11,3.118070189269549e-11,6.905031786179655e-11,3.4763602468873646e-10,3.588994543348837e-11,8.095484304634685e-11,2.3931725672004115e-10,6.391100174199978e-11,1.4335881973187106e-10,1.9933477013739279e-10,9.24779165713911e-13,2.2242310425656693e-12,2.680386087910743e-10,7.491062585486218e-13,1.800945358307392e-12,2.654448323434874e-10,1.2276279280440603e-11,1.6546386964729302e-11,4.750164511796854e-10,3.9027150385785576e-11,4.069664829956448e-11,4.295213250153241e-11,4.904067696902228e-10,5.139445722505928e-10,5.460592967991935e-10,2.831022514844454e-10,2.9513673054365633e-10,3.113861097669759e-10 +1373,Chloroform,"('water', 'surface water')",emission,kilogram,biosphere3,7.977191442575615e-12,1.7747891696243298e-10,5.345650315057043e-10,7.885698149523222e-12,1.9521131874787604e-11,2.867306536612666e-10,6.071543932421784e-12,1.5785010938199463e-11,2.0250684508031145e-10,7.695991337766124e-12,1.947713664445573e-11,1.8187412409134505e-10,3.010837653475847e-11,7.687928967121533e-10,2.4618013626341105e-09,3.2239691794694935e-11,7.61770544163915e-10,2.4291603509295906e-09,4.962606847153453e-11,7.849427823104917e-10,2.622748003846754e-09,5.463957597069294e-10,5.693834359854331e-10,6.002005798656113e-10,2.687183085223741e-09,2.8033810896003204e-09,2.959872190684561e-09,2.5043248238258376e-09,2.6090545798820167e-09,2.7498682493896147e-09 +1374,Chloroform,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.097159205110886e-12,1.0163165414992033e-11,4.152557332650575e-11,0.0,0.0,0.0,1.3045266999935006e-11,4.033816849087208e-11,7.436783643866317e-11,0.0,0.0,0.0 +1375,Chlorosulfonic acid,"('water', 'surface water')",emission,kilogram,biosphere3,3.8258524514285247e-13,1.013879327529642e-12,3.3591210978164564e-10,1.8927102918190026e-11,4.29534760311937e-11,1.2586760478724462e-09,1.1032752849812475e-11,2.547144959380179e-11,7.380395699723403e-10,1.615309284997378e-11,3.69040344820444e-11,6.09818794550101e-10,2.5842028972020288e-12,6.358993899774761e-12,9.748868807764578e-10,2.15827209231023e-12,5.302374864852555e-12,9.662405889873185e-10,1.1228745148092637e-11,1.5927055891779424e-11,6.940274349631334e-10,3.58164013769104e-10,3.733845043059633e-10,3.939347889238257e-10,7.26320532574439e-10,7.595142226534616e-10,8.046204835376239e-10,1.0309538085990375e-09,1.0747697421779836e-09,1.1339301335865877e-09 +1376,Chromium VI,"('water', 'ground-')",emission,kilogram,biosphere3,1.4928055791365855e-07,4.2573465040110215e-07,9.202280504284046e-07,4.657687096740143e-08,6.800560492254931e-08,8.355675278958471e-08,1.0937273990385678e-07,2.683051018353372e-07,5.218865143027044e-07,1.0795778176857527e-07,2.619970643036367e-07,5.083540713972954e-07,1.0444032647607777e-07,2.6079314093804156e-07,5.078713513731025e-07,1.0620215812437852e-07,2.5830052408745914e-07,4.791092973377378e-07,1.5167132902983481e-07,2.78295507502262e-07,5.121286017734778e-07,7.653693194659002e-07,7.986890954162307e-07,8.441896891110656e-07,3.401805534622871e-07,3.5454165929682166e-07,3.739229693272447e-07,3.665818762117331e-07,3.8255747350262003e-07,4.0425031445365175e-07 +1377,Chromium VI,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,2.671259810396689e-05,4.637285872296907e-05,8.035158767857257e-05,2.950111753623552e-05,4.6536686216187284e-05,6.797320887392243e-05,3.066720683975271e-05,5.203003294634472e-05,8.35625780853195e-05,3.07705620017657e-05,5.217366300720437e-05,8.37370633397659e-05,3.2367382672046974e-05,5.6093511891959186e-05,8.494883231380215e-05,3.1335242742300975e-05,5.391773970901187e-05,8.720691246975914e-05,1.3602619502439119e-05,2.669796259663024e-05,7.080485763373005e-05,3.6442595584676e-05,3.841259085087082e-05,4.1116796923561515e-05,2.9926194643596127e-05,3.1566164964949255e-05,3.3805358813807624e-05,3.406446835105849e-05,3.587578117700008e-05,3.835081393293887e-05 +1378,Chromium VI,"('water', 'surface water')",emission,kilogram,biosphere3,7.96896556887374e-07,2.4961206861440977e-06,9.96020872331867e-06,7.917548030983503e-07,2.2765827100263848e-06,6.168482038958925e-06,1.7196605341937037e-06,4.3157612144107275e-06,1.148683912353869e-05,1.7335076837108165e-06,4.343521987719341e-06,1.153414379330306e-05,1.8980176564598849e-06,4.746281848814037e-06,1.1594803595188569e-05,1.5948075500866977e-06,4.12195180354696e-06,1.1673710406939826e-05,1.296320153118578e-06,3.3550477870435547e-06,1.1990310604837405e-05,5.585983712387292e-06,5.950106151818899e-06,6.452389703706649e-06,5.777229478326647e-06,6.117522401482169e-06,6.586133452680698e-06,5.520859644627928e-06,5.8428615140630255e-06,6.2862330829826366e-06 +1379,Chromium VI,"('water',)",emission,kilogram,biosphere3,1.3793859602473e-09,4.407472908575562e-08,1.5564000786366313e-06,1.6370501161958292e-09,4.438056750535256e-08,1.5557092698297387e-06,1.5050186721087242e-09,4.2927494697738205e-08,1.5540243683763263e-06,1.543856294387914e-09,4.299411314749802e-08,1.5540890109778413e-06,1.613814593649415e-09,4.324107993826476e-08,1.554232075329245e-06,1.767680924409971e-09,4.352091470114307e-08,1.5547737267389243e-06,1.8966067489206153e-09,4.397682454190799e-08,1.5575819332671639e-06,1.6092573884439967e-06,1.677820310152786e-06,1.770418106151047e-06,1.6112099098091358e-06,1.6799455631166583e-06,1.772789832508961e-06,1.6087551577813606e-06,1.6772445195690147e-06,1.7697351912191313e-06 +1380,"Chromium, ion","('water', 'ocean')",emission,kilogram,biosphere3,1.9658416640525544e-08,1.0905720373544372e-07,4.029834154699909e-07,1.7463043831708043e-08,1.059491169766595e-07,3.836046894210536e-07,1.2464973638912511e-08,9.617932981623302e-08,3.757747319312075e-07,1.204061361643366e-08,9.341215832877669e-08,3.705808492987082e-07,1.1525554432944713e-08,8.914327229616895e-08,3.5440729143430283e-07,1.4537064355630079e-08,9.360897507196947e-08,3.627439910342905e-07,5.4661814245505625e-09,9.957004308803727e-09,1.1521815816829062e-08,3.7313397165067585e-07,4.116647180963781e-07,4.6708976704708464e-07,8.275846075561392e-09,9.119410441626313e-09,1.0320727264529499e-08,3.459685106475089e-07,3.8430564178235017e-07,4.396057067634416e-07 +1381,"Chromium, ion","('water', 'surface water')",emission,kilogram,biosphere3,1.0467199350480853e-07,4.221839938230183e-07,5.234803611837864e-07,9.42114206940574e-08,3.9762511198741367e-07,4.805042008202242e-07,8.451321702761885e-08,3.8217275121639803e-07,4.937737573829878e-07,9.145840750261166e-08,3.9691641153644925e-07,5.458603578357302e-07,8.557125353246533e-08,3.8197350334757274e-07,5.130423291472608e-07,8.994921996480849e-08,3.910258057540487e-07,5.165792404990344e-07,7.724487361685237e-08,3.16717924413593e-07,3.0883031603498577e-07,4.472023708836927e-07,4.7543492782252833e-07,5.157631601916508e-07,2.1857889312116213e-07,2.2581121926866181e-07,2.3585242784486645e-07,4.245539693957187e-07,4.545171878853044e-07,4.972866919278138e-07 +1382,"Chromium, ion","('water',)",emission,kilogram,biosphere3,8.697743047106982e-09,2.9349869304435036e-08,9.268592090576102e-08,1.2470005115014874e-07,2.013837897231432e-07,3.9761874054020947e-07,1.0315207015732751e-07,1.669963449327355e-07,3.721843138734122e-07,9.943520688285005e-08,1.6401007136618353e-07,3.689779116588665e-07,1.0272398918901592e-07,2.0610002251593491e-07,4.977390796862279e-07,1.033115875897913e-07,2.069583975340673e-07,5.067436384082267e-07,1.2548505220033313e-07,2.2988619473425624e-07,5.366003826123023e-07,7.688198616811536e-08,8.19138545292075e-08,8.898743059488467e-08,3.3777450796266473e-07,3.6076974601069104e-07,3.9176751696571704e-07,3.3556937677125144e-07,3.565533128025548e-07,3.849749694755006e-07 +1383,Chromium-51,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.8226045941647908e-05,4.06361603387335e-05,2.688483951939976e-05,1.5139200420465202e-05,3.8369349422442205e-05,5.326065465030634e-05,0.0002947959847807559,0.0006431737779805944,6.929596280321212e-05,0.0002944565362493359,0.0006419909353493787,6.681738403557169e-05,6.208672697504192e-06,1.8317912879139554e-05,3.684674639395858e-05,0.00031650066211941425,0.0006904900990701026,7.210304314368753e-05,0.00037029146148922094,0.0008048306828204862,7.417308605343072e-05,2.1632909695240258e-05,2.2565149643208542e-05,2.3837604396105476e-05,4.624880972947131e-05,4.81393032040206e-05,5.069585294577682e-05,4.805651892070429e-05,5.0129691120913436e-05,5.295358081068728e-05 +1384,Cobalt,"('water', 'ground-')",emission,kilogram,biosphere3,2.898351867758211e-07,3.868263471460356e-07,4.6341654657617804e-07,3.3799546146853933e-07,4.298834606755913e-07,5.130319737275058e-07,3.044770410668426e-07,4.00032860362426e-07,4.784118606321634e-07,3.0560334008243253e-07,4.0161908611960575e-07,4.807775498363034e-07,3.1209563338154857e-07,4.185459536907207e-07,4.90057426038418e-07,3.11385730996463e-07,4.1628875804584224e-07,4.997927050532266e-07,1.4883843131707616e-06,1.705773600115588e-06,2.048079615891969e-06,1.3766475923618223e-07,1.4372181657194692e-07,1.51962241979879e-07,4.819079554843e-07,5.056034091279413e-07,5.377652470048107e-07,1.433497307839041e-07,1.5017123262297761e-07,1.5941204925725605e-07 +1385,Cobalt,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.00032608720807770147,0.00037606860640265684,0.0004265370791060351,0.0003527899630125774,0.00040114286136734475,0.00045082220830723884,0.00031284801286822895,0.00036212529450940014,0.0004090923344325687,0.00031347025616721097,0.00036345469932473997,0.00041155078798487565,0.0003159766000347677,0.0003709617777926443,0.00041754686564607075,0.0003162244469271226,0.00037075907235710785,0.000422672086188425,0.0003259782341861362,0.0003644220288180585,0.0004391314194011073,8.60374038013578e-05,8.986376278205161e-05,9.507032526705272e-05,8.228433849136601e-05,8.629348734753994e-05,9.172488691787583e-05,8.693860017671728e-05,9.107796465681047e-05,9.669596818912102e-05 +1386,Cobalt,"('water', 'ocean')",emission,kilogram,biosphere3,2.9378388953525783e-10,6.875200726832916e-10,3.9623389791972057e-10,4.6590732207730255e-11,1.0865663742921444e-10,7.530057462674301e-11,5.855317606600063e-11,1.3497319568852016e-10,7.662436677881648e-11,5.824526438875943e-11,1.3361100217190037e-10,7.369014023976778e-11,2.3380859431269834e-11,6.024631588040485e-11,7.081835044234958e-11,6.890859177412169e-11,1.5749099844691331e-10,6.793449216066413e-11,7.497551023086683e-11,1.6847576115751545e-10,6.412115701383687e-11,3.337234166300543e-10,3.482759075816156e-10,3.681533025806026e-10,4.484713156017185e-11,4.663147681317822e-11,4.903892411759836e-11,4.988223924113345e-11,5.195426417449895e-11,5.477080820454279e-11 +1387,Cobalt,"('water', 'surface water')",emission,kilogram,biosphere3,3.132992165410257e-07,4.4678011281777793e-07,1.9444324322935057e-06,3.171728977502604e-07,4.533124453034784e-07,1.9540992519385443e-06,2.7939963203765444e-07,4.1956195331105715e-07,1.9350924815817978e-06,2.795649833519732e-07,4.200599994801808e-07,1.936909049610048e-06,2.7663021778442827e-07,3.965516883835833e-07,1.7964723925679456e-06,2.766724502978927e-07,3.9649893763960394e-07,1.7972470679665826e-06,3.2667872484422476e-07,4.667066271344143e-07,1.927179513421292e-06,1.6792220939205416e-06,1.8012077893571277e-06,1.9545110474918204e-06,1.7277932499695037e-06,1.7620487058410124e-06,1.8077638591174949e-06,1.6567083311677976e-06,1.6817190082922237e-06,1.7143158459277292e-06 +1388,Cobalt,"('water',)",emission,kilogram,biosphere3,5.499497563387317e-13,2.967021290311977e-12,7.764860814356815e-12,1.7000747483216513e-09,3.280939594653026e-09,7.4245909389113194e-09,1.1877101473148428e-09,2.2119166333526387e-09,5.354549544360501e-09,1.000233398961036e-09,2.0344097225426235e-09,5.172871753222417e-09,1.0296477196510764e-09,3.5639455411445895e-09,1.0703805032167466e-08,9.55379318881315e-10,3.400998911188167e-09,1.0719344871548543e-08,1.240472655246823e-09,3.8603617661101115e-09,1.1694327074633883e-08,7.295847488119024e-12,7.645186896847401e-12,8.119122581123786e-12,8.91385734229625e-09,9.558817755370383e-09,1.0425099002676316e-08,8.315108940614003e-09,8.849701770252182e-09,9.557180566213848e-09 +1389,Cobalt-57,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.026186121900567e-07,2.2680870387146462e-07,5.558979149856469e-07,6.782704705328389e-06,1.507939862035809e-05,4.033901112904647e-06,1.5376904897224452e-06,3.766629235884126e-06,5.158359502874551e-06,1.5230780532741202e-06,3.7043625897502185e-06,5.010193937097363e-06,5.057514757669425e-07,1.6423451599424251e-06,5.603612829045079e-06,1.68634259627677e-06,4.127779736059418e-06,5.365531877638762e-06,1.9131033054566685e-06,4.502195821467837e-06,5.242610888421473e-06,4.494618524637482e-07,4.6857043460477184e-07,4.946298538397702e-07,2.795606823896991e-06,2.9096721847842307e-06,3.063658422565505e-06,2.9951151703863475e-06,3.1219315432890016e-06,3.294340248999787e-06 +1390,Cobalt-58,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.0001400252602025805,0.000316599521610563,0.00017811449722417375,0.0008784474707517282,0.0019577703827204458,0.0005498206724234787,0.00027039632719722066,0.0006465898168571123,0.0006957676487970031,0.00026830386093601395,0.0006375954298944782,0.0006747020892282115,8.57514553655951e-05,0.00026144542914054543,0.0007498823913556334,0.0003015636787532815,0.000718956551481445,0.0007216917153279958,0.0003395237698039324,0.0007851360596087268,0.000703520260296077,0.00014518116439892482,0.00015147482245300687,0.0001600684608198824,0.0003841160807502319,0.0003997178123794712,0.00042077979564679924,0.00041284580700174083,0.00043026540504213876,0.0004539482027478778 +1391,Cobalt-60,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00010673215956026189,0.0002409398008267995,0.00014262904692016187,0.00033008713439661153,0.0007475097154907682,0.0003191119746467081,0.0007916478127486293,0.0017475076462705752,0.0004141024680050483,0.0007900963484576644,0.0017415232186726265,0.00040081546577064135,4.9045966403073826e-05,0.00014479178235779827,0.0003494375381316939,0.0008549671662501226,0.001887048113474242,0.0004221597976495004,0.0009945160243638377,0.0021782612772481154,0.0004201625584601637,0.0001160487405771611,0.00012107230202270654,0.00012793107766225515,0.00024620149127336014,0.00025623858887932995,0.00026979796506457817,0.0002611634829781127,0.00027229909794255705,0.0002874505500386878 +1392,"COD, Chemical Oxygen Demand","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.00544613433739776,0.00656431397323313,0.008485109349726502,0.006928693795467841,0.010355453498652412,0.01753804705213932,0.0049635012672722195,0.005952609996754927,0.0077040203353890176,0.004994867621275326,0.005945973527448834,0.007642663414934385,0.005012608193553765,0.006001467903930524,0.007633349023628977,0.007470909137419714,0.010235319195260396,0.015345502163597072,0.00954915269835666,0.012667933653418947,0.018873949693890266,0.0029222458765402457,0.003121511215530008,0.003392984033364152,0.008138998517183466,0.008612100554552748,0.009259636008184836,0.006961696849987771,0.007369939394108925,0.007927496348849209 +1393,"COD, Chemical Oxygen Demand","('water', 'ocean')",emission,kilogram,biosphere3,0.0010480770081140948,0.0034241357715430677,0.00736948845702392,0.001022526028519106,0.0031731729632916957,0.005169645346521565,0.0005780943361559449,0.0022211291310161104,0.005010272313323939,0.0005865473792004692,0.002224071784650786,0.004978243522618011,0.00043034283950114797,0.0018429533896737857,0.004709142866663733,0.00035954406171145723,0.0016845814560432395,0.004609668905237682,0.00047433725318397397,0.0017984298860745762,0.004162965763802105,0.006697514084443597,0.007463558115813842,0.00856996456077432,0.003951903548445186,0.0043870190325785985,0.005015402683286444,0.004434583360469806,0.004899635955200574,0.005569871906852374 +1394,"COD, Chemical Oxygen Demand","('water', 'surface water')",emission,kilogram,biosphere3,0.0019028570688546303,0.010976186373944492,0.041373182490121986,0.0013883216572584073,0.00922439296561492,0.03399216395407486,0.0011119573965136362,0.009160913339928314,0.03538657205982185,0.001109054836314043,0.009014128334825408,0.03509613293609536,0.0010110878471592205,0.00816761313310172,0.032044024014502875,0.0011631689208270062,0.008498053029290202,0.03244344512870522,0.0011714013430101124,0.007967265683145945,0.030157642049125025,0.037801873442093355,0.04213331010683662,0.04835894337222019,0.028218790625187107,0.03141415502192718,0.03600893030018033,0.030934704188877782,0.03436010284920552,0.039282484073213615 +1395,"COD, Chemical Oxygen Demand","('water',)",emission,kilogram,biosphere3,2.464271906612235e-06,6.757928015467317e-05,0.0023337905477277304,2.734505452969678e-05,0.00011777781857126585,0.002440289602670776,2.0430150438313607e-05,0.00010184776821453883,0.0024115580188545926,1.771098274350022e-05,9.811393795995715e-05,0.0024061271997858867,2.1118423145629403e-05,0.00013126731246413206,0.0025443636584345716,1.9652419472224324e-05,0.0001281602876099336,0.002548326622060814,2.598319468330281e-05,0.00014901748033702787,0.002618112692362606,0.0024080526097851503,0.002514927806341401,0.002658822248679158,0.002598982024818811,0.0027744226596983813,0.00300580083826592,0.0025377500295881926,0.0027060343134805353,0.0029270321318856764 +1396,"Copper, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0004375326248584603,0.0005092483847700873,0.0005774961652333686,0.0006629973570460642,0.0009813854844094377,0.001300583053844935,0.0005964429634258937,0.0009088757339683573,0.0012156367474183305,0.0005709201082818856,0.0007971690097333375,0.0009639598153355999,0.0005656014132974567,0.0007915488392607093,0.0009921780236192602,0.0005946120764972957,0.0008486712907614649,0.0010586687676153222,0.0063025910349604084,0.007434782357925566,0.008880009220483225,0.00013000065733466355,0.00013608594500533013,0.00014432096151881994,0.002357787499864846,0.0024764134939869067,0.0026379707695165016,0.0002948389612986275,0.00031096534440585693,0.0003331488496824464 +1397,"Copper, ion","('water', 'ocean')",emission,kilogram,biosphere3,2.3270430854742764e-08,1.409556215492596e-07,3.3005583130007434e-07,2.3103256023522314e-08,8.661109264698973e-08,1.4566280427146122e-07,1.4057846810350693e-08,6.77628151969501e-08,1.428998405982546e-07,1.4397362666500305e-08,6.848816720318238e-08,1.433352060545766e-07,1.620055706199262e-08,7.810709703710471e-08,1.5877392737927175e-07,1.3057386830868048e-08,7.049127827402974e-08,1.5676918592044188e-07,2.3579932769313924e-08,1.7238429736296665e-07,4.038044731710777e-07,3.282042754699986e-07,3.46357852435903e-07,3.7141082120448283e-07,4.0404687832869836e-07,4.231641322312916e-07,4.4900929461477906e-07,1.54982980528403e-07,1.639299028236286e-07,1.763033084842374e-07 +1398,"Copper, ion","('water', 'surface water')",emission,kilogram,biosphere3,2.7909852983227156e-07,1.473221297929793e-06,1.9008556515309883e-06,3.0639986096432346e-07,1.428986502616218e-06,1.7206329413596134e-06,2.7339611297416325e-07,1.4696258488605893e-06,1.8551875885326341e-06,2.8021927667420305e-07,1.4834115924317587e-06,1.9232964247705882e-06,2.935354045441576e-07,1.5154337519057578e-06,1.956930920547237e-06,2.9094092725222234e-07,1.4859382461774312e-06,1.9108253562472685e-06,3.1853387250181773e-07,1.5468839619873636e-06,1.9969002361024003e-06,1.705034520064756e-06,1.7862755120592888e-06,1.894381105646207e-06,1.64027713594336e-06,1.7140201413246573e-06,1.8123721919598135e-06,1.6633085658323995e-06,1.7433769282506106e-06,1.850387235952617e-06 +1399,"Copper, ion","('water',)",emission,kilogram,biosphere3,1.2504218713421159e-08,2.401918345680369e-07,7.835308993901995e-06,9.815473310156614e-08,3.494998448322417e-07,7.997218353420063e-06,8.512828938549689e-08,3.2670959357839825e-07,7.998344898445655e-06,8.445014929295803e-08,3.2652517867828787e-07,7.997991371239832e-06,8.736627530855229e-08,3.4361562612649015e-07,8.035184162866201e-06,8.921750634352821e-08,3.464769963610931e-07,8.043546028572518e-06,1.2795966842248553e-07,4.209076433305966e-07,8.201350103219261e-06,8.092464996271863e-06,8.437682518562994e-06,8.904001918533456e-06,8.294731482343522e-06,8.656556885027292e-06,9.145746755337726e-06,8.193816000655388e-06,8.54550845958789e-06,9.020632095255744e-06 +1400,Cumene,"('water', 'surface water')",emission,kilogram,biosphere3,8.356653407970574e-07,4.0506530716107766e-06,2.1958241150617828e-05,9.783196341428268e-07,4.187296589922161e-06,2.204595511337888e-05,8.588059344221874e-07,4.052254525478486e-06,2.190318924788226e-05,8.62065335456792e-07,4.055800305161993e-06,2.190929763556595e-05,3.684229753210629e-07,1.7205720381409388e-06,9.24278212935825e-06,4.094351937868151e-07,1.7902542658565915e-06,9.147809979358276e-06,4.978367135678548e-07,1.8684920588829236e-06,9.123767328102876e-06,5.549971069482292e-06,2.245102866112659e-05,4.352304419941621e-05,2.287750667570823e-06,9.179908029477038e-06,1.7772270348208567e-05,2.385859779112757e-06,9.292320077256713e-06,1.7905227246380627e-05 +1401,Cumene,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7872621466649644e-07,8.346181977205602e-07,4.483368043436368e-06,1.986416388227082e-07,8.685100473939172e-07,4.437740272415309e-06,2.4155118078398737e-07,9.06515096173234e-07,4.4261543145996385e-06,0.0,0.0,0.0,1.1099184345278389e-06,4.453348521760862e-06,8.62156051127906e-06,1.1574594737587221e-06,4.507821945858269e-06,8.685992323386004e-06 +1402,Cyanide,"('water', 'ocean')",emission,kilogram,biosphere3,1.6331077922420654e-08,2.2533055316724762e-07,7.239502015678811e-07,1.3367238952329843e-08,1.3485075643125063e-07,4.5854092332792265e-07,1.0787843945367728e-08,1.3097762395160386e-07,4.5122266588863065e-07,1.0476867356084807e-08,1.289360018283258e-07,4.475655608624903e-07,9.801695498480093e-09,1.346712985362989e-07,4.615402288976074e-07,1.1177615479295635e-08,1.3629883226746502e-07,4.610435196075863e-07,1.3692534601898281e-08,2.209736385062541e-07,6.093365017444862e-07,7.148611141686626e-07,7.612124311688569e-07,8.260996832341014e-07,6.141432859436107e-07,6.411978837645297e-07,6.774568838296984e-07,4.532746175435553e-07,4.903915120223526e-07,5.431491973506781e-07 +1403,Cyanide,"('water', 'surface water')",emission,kilogram,biosphere3,2.8746964346288535e-05,2.935134208097012e-05,3.057551993250396e-05,3.4393545424982395e-05,3.501300402940949e-05,3.630256674130681e-05,3.0112166232850807e-05,3.072537120028324e-05,3.1968347877012566e-05,3.015942522866007e-05,3.0843258874708036e-05,3.220923186653685e-05,3.0166158036649738e-05,3.092933837804762e-05,3.2465398688759166e-05,3.0185066724271646e-05,3.0949544125502045e-05,3.24518812463004e-05,3.6772741207433456e-05,3.7836805441414724e-05,3.981356896586112e-05,1.7727995213919571e-06,1.864942885064347e-06,1.9913374054738806e-06,2.8839718408119088e-06,3.031525435487376e-06,3.2324819626745914e-06,2.1670689611580427e-06,2.2880993449197566e-06,2.454625386686414e-06 +1404,Cyanide,"('water',)",emission,kilogram,biosphere3,9.113776780432945e-09,4.24989566945578e-07,1.55138279230713e-05,1.119259393683899e-08,4.281870720669833e-07,1.5513307997595532e-05,1.0337271351505267e-08,4.142488276112372e-07,1.549635188654716e-05,1.0578574398695753e-08,4.146668595219069e-07,1.5496763055046082e-05,1.1099260982393303e-08,4.1640870278633733e-07,1.5497496994143347e-05,1.2114749258310174e-08,4.182473558937483e-07,1.5501473366981775e-05,1.2578772808619859e-08,4.2021314119920694e-07,1.551899370396372e-05,1.605104089780002e-05,1.673392556595935e-05,1.7656043230462926e-05,1.6066275279154738e-05,1.6750651159749826e-05,1.767490660658578e-05,1.6050387354595194e-05,1.6733049050969375e-05,1.7654836119269697e-05 +1405,Dichromate,"('water', 'surface water')",emission,kilogram,biosphere3,2.61119416041292e-08,6.110623483560367e-08,7.781308414951395e-08,6.994829986450019e-11,1.7530781625993886e-10,3.8873938327984855e-10,2.1363268329160935e-11,6.018891278248777e-11,1.2504488818802598e-10,3.193696124962999e-11,9.018877943107128e-11,1.9850194106611997e-10,3.179340904604177e-11,9.26775978577142e-11,1.9554425459516006e-10,2.4021998730936515e-11,6.623915155981754e-11,1.3319967227767673e-10,7.64106547223488e-10,1.7432054152507817e-09,3.62551631792291e-09,2.4902121854352916e-08,2.6197798883301815e-08,2.7988034617722513e-08,2.4767853890015897e-09,2.6105564316294806e-09,2.794125432575761e-09,1.0996653260113627e-10,1.1519942072241622e-10,1.2230508329015177e-10 +1406,Dichromate,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.6773357101578704e-08,3.893868751198685e-08,4.7595936747879804e-08,1.6938727829419535e-08,3.909242889611456e-08,4.6847932850171114e-08,1.676113700807881e-08,3.8672218978357836e-08,4.627451226068551e-08,1.6677127942738993e-08,3.871770689130598e-08,4.701153483498003e-08,1.657449782446261e-08,3.8405428289294306e-08,4.643438975232038e-08,1.6633826156851678e-08,3.829462245380559e-08,4.622411088350661e-08,0.0,0.0,0.0,1.202536417440365e-08,1.2566381344270598e-08,1.330140025579762e-08,1.2425053167649389e-08,1.3001300428821102e-08,1.3789214631940889e-08 +1407,Diethylamine,"('water', 'surface water')",emission,kilogram,biosphere3,6.910364676708485e-12,1.0861523154239783e-11,1.3961842633946187e-09,5.319150809511279e-11,1.1140134394116174e-10,1.823233082132397e-09,5.6665262579715e-11,1.225023820222449e-10,1.605016589421792e-09,9.269810938645448e-11,2.026512230017275e-10,1.4954735568355804e-09,1.2935904979191668e-11,2.3584622756553938e-11,1.7279038384945416e-09,1.149033871578429e-11,2.0306943813564116e-11,1.7132568633102703e-09,1.6245796748249305e-10,1.9828945748287137e-10,2.5000197190745526e-09,1.4803360776092224e-09,1.5453348558497206e-09,1.6333532931271142e-09,2.439484268861328e-09,2.5834933571236765e-09,2.7829458058932604e-09,1.8171826346367953e-09,1.8965344643972023e-09,2.0039384823132386e-09 +1408,Diisobutyl ketone,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1006875065553331e-10,5.381451788973144e-10,8.64200693827829e-10,0.0,0.0,0.0,4.651535348998194e-10,4.878073510832682e-10,5.186284071410115e-10,0.0,0.0,0.0 +1409,Dimethyl ether,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.6182910964547832e-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2188745114272202e-27,1.5601593746268419e-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1410,Dimethylamine,"('water', 'surface water')",emission,kilogram,biosphere3,3.7759174233628796e-12,7.012485457570418e-12,1.4364029488966555e-09,1.0357269579176358e-10,2.300701819185684e-10,5.623265173037677e-09,7.327140527777847e-11,1.647660111562543e-10,3.763593785110851e-09,1.0574321446449891e-10,2.378352825589726e-10,3.1034738729703153e-09,1.728531031261367e-11,3.865801770911291e-11,4.679984793758136e-09,1.4176871524123407e-11,3.131619252317015e-11,4.635506976081903e-09,1.7986651706316622e-10,2.3761682966810556e-10,5.974363891172639e-09,1.5282049891482942e-09,1.5939911553370152e-09,1.6829182769029305e-09,6.120064574916929e-09,6.421053358585703e-09,6.8325146433408816e-09,4.935623203002536e-09,5.146307168385287e-09,5.430881477750843e-09 +1411,Dipropylamine,"('water', 'surface water')",emission,kilogram,biosphere3,4.383684996588938e-12,6.87351606006315e-12,8.766169996793047e-10,2.067497603022015e-11,4.1699932385911403e-11,1.0167028821045452e-09,2.088344843688693e-11,4.3709432369484705e-11,9.235124364129414e-10,3.1942265461928994e-11,6.827539561828361e-11,8.705837190956394e-10,7.872072728349806e-12,1.4122417867155975e-11,9.897792211718113e-10,7.023276841764128e-12,1.2208518068917409e-11,9.815265294116259e-10,9.858003311029331e-11,1.1965530466988103e-10,1.3948146276804433e-09,9.293840693101369e-10,9.702104203806064e-10,1.0254978915221698e-09,1.34955372615086e-09,1.4315331591657736e-09,1.545281805955806e-09,1.0404012447202735e-09,1.0859730254471028e-09,1.1476720535183832e-09 +1412,Dissolved solids,"('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.5839921433992627e-13,4.421344738153061e-13,5.824702169875644e-13,2.7114089570823666e-13,3.428778006003359e-13,4.692969565955797e-13,2.717066348037518e-13,3.4397683022396894e-13,4.707716966679809e-13,4.975279953103793e-14,7.781958117068716e-14,1.0580871906720024e-13,5.5338869986800056e-14,1.3267624697202396e-13,1.8065202062587483e-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6511120754268076e-14,5.13479246069806e-14,5.825284961131207e-14 +1413,Dissolved solids,"('water', 'surface water')",emission,kilogram,biosphere3,9.884711927939644e-05,0.0007673415630680565,0.003255924036769645,0.00012861741129098364,0.0008512168611331512,0.00348166517179511,0.00011487685398924004,0.0008084640661733185,0.0033777837919488985,0.00011577071458590345,0.0008100479154564917,0.003380095912928692,0.0001150539199485812,0.0008272712060363183,0.002994107567745582,0.00012467404067273183,0.0008545527063194344,0.003035798965174886,0.00014280145546770009,0.0008655515290105883,0.003058726725579182,0.0032694125853336476,0.003413673198133023,0.00360822873093877,0.0030141623750869523,0.00314657065957265,0.003325523939438409,0.0030141051394917164,0.0031463871946253376,0.003325213995807707 +1414,Dissolved solids,"('water',)",emission,kilogram,biosphere3,1.1030287347299227e-06,5.9509249951923224e-06,1.557390386283871e-05,0.0034098229647697197,0.0065805478182006496,0.014891427987167243,0.0023821783952758377,0.004436419128043384,0.010739566610448512,0.002006158151149031,0.004080395287633356,0.010375177276973499,0.0020651541289692637,0.007148169912604972,0.021468514694853575,0.0019161947432975808,0.006821349493153542,0.021499682816019522,0.0024233215931879037,0.0071972078896006975,0.021290170611369192,1.463320851869908e-05,1.5333875085152873e-05,1.628444315820673e-05,0.01581998144531845,0.016883036379790967,0.018287413080809875,0.016677530820455234,0.017749758311412196,0.019168741455639404 +1415,"DOC, Dissolved Organic Carbon","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.002192056984884794,0.002739544191966084,0.0035800643668381293,0.002850487242112516,0.004384707289443554,0.0074060039801573056,0.0020716541343204255,0.002630426248089347,0.0035446467028744538,0.0020954422065024396,0.002612655726860631,0.003464945636670347,0.0021051019189508367,0.0026419748896908584,0.003456252325170443,0.003914227679763899,0.0059414838714902315,0.009562011119233174,0.01130440877402552,0.014316221582381449,0.019563053010745762,0.0013435494622943886,0.0014331572187283835,0.0015554869724406122,0.007517139114717891,0.007928142760104295,0.008488452541582196,0.00510026750028924,0.005388496963049963,0.005781205845838611 +1416,"DOC, Dissolved Organic Carbon","('water', 'ocean')",emission,kilogram,biosphere3,0.000305825393425609,0.0010478987766852313,0.002427020472569284,0.000283151379291848,0.0008837144187828531,0.0014579505703149985,0.00016027025331729773,0.0006205817396959499,0.0014130390340723997,0.00016260409328959738,0.0006212203643871518,0.0014038391341072536,0.00011934782337995561,0.0005139814246160428,0.0013203871258118626,0.00010000943680005592,0.00047071306405263184,0.001293379964596806,0.0001321035350959753,0.0005070293943347001,0.001192616763997706,0.002209516569775654,0.0024608395771537586,0.0028238423553621334,0.0011323191259221177,0.0012570038331594763,0.0014370705008639538,0.0012443697982888798,0.0013745266934442383,0.0015620959016702815 +1417,"DOC, Dissolved Organic Carbon","('water', 'surface water')",emission,kilogram,biosphere3,0.0005759850948110527,0.0032456205267592983,0.012151969006804679,0.0004441017236328076,0.002842250472057864,0.010428092430708753,0.00035596288066993154,0.0028159574819339723,0.01083526578966574,0.00035525460705904013,0.002771555183683962,0.010747400037429045,0.0003251862738717309,0.0025117158052757314,0.009805354096848755,0.0003718044771473545,0.002612498434763473,0.009926044865628494,0.0003744360226678018,0.00244016143256024,0.009229568061355395,0.011084522675619235,0.012355409993626193,0.014182784100353367,0.008631534529101965,0.009607133251112168,0.011010362790917277,0.009450378897277406,0.010494798796832999,0.011995946139608572 +1418,"DOC, Dissolved Organic Carbon","('water',)",emission,kilogram,biosphere3,4.3868136225164224e-07,3.703072883666932e-06,8.928603085930071e-05,9.139915461938694e-06,2.0971159517995045e-05,0.00012693308193631236,6.626303364909335e-06,1.572740468199083e-05,0.00011699528376078356,5.675034087499079e-06,1.4628079790326276e-05,0.00011559774688684706,6.6714458573910954e-06,2.5811746694238125e-05,0.00016183454605463296,6.321156449881265e-06,2.5166253392352317e-05,0.00016337735430809602,8.28879164305707e-06,3.008411479450537e-05,0.00017760099956521473,8.959831700326216e-05,9.555017448917783e-05,0.00010337620753863907,0.00014771614546073492,0.00017351934273117907,0.0002065948795929826,0.0001359903678423312,0.00016039062499923612,0.0001914187893633921 +1419,"Ethane, 1,1,1-trichloro-, HCFC-140","('water', 'surface water')",emission,kilogram,biosphere3,-2.0814695929471942e-32,-1.2488817557683167e-32,-1.1174804786658292e-24,1.0219403870251181e-19,2.0906127591430894e-19,2.7067894836441643e-19,1.0520409274378537e-19,2.2782928616303945e-19,2.657877043210352e-19,1.4430233461375033e-19,3.074327522984641e-19,2.311532456098457e-19,4.111074621137329e-20,7.847456686487488e-20,1.7334034917247653e-19,4.507472010892004e-20,8.972187014989096e-20,1.8424855911372492e-19,4.157349870832335e-20,8.162986663586307e-20,1.7778877186690688e-19,-3.492126495830716e-26,-3.492126495830716e-26,-3.492126495830716e-26,1.2585312521143675e-19,1.3675588855547388e-19,1.5217120983149164e-19,1.321117411208364e-19,1.429568345696289e-19,1.5828971298738714e-19 +1420,"Ethane, 1,2-dichloro-","('water', 'surface water')",emission,kilogram,biosphere3,9.021120220241937e-09,1.3988670832737512e-08,2.0570278826925713e-08,1.2033298688592753e-08,1.6701815840923918e-08,2.8979107287643576e-08,1.1260793653361968e-08,1.5574753439913287e-08,2.6650430065892243e-08,1.120158727826684e-08,1.5472186268066943e-08,2.80814872941939e-08,1.0082782818327029e-08,1.3275078107785311e-08,2.9203205366548782e-08,1.1275339467885221e-08,1.5787829643798758e-08,2.8793182308800565e-08,1.328596814982621e-08,1.793199180867358e-08,3.226681003202085e-08,1.241651590467539e-08,1.4163849826585595e-08,1.6438685179543173e-08,2.0403769092666024e-08,2.2156302489950016e-08,2.4607475874391905e-08,1.7986428447540962e-08,2.0496421280533787e-08,2.386323880040987e-08 +1421,"Ethane, 1,2-dichloro-","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5862795899097727e-11,8.480649196111975e-11,3.461752668318397e-10,0.0,0.0,0.0,1.0886538025720807e-10,3.362113701663786e-10,6.196745517219494e-10,0.0,0.0,0.0 +1422,Ethanol,"('water', 'surface water')",emission,kilogram,biosphere3,7.710657218062705e-10,2.0000480646015612e-08,8.872663070464356e-08,3.756475398516011e-08,2.0156621933859964e-07,1.1167432013057193e-06,3.826433017700785e-08,2.228098834297894e-07,1.2344160733275141e-06,3.887780414302414e-08,2.241261345237006e-07,1.2555772660450874e-06,3.8224995135031976e-08,2.279526311760791e-07,1.2684862798633558e-06,3.836820412981742e-08,2.2731592668913017e-07,1.2653843461569564e-06,4.863017280119033e-08,2.365541848957882e-07,1.2580498255584453e-06,9.215673391681546e-08,9.599558666867199e-08,1.0114738660448641e-07,4.26573307806867e-07,1.2912696039002395e-06,2.3695338295606042e-06,4.4631410098301967e-07,1.312607535092482e-06,2.3931637208953726e-06 +1423,Ethanol,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,9.818886061257442e-13,2.194989886439564e-12,2.222294484450032e-12,9.342954132499557e-13,2.0930574955093634e-12,2.7716091740010486e-12,9.458709872802838e-13,2.122299607166719e-12,2.773727048550691e-12,8.84698131893078e-13,1.9982669552132214e-12,2.7512219571838572e-12,9.743751165166196e-13,2.181997460870581e-12,2.778978532447e-12,1.760061010218276e-13,4.819000248495169e-13,8.330016778004e-13,0.0,0.0,0.0,6.87709175547529e-13,7.164353907071755e-13,7.550264412410206e-13,7.322926425315659e-13,7.651167256546407e-13,8.095712834959188e-13 +1424,Ethene,"('water', 'surface water')",emission,kilogram,biosphere3,2.9478545107859854e-07,1.5785500452929205e-06,8.985972801737932e-06,3.388162242917465e-07,1.6234632748153314e-06,9.005963619955208e-06,2.9779735088798297e-07,1.5672525518665653e-06,8.943495926043315e-06,2.990153634245718e-07,1.5686394435881906e-06,8.945617081249732e-06,3.036350377398063e-07,1.5791966232997283e-06,8.944251046411362e-06,3.04632477934361e-07,1.5802238838637918e-06,8.946092869878368e-06,3.656663409669952e-07,1.6120309645214348e-06,8.886167554895415e-06,2.154867775381426e-06,9.238776818539258e-06,1.806960654929126e-05,2.018032841905805e-06,9.081620015676755e-06,1.7882964804438004e-05,2.131216090699098e-06,9.20877089314843e-06,1.803039144840533e-05 +1425,"Ethene, chloro-","('water', 'surface water')",emission,kilogram,biosphere3,2.5984776775271254e-10,6.571272085421864e-10,1.669316585785719e-09,4.2398446740310656e-10,9.345140412346588e-10,2.144051432390982e-09,3.9501156030279167e-10,9.094564471432046e-10,2.137655074129848e-09,4.6253534191741315e-10,1.0633810186846742e-09,2.1391218136645275e-09,3.6295783678159885e-10,8.769934317803497e-10,2.1733106650984223e-09,3.1928045384428767e-10,7.745644405068156e-10,2.1226099938454677e-09,1.45787889231087e-10,3.3499881199624475e-10,1.3779687094619366e-09,1.042026350489666e-09,1.4515027178690757e-09,1.966418415512245e-09,5.318736923933009e-10,5.755902252163145e-10,6.372571190121842e-10,1.1485748153937545e-09,1.5665786430941213e-09,2.093178198672468e-09 +1426,"Ethene, chloro-","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.249870560025109e-11,1.236519759930305e-10,2.3806719058372805e-10,0.0,0.0,0.0,1.6598588952998753e-10,1.7922518140462746e-10,1.9643799013216571e-10,0.0,0.0,0.0 +1427,Ethyl acetate,"('water', 'surface water')",emission,kilogram,biosphere3,7.37179609949384e-12,1.2937287287419175e-11,1.46429017759284e-09,5.2960607795771924e-11,1.5980358363250406e-10,2.195476931956962e-09,5.695906854502921e-11,1.91413443479436e-10,2.2167099764852982e-09,7.556037583938134e-11,2.3273985396445604e-10,2.167880625420597e-09,3.571275236146996e-11,1.4324614916957618e-10,2.3316125531523956e-09,3.439749196939592e-11,1.403623669342927e-10,2.318722950179545e-09,1.9177489303338997e-10,3.2334185836315185e-10,3.013898587726464e-09,1.5521956119163425e-09,1.62036635042583e-09,1.712681372100716e-09,2.421382127216698e-09,3.0904191113296926e-09,3.943432032080998e-09,1.9045245826291986e-09,2.513668300538371e-09,3.281116869770712e-09 +1428,Ethylamine,"('water', 'surface water')",emission,kilogram,biosphere3,4.9532549084682055e-12,2.4974812963672743e-11,1.045957402740561e-10,6.420649561810017e-11,1.8398100925472606e-10,1.1143993383436481e-09,4.281714565124487e-11,1.36723842280926e-10,7.583038972912054e-10,5.4099567627462876e-11,1.61602878062043e-10,6.920694031957672e-10,1.7733473911547786e-11,7.315062362468172e-11,8.985486048409276e-10,8.434563887660271e-12,4.106695434632802e-11,8.47736496428303e-10,3.970309492690032e-11,8.477066314703896e-11,1.377078096639158e-09,8.014713413375223e-11,8.506989497841079e-11,9.190607711396367e-11,1.3742955821120376e-09,1.4415606748564233e-09,1.533480034414136e-09,8.584472539220167e-10,8.96740098615401e-10,9.486685476173494e-10 +1429,Ethylene diamine,"('water', 'surface water')",emission,kilogram,biosphere3,1.0210139344540682e-10,1.5144986300809374e-10,3.418198993846972e-10,1.525951118332316e-10,2.7448830896653385e-10,7.269156201298799e-10,1.2712580139304252e-10,2.317984254348036e-10,5.962689466353246e-10,1.280154413473095e-10,2.3200310370781402e-10,5.643931687074194e-10,1.1324947689326388e-10,2.0470982224859566e-10,5.941354710486926e-10,1.0404216802814834e-10,1.6483941273404338e-10,5.575057813350183e-10,9.525613435556794e-11,1.4863890101691747e-10,6.318553530436715e-10,1.814316285466493e-10,2.214534451575491e-10,2.795312452331153e-10,4.97445584643471e-10,5.408555778619028e-10,6.022232445257648e-10,4.0352514482684104e-10,4.4925404877836433e-10,5.145576862792032e-10 +1430,Ethylene oxide,"('water', 'surface water')",emission,kilogram,biosphere3,3.5740684996546525e-10,1.2461423633795085e-06,2.2804501722741135e-06,8.068539574183079e-10,3.085760589818322e-06,5.632369407588348e-06,9.572681223604528e-10,3.0860945548602025e-06,5.6319940288598845e-06,1.0030604193164333e-09,3.086212000048447e-06,5.6318772377218946e-06,1.5711140881005513e-09,3.0984612928091094e-06,5.667387242731169e-06,1.6538453471774108e-09,3.098420110042193e-06,5.66696047403084e-06,1.871467837556384e-09,3.098634503863099e-06,5.665702256388752e-06,2.541046205036876e-06,2.541476835322033e-06,2.5420560353902264e-06,6.310240969186248e-06,6.312092060519675e-06,6.314561338103343e-06,6.311851948451193e-06,6.31373440679932e-06,6.316246507630193e-06 +1431,Fluoride,"('water', 'ground-')",emission,kilogram,biosphere3,1.4729662816027962e-05,2.0569988237681492e-05,3.243189177738354e-05,1.7762806286466467e-05,2.40767713716908e-05,3.509601159359097e-05,1.6280946458926853e-05,2.2866671655299216e-05,3.3859380975720666e-05,1.6341943177737905e-05,2.300530939327156e-05,3.412398215549411e-05,1.6967668985337496e-05,2.4479776321601768e-05,3.456881956232753e-05,1.5911523480952173e-05,2.2140863389666813e-05,3.4991073192674555e-05,1.1209576544333651e-05,1.467314898798404e-05,3.124188584044391e-05,6.918196315756753e-06,7.2150506931946096e-06,7.618714268398238e-06,6.8040762895960694e-06,7.142086563557815e-06,7.597961776786038e-06,7.72970588200557e-06,8.106909737948424e-06,8.616992300476304e-06 +1432,Fluoride,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0040845980299197135,0.004961713696227056,0.005844846100659783,0.0048980112291090346,0.005643425588254607,0.006306670236441154,0.004282163449283561,0.0049988436167232655,0.005613372882074827,0.004304189770121782,0.00505032076001798,0.005713212295281029,0.00429141667486159,0.005057376367302134,0.005813311591474657,0.004313626540788896,0.005095388678768548,0.005787108373992235,0.003836024276872752,0.00449438327878274,0.005151822677545304,0.0016176965708978408,0.0016892886902427496,0.0017859330275715067,0.0011038512477028882,0.0011592943677114984,0.0012347575973567855,0.0012767874702122814,0.001338365708399044,0.001422059086267095 +1433,Fluoride,"('water', 'ocean')",emission,kilogram,biosphere3,1.8181686250751613e-06,3.9878836087566564e-06,1.323297756802467e-05,7.268386701364553e-07,2.5950536219152095e-06,8.62558984588587e-06,6.374684179919055e-07,2.449861264314364e-06,8.501970540987487e-06,6.29521700720121e-07,2.4004919241723764e-06,8.439782335340316e-06,6.132903528150152e-07,2.3058361004090234e-06,8.121531776287683e-06,3.0966626761824412e-06,5.2224404744182406e-06,1.3086355856110317e-05,3.427148685069811e-06,3.993874244141045e-06,6.776067857446386e-06,1.1338456239469643e-05,1.2324161655122798e-05,1.3731969564790118e-05,3.2022069104440434e-06,3.563107073656916e-06,4.069988969819524e-06,9.885971687674124e-06,1.0948947777221945e-05,1.24772592229552e-05 +1434,Fluoride,"('water', 'surface water')",emission,kilogram,biosphere3,3.4537908298352117e-06,4.285635269740948e-05,7.815818638850885e-05,3.093159764252473e-06,3.1187977223825973e-05,4.297762706003525e-05,3.3897941050938435e-06,3.212947589476388e-05,4.747114522771021e-05,3.970173420415567e-06,3.3439266712016035e-05,4.8882545034732066e-05,3.979050528405341e-06,3.2703713746403026e-05,4.1612826912666644e-05,3.7040595432770544e-06,3.210098827374867e-05,4.122130658001394e-05,2.61070516877796e-06,2.9423143931039653e-05,4.0739675238360225e-05,5.645085943895958e-05,6.459462080358105e-05,7.505335916679887e-05,2.0342379204973963e-05,2.166885745971045e-05,2.3495844440345727e-05,2.1191624464332228e-05,2.2529597814995858e-05,2.4385220347666513e-05 +1435,Fluoride,"('water',)",emission,kilogram,biosphere3,6.198839684646261e-07,7.199720505279094e-07,9.682947524623918e-07,8.167141949178292e-07,9.863718284732437e-07,1.4254869721364423e-06,7.75728955868903e-07,9.672399394611717e-07,1.4787729546678057e-06,7.774803630617387e-07,9.711287972234173e-07,1.4847166003139255e-06,7.795846391118071e-07,9.988913137623896e-07,1.5470857323570025e-06,9.791785772312675e-07,1.35843554150581e-06,2.323912466320093e-06,1.1726237894066036e-06,1.7527266406231175e-06,3.4391444100842626e-06,3.553727574966784e-07,3.8158605959236795e-07,4.185818435971778e-07,2.1841854266009873e-06,2.39901805134709e-06,2.7037181446320782e-06,1.302983025624814e-06,1.4132837819321784e-06,1.5691679784568873e-06 +1436,Fluosilicic acid,"('water', 'surface water')",emission,kilogram,biosphere3,9.523632037293535e-08,9.210528942851934e-06,1.1374657364643439e-05,1.0664317854201249e-07,9.211470723768318e-06,1.1359939386648334e-05,1.253567258408193e-07,9.251248876481276e-06,1.1451649232844041e-05,1.252272832868347e-07,9.251089341700545e-06,1.1453433057690504e-05,1.2612025760100934e-07,9.263224235520637e-06,1.1478920764347198e-05,9.202631279363807e-08,9.200629618905491e-06,1.1339220229546951e-05,1.0575552966822524e-07,9.211157017821551e-06,1.135829155082169e-05,2.8209800651269076e-07,3.069544255250524e-07,3.4213060230534375e-07,2.5684012202728895e-07,2.8007723398954113e-07,3.129496889263562e-07,2.5485394774139026e-07,2.7787114397938127e-07,3.104560337849739e-07 +1437,Fluosilicic acid,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.4103341634735799e-08,1.9941839418614604e-08,3.860682313988905e-08,1.4762820047502964e-08,2.218467600274858e-08,4.4756229345245776e-08,1.4779209765881526e-08,2.221510706735647e-08,4.498023314890799e-08,1.48440695018483e-08,2.3159277996925322e-08,4.6992026667334256e-08,8.827333923302565e-09,1.2232806685068289e-08,2.2987127899326707e-08,1.0288529999066194e-08,1.3386748555741271e-08,2.414118761378123e-08,0.0,0.0,0.0,1.3178288094124236e-08,1.4184602977606408e-08,1.5597111502418406e-08,1.348834891074335e-08,1.4520637666101308e-08,1.5970845312657696e-08 +1438,Formaldehyde,"('water', 'surface water')",emission,kilogram,biosphere3,5.2664606259869644e-09,1.0929817824199917e-08,2.553781143813403e-08,7.0208980945603695e-09,1.508573060142793e-08,4.345941910772559e-08,6.460628071327909e-09,1.5194293410906735e-08,3.8201599004715057e-08,6.530253436291132e-09,1.531540771095009e-08,1.3131886628252927e-07,6.0705964275360086e-09,1.5473353925374104e-08,4.72997156924346e-08,6.496538269473208e-09,1.5896233268845578e-08,4.6779263278898964e-08,7.820039212731966e-09,1.7042337976768993e-08,6.528850561271834e-08,2.107491952201082e-08,2.2244188696513245e-08,2.38576944146656e-08,6.032166948155609e-08,6.317110055131067e-08,6.706069351166038e-08,4.2093115892463816e-08,4.412792144415811e-08,4.691321411016685e-08 +1439,Formaldehyde,"('water',)",emission,kilogram,biosphere3,3.964360929455871e-08,2.0445157448718908e-07,1.1341673670865195e-06,5.063867361384333e-08,2.0785621302525205e-07,1.08964109335461e-06,4.510790781176042e-08,2.0121135382929134e-07,1.0799270979165027e-06,4.7632342378827143e-08,2.0873207970453047e-07,1.092124947978519e-06,4.379325947906721e-08,2.0132313110472263e-07,1.0982803896862469e-06,4.3953763682352496e-08,2.037260552105034e-07,1.1080493995669371e-06,4.826419628754734e-08,1.929019123693221e-07,1.0117570635080614e-06,2.8224462960830966e-07,1.1632350919241532e-06,2.261558709370584e-06,2.4343162764538503e-07,1.0252508627454036e-06,1.9995349524866457e-06,3.012079588973679e-07,1.1333491811948178e-06,2.170811163219295e-06 +1440,Formamide,"('water', 'surface water')",emission,kilogram,biosphere3,7.669166922193236e-12,1.0614553093688416e-11,5.2081626722203507e-11,1.8060130485232672e-11,3.124339897665029e-11,4.1870365520120735e-10,1.5027062113566824e-11,2.6068197345393003e-11,2.9726608549954407e-10,1.819514803960657e-11,3.324605805940692e-11,3.568467499368857e-10,9.276871841135792e-12,1.311882974886425e-11,3.7206354104497753e-10,9.100673230778386e-12,1.2598936808719895e-11,3.682719799137853e-10,1.639702445510101e-11,2.213980408242216e-11,6.037925469988792e-10,4.2906109291240755e-11,4.7133050070525716e-11,5.3140694151741886e-11,6.222582105979521e-10,6.523118364855578e-10,6.933373054191473e-10,3.811058543751372e-10,3.9969918876923097e-10,4.25102691213485e-10 +1441,Formate,"('water', 'surface water')",emission,kilogram,biosphere3,8.575900890187066e-11,1.0004036594343135e-09,2.7235344572362628e-08,3.913318720310043e-09,1.080374116976038e-08,1.3061464246122316e-07,2.43958132130441e-09,7.514809589826542e-09,8.02892974360451e-08,2.9959265397578366e-09,8.764558724414275e-09,6.86769074602865e-08,7.918742901217683e-10,3.4795148615863313e-09,1.0199785908576373e-07,3.347182814454525e-10,1.942544487812281e-09,9.914649687026426e-08,2.249312269625098e-09,4.314908045412843e-09,9.921203699528796e-08,2.785580406005521e-08,2.9056380400724145e-08,3.067946574347057e-08,1.0125427512181659e-07,1.0604790205136132e-07,1.1258104041535287e-07,1.0399170965118019e-07,1.0844070108484665e-07,1.1445139352034573e-07 +1442,Formic acid,"('water', 'surface water')",emission,kilogram,biosphere3,2.226224032093463e-12,3.081218026381812e-12,1.511856927449537e-11,5.2426065586490975e-12,9.069562117499542e-12,1.2154494898684672e-10,4.362148574147312e-12,7.567268441905864e-12,8.629295751914517e-11,5.2818161634638605e-12,9.65093864110713e-12,1.035896597455154e-10,2.692924435695771e-12,3.808193772006558e-12,1.0800593290595549e-10,2.641774384067859e-12,3.657271832359481e-12,1.0690528539671293e-10,4.759868035410246e-12,6.4269341615283386e-12,1.7527443159619431e-10,1.245509122257475e-11,1.368210624270203e-11,1.542603105532593e-11,1.8063482985307074e-10,1.893590693452957e-10,2.012683147495879e-10,1.1063089245951648e-10,1.1602831946860388e-10,1.2340265667968052e-10 +1443,"Fungicides, unspecified","('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.770449530719473e-11,1.8078622601150963e-10,4.3420433780130095e-10,0.0,0.0,0.0,3.7249523944637546e-10,4.086147384190954e-10,4.6020092607635017e-10,0.0,0.0,0.0 +1444,Glutaraldehyde,"('water', 'ocean')",emission,kilogram,biosphere3,3.875793369559652e-08,1.0060490758649085e-07,1.1362698180405869e-07,4.139305908169154e-08,9.674971364756601e-08,5.089947567432262e-08,2.280269905456007e-08,5.651096880822497e-08,4.846514436304315e-08,2.3252053389364306e-08,5.764410473205125e-08,4.843323507137352e-08,2.7200839276280182e-08,6.58819950321757e-08,4.8273721260488346e-08,1.9959854301332363e-08,5.0255147936313105e-08,4.813656807826952e-08,3.028079955125535e-08,7.189253726027621e-08,4.6714613762112446e-08,1.0260498689801831e-07,1.1338185370845907e-07,1.2888230001496014e-07,4.3460110839338165e-08,4.735878492818867e-08,5.2926989024962896e-08,4.563640229332316e-08,4.9754967078865746e-08,5.563804683861327e-08 +1445,"Heat, waste","('water', 'ground-, long-term')",emission,megajoule,biosphere3,0.010710095586656185,0.04033003255614378,0.060160712528603076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06709738131665705,0.12657893103465293,0.22718647280894805,0.08006404446159031,0.14236731127770796,0.24687341737501092,0.04908882645245596,0.05202346653083276,0.05611182728797047,0.15323058631795758,0.1617620263670465,0.17335024124443998,0.15105467545361168,0.1593955107144035,0.170723821948942 +1446,"Heat, waste","('water', 'ocean')",emission,megajoule,biosphere3,0.00032222672431977495,0.0007600727731025921,0.00045073321910219785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038345367200712135,0.0004000901978546714,0.00042276737817770107,0.0,0.0,0.0,0.0,0.0,0.0 +1447,"Heat, waste","('water', 'surface water')",emission,megajoule,biosphere3,3.1783537466486274,7.9829167727196415,7.735752506419003,0.022673671483814477,0.05073852733872195,0.10487817926796354,0.007435276359202005,0.01981440784286504,0.04006728012588106,0.013410996022950638,0.034207155384637894,0.0742298947934084,0.013316179850989672,0.03534834458125263,0.07292769109942683,0.008660149517244262,0.02387517660770324,0.04840638318211119,0.009633531615106692,0.025212695652891984,0.05188275034885682,5.964789738840014,6.383516653702085,6.975426144812975,0.04156486456939693,0.04354269236575613,0.04622270553142593,0.04058679378293015,0.04250125200884433,0.04509908093131053 +1448,"Heat, waste","('water',)",emission,megajoule,biosphere3,0.0006631972582874532,0.002561291677687156,13.405872473985381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007992046313340573,0.08687410214374422,0.3382510176268729,0.8849992097261438,0.9159507865406262,0.957373344447206,0.32599105574066584,0.36069456768742336,0.41078836137244146,0.0,0.0,0.0 +1449,"Hydrocarbons, aliphatic, alkanes, unspecified","('water', 'ocean')",emission,kilogram,biosphere3,4.050515617332833e-07,2.524214489344822e-06,9.624986097243484e-06,4.9638194780515853e-08,3.777219734058122e-07,1.4206919429297245e-06,3.6563452131772214e-08,3.5294282438154796e-07,1.3898088131967602e-06,3.621907608509975e-08,3.464892238955253e-07,1.377380459472356e-06,2.8873904906221826e-08,2.849327768059497e-07,1.1443229957344327e-06,3.458088123537973e-08,2.973920225136798e-07,1.1592450266333339e-06,3.1279968841632466e-08,2.6619105994355564e-07,1.0650188782765061e-06,8.852402546751152e-06,9.839519845260861e-06,1.1265882114748743e-05,1.0155313347782776e-06,1.1280210301957628e-06,1.29051024459779e-06,1.1154663666011979e-06,1.2362000882664393e-06,1.4104303994086156e-06 +1450,"Hydrocarbons, aliphatic, alkanes, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,8.791739878217956e-07,5.138682040981165e-06,1.9313898235098832e-05,8.190923106239973e-07,6.231155669828487e-06,2.343698146328352e-05,6.307130606258065e-07,6.085988342969854e-06,2.3965750023188526e-05,6.247174289320857e-07,5.974681710981057e-06,2.3751340060515395e-05,5.691115862407881e-07,5.610182079112045e-06,2.2526978252675616e-05,6.812170933931321e-07,5.854916320579525e-06,2.282060137189131e-05,6.164057141414834e-07,5.241034888367374e-06,2.0966195375437558e-05,1.7695410873630033e-05,1.9653419684194596e-05,2.248178318960936e-05,1.9991214570656062e-05,2.22054392541508e-05,2.5403823808296798e-05,2.1958114381794084e-05,2.4334598746632885e-05,2.7764073386888313e-05 +1451,"Hydrocarbons, aliphatic, unsaturated","('water', 'ocean')",emission,kilogram,biosphere3,3.7389376670745134e-08,2.3300442526390102e-07,8.88460296558145e-07,4.5819874242153404e-09,3.4866645325199467e-08,1.3114080084846532e-07,3.3750880465015153e-09,3.257933915473444e-08,1.2829005027860043e-07,3.3432994868652144e-09,3.1983622159014086e-08,1.2714281757362266e-07,2.6652836541148936e-09,2.6301488316494736e-08,1.0562981991750571e-07,3.1920814936821844e-09,2.7451572589310778e-08,1.0700723821857957e-07,2.8873818738938446e-09,2.4571483602345322e-08,9.830943950300557e-08,8.171448885734902e-07,9.082634126849409e-07,1.0399276283158665e-06,9.374135835165287e-08,1.0412502302833262e-07,1.1912402813423067e-07,1.0296613095021283e-07,1.1411078270064515e-07,1.3019358140234414e-07 +1452,"Hydrocarbons, aliphatic, unsaturated","('water', 'surface water')",emission,kilogram,biosphere3,8.115632216807603e-08,4.743430380186126e-07,1.7833801115300782e-06,7.563095853372841e-08,5.752327270755406e-07,2.1647649780062577e-06,5.823590538726169e-08,5.618194850287147e-07,2.2131325776281558e-06,5.769042712927305e-08,5.515627774293776e-07,2.1932184397488463e-06,5.25381457696317e-08,5.178729169450576e-07,2.080533459092936e-06,6.288571475842493e-08,5.404622686064132e-07,2.107627306533182e-06,5.694295261925919e-08,4.838433696969996e-07,1.9364151472360437e-06,1.6340164610386817e-06,1.8147814363429854e-06,2.075895901900575e-06,1.8464282579690736e-06,2.0508749191815703e-06,2.3461882716717814e-06,2.028085120700864e-06,2.2475036244474148e-06,2.564139049933202e-06 +1453,"Hydrocarbons, aliphatic, unsaturated","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.1555502401412697e-22,1.887458169693924e-22,3.2293609649200706e-22,6.599556791295187e-19,1.2167206822154218e-18,2.1503610963907525e-18,6.583209326805742e-19,1.2069845327808063e-18,2.120187335354941e-18,6.586735846149831e-19,1.2179427371626945e-18,2.138937135042533e-18,6.53320398472746e-19,1.1653481470587814e-18,2.033386783784134e-18,7.813260190560804e-19,1.2913371551846068e-18,2.180494802792496e-18,0.0,0.0,0.0,1.3718561601402555e-18,1.4654685515300287e-18,1.5962762891621054e-18,1.3589384244956143e-18,1.4514599204081157e-18,1.5807922543279689e-18 +1454,"Hydrocarbons, aromatic","('water', 'ocean')",emission,kilogram,biosphere3,2.114086168840682e-06,1.1587006708208654e-05,4.107062874123029e-05,7.185923662049684e-07,2.9553546809745267e-06,7.507580073735578e-06,4.414374019397069e-07,2.3726477359112986e-06,7.332750129320013e-06,4.4379660294855413e-07,2.3511503202947266e-06,7.266814864696673e-06,4.5748505198538445e-07,2.184433027394083e-06,6.282142497177976e-06,4.013558727255562e-07,2.063821873495363e-06,6.352734350537645e-06,4.748631273862003e-07,1.8951230859726328e-06,4.799629328595709e-06,3.7771329188396934e-05,4.196334521921272e-05,4.8019175011722625e-05,4.564089643995931e-06,5.059078113606774e-06,5.773347731695693e-06,6.107263779732315e-06,6.7589038572911715e-06,7.698610471807237e-06 +1455,"Hydrocarbons, aromatic","('water', 'surface water')",emission,kilogram,biosphere3,3.5551427090854083e-06,2.0790222971736736e-05,7.813681286441934e-05,3.3072364582335077e-06,2.5150007780093266e-05,9.45893893284753e-05,2.5450543077973265e-06,2.4553971895146234e-05,9.668988038664046e-05,2.521635234442684e-06,2.4107156983923526e-05,9.582842182416307e-05,2.2976324239748454e-06,2.2638747195347345e-05,9.089460477230831e-05,2.750552848169407e-06,2.3627624308118453e-05,9.20809974187607e-05,2.4706413273970677e-06,2.0995086923098373e-05,8.397991011876172e-05,7.159780586474424e-05,7.95127480666906e-05,9.094546867365603e-05,8.007269022689521e-05,8.894121552539187e-05,0.00010175151189520042,8.859852098902486e-05,9.818733151540291e-05,0.00011202475445258101 +1456,"Hydrocarbons, unspecified","('water', 'ocean')",emission,kilogram,biosphere3,5.833104853899749e-06,1.522588954742613e-05,1.7441284409653626e-05,6.219968775411405e-06,1.4627555743769738e-05,8.09084259099247e-06,3.4296472851250624e-06,8.588574228591534e-06,7.720559896029244e-06,3.4966542065982962e-06,8.75675947452751e-06,7.713016324216419e-06,4.088702013481754e-06,9.988302575607502e-06,7.676633810754398e-06,3.003536164548336e-06,7.646386693758743e-06,7.660461819201507e-06,4.622509891836124e-06,1.108774122005358e-05,7.672240757834468e-06,1.57687449564688e-05,1.740839152445041e-05,1.9766482295163784e-05,7.065837939727071e-06,7.700513058719831e-06,8.606396122501676e-06,7.268394117284235e-06,7.936990175307481e-06,8.893036791519446e-06 +1457,"Hydrocarbons, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,3.276292519574008e-07,1.2641163367070833e-06,4.864190855356588e-06,4.095601755923301e-07,1.4259131510641656e-06,4.95757942568256e-06,4.1742346361691745e-07,1.6861056086816852e-06,5.76589278561424e-06,4.2520798764977267e-07,1.699188440839504e-06,5.776242912585855e-06,2.664780945253968e-07,1.1254227660042318e-06,4.607677324215221e-06,2.546553292774466e-07,1.017905935006542e-06,3.68606258179926e-06,2.7275101652859666e-07,9.402432792792454e-07,3.173840953984938e-06,1.9675808952716022e-06,4.763835294747084e-06,8.256391591006553e-06,1.3959541037298242e-06,3.1329912647257615e-06,5.302170854442646e-06,1.7595205471798447e-06,3.7092926435036758e-06,6.150484531105633e-06 +1458,"Hydrocarbons, unspecified","('water',)",emission,kilogram,biosphere3,2.9253883059694426e-08,9.87648507271718e-08,3.1481300643485697e-07,3.205739832019012e-08,9.695848968034351e-08,2.7165827613359274e-07,2.8884027750132958e-08,9.239105772497246e-08,2.6959357079351275e-07,2.9782858065519587e-08,9.391954168499213e-08,2.7103007884204094e-07,3.0884069916024693e-08,9.838184168125999e-08,2.7525533355960264e-07,3.532782479165803e-08,1.068362404344653e-07,2.8937967078667654e-07,5.607443904827738e-07,2.117510557279333e-06,5.189157777849403e-06,2.6069020894944283e-07,2.779136909433962e-07,3.021394084763906e-07,4.43195684288061e-06,4.865398738854768e-06,5.486428876480847e-06,2.3153663570939908e-07,2.455821252907469e-07,2.652222263889078e-07 +1459,Hydrogen peroxide,"('water', 'surface water')",emission,kilogram,biosphere3,3.994171374806402e-09,3.388552775101215e-08,9.634230804569148e-08,6.694281135932791e-09,3.560445070839743e-08,9.308523246222791e-08,6.42604257031804e-09,3.5547778403398446e-08,9.17922955540491e-08,6.109409784497322e-09,3.525332841843101e-08,9.153897236658007e-08,5.888382266836373e-09,4.095790511203053e-08,1.0794140448651977e-07,6.240528000366689e-09,3.97040142797762e-08,1.0315771578279589e-07,7.569408358348577e-09,4.2099343273900014e-08,1.06932241296292e-07,9.418607235537896e-08,9.878851790234965e-08,1.0501885313481492e-07,1.001494539788201e-07,1.0520353261233849e-07,1.1206606371691502e-07,9.860011154821623e-08,1.0346713279367196e-07,1.1008303316678123e-07 +1460,Hydrogen sulfide,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.095752620658634e-08,2.569441575885537e-08,4.8910587014740025e-08,0.00042140396425670464,0.00046976524155006394,0.0005307918938439624,0.0,0.0,0.0,0.0001062373496409814,0.00011141879218537018,0.00011845858877585569,3.552304173830851e-08,3.749269598734717e-08,4.01556466701792e-08 +1461,Hydrogen sulfide,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.4005608509192601e-06,4.237353685810644e-06,7.695291539342592e-06,9.994138309151846e-06,2.2115251223764076e-05,3.078845203261227e-05,2.7185086351398527e-06,6.431210772188193e-06,8.92263609800637e-06,5.494965110449153e-05,0.0001255429537425471,0.00015038375050306353,6.451357176164812e-05,0.00014799564335847706,0.00015637847808990947,0.0001241829193654508,0.00028016044500512346,0.00015748768949484083,0.00045325058958809285,0.0005838375333270854,0.0006919724929657339,4.800301678287292e-06,5.0616280937256355e-06,5.422794869636468e-06,0.0002086553868705683,0.00021853540965482564,0.00023199298260918405,7.84661490987341e-05,8.173539786438101e-05,8.617560920793688e-05 +1462,Hydrogen sulfide,"('water', 'surface water')",emission,kilogram,biosphere3,2.705197516721471e-08,8.273382019326121e-08,1.442232925454624e-07,2.7047401315833085e-08,8.015059754974922e-08,1.9545330795934899e-07,2.5414165182478708e-08,7.667853427970227e-08,1.4654564518272613e-07,2.6661665314222667e-08,7.881878853982995e-08,1.4755411534049435e-07,1.4628768963710633e-08,5.1396806401303324e-08,1.4133562118070933e-07,1.698985251116386e-08,5.7064260641211714e-08,1.5147795624362552e-07,1.757883344727427e-08,5.745462690799342e-08,1.5536433157900917e-07,1.0843960976521704e-07,1.14594907584534e-07,1.2317597026756203e-07,9.977807554953494e-08,1.1932397303658494e-07,1.4440775007909263e-07,1.0034886158533682e-07,1.1997248238630183e-07,1.4517656772387552e-07 +1463,"Hydrogen-3, Tritium","('water', 'ocean')",emission,kilo Becquerel,biosphere3,20.262003050815363,47.41762328918208,27.721418671654998,3.2172651420222684,7.502848374893586,5.642435179297481,4.038358373037798,9.308976413679428,5.284711674925339,4.0171219895743935,9.215027187298407,5.082340785615458,1.6125562402738909,4.155132659346027,4.884276100601077,4.752561812387434,10.862008433825231,4.685379063395688,5.170991564527852,11.619617353589488,4.422376866856669,23.042451049232415,24.04692401491007,25.418931079739426,3.093065165896136,3.2161298069105935,3.3821692198439144,3.4403318835875805,3.5832375259622946,3.7774919615188702 +1464,"Hydrogen-3, Tritium","('water', 'surface water')",emission,kilo Becquerel,biosphere3,2.3393210237956166,5.440296874981257,2.941957943472686,2.329658160668153,5.293783594185319,3.903916575443156,1.2809554187987817,3.269400505137522,7.9999832265284105,1.2651656211490108,3.224063574776062,7.8929434892590695,1.314994192032981,3.4676192239404027,5.335003990378602,1.485350187236011,3.7636355050386716,5.047867913911792,1.5286950939733903,3.6224191554081093,4.850111150731443,2.467609766734188,2.5752996117243163,2.722401681028241,3.4840505393324586,3.6342429627529804,3.836658386683623,3.8247293387247088,3.9945021985895477,4.2251254981853945 +1465,Hydroxide,"('water', 'surface water')",emission,kilogram,biosphere3,3.753928354481257e-09,9.911260785119734e-08,2.8478764152706595e-07,7.022530452090377e-08,1.9154218020048695e-07,4.049210347657551e-07,6.727463041642741e-08,2.0603311881283064e-07,4.3730164038038116e-07,6.88472088310956e-08,1.7326491027878332e-07,3.6079901426688915e-07,1.2491097039103521e-08,1.2846742521657324e-07,3.463620490330216e-07,1.2659814855531001e-08,1.2619167121497947e-07,3.389391317203814e-07,1.5138995588261142e-08,1.2955511685186752e-07,3.4673906270227404e-07,2.916265007388821e-07,3.0358842655096633e-07,3.1957876435480905e-07,3.3946901833347215e-07,3.5435001729166293e-07,3.743125304103903e-07,3.3504224477881043e-07,3.495705846781174e-07,3.6909044713200914e-07 +1466,Hydroxide,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,3.248513204986945e-09,7.161288123804023e-09,1.0469594783612132e-09,4.115111834563964e-09,9.262801373553761e-09,2.2672692313021327e-09,7.616906093645289e-09,1.70559016242581e-08,3.886627287230633e-09,6.749263018513135e-13,9.544458059977465e-13,2.7069824259143212e-11,4.015267598740594e-11,7.063078969288614e-11,2.479206521211097e-10,4.524095396278421e-11,7.22487012510882e-11,2.666595602205574e-10,0.0,0.0,0.0,2.0054406331646052e-10,2.175513355425972e-10,2.415538270701061e-10,1.8452692623996355e-10,2.007115038199486e-10,2.2360232704871498e-10 +1467,Hypochlorite,"('water', 'ocean')",emission,kilogram,biosphere3,3.722559134024682e-07,9.196897939436246e-07,2.3546807771239986e-06,5.324273949960267e-07,1.2036519143454597e-06,1.1470428727635588e-06,2.507783601720336e-07,5.792719499406851e-07,5.72421641519694e-07,2.8378456647317257e-07,6.606718736564882e-07,6.477871814601002e-07,1.7081985246545147e-07,4.210781267307495e-07,5.112210167087675e-07,1.402336013286583e-07,3.4991014463940975e-07,4.968650055727393e-07,1.4577066579719164e-07,3.407085660142287e-07,4.5828007015161687e-07,7.924599229489448e-07,8.259512400219061e-07,8.716674594978457e-07,3.343015599335349e-07,3.4949560055570663e-07,3.6997797763188743e-07,3.74757253794107e-07,3.9248562064146084e-07,4.165793449187044e-07 +1468,Hypochlorite,"('water', 'surface water')",emission,kilogram,biosphere3,3.4001642832578625e-07,8.453959948655356e-07,2.1490480358553203e-06,5.015402230280273e-07,1.1352937316252926e-06,1.1279286644774414e-06,2.503887733174667e-07,5.817109392066488e-07,6.181916096300997e-07,2.8262099845254953e-07,6.61757367045482e-07,6.915203217634523e-07,1.7606105647158779e-07,4.3094132714635063e-07,5.185308947075146e-07,1.438327140985131e-07,3.556154734678341e-07,5.000701176309241e-07,1.4804535381028684e-07,3.425373119421329e-07,4.5764733776806216e-07,7.494208013547384e-07,7.811239488214091e-07,8.24397893791261e-07,3.286413459276015e-07,3.437701866460396e-07,3.641630928677179e-07,3.7228915026396744e-07,3.900976290055951e-07,4.1430117596961833e-07 +1469,Iodide,"('water', 'ground-')",emission,kilogram,biosphere3,1.05731574708095e-08,3.53093163624751e-08,8.214715888033764e-08,7.030828304558536e-17,2.576351044036473e-16,6.543840010814487e-16,6.817920787312584e-09,2.093195106451443e-08,4.5749733063743815e-08,6.657322642443825e-09,2.0254733770646033e-08,4.431337990155369e-08,6.128603243417135e-09,1.9719820054111194e-08,4.407710528316306e-08,6.278225074404004e-09,1.9391265346399523e-08,4.066554731348779e-08,5.4957046798858504e-09,1.6198337220073995e-08,3.588864988080998e-08,7.19271979146462e-08,7.506514114956722e-08,7.93512670084554e-08,3.047069180362053e-08,3.1722672849970617e-08,3.341160759799713e-08,3.504180755073418e-08,3.6554366921195766e-08,3.86089153598636e-08 +1470,Iodide,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,1.778098013436513e-12,6.2509654466636754e-12,1.1376812294208898e-11,2.1797631722963753e-12,6.999707282291245e-12,1.4597966767128423e-11,1.9678385064554012e-08,4.4431507810078265e-08,1.1100546052608033e-07,1.9640290740692463e-08,4.432130270264314e-08,1.1082581309294575e-07,2.218879096414318e-08,5.001546248292268e-08,1.1023572508382956e-07,1.6340054062792316e-08,3.776486584075442e-08,1.1032117522066039e-07,7.657682894192737e-09,1.8008145181386803e-08,1.0204513416755935e-07,1.1101480963402886e-11,1.1592836862712231e-11,1.2258778502055076e-11,2.2071548804648354e-08,2.304027181861431e-08,2.4345284385881154e-08,2.4714802353078683e-08,2.5778208027218184e-08,2.722279761607114e-08 +1471,Iodide,"('water', 'ocean')",emission,kilogram,biosphere3,3.115781200406211e-07,1.9417034261633854e-06,7.4038353558191145e-06,3.8183226219983997e-08,2.9055536009286745e-07,1.0928399408087384e-06,2.8125732015516833e-08,2.7149447649468867e-07,1.0690836875001934e-06,2.786082736796086e-08,2.665301684980376e-07,1.0595234155384003e-06,2.2210695770932822e-08,2.1917905601470682e-07,8.802484459406393e-07,2.6600677501169444e-08,2.287630910404094e-07,8.917269310869307e-07,2.4061514156886282e-08,2.04762350937693e-07,8.192452795190333e-07,6.8095403253027425e-06,7.568861313531829e-06,8.666063043939521e-06,7.811779388991972e-07,8.677084726249888e-07,9.9270017426228e-07,8.58051039225717e-07,9.509231315148826e-07,1.0849464459028188e-06 +1472,Iodide,"('water', 'surface water')",emission,kilogram,biosphere3,7.314718010435203e-07,6.1175870882508525e-06,2.1441827567869298e-05,8.058360488410994e-07,7.317257479729257e-06,2.3174232122017905e-05,9.041333056528149e-07,7.6177334147422e-06,2.46113149647316e-05,9.015346492635716e-07,7.547730238240909e-06,2.4482279351620368e-05,9.178404852366839e-07,7.377689882132501e-06,2.350976617572076e-05,9.78532886407977e-07,7.4299693265096825e-06,2.400594060046467e-05,7.647078292800007e-07,6.556354008368197e-06,2.2591534166717184e-05,1.8064688542030617e-05,1.958381034900063e-05,2.1777101235364403e-05,2.0261436860671137e-05,2.200295406547504e-05,2.451538216639748e-05,2.1663165827459575e-05,2.3521674483000217e-05,2.6201260350554865e-05 +1473,Iodine-131,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,3.187055540739354e-06,7.284692038966261e-06,3.6792045911172024e-06,2.9974331449685824e-05,6.563503234291294e-05,8.797670159925225e-05,3.0174017069529763e-05,7.550689051352333e-05,0.00023898428784385186,2.987764796209608e-05,7.527510216398898e-05,0.0002381205398476765,2.329616927996552e-05,6.377402125260821e-05,0.000128630522997777,2.8523868015611568e-05,7.396265357757698e-05,0.0001275348461487502,3.2516391339304e-05,7.538658101388892e-05,0.0001249080994909469,3.035162962757106e-06,3.167430314482304e-06,3.3480908620980655e-06,9.10358346401297e-05,9.51482604218664e-05,0.00010068841965782132,9.866663641904545e-05,0.00010323278387978464,0.00010943436494577981 +1474,Iodine-133,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,2.8599760057472986e-08,6.321148150312363e-08,1.5492849323207452e-07,3.818519308474492e-07,8.821055640316558e-07,5.451621173163432e-07,2.2214549629278248e-06,4.861828036004048e-06,7.087635870873658e-07,2.218429961617413e-06,4.850922251698303e-06,6.851824168524108e-07,5.899452972669284e-08,1.838498164281431e-07,4.871175622018222e-07,2.3840742579942624e-06,5.217955137745485e-06,7.381811980255219e-07,2.7888381607665943e-06,6.074277925269207e-06,7.494750872790856e-07,1.2526481151754103e-07,1.305903645694287e-07,1.3785311272162987e-07,4.4606692043982696e-07,4.643185065628999e-07,4.889906101604297e-07,4.6633894176437233e-07,4.86391087928203e-07,5.13691968874064e-07 +1475,"Iron, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.02245342769530514,0.02816409630508195,0.03312665659078457,0.026522819084490872,0.03324971930712677,0.04125643503944376,0.023506127198985885,0.030069649953696046,0.03671285698170156,0.023221830702262664,0.028709039902534234,0.03367759974760447,0.02339647810209156,0.029293444226570074,0.03421113222856403,0.023724566627243916,0.029741301233469554,0.035065160382998166,0.10298958093016883,0.11821013790238014,0.13962248520850168,0.00927872901805334,0.009690929124769656,0.010251411063208133,0.03316098523172534,0.03479139984561866,0.037006410727877186,0.00937075815478599,0.009818725164105153,0.01042649901311909 +1476,"Iron, ion","('water', 'ocean')",emission,kilogram,biosphere3,1.7582623461026593e-07,1.08513899265993e-06,4.0804449608836895e-06,5.404041158562445e-08,3.7281336712700084e-07,1.3446598145118048e-06,3.888978862972732e-08,3.433545349698485e-07,1.317684103676527e-06,3.7843278248068117e-08,3.353183503226649e-07,1.3025162794414654e-06,3.5400389362799234e-08,3.078391422759456e-07,1.1907767692620813e-06,3.884631844594499e-08,3.1528768475759524e-07,1.2043867061872564e-06,1.7699685425257773e-08,1.0647627844589876e-07,3.6867814926480055e-07,3.7644402619912007e-06,4.1755622647385295e-06,4.7691125512926585e-06,3.51008163684393e-07,3.896359990514102e-07,4.4541334901800674e-07,1.1602266338177113e-06,1.285675771734013e-06,1.4667119640725256e-06 +1477,"Iron, ion","('water', 'surface water')",emission,kilogram,biosphere3,1.3614790111203705e-05,3.507329319343879e-05,6.667006402394782e-05,1.3515432158694183e-05,3.1704136000048876e-05,5.9143155258265424e-05,1.156052702200919e-05,2.8790713919934967e-05,5.552989165944753e-05,1.1673403614012692e-05,2.8962983773314542e-05,5.558860640094957e-05,1.0188282217881683e-05,2.2036654565333844e-05,5.014372768715914e-05,1.2646525429985232e-05,2.725328580676185e-05,4.983326001203778e-05,1.4443446881524328e-05,4.92488676617638e-05,7.624503767760374e-05,5.7040358908640244e-05,6.029905882658574e-05,6.484543398638382e-05,4.104434204316732e-05,4.3422450759134186e-05,4.67968869875179e-05,4.0383055136486234e-05,4.312374249705858e-05,4.698957026801457e-05 +1478,"Iron, ion","('water',)",emission,kilogram,biosphere3,1.8315794331242491e-06,6.173839558929461e-06,6.573979957938568e-05,9.157672865504966e-06,1.7973168045437665e-05,8.757266793206185e-05,7.033941767530915e-06,1.4013839532673074e-05,8.292302674477819e-05,6.635385757683012e-06,1.3710898607836678e-05,8.26370798419779e-05,6.951037137743978e-06,1.8225266832190518e-05,9.675244804728636e-05,6.751870066147573e-06,1.7758990415417026e-05,9.70169177335481e-05,8.340632403847378e-06,1.9483843189325713e-05,9.831546471499862e-05,6.583985614057238e-05,6.922519830650131e-05,7.388094910165555e-05,8.692635079232988e-05,9.15866535434636e-05,9.789110059005412e-05,8.742451695193362e-05,9.199023499423462e-05,9.817299273942157e-05 +1479,Iron-59,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,7.86268541449853e-09,1.7378187493253522e-08,4.259315448192839e-08,0.00010954494512368073,0.0002380068638220665,0.00038769258924832583,0.00011553831770273043,0.00029500826106742693,0.0010881718858453747,0.00011425599192317445,0.0002943675924249256,0.001085132107820076,0.00010403578923087227,0.0002843253801240081,0.000571871339021734,0.0001050059537076187,0.0002815362727980962,0.0005664004606906546,0.00011978361277228082,0.00028049417436525016,0.0005549222799984052,3.443797426857248e-08,3.5902082639218713e-08,3.789876735168387e-08,0.00040869686030595474,0.0004272420478494774,0.0004522236414446316,0.00044301470682154973,0.00046359529417557964,0.000491545851770195 +1480,Isopropylamine,"('water', 'surface water')",emission,kilogram,biosphere3,4.1290172354131356e-13,6.279103517344839e-12,4.1682965905503454e-11,2.2208813900165504e-11,6.546527081889541e-11,4.875955434453076e-10,1.472287884112662e-11,4.8714017876909235e-11,3.3254235420867924e-10,2.4573921482338412e-11,7.016929145760832e-11,3.084482645832166e-10,5.031862769575576e-12,2.4436122579875322e-11,3.9814353804240856e-10,1.92826123451262e-12,1.3600916228424158e-11,3.8010724057350593e-10,1.8055502220543304e-11,3.8914969426675377e-11,6.441481255838967e-10,3.65122367644313e-11,3.817618689649367e-11,4.0436832744078744e-11,6.439347034916201e-10,6.752897298378674e-10,7.181194611132891e-10,3.909298252709976e-10,4.077809917374321e-10,4.305629340365416e-10 +1481,Lactic acid,"('water', 'surface water')",emission,kilogram,biosphere3,3.4339213425627597e-12,5.384308870534484e-12,6.866903400866453e-10,1.619558604093519e-11,3.266533214819711e-11,7.964264766159794e-10,1.6358884184551673e-11,3.423944149977736e-11,7.23426193652914e-10,2.5021718825593936e-11,5.348298996984767e-11,6.819647687802306e-10,6.166521866667515e-12,1.106267890543919e-11,7.753358936001726e-10,5.5016245978464785e-12,9.563441156792508e-12,7.688712091558258e-10,7.722184969414649e-11,9.37309948002774e-11,1.092617593026459e-09,7.280249679807724e-10,7.600059366463375e-10,8.033148985084909e-10,1.0571629218147707e-09,1.1213808801115584e-09,1.2104850055945239e-09,8.149902686827474e-10,8.506885692694058e-10,8.990200236739143e-10 +1482,Lanthanum-140,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,4.852211787892311e-08,1.0724408039753409e-07,2.6285041020018523e-07,4.942421473590438e-07,1.1584543873515536e-06,8.659510819476037e-07,3.951468313263586e-06,8.636709836989148e-06,1.1282638564115568e-06,3.946442782575061e-06,8.618863744274715e-06,1.0900598502799736e-06,9.174406868718647e-08,2.8403058655035525e-07,7.170155191886114e-07,4.239707310834305e-06,9.266926411580184e-06,1.1752896628606865e-06,4.961207101783419e-06,1.0796327920165099e-05,1.1990892034887209e-06,2.1252325148164696e-07,2.2155854108255552e-07,2.3388045999044918e-07,7.228781756092174e-07,7.524650926484136e-07,7.92465868265499e-07,7.536738803798804e-07,7.861370954930082e-07,8.303426996315365e-07 +1483,Lead,"('water', 'ground-')",emission,kilogram,biosphere3,6.580624764297422e-08,7.50061858102665e-08,8.397339329898604e-08,8.928596074231606e-08,1.3879599556119626e-07,2.1936467372270176e-07,7.81077315387912e-08,1.2664187011914546e-07,2.031945912778648e-07,7.715843755572727e-08,1.1361695560599968e-07,1.7202736940277893e-07,7.770647579422082e-08,1.1456010195829755e-07,1.721340180807874e-07,8.684356959624416e-08,1.3265714832873667e-07,1.73103344550033e-07,2.0825653244724852e-07,2.615990736147838e-07,3.3573579575969576e-07,1.701720995484787e-08,1.777710520369397e-08,1.8806378248470714e-08,1.2660531878982712e-07,1.3249115433859567e-07,1.4049809713492809e-07,9.197105208349491e-08,9.611939423139754e-08,1.0176564142440461e-07 +1484,Lead,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,4.1742019323617794e-05,5.099165047515114e-05,5.6935047930731097e-05,5.268183242224234e-05,6.756291749130567e-05,8.743083674306571e-05,4.461831906866227e-05,5.645903384181763e-05,6.961466498658349e-05,4.422349572537558e-05,5.4032893674497706e-05,6.385066500800727e-05,4.381246426533887e-05,5.353686423498149e-05,6.489299696678085e-05,4.6949741910141355e-05,5.8114675246677075e-05,7.04595427707915e-05,0.0015155623357257896,0.0017116973760409131,0.0019554503871156096,1.582851530311031e-05,1.6616990926721214e-05,1.7685595513446092e-05,0.000429052838019879,0.0004501160947301966,0.00047874984596665154,2.0170034132362554e-05,2.121613009641203e-05,2.2638405176635863e-05 +1485,Lead,"('water', 'ocean')",emission,kilogram,biosphere3,4.767525782387205e-08,2.0683072544308724e-07,6.260842453116116e-07,4.644662217184504e-08,2.0975263572198517e-07,5.833046672609632e-07,2.964267226279865e-08,1.747780431521656e-07,5.712453100662605e-07,2.9374556297446503e-08,1.7182872751867405e-07,5.645793829801601e-07,3.089512561655859e-08,1.7055121458000865e-07,5.424572446816519e-07,2.8186024203317067e-08,1.6466635136069514e-07,5.478739749133781e-07,2.1064299115322002e-08,5.034196745777803e-08,3.7127176973874214e-08,5.789902447422442e-07,6.388866321071853e-07,7.250437173887699e-07,3.3431584254818226e-08,3.634940971360524e-08,4.050918099105922e-08,5.27207062364024e-07,5.836348938676619e-07,6.650272262432675e-07 +1486,Lead,"('water', 'surface water')",emission,kilogram,biosphere3,5.607748594771521e-07,5.387220759563703e-06,7.664586585174697e-06,4.227937830029241e-07,4.742172390532831e-06,6.726820737082527e-06,3.482393664843653e-07,5.283271093207916e-06,8.027733229911306e-06,3.4933648340167343e-07,5.281802812388585e-06,8.027839903723305e-06,1.8931319961993114e-07,4.938009848517298e-06,8.059329446867233e-06,3.980728753913037e-07,5.18837147784719e-06,7.614413439514598e-06,4.2150614727589474e-07,5.122021957537136e-06,7.1790727612483875e-06,7.83705669685313e-06,8.138298647480995e-06,8.54789162627818e-06,7.4927880965924365e-06,7.759792531930907e-06,8.120315431519685e-06,7.928726369367926e-06,8.236212537924242e-06,8.654355730380549e-06 +1487,Lead,"('water',)",emission,kilogram,biosphere3,8.602666114751284e-09,1.084213050919238e-07,3.1713305519102504e-06,1.0836815808050852e-07,2.467029535454789e-07,3.40239822024728e-06,9.14170393440377e-08,2.192102331255373e-07,3.3914704287496804e-06,8.922779421408016e-08,2.1761531749030168e-07,3.3896916537137354e-06,9.223023877501743e-08,2.464073897749609e-07,3.4708049209330423e-06,9.323911905011924e-08,2.481480097101276e-07,3.4791654763030576e-06,1.1315871124152205e-07,2.693757685879468e-07,3.5100664751855435e-06,3.268241316382258e-06,3.408252857403751e-06,3.597476772115871e-06,3.4519509362201244e-06,3.605224646765959e-06,3.8121862174852897e-06,3.4456079028236296e-06,3.5968072718173536e-06,3.8010958785693184e-06 +1488,Lead-210,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,3.2227942568134094e-07,3.7614258375681857e-07,5.070500347191693e-07,5.887111053260588e-07,6.705290704322991e-07,1.0187636087615883e-06,5.580312998466368e-07,6.413480465343816e-07,1.0460431025865257e-06,5.573107169819341e-07,6.43410320736268e-07,1.0949075611326412e-06,5.562348315663225e-07,6.499878908682503e-07,1.1144474335887397e-06,5.538352618499545e-07,6.452225574797428e-07,1.1023017337405258e-06,6.553879086627782e-07,7.591304967556337e-07,1.2676331329034816e-06,1.8806850127021633e-07,2.0187527451597315e-07,2.2135749055414703e-07,5.948101434248276e-07,6.620837987654046e-07,7.565094885768955e-07,5.440157267732487e-07,6.014771149354377e-07,6.832928883485718e-07 +1489,Lead-210,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.0003790055342236007,0.0004430596186191687,0.0011797282203012721,0.00011498349831875855,0.00013096368924068606,0.0001989787565815867,0.00010899130396897949,0.00012526422786466684,0.00020430682261421702,0.0001088505640749959,0.00012566701880921223,0.00021385073359934983,0.00010864042863237783,0.00012695171009312065,0.00021766714350626937,8.935927774744025e-10,1.0410428100538005e-09,1.7785232106532647e-09,1.0574442293471628e-09,1.2248290708727657e-09,2.0452793282548713e-09,0.0008442681046582515,0.0008870533574577372,0.0009458171023382101,9.59704238772463e-10,1.0682478015839022e-09,1.2206001710394679e-09,8.777493199699675e-10,9.70461151423976e-10,1.1024678856412035e-09 +1490,Lead-210,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.0003283868595614423,0.0007308878409116628,0.00017384192546305544,0.00029785832369500783,0.0006476188650407778,0.00013659240398405405,0.00035296073753888937,0.0007685876843098562,0.0007597321147636611,0.00045118467201653317,0.0009907248903484353,0.0009763467303016328,0.0005324776880693269,0.0011682059973752244,0.0009733494962849461,0.0003825724954070238,0.0008424865452255854,0.0009792518484158014,0.0001461400083652107,0.00032604443886638247,0.0009493208231907942,0.00013716682246032937,0.00014323722923694981,0.0001515368577469614,0.00015830144189498362,0.00016460047909345245,0.00017310413985165441,0.00017617792994110474,0.0001834120109286983,0.0001932359911042815 +1491,Lead-210,"('water',)",emission,kilo Becquerel,biosphere3,7.181421130884416e-09,3.874431984035902e-08,1.0139605384631858e-07,2.220012369588337e-05,4.284356609133297e-05,9.695270010777213e-05,1.550950169177593e-05,2.888391990636417e-05,6.992143277094558e-05,1.306136992129746e-05,2.6565977486063345e-05,6.754902565184004e-05,1.3445471262094682e-05,4.653914788007924e-05,0.0001397737315202697,1.2475650613451526e-05,4.4411338413835995e-05,0.00013997665596888123,1.5777370031623664e-05,4.6858416414354764e-05,0.00013861259775451815,9.527152670382119e-08,9.983331323608929e-08,1.0602211807092712e-07,0.00010299817531432495,0.00010991934135467497,0.00011906272991926188,0.00010858136905595696,0.00011556225429531955,0.0001248007401301901 +1492,"Lithium, ion","('water', 'surface water')",emission,kilogram,biosphere3,1.462865330991217e-10,2.0246871927299596e-10,9.934581046054093e-10,2.6871224901908296e-08,4.148262875371711e-08,6.759772855309127e-08,2.305608084043546e-08,4.095257738831448e-08,6.815415881506913e-08,2.3186822393300748e-08,2.6158746002624586e-08,3.659630972215235e-08,2.1160246977534508e-10,3.52636899619811e-10,8.200997719998684e-09,2.2833200986508e-10,4.789551574497107e-10,8.366585113829014e-09,4.0087981449295066e-10,7.144779398511907e-10,1.3567470462388153e-08,8.184398714695809e-10,8.990681219776046e-10,1.013662950510275e-09,1.3685861817498872e-08,1.4471465728430015e-08,1.5528594842294614e-08,8.432914227448732e-09,8.907926959050805e-09,9.549019657777093e-09 +1493,"Lithium, ion","('water',)",emission,kilogram,biosphere3,2.6676082319844806e-08,1.439195243160397e-07,3.7664545506936946e-07,8.246450860308337e-05,0.00015914657381767413,0.00036014019028295704,5.761154546758392e-05,0.00010729211666753036,0.0002597299309354489,4.8517723009016795e-05,9.868189515341957e-05,0.00025091739502487297,4.9944505624854e-05,0.00017287417340011902,0.000519203065238147,4.634201278370616e-05,0.0001649702188038671,0.0005199568470964444,5.860656942703908e-05,0.0001740601271592233,0.0005148899209079232,3.538953074961214e-07,3.7084050509275216e-07,3.9382941964463886e-07,0.0003825966997462553,0.00040830604146745424,0.0004422700440259634,0.00040333601360671045,0.0004292671880682494,0.00046358443863623493 +1494,Magnesium,"('water', 'ground-')",emission,kilogram,biosphere3,0.0004247547774057838,0.0006492374355064715,0.0008169242402559184,0.0004821118575025321,0.000680117739156796,0.0008242076245476229,0.00044601147843001914,0.0006555171960237362,0.0007954055783976669,0.00044747271441878024,0.000658092924677664,0.0007993758207739931,0.00046489339264155346,0.0007011320661819468,0.0008165461814698392,0.00046369322793969543,0.0006981056088126631,0.0008536685768626895,0.00037550473655745,0.0005137312086861392,0.0008230025315481494,0.0003068300283648626,0.0003202651326617745,0.00033857443646872977,0.0002648594683588355,0.00027778887283623266,0.0002952181705987431,0.0002806460087113461,0.00029406667115296236,0.0003122305906447523 +1495,Magnesium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.06189611192099909,0.08337239500737675,0.10338950091590549,0.07240855700942586,0.0923482209368984,0.10991145341896677,0.06556660566007105,0.0865658897213351,0.10451017634117306,0.06582046249274016,0.08707619747273682,0.10542572734557011,0.06719553159726836,0.09075100989973905,0.10747900867379004,0.06728009604483452,0.0904505440600489,0.11058023670858379,0.021016236382433048,0.031503854702361195,0.05700759203432885,0.034283406572182006,0.03578797331618654,0.03783585962238206,0.020347452427012132,0.02132222831732479,0.022635914582614894,0.03308892412076918,0.03465181261181558,0.036770060053410686 +1496,Magnesium,"('water', 'ocean')",emission,kilogram,biosphere3,1.7182380006513828e-05,0.00010846802555366313,0.0004138383627653078,1.2697003954953942e-05,4.432635018928701e-05,0.00014533926905324862,9.752531911488919e-06,3.803526199805132e-05,0.0001457183773216662,1.185621643159411e-05,4.275888260236447e-05,0.0001441661233670473,1.2723764951929831e-05,4.276393171218814e-05,0.00013247227394755742,7.896274939527795e-06,3.229592604657684e-05,0.00013319980461631398,1.0148624971612331e-05,2.5680277691004073e-05,0.00014144778270546346,0.0003812908957538158,0.00042338733949525624,0.00048419116925304666,6.16963523947299e-05,6.760429880314162e-05,7.604677178793654e-05,9.364716747767613e-05,0.00010348957331545258,0.00011762577879519726 +1497,Magnesium,"('water', 'surface water')",emission,kilogram,biosphere3,0.00010907240928371067,0.0017961915695968987,0.0017662230192774752,0.00010181829273348694,0.0018209813847767195,0.001916159186369554,0.00010663675176325526,0.001841398026626023,0.002069784102253521,0.00012795247824643304,0.001885045194839319,0.002109930759235822,0.00014323383682125323,0.0019046355237222422,0.0020528775576124344,0.00011701489013189488,0.0018483089883979036,0.002072231826007522,6.32954923340869e-05,0.0017362933703872754,0.0020133332133839194,0.0017950502926358967,0.0018770427288396212,0.0019951536311022203,0.0018581465129246743,0.0019476590410777857,0.002076614362050716,0.001953213119508087,0.0020511481481252838,0.002192181894767135 +1498,Magnesium,"('water',)",emission,kilogram,biosphere3,1.556756838236842e-08,8.39882312408172e-08,2.1980190339159457e-07,4.812445133302506e-05,9.287439743757237e-05,0.00021016979733332628,3.3620815342760735e-05,6.26132906682296e-05,0.00015157260538799076,2.8313863009560697e-05,5.758855708000601e-05,0.00014642980562229753,2.9146501358425128e-05,0.00010088551803015808,0.00030299534736903113,2.704416677189961e-05,9.627294616518054e-05,0.00030343523781447044,3.4201488934709946e-05,0.00010157761428174217,0.00030047829253760635,2.0652542323742329e-07,2.1641426333679242e-07,2.2983008211284694e-07,0.00022327491412756702,0.0002382783134660319,0.00025809894905507694,0.00023537791586840002,0.0002505107718539431,0.00027053755511479766 +1499,Manganese,"('water', 'ground-')",emission,kilogram,biosphere3,1.7504158307880514e-05,2.97231971125129e-05,4.113954738503056e-05,1.9416326313462127e-05,3.018992457500649e-05,4.047283196216641e-05,1.846539724633742e-05,2.9943596421992036e-05,4.0051409502738244e-05,1.8515679670185606e-05,3.0018065352874943e-05,4.013801745473622e-05,1.9627972624643382e-05,3.264755989621155e-05,4.092337740924474e-05,1.920424062075883e-05,3.170892369229508e-05,4.279208213025051e-05,1.8441377268173494e-05,2.566464996005859e-05,4.6179833444259346e-05,1.5017608110983947e-05,1.5670723427728537e-05,1.6561260144203382e-05,1.3358100799894778e-05,1.4011140166926228e-05,1.489051196287135e-05,1.3535884726264233e-05,1.4187857511224949e-05,1.5069561719195003e-05 +1500,Manganese,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.006686982144612303,0.008585496365455116,0.010183132299810995,0.00787669365832292,0.009681493641390803,0.0112551961936691,0.0070331047788670135,0.008887522652279557,0.01036936654950914,0.0070605895759747765,0.008934889994551805,0.010439111036499268,0.007180855442050134,0.00926464183743895,0.010646212549686292,0.007172489359898874,0.009225996670262976,0.010828745297295857,0.002259036701341542,0.003148117382373635,0.004922158691728555,0.003058908032716506,0.0031939063164749884,0.0033775134182477138,0.0016596070287646313,0.0017392543859664708,0.0018466109061878015,0.003071772223339948,0.0032170633880515363,0.0034139705185422006 +1501,Manganese,"('water', 'ocean')",emission,kilogram,biosphere3,1.427628578425429e-07,8.740319966917524e-07,3.3275677756068362e-06,2.853222028819185e-08,2.0889672309562874e-07,7.83545792524457e-07,2.1609316729932895e-08,1.9596083102970604e-07,7.676777090962038e-07,2.1097635278632276e-08,1.915441096954947e-07,7.595825556814101e-07,1.8129187897234552e-08,1.682768449125327e-07,6.738684820266959e-07,1.9961076006693466e-08,1.7346978821773427e-07,6.794744491961357e-07,9.979372086433544e-09,8.232399883795046e-08,3.2839890619322135e-07,3.0624814213602268e-06,3.399887226485524e-06,3.88719141804001e-06,3.1280282583977337e-07,3.4745146462788617e-07,3.9749923382059215e-07,6.541853439297576e-07,7.250176108106478e-07,8.272417909238313e-07 +1502,Manganese,"('water', 'surface water')",emission,kilogram,biosphere3,2.0738920060328663e-06,7.393592077898843e-05,5.237731255671645e-05,1.5421469725996739e-06,7.30252815077541e-05,5.2898972709862426e-05,1.3861710936929003e-06,7.276976467521178e-05,5.27611871432466e-05,1.4637316930940945e-06,7.288153563096654e-05,5.268505773968065e-05,1.5883225336135242e-06,7.301382970039415e-05,5.2370213826914564e-05,1.8253457868155036e-06,7.352201056235891e-05,5.242222252239128e-05,1.9969994300809555e-06,7.378521149021046e-05,5.190449904170714e-05,5.587960977884647e-05,5.6598826407566635e-05,5.763079804764468e-05,5.541598076706312e-05,5.614716857747396e-05,5.720013471713428e-05,5.623476233735167e-05,5.705178027378926e-05,5.8227571832829626e-05 +1503,Manganese,"('water',)",emission,kilogram,biosphere3,9.483961734077537e-09,3.2084619863150753e-08,1.0224768214577158e-07,8.834592877947975e-08,1.8323978818904784e-07,4.300710594912551e-07,6.435138943738312e-08,1.3668715484384518e-07,3.421672454120601e-07,5.6120956936064576e-08,1.2926794921315557e-07,3.3472267853688283e-07,5.7662927543433064e-08,2.005634463304401e-07,5.894665389168258e-07,5.619923835678675e-08,2.039100687299854e-07,6.040538833211606e-07,7.06514432436604e-08,2.3290822744068428e-07,6.847499164071972e-07,8.470557401505938e-08,9.029628577356498e-08,9.815927726101753e-08,5.208329444508278e-07,5.591623826862008e-07,6.113153370146676e-07,4.6037278498635057e-07,4.898580193550859e-07,5.292619094004527e-07 +1504,Manganese-54,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,9.369206052908153e-06,2.1110763511356514e-05,1.0968348638580091e-05,1.2393015491825975e-05,2.872226012604559e-05,1.7532128865997904e-05,6.461390269786294e-05,0.00014169592119903118,2.2317521066894107e-05,6.451625405262665e-05,0.00014132906664333274,2.1527833246090208e-05,2.900426207771422e-06,8.242849238686565e-06,1.625496141564421e-05,6.973552700868601e-05,0.0001528943819423053,2.3124640045355272e-05,8.124292107491994e-05,0.00017717971340599264,2.326473077100679e-05,8.908541385609166e-06,9.29519906516761e-06,9.823200559633865e-06,1.4171121305428493e-05,1.4746687681069584e-05,1.5524574437760582e-05,1.4944610949536038e-05,1.5582230026520412e-05,1.6450190457105267e-05 +1505,Mercury,"('water', 'ground-')",emission,kilogram,biosphere3,9.826964545159045e-10,2.1508915491066465e-09,3.0213878121614614e-09,9.843788866769802e-10,1.9532285663922285e-09,2.6565284131656023e-09,1.0156954746717645e-09,2.0688707937777054e-09,2.7530539532503886e-09,1.021031364960063e-09,2.0764758062734115e-09,2.9783395100296387e-09,1.1259600335321394e-09,2.320731044551835e-09,3.1556486776653467e-09,1.111746962425033e-09,2.290451811941441e-09,3.356956865775363e-09,3.08680636386183e-09,4.01777669705622e-09,6.302635672070502e-09,1.4380789317256417e-09,1.5006295428560938e-09,1.5859994275489673e-09,2.0403997765283333e-09,2.138753124486852e-09,2.2714879517887365e-09,1.5308118546275672e-09,1.6025736216622233e-09,1.699557015841908e-09 +1506,Mercury,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,4.1487184587859475e-07,8.884210605386055e-07,1.2607681601988562e-06,4.2100848081166014e-07,8.040371979441994e-07,1.0618007521778629e-06,4.236909903441476e-07,8.35998605309791e-07,1.0994366320739071e-06,4.2502166584445297e-07,8.364538154489144e-07,1.0956009695069117e-06,4.5584910894513354e-07,9.122900191177338e-07,1.1235436055838992e-06,4.606772657084578e-07,9.19711314686028e-07,1.1956636101279614e-06,2.59604684490456e-06,3.1700867623458546e-06,4.15427632286169e-06,6.835557277995917e-07,7.146709619106976e-07,7.571117882008224e-07,1.1842720311069215e-06,1.2424946205097393e-06,1.3212890340505886e-06,5.219459442925334e-07,5.476818103022877e-07,5.824933648182686e-07 +1507,Mercury,"('water', 'ocean')",emission,kilogram,biosphere3,5.484698013879424e-10,1.4598361238964056e-09,1.7981498595958419e-09,7.027256334813248e-10,1.6759290120788192e-09,1.4687729581196053e-09,4.2935940118179854e-10,1.0884820812600681e-09,1.3782608385561788e-09,4.5608190893829706e-10,1.1504508378280953e-09,1.4700021777872725e-09,5.092703700742073e-10,1.2838472555641353e-09,1.5260890601133434e-09,4.126347578011285e-10,1.0714283878213057e-09,1.52334507736265e-09,4.311312587103864e-10,1.0348115852794752e-09,7.280807963250786e-10,1.6309161091727503e-09,1.8011530389693828e-09,2.045997288262267e-09,6.708194789681127e-10,7.293329493427727e-10,8.127566756836867e-10,1.3328111800425642e-09,1.4353403546494493e-09,1.5803225569459603e-09 +1508,Mercury,"('water', 'surface water')",emission,kilogram,biosphere3,3.610005601981144e-09,3.760025431378071e-08,8.759381939410094e-08,3.7077048261792765e-09,2.2005934186288774e-08,5.0425027925897685e-08,3.845245813770578e-09,1.9739074256224356e-08,4.4554833188889896e-08,4.512235762547729e-09,2.1260967440460637e-08,4.6559757616749504e-08,5.019948988848699e-09,2.460436792251452e-08,5.417879153583306e-08,4.063456336488289e-09,1.377352093078153e-08,2.8794203930507318e-08,2.8160897129129894e-09,1.0545205543599478e-08,2.8105687475843456e-08,9.160715663643489e-08,9.416435803277393e-08,9.759344675612218e-08,2.1477877441479908e-08,2.2355567296905055e-08,2.3550024258638943e-08,2.2841841811198387e-08,2.3852990851221243e-08,2.52239354801734e-08 +1509,Mercury,"('water',)",emission,kilogram,biosphere3,5.548280543604423e-10,5.816093658222343e-09,1.601331951160124e-07,6.848406249366711e-10,5.913213673914007e-09,1.5960802500812232e-07,6.157066908257401e-10,5.686547879968194e-09,1.5940248760506825e-07,6.308971464325017e-10,5.71383227603488e-09,1.5942815544578817e-07,6.552876516040279e-10,5.8187662751105306e-09,1.5954975134694138e-07,7.194328727211588e-10,5.958204178546003e-09,1.597776635250164e-07,7.483531901647492e-10,5.961903246590228e-09,1.600309096887403e-07,1.646464467160227e-07,1.7174857954790333e-07,1.8135415560733734e-07,1.6441926501573927e-07,1.7149246733312597e-07,1.810552102182449e-07,1.6426113178938152e-07,1.7131458453290212e-07,1.8084922577151152e-07 +1510,"Methane, dichloro-, HCC-30","('water', 'surface water')",emission,kilogram,biosphere3,1.2284696273048077e-07,7.099005629085352e-07,2.690927902116241e-06,9.808836583705197e-08,6.613237915494017e-07,2.4552495881781904e-06,7.437315183286766e-08,6.428094357518792e-07,2.526633013545754e-06,7.307499498364708e-08,6.324637815893723e-07,2.5059634063196082e-06,7.112378545471187e-08,6.031911736458202e-07,2.3530476872834283e-06,7.97701437579907e-08,6.220217242781188e-07,2.3819583732236962e-06,7.650003743923762e-08,5.649884348956817e-07,2.195068004256819e-06,2.4674507475206083e-06,2.7380769091555204e-06,3.1284795993490966e-06,2.0789256005377717e-06,2.3062455732290797e-06,2.634174140368704e-06,2.2791719310773676e-06,2.5229349417335513e-06,2.874283798405358e-06 +1511,"Methane, tetrachloro-, R-10","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.89770180101646e-12,6.227208882334432e-12,2.5443688900451607e-11,0.0,0.0,0.0,7.993139855290414e-12,2.4716138217427293e-11,4.556691077247962e-11,0.0,0.0,0.0 +1512,Methanol,"('water', 'ocean')",emission,kilogram,biosphere3,6.035088128902311e-08,1.3969839450730977e-07,5.028524738028941e-07,1.1854499034912074e-08,3.930549908278553e-08,2.5358676243433e-07,3.1163208089557726e-08,7.840555595877749e-08,2.461831148577727e-07,3.6090748340787865e-08,9.44250587462282e-08,2.605113554533021e-07,2.2222036134877135e-07,4.936405715037795e-07,2.2574293908231421e-07,1.6049572805168706e-07,3.5977390639586554e-07,2.1735900406055316e-07,2.3861652827954116e-07,5.294492318251189e-07,2.3278370807285233e-07,4.5176209190063905e-07,4.763001946335392e-07,5.090252119843422e-07,2.1930355746822605e-07,2.2892219388337053e-07,2.418420022534651e-07,2.0868350440143688e-07,2.1805544568775073e-07,2.3064588864523648e-07 +1513,Methanol,"('water', 'surface water')",emission,kilogram,biosphere3,2.402935409011261e-09,5.639649356848376e-08,2.10020486198673e-07,2.5824390563927096e-08,1.267304802770829e-07,7.711669629293469e-07,2.7245786705852863e-08,1.438535966457012e-07,8.343830887673564e-07,2.780220088193793e-08,1.450342201126581e-07,8.303315520332085e-07,3.162662381749551e-08,2.669914458994054e-07,1.1951582545115789e-06,3.368206957386893e-08,2.687462465962097e-07,1.188132343154508e-06,4.257463981203915e-08,2.780608253777921e-07,1.2100101094946422e-06,2.1720315749069172e-07,2.2620940016338049e-07,2.3827895795154423e-07,6.374415095829268e-07,1.251869181534504e-06,2.019459873804542e-06,6.248095224928079e-07,1.2390143021068089e-06,2.0064180216501283e-06 +1514,Methanol,"('water',)",emission,kilogram,biosphere3,1.1893082790140529e-08,6.133547235258803e-08,3.402502101419645e-07,2.108109552694796e-08,7.534069748003205e-08,3.287889201934389e-07,2.0993264486817373e-08,7.715778461660952e-08,3.280875159682147e-07,2.810002096687654e-08,9.354439198418952e-08,3.34683074963939e-07,1.338551789558895e-08,6.133466657171405e-08,3.3417050570173976e-07,1.343739283989809e-08,6.205683668228919e-08,3.370975496451208e-07,1.4782841015063237e-08,5.884742625123495e-08,3.0824638024490144e-07,8.467338889568059e-08,3.4897052759135863e-07,6.784676128265887e-07,7.429502703816371e-08,3.122589114424824e-07,6.088051813884092e-07,9.164115140801591e-08,3.447060905517391e-07,6.602123847952991e-07 +1515,Methyl acetate,"('water', 'surface water')",emission,kilogram,biosphere3,1.1516391910350846e-14,3.213266236319981e-14,1.0973470578316768e-11,2.6838736218273827e-12,6.0260423379655195e-12,1.2877265053344123e-10,1.9307775218115303e-12,4.401237385877204e-12,8.881388580915707e-11,2.710040167678595e-12,6.171580301918681e-12,6.938587334352176e-11,2.87670184213535e-13,7.139179994671786e-13,1.0984714462559226e-10,2.392043597778978e-13,5.936599816549039e-13,1.0869955598196433e-10,4.896872500375412e-12,6.622418010136704e-12,1.9306533588509604e-10,1.1702042279718575e-11,1.2199059374687695e-11,1.287008337664148e-11,1.9944396924809506e-10,2.0899545017403805e-10,2.220250359576104e-10,1.1598316642813916e-10,1.2091145875052555e-10,1.2756552120586517e-10 +1516,Methyl acrylate,"('water', 'surface water')",emission,kilogram,biosphere3,1.0425012283497635e-09,2.9334139236372966e-08,8.441231014967571e-08,4.340592347123741e-11,7.45827451069661e-10,2.1369262439650247e-09,3.906693807438456e-11,7.175337890261947e-10,2.0118423634506457e-09,3.9509488840343314e-11,7.182992399663261e-10,2.01376038511869e-09,4.613157758540154e-09,9.9925852703055e-08,2.793309011526918e-07,4.983486308229587e-09,9.879751747179671e-08,2.743126579454307e-07,6.202011031891611e-09,1.0051431920549128e-07,2.771584734534715e-07,8.653056879777862e-08,9.007790169444501e-08,9.481912785102719e-08,2.794181074450913e-07,2.917233198523803e-07,3.082138637925255e-07,2.7796520068760403e-07,2.8997660460581223e-07,3.0608420863196833e-07 +1517,Methyl amine,"('water', 'surface water')",emission,kilogram,biosphere3,4.711678669470761e-13,7.734599613907356e-12,5.803353862242916e-10,1.7590765039670658e-11,4.837308988320419e-11,1.6558017449826962e-09,8.723652206981534e-12,2.830895033414429e-11,9.035756208180167e-10,1.22395040540087e-11,3.601867138028684e-11,7.806098015739201e-10,4.088201732329534e-12,1.8844054161376705e-11,1.0326241191049817e-09,2.049842203852881e-12,5.261393201365363e-12,9.96713801738326e-10,9.442503069907656e-12,1.494356578762303e-11,1.1495528964870263e-09,6.188300234496481e-10,6.451160716190537e-10,6.805969334879081e-10,1.2163375251063465e-09,1.2697260719353297e-09,1.3420201886123296e-09,1.0634584477995822e-09,1.1086821600204835e-09,1.1697458400797087e-09 +1518,Methyl formate,"('water', 'surface water')",emission,kilogram,biosphere3,4.19876274861784e-13,2.7919032949251804e-12,8.98142827993354e-12,1.1745762773865052e-12,4.655160121839546e-12,3.1651006178486836e-11,9.88836139412506e-13,4.256544749513259e-12,2.4405756832465497e-11,1.1668241180339342e-12,4.6588745640478005e-12,2.7727790035010056e-11,6.676119099255092e-13,4.008610738228079e-12,2.986320718041905e-11,6.699235097568135e-13,3.94259062939684e-12,2.948762016157929e-11,1.1174105199922715e-12,4.534987388269748e-12,4.269413417467986e-11,8.745850590358222e-12,9.212934198722287e-12,9.852968390570066e-12,4.379347601622454e-11,4.586994302700092e-11,4.8694453815849176e-11,3.032139190833879e-11,3.17498470613217e-11,3.3691552107664045e-11 +1519,Methyl pentane,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.034170716951502e-11,9.945412824819956e-11,1.5971215576479e-10,0.0,0.0,0.0,8.596460793311949e-11,9.015123940054987e-11,9.584725114999859e-11,0.0,0.0,0.0 +1520,Molybdenum,"('water', 'ground-')",emission,kilogram,biosphere3,1.4033024775338389e-06,2.1330149913319814e-06,3.3616420618699635e-06,1.3916946044953824e-06,1.5659199323497357e-06,1.7566215872077057e-06,1.59945119798511e-06,2.384787257556521e-06,2.8578225046683466e-06,1.600320062983067e-06,2.3770755775220966e-06,2.8396605447838033e-06,1.4463586780269552e-06,2.0748739975403594e-06,2.8801526952434114e-06,1.6346352947062274e-06,2.4594902241119647e-06,2.7870544947218583e-06,1.8259325732072843e-06,2.625300145975287e-06,2.936148110415069e-06,1.960902121299111e-06,2.0466359641776237e-06,2.1635791527171405e-06,1.300690209315036e-06,1.3573713611186315e-06,1.4340426798654886e-06,1.3488443699876851e-06,1.4081694499814513e-06,1.4887341817448749e-06 +1521,Molybdenum,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,5.347785952211754e-05,6.651717169827291e-05,7.665535217572622e-05,6.369983677267246e-05,7.738131356383947e-05,9.046816624212383e-05,5.61193039664058e-05,6.88998985382062e-05,7.905119341716661e-05,5.6361616644768604e-05,6.943733956579751e-05,8.008589727372592e-05,5.685119978997105e-05,7.100811907222979e-05,8.162298920026029e-05,5.7187740567054715e-05,7.14570191210723e-05,8.306687115238463e-05,5.776889231655176e-05,6.909863767904186e-05,8.766032874550941e-05,2.0459094315359845e-05,2.1363956897257045e-05,2.259342786525243e-05,2.3162627856918626e-05,2.4298905493336738e-05,2.5838783564405525e-05,2.194637357657416e-05,2.298887782652657e-05,2.4402209351603535e-05 +1522,Molybdenum,"('water', 'ocean')",emission,kilogram,biosphere3,6.428265789834563e-10,4.563465127439128e-09,1.7498065612662405e-08,5.833634323457728e-10,4.547448509943275e-09,1.720096449575334e-08,4.423912621480028e-10,4.285554566333109e-09,1.6878605146279432e-08,4.2218078618585617e-10,4.163586557167613e-09,1.665814528049633e-08,3.868680134919873e-10,3.946104735939584e-09,1.5954487254117416e-08,4.518977527991797e-10,4.085750674160252e-09,1.612814635697944e-08,0.0,0.0,0.0,1.6362457947470995e-08,1.8018331712754203e-08,2.0401176334820214e-08,0.0,0.0,0.0,1.5551328855726937e-08,1.7235873012012468e-08,1.966718317610223e-08 +1523,Molybdenum,"('water', 'surface water')",emission,kilogram,biosphere3,6.797314001784556e-07,1.61667069755343e-06,9.355167686328196e-06,3.6309667457936685e-07,8.67687676293472e-07,9.170236954081095e-07,2.4695622180615064e-06,5.367621413566381e-06,1.260726553871292e-05,2.476590475135141e-06,5.390249955379258e-06,1.2646152587252228e-05,2.6578467335554853e-06,5.7878407553787605e-06,1.2598933127443402e-05,2.129771774491405e-06,4.70799172038473e-06,1.2751582243881694e-05,1.0906577279556095e-06,2.3893908684135277e-06,1.18889007549262e-05,1.5742060082583777e-06,1.6308611390868728e-06,1.7074366895039987e-06,1.9720331990769205e-06,2.0540963164148595e-06,2.164299718705269e-06,2.1472120365404633e-06,2.2334007354099007e-06,2.350190812798331e-06 +1524,Molybdenum,"('water',)",emission,kilogram,biosphere3,5.702893211551092e-13,3.0767548142478643e-12,8.052039592716227e-12,1.7629510064129784e-09,3.402283203177011e-09,7.699185039263858e-09,1.2316369039676e-09,2.293723060541409e-09,5.552584389264329e-09,1.0372264390656794e-09,2.1096511617237036e-09,5.364187352581577e-09,1.0677286026019077e-09,3.695755884720699e-09,1.1099678769051423e-08,9.907134334628832e-10,3.5267827802773235e-09,1.1115793359699898e-08,1.5727420639316606e-09,6.430158772077462e-09,2.1777343154258888e-08,7.56568008752451e-12,7.927939607436116e-12,8.419403522371612e-12,1.8422396529920427e-08,2.012031990813128e-08,2.2505736199954838e-08,8.622638217193024e-09,9.177002637353782e-09,9.910647106201966e-09 +1525,Molybdenum-99,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.6729384758702807e-08,3.697545691439476e-08,9.062517905743437e-08,5.0406397715907984e-08,1.352681772308757e-07,2.524960637269572e-07,1.5050040413671893e-06,3.280996574778135e-06,3.310207412505985e-07,1.5033546715608752e-06,3.275356545906864e-06,3.192578230357477e-07,2.5111736277644164e-08,7.614162218995165e-08,1.61728213418361e-07,1.614023143245925e-06,3.518604341261351e-06,3.449813185917405e-07,1.8899518261124068e-06,4.1057274820672314e-06,3.568104752601668e-07,7.327345499266555e-08,7.63886288962896e-08,8.063696203504525e-08,2.2273786682344444e-07,2.318618431800102e-07,2.44201985952851e-07,2.3054504778911356e-07,2.405212502386732e-07,2.541118144159365e-07 +1526,m-Xylene,"('water', 'surface water')",emission,kilogram,biosphere3,8.266619494048546e-12,1.1434709475699375e-11,5.1725539383335324e-11,1.631464586990973e-11,2.6644749074080172e-11,3.439590006682832e-10,2.0350382596587167e-11,3.103442108203415e-11,2.5963684991649516e-10,1.874133269129451e-11,3.062420845881944e-11,2.2790840759596082e-10,1.272289089938218e-11,1.7080566366381995e-11,3.053410255678796e-10,1.258761975230193e-11,1.6481121162645033e-11,3.0171058030538173e-10,1.7860697717843377e-11,2.325874259130035e-11,4.929832205078403e-10,4.153450185306463e-11,4.589195828544531e-11,5.20994295414845e-11,5.017786414207097e-10,5.267188101727724e-10,5.608411705352658e-10,3.049502895107578e-10,3.205355400379454e-10,3.419061288550578e-10 +1527,m-Xylene,"('water',)",emission,kilogram,biosphere3,7.51780568035788e-13,4.0559141413919314e-12,1.0614554405503496e-11,2.3239999273832217e-09,4.485040076763142e-09,1.0149405971642886e-08,1.6235981969832395e-09,3.0236871057331477e-09,7.319662129283872e-09,1.3673177304972137e-09,2.781035393954346e-09,7.071308829626022e-09,1.4075270119625097e-09,4.871908692472112e-09,1.4632087002457207e-08,1.306002215363551e-09,4.6491608853954165e-09,1.4653329980946235e-08,1.651639729935656e-09,4.905331030696492e-09,1.4510534761759454e-08,9.973413826862797e-12,1.0450960334310914e-11,1.1098829784781234e-11,1.0782271101739192e-08,1.1506807123521107e-08,1.2463974505246812e-08,1.136674271223354e-08,1.209753038519567e-08,1.3064652939817861e-08 +1528,"Nickel, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0018753270857336302,0.0020411609633142424,0.002223952520684622,0.0018867744506072433,0.002035427276016296,0.0021849403388959896,0.0018108689567950644,0.0019746567973416068,0.002136899495515657,0.0018089610210473624,0.001965537333600127,0.0021156134556779803,0.0018213082797094917,0.001996948577088753,0.0021290107710322755,0.0018204479537225085,0.0019934759424708407,0.002155829792698715,0.008176773745106235,0.008301382277807658,0.008592274198220742,0.0002731089004528921,0.000285416682973768,0.0003022111377703485,0.00026612110421389996,0.0002790788005117218,0.00029660477177251824,0.00023842866011560956,0.00024987941725763854,0.0002654232410459233 +1529,"Nickel, ion","('water', 'ocean')",emission,kilogram,biosphere3,8.098304505226232e-09,2.4364492133025353e-08,7.239867806153563e-08,3.926494415212105e-09,1.8092525583670356e-08,5.115600976049133e-08,3.2875232557405772e-09,1.716634766886279e-08,5.0902639548560285e-08,3.298507694232979e-09,1.708710585889639e-08,5.0867125863420426e-08,3.2776948384272916e-09,1.8135437803804062e-08,5.3368332692091965e-08,3.2387106987975334e-09,1.7962270576838065e-08,5.296506190562012e-08,4.4017121945326385e-09,3.500796191799093e-08,9.215903839805502e-08,6.535350438804304e-08,7.016797181839614e-08,7.696799992609033e-08,9.075539306367392e-08,9.509996999625385e-08,1.0097492261091089e-07,5.0569862468062305e-08,5.4441110097662415e-08,5.991646669409252e-08 +1530,"Nickel, ion","('water', 'surface water')",emission,kilogram,biosphere3,1.5113932909233168e-06,2.7350228686723714e-06,3.0950374398865182e-06,1.5946379611873257e-06,2.773175100026429e-06,2.9413572330620753e-06,1.4030161940559815e-06,2.632164407468065e-06,2.913478305456033e-06,1.412917494513196e-06,2.6531640412253304e-06,2.9569839273854843e-06,1.4504229530691287e-06,2.7321627875500777e-06,3.131144495041618e-06,1.4464018689096584e-06,2.7058765247891994e-06,3.1019386524433768e-06,1.641849451993936e-06,2.889371078457802e-06,3.2800891682663036e-06,1.5654714622366607e-06,1.6537470891798657e-06,1.7695059771689642e-06,1.616733085904105e-06,1.6715318845814236e-06,1.746560646499215e-06,1.6739249838661198e-06,1.7414555729675646e-06,1.8347716624743178e-06 +1531,"Nickel, ion","('water',)",emission,kilogram,biosphere3,1.835933165612122e-08,2.592745123767922e-07,4.366865915118522e-07,1.099346288765059e-07,3.8190389369912907e-07,6.19397688257118e-07,9.51350079438139e-08,3.558452664457647e-07,6.162231954422304e-07,9.449434826718959e-08,3.55973956688888e-07,6.161707579778651e-07,9.778273192137273e-08,3.7669249706594747e-07,6.629367548429196e-07,1.005145472261825e-07,3.818781777416177e-07,6.751533153925994e-07,1.1925267275565743e-07,4.029061854888406e-07,7.169633414923585e-07,1.6287201922938027e-07,1.73205403389365e-07,1.8770817171075942e-07,3.054683801668609e-07,3.260059817920046e-07,3.542045725179706e-07,2.8797525389583036e-07,3.0542480311959756e-07,3.2949256142716035e-07 +1532,Niobium-95,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,3.1473747475155992e-06,6.957273058277581e-06,1.6590613823347944e-06,2.402045507586842e-06,5.376702154199268e-06,1.7671887173802704e-06,2.7306060565393547e-06,6.096835806645212e-06,2.2636143141486533e-06,2.723110946634804e-06,6.0668399736684235e-06,2.1947707626034366e-06,2.1147647009376418e-07,6.795681593533039e-07,2.1701296910395607e-06,2.9414603837005493e-06,6.568900952811463e-06,2.353434527118601e-06,3.4227290382928184e-06,7.555509937262333e-06,2.3271212911467264e-06,1.2839599301267704e-06,1.3408752868705136e-06,1.418701653303411e-06,1.2910827536214958e-06,1.3437887160223694e-06,1.4149739955923191e-06,1.3724274557766813e-06,1.430825100362228e-06,1.5102578492536788e-06 +1533,Nitrate,"('water', 'ground-')",emission,kilogram,biosphere3,0.00011873492025280647,0.00016298079000228493,0.002134236117059738,0.0001699248293366145,0.0002537852426331179,0.0028704084274049856,0.0001864514072850774,0.0003114675278726598,0.0019154953892288682,0.0002087348180095291,0.0003610841986250446,0.003698060523159748,0.00014184599540339126,0.00021487779688892107,0.0028817851757102185,0.0001720976012515093,0.0002795776392545939,0.0027974699880359217,0.00015053143165998675,0.00025956224582043304,0.0028473404346029702,0.0021318932732426544,0.0022242998520979073,0.0023493046531872725,0.0028823213046470283,0.00300729700923914,0.003176303203353044,0.002816155257848765,0.0029372614975814544,0.0031009461351759514 +1534,Nitrate,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0016380984193651192,0.003328605250003543,0.004707942120474788,0.001965655030624276,0.003548430422388174,0.0048362100948220275,0.0019255933007623384,0.0037146839601681883,0.004600353543508065,0.0019360083476946724,0.003727962955323076,0.004616700782365075,0.001960525682546291,0.0038113477103788717,0.0047237873918705145,0.0020807987352658617,0.004063429574943777,0.004975704763618016,0.0009544369203924091,0.0021065408856684024,0.003859573334067694,0.002504628591992504,0.002612013685194794,0.002758437440152495,0.0017459898093860138,0.001826229347813274,0.001934049923206706,0.0022858959443545815,0.0023920206075080715,0.002535767328687193 +1535,Nitrate,"('water', 'ocean')",emission,kilogram,biosphere3,6.887531683278248e-06,1.8627558628123505e-05,2.2930675377586734e-05,1.487154429458314e-06,6.082289684471842e-06,1.573887456830262e-05,1.6305063143551911e-06,6.437217719335039e-06,1.5503126884692908e-05,1.6072630517951748e-06,6.307685744580667e-06,1.5258775723101741e-05,8.235022543439924e-07,4.540994156029536e-06,1.4619445257073763e-05,1.8624931817726523e-06,6.7608324418266635e-06,1.4699450718241786e-05,1.6232586547015744e-06,3.6478672958840257e-06,1.389154681323867e-06,2.0645908881362637e-05,2.2319151390170708e-05,2.470395473839856e-05,9.71644156819987e-07,1.010310135073475e-06,1.0624786531559686e-06,1.383550874862341e-05,1.5262071776412434e-05,1.7317269197540297e-05 +1536,Nitrate,"('water', 'surface water')",emission,kilogram,biosphere3,4.900840675377647e-05,0.0002536742132186698,0.00046927957510569014,6.229029371736918e-05,0.00026717944334453007,0.0004617455759748053,6.127056973686642e-05,0.00026820300720854795,0.0004923311089525557,7.763853360080779e-05,0.000300735775951249,0.0005267031727829218,8.516691104124681e-05,0.0002742327610568546,0.0004478602042160538,6.620561985168705e-05,0.0002364907677710051,0.00043417441349665543,4.067734878414694e-05,0.00044270534200792415,0.0007530066886377892,0.00047887443021380014,0.0004989715729189515,0.00052653704083624,0.00032555818748091246,0.0003366436090347135,0.0003517972005411192,0.00033558208666079964,0.0003470842422641941,0.0003628597835738256 +1537,Nitrate,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,9.075427830611651e-14,1.7946727499516395e-13,4.647397847792213e-13,7.043084793601628e-14,1.3391096732134986e-13,4.877962314651189e-13,9.150891184310132e-14,1.8520825106911557e-13,4.827373978821539e-13,2.3242152528782e-09,1.0397346569041933e-08,1.937345607856941e-08,6.265154881961536e-09,1.8096237327284556e-08,4.3142456083489665e-08,1.9911299817444374e-08,1.2372935940390863e-07,4.711726520201827e-07,0.0,0.0,0.0,4.273617373558614e-07,4.7349427827283497e-07,5.399780034926873e-07,2.9766091381936155e-08,3.1537784136432475e-08,3.3928596914832226e-08 +1538,Nitrite,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,3.0499829665013445e-08,1.1448381498193146e-07,1.7456604468374734e-07,8.425955806415945e-08,2.2356256155598832e-07,3.6214872944180375e-07,5.353423362856184e-08,1.4112271678944647e-07,2.2525852797386363e-07,7.049972794795353e-08,1.559772678275336e-07,2.289156344668107e-07,7.004085541922128e-08,1.5547332080310222e-07,2.2755959339052236e-07,1.400474611491149e-07,3.2311523722568037e-07,6.008424537583424e-07,1.652164355309556e-07,3.5538337925526643e-07,6.450284830490752e-07,1.4567670240267874e-07,1.5390818782633498e-07,1.6532859176846308e-07,4.2929940947848435e-07,4.546778541913003e-07,4.893906735442863e-07,4.2316568444925247e-07,4.480529765100702e-07,4.820661899634936e-07 +1539,Nitrite,"('water', 'ocean')",emission,kilogram,biosphere3,1.3205132117531382e-07,3.0902965493892345e-07,1.781010177037971e-07,2.0941814628649057e-08,4.883948054452734e-08,3.38464454310766e-08,2.6318748407423875e-08,6.066836707658781e-08,3.444146956019449e-08,2.6180346863570857e-08,6.005608212715905e-08,3.312258004401128e-08,1.0509335244722874e-08,2.7079788606902892e-08,3.183175487898974e-08,3.09733478499736e-08,7.078977167499767e-08,3.053550511669038e-08,3.3700334005112523e-08,7.572725287617549e-08,2.8821469857331234e-08,1.500035219337176e-07,1.5654464187478802e-07,1.654792239499069e-07,2.015809306387815e-08,2.0960128699530036e-08,2.204223908475106e-08,2.242129620954699e-08,2.3352639418899715e-08,2.4618632464631786e-08 +1540,Nitrite,"('water', 'surface water')",emission,kilogram,biosphere3,6.584086612426429e-08,1.8259887760815717e-06,4.849555051130792e-06,1.2895680576699886e-07,1.5267449125479793e-06,3.7576432744216436e-06,9.819171965730316e-08,1.4856691371306294e-06,3.5467436454797126e-06,1.3037893198998947e-07,1.5322225850859184e-06,3.579662452562868e-06,1.390513274734283e-07,9.951368402772115e-07,2.5221212960116676e-06,9.9437374484464e-08,9.276038634300909e-07,2.418459001742833e-06,1.7961936678856853e-07,4.655748929042905e-06,7.448502499123036e-06,5.12305559152041e-06,5.312889245218492e-06,5.570649821712175e-06,3.0439143456946835e-06,3.164790742378128e-06,3.3303768181879675e-06,2.4516294632949777e-06,2.535298998488205e-06,2.649907855226792e-06 +1541,Nitrite,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.8326446269950044e-09,4.254412281269266e-09,5.200296948280454e-09,1.8507129107622989e-09,4.271209951519179e-09,5.1185705940521626e-09,1.8313094685913328e-09,4.225298125799506e-09,5.0559190833290174e-09,1.822366365083802e-09,4.2307988154148345e-09,5.137576884471919e-09,1.810932118852483e-09,4.196182572492333e-09,5.0744467877862926e-09,3.76447546939561e-09,2.0674290590847836e-08,7.060779773384343e-08,0.0,0.0,0.0,6.366480093682544e-08,7.071368463275277e-08,8.089438096091319e-08,1.3586744805495219e-09,1.4216828358024245e-09,1.507834621889279e-09 +1542,Nitrobenzene,"('water', 'surface water')",emission,kilogram,biosphere3,3.460855727253061e-11,5.4426309583590076e-11,7.023491056088164e-09,1.9217208703933372e-10,3.943950915137583e-10,9.463256557243899e-09,1.8537388717709363e-10,3.9196556202209844e-10,8.271417850225157e-09,2.8078123252100077e-10,6.043228631812062e-10,7.656119312533511e-09,6.512424138116731e-11,1.1905025541070682e-10,9.018800387605217e-09,1.3298648607462699e-09,2.6376581078894894e-09,1.6823140036467157e-08,2.3275408569233076e-09,3.767647655748333e-09,2.5447469268870902e-08,7.447073077382723e-09,7.77401258084369e-09,8.216733667944162e-09,1.812928958372414e-08,1.9216932903396277e-08,2.0722466606556834e-08,1.3509366624270981e-08,1.4172846956712973e-08,1.5075283077602126e-08 +1543,Nitrobenzene,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0172911639798967e-13,8.905915715424725e-13,5.300369621638381e-13,0.0,0.0,0.0,3.382928674614448e-13,3.585112685917256e-13,3.866509356449792e-13,0.0,0.0,0.0 +1544,Nitrogen,"('water', 'ocean')",emission,kilogram,biosphere3,1.8925218942610427e-07,4.616836337174936e-07,3.352384024434631e-07,2.0890033400576667e-07,4.5916016908602395e-07,7.93198787854232e-08,1.1115964596538494e-07,2.476463157999118e-07,6.858784936449963e-08,1.1342500421462686e-07,2.5308411545594173e-07,6.910542549501919e-08,7.751534120302632e-08,1.7299452985801143e-07,4.465563749995878e-08,5.54106400236786e-08,1.2537358282281113e-07,4.3709141546079573e-08,8.80887645125273e-08,2.011251090473024e-07,6.37271238348543e-08,2.995435502110841e-07,3.324565141956057e-07,3.799543418395823e-07,5.355626111773653e-08,5.7445480668515536e-08,6.292754948688718e-08,3.9987003473881844e-08,4.331160774848971e-08,4.8042247889382044e-08 +1545,Nitrogen,"('water', 'surface water')",emission,kilogram,biosphere3,1.1324864377139221e-05,6.0705356927166136e-05,0.00019058414775387897,1.6175222866703696e-05,6.362564348396753e-05,0.00015594330602578226,9.506937966292432e-06,5.835413748207023e-05,0.00016212817417472612,1.0303677315858049e-05,6.02424895283953e-05,0.0001638893182128514,7.592899700719979e-06,5.3800319662076065e-05,0.00011107401152622725,7.058706770074219e-06,5.015278791922446e-05,0.00010543000583517219,7.792736571331146e-06,5.3038565516926124e-05,0.00010842339075601933,0.0001609488626946516,0.0001688483742536957,0.0001796142434092421,0.00010232877489068467,0.00010793072574149177,0.00011560441976408279,0.00010343484423320832,0.00010913816526086583,0.00011695365183261851 +1546,Nitrogen,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,5.1186010647764114e-08,1.669655373373727e-07,2.6265013742784037e-07,4.854201818176888e-08,1.6599070097352519e-07,2.708977508819689e-07,4.1191962776701363e-08,1.3386092526980477e-07,2.0477950650686684e-07,3.899367826995218e-08,1.2506104961999183e-07,1.8838217781952082e-07,1.7676720032118985e-09,2.5016845374201288e-08,3.790445603943942e-08,1.7648302709582973e-07,1.5029945263431128e-06,5.913441981498769e-06,0.0,0.0,0.0,5.5963439418638814e-06,6.223609371310284e-06,7.1300033819723835e-06,8.440647671580198e-09,9.275081415937307e-09,1.046104674450231e-08 +1547,"Nitrogen, organic bound","('water', 'ground-, long-term')",emission,kilogram,biosphere3,9.153532039409195e-07,3.4364008549932505e-06,5.23738219909861e-06,2.5309146242074327e-06,6.714692564452239e-06,1.0871969775004171e-05,1.6069395336518113e-06,4.2375538284534495e-06,6.761291865103412e-06,2.1167436974032597e-06,4.683348357037988e-06,6.871130569471208e-06,2.102448126487563e-06,4.667058805990054e-06,6.83002576890462e-06,4.205162000190902e-06,9.702432981221079e-06,1.8039919055353673e-05,4.961365868997156e-06,1.067238311567364e-05,1.936683931269647e-05,4.368111719449019e-06,4.615118521183084e-06,4.957838422146577e-06,1.2887014568228734e-05,1.3648910520288278e-05,1.4691042401105993e-05,1.2702869094102947e-05,1.3450016898918678e-05,1.4471141646681263e-05 +1548,"Nitrogen, organic bound","('water', 'ocean')",emission,kilogram,biosphere3,9.35726602087043e-07,6.513818501802398e-06,1.914531222483359e-05,5.306350540542473e-07,5.547364465832232e-06,2.1973901838123183e-05,4.454510137202763e-07,5.3945975134063435e-06,2.172650853923222e-05,4.2635401336393914e-07,5.308559325310096e-06,2.1593621684570066e-05,4.133365901331626e-07,5.109002170050945e-06,2.0993310243354397e-05,4.606619937607508e-07,5.210756774508976e-06,2.120542335451706e-05,0.0,0.0,0.0,1.8217965820665908e-05,1.9332110331569063e-05,2.092375451176031e-05,0.0,0.0,0.0,2.0384014987696624e-05,2.2832954463439024e-05,2.637949269110099e-05 +1549,"Nitrogen, organic bound","('water', 'surface water')",emission,kilogram,biosphere3,0.00034802805208662257,0.00035348881737367797,0.00036488118438596554,0.0004169522408668961,0.0004236414992471403,0.0004405060308692968,0.0003645727458959692,0.0003707373190457057,0.00038639138817871626,0.0003648605862938296,0.0003714979982767134,0.0003879928352006004,0.0003648532681578619,0.00037184074769650895,0.00038912393343234,0.0003650239634145833,0.00037206385854804066,0.0003890682612848522,0.00044352490334174824,0.000449913488637033,0.0004617955288110831,1.656017135287882e-05,1.7500260104248136e-05,1.8822681503707305e-05,1.7376417674115693e-05,1.828880144280347e-05,1.953301780577352e-05,2.316736970526199e-05,2.51871372159625e-05,2.8062685136603572e-05 +1550,"Nitrogen, organic bound","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.768048092750237e-13,6.233599375528844e-13,1.328740758960282e-12,1.7277699377291617e-14,3.9701168769900976e-14,1.2445822085210044e-12,4.04102741630452e-09,9.053703564781023e-09,1.772452920055541e-08,0.0,0.0,0.0,1.1863545269206167e-08,1.3630637562487801e-08,1.589564196297524e-08,1.3182593773951614e-12,1.3746439309931898e-12,1.4508280237319873e-12 +1551,o-Dichlorobenzene,"('water', 'surface water')",emission,kilogram,biosphere3,1.5568009632249283e-10,3.716476402221365e-09,1.2505382101463841e-08,2.3618628150532854e-08,1.523675608369724e-05,5.0711064824802017e-05,1.9060837512032878e-08,8.247107020592357e-06,2.7370085917676945e-05,1.9987038392630027e-08,8.249177807950452e-06,2.736291416874945e-05,1.3586855544364647e-08,1.3737001208631851e-06,4.4936266354384656e-06,1.4151747750961002e-08,3.527396879522428e-07,1.1119822712332543e-06,1.934979526145035e-08,3.611223110870784e-07,1.1329984713703993e-06,1.2861200748156334e-08,1.3397845474305233e-08,1.4117167031005873e-08,1.15719351420274e-06,1.2019460314934017e-06,1.2623282060983602e-06,1.1411632273740052e-06,1.1847878379538954e-06,1.243646418606997e-06 +1552,"Oils, unspecified","('water', 'ocean')",emission,kilogram,biosphere3,0.000332069061384993,0.0010812079173761113,0.00231442189740081,0.00032471452202007016,0.0010041548069628448,0.0016230411660252662,0.0001833511260427944,0.0007013018140711458,0.0015725827575018365,0.00018606197588045813,0.0007023131343951891,0.0015624949966371367,0.0001363271917530038,0.0005813421963745093,0.001478363083288683,0.00011317467285896696,0.0005295437052131156,0.0014459447968420893,0.00015107155424632978,0.0005738773558515869,0.001331594756480815,0.0021026623658867826,0.0023426908928205685,0.002689350317174764,0.0012642237543184526,0.0014034294836036045,0.0016044679157984916,0.0013916493868500056,0.0015371574232320238,0.001746847673202511 +1553,"Oils, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,0.0005355112292421153,0.0033320808536131986,0.012749600391006735,0.00035508917163920095,0.0026950347757697356,0.010180800938768882,0.00028006909217981665,0.002696101490205268,0.010662057652003839,0.00027739886508451877,0.0026468831039627907,0.010567380162673702,0.0002485374419991189,0.0024472376237127708,0.009827339722075857,0.00029743838092583945,0.002553986309715204,0.009955360116638707,0.00026918033275879875,0.0022857667287467538,0.009144391436538618,0.011731622695058102,0.013036582734320621,0.01492183584108819,0.008717332269745064,0.009683351268111469,0.011078605303457783,0.009577222304082256,0.0106143995268427,0.012110979127298352 +1554,"Oils, unspecified","('water',)",emission,kilogram,biosphere3,8.029901046614049e-07,6.0980666946615156e-06,0.00015717333175794575,6.682157023495007e-06,1.823480781584925e-05,0.00018335477369396674,5.116324220672589e-06,1.483777425940933e-05,0.00017728530287813675,4.954015816674638e-06,1.4681019668426527e-05,0.0001771802958312986,5.029439690093445e-06,1.6400692943876604e-05,0.0001826672796541048,6.7317749054668714e-06,2.0897015246025555e-05,0.00018901289056859252,8.976878611635834e-06,2.038535965230174e-05,0.00019240229162706575,0.00016229522757960416,0.00016930253357135537,0.00017878003485990873,0.00018634243840780278,0.00019536857591486472,0.00020765548506430847,0.00018300020393028572,0.0001916594423675984,0.00020342904560288213 +1555,o-Xylene,"('water',)",emission,kilogram,biosphere3,5.476028788697694e-13,2.954359789689437e-12,7.731725005285373e-12,1.692819848334971e-09,3.266938511082044e-09,7.392907235132263e-09,1.182641712329907e-09,2.202477499003114e-09,5.331699536467554e-09,9.959650023631575e-10,2.0257280812900638e-09,5.15079703724474e-09,1.0252537900411598e-09,3.548736723637054e-09,1.0658127519774058e-08,9.513023238953383e-10,3.3864854557866567e-09,1.0673601051115142e-08,1.2030674185402253e-09,3.5730818168708403e-09,1.0569587903493576e-08,7.264713165464872e-12,7.612561801782326e-12,8.084475010939844e-12,7.853891249370239e-09,8.381649001356314e-09,9.078857270331269e-09,8.279624967787985e-09,8.811936471052306e-09,9.516396165468109e-09 +1556,"PAH, polycyclic aromatic hydrocarbons","('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.2859735096423622e-10,1.1031034175397527e-09,2.633000172439316e-09,1.9895551841237168e-10,1.0600081938615737e-09,2.52720962467303e-09,1.7029370795518024e-10,7.533053473331965e-10,1.78583976733431e-09,1.7906442741137044e-10,7.549608776464974e-10,1.7630955317804628e-09,1.7495078123565154e-10,7.056128550257637e-10,1.691675038899511e-09,2.1532656144988e-10,7.65016545430643e-10,1.7496071839338799e-09,0.0,0.0,0.0,1.5281887018551641e-09,1.5957213848807677e-09,1.6876852201036323e-09,1.5021431566509109e-09,1.5685927774391446e-09,1.6591562335094672e-09 +1557,"PAH, polycyclic aromatic hydrocarbons","('water', 'ocean')",emission,kilogram,biosphere3,2.468876873985383e-08,1.547483961589992e-07,5.902517801727036e-07,8.38022875373612e-09,6.388305117325174e-08,2.402138315544456e-07,6.201038070800556e-09,5.975579282695626e-08,2.3511961073889735e-07,6.1165051409759415e-09,5.8608501641749035e-08,2.3292753865384718e-07,6.172247247095402e-09,5.735230299327867e-08,2.2640938409811714e-07,7.13294967429906e-09,5.944890319556642e-08,2.2928472525787197e-07,6.059444225100776e-09,4.7939923131072264e-08,1.8726112772182187e-07,5.433657020199891e-07,6.037236304664789e-07,6.909254774974775e-07,1.78535936614744e-07,1.9828315454257048e-07,2.2680548211115275e-07,2.2066334854065908e-07,2.4454571192277697e-07,2.7901037872825087e-07 +1558,"PAH, polycyclic aromatic hydrocarbons","('water', 'surface water')",emission,kilogram,biosphere3,3.4716492181183394e-08,1.985232219389504e-07,7.438026367609401e-07,3.489023219780491e-08,2.4360234294014184e-07,9.056174403373824e-07,2.7666359773306293e-08,2.3771930719099197e-07,9.229457776604453e-07,2.7585089545536586e-08,2.3388409254591845e-07,9.154350644539848e-07,2.557058277128306e-08,2.210652200752735e-07,8.719491912715712e-07,3.045767990468815e-08,2.3154485836245653e-07,8.846430383941211e-07,2.738607792113906e-08,2.0423624443301652e-07,8.016387953421285e-07,6.806388792797708e-07,7.540761218876541e-07,8.600553430111414e-07,7.570548280518208e-07,8.388756125699889e-07,9.569252160097435e-07,8.437827196413862e-07,9.330913048752493e-07,1.0618346601496414e-06 +1559,"PAH, polycyclic aromatic hydrocarbons","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,9.702884291809628e-10,1.6169346508087985e-09,3.4680224086143624e-09,1.143404751939248e-09,1.9841393494510423e-09,4.3139693464585014e-09,1.1109248766587606e-09,1.928369659914903e-09,4.211615441618238e-09,1.1188426147760419e-09,2.036079469871061e-09,4.437925146797517e-09,1.0376722549477716e-09,1.8824073744570113e-09,4.065957360054176e-09,1.214785052954489e-09,2.190026505382002e-09,5.0333560962673596e-09,0.0,0.0,0.0,3.6132797063196802e-09,3.955690750391146e-09,4.442525278449117e-09,2.8749759188941984e-09,3.13455945811226e-09,3.502040754278473e-09 +1560,Phenol,"('water', 'ocean')",emission,kilogram,biosphere3,3.961215579772923e-07,2.444090392245373e-06,9.33914795237176e-06,1.2537061380757933e-07,9.193300444870687e-07,3.4773498928443596e-06,9.215915879935577e-08,8.563862627802926e-07,3.4004533454607177e-06,9.092239153255295e-08,8.389528187653756e-07,3.3668838703467283e-06,9.078887090758674e-08,8.150971500631719e-07,3.2502305555847596e-06,1.0529119784363272e-07,8.468972704094124e-07,3.292823527385174e-06,9.005843963869834e-08,7.138218698733681e-07,2.7901785765072908e-06,8.585626664344452e-06,9.539388649197304e-06,1.0917164117415769e-05,2.660164265289277e-06,2.9543988082887204e-06,3.379382877904649e-06,3.1650473221124946e-06,3.5081817312065164e-06,4.003195983179528e-06 +1561,Phenol,"('water', 'surface water')",emission,kilogram,biosphere3,5.872890131607571e-07,3.2926997396846748e-06,1.226767640577725e-05,5.575885273686404e-07,3.967039930587817e-06,1.4798730911277093e-05,4.332819358250238e-07,3.891532024752316e-06,1.5178823547278076e-05,4.3013256388377086e-07,3.8231486813957285e-06,1.505175885494234e-05,3.950067665348393e-07,3.580484385049041e-06,1.4236676437302616e-05,6.727062350832158e-07,4.213226443811701e-06,1.4938289083518723e-05,7.009018878473771e-07,3.952881785969119e-06,1.37409824408453e-05,1.1196438390238634e-05,1.2453127486036141e-05,1.4262145937050776e-05,1.2748923430659188e-05,1.4161632930553306e-05,1.619473623767407e-05,1.405509373593229e-05,1.558050309042994e-05,1.7774753915829847e-05 +1562,Phenol,"('water',)",emission,kilogram,biosphere3,3.975469474475749e-09,2.0505088782666618e-08,1.1357358035767803e-07,3.9408523421397074e-08,8.707385361410624e-08,2.5897520574785267e-07,2.8502185856647144e-08,6.480743519918102e-08,2.1617765782538217e-07,2.4968003945740264e-08,6.197462140276563e-08,2.1372894804008212e-07,2.519992542603057e-08,9.222734595056289e-08,3.265966403217874e-07,2.371881329210429e-08,8.918296059358565e-08,3.2789466530040435e-07,3.246027740485493e-08,1.1897949584331538e-07,4.238495820332603e-07,2.837183290562982e-08,1.1647793550673088e-07,2.2631987036455725e-07,2.8624746922497374e-07,3.87034516468067e-07,5.157184269290447e-07,1.9823888007345842e-07,2.926684153394142e-07,4.1122531824899637e-07 +1563,Phosphate,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.009487526809242058,0.014930766192110992,0.019595323012840036,0.010679862688169608,0.015339082814479791,0.018755910470094755,0.010022727925052672,0.01510995863851318,0.01884374104369577,0.010051284872886724,0.015149991959959166,0.018895258913177074,0.010444766469878955,0.016137320643114555,0.0193009015592813,0.010387716507615632,0.01599181437028921,0.020067395065012383,0.0077872544841992054,0.011096658267404694,0.018459721487974253,0.008252229248766618,0.008617272994675518,0.009114781532022324,0.006462956292668808,0.006773699865138498,0.007192696307661682,0.007127955949608738,0.007465320874855381,0.007922240722873713 +1564,Phosphate,"('water', 'ocean')",emission,kilogram,biosphere3,6.39372586666096e-06,7.474301791754621e-06,1.9901711604200117e-05,1.939721650201433e-06,2.2093005265618016e-06,3.356685155777026e-06,1.8386359353573698e-06,2.113153089676776e-06,3.446567314064093e-06,1.8362617145027076e-06,2.1199479978789353e-06,3.6075689451096534e-06,1.8327168208949035e-06,2.1416201815222744e-06,3.6719501217103887e-06,1.8248105706785258e-06,2.125919067320798e-06,3.6319317211156463e-06,2.1594124932117806e-06,2.5012299692941623e-06,4.176675809536583e-06,1.4242585747912315e-05,1.4964361956621857e-05,1.5955691216448203e-05,1.959817136990725e-06,2.1814745247547785e-06,2.492594109909981e-06,1.7924565609924905e-06,1.9817838858246583e-06,2.2513555408927548e-06 +1565,Phosphate,"('water', 'surface water')",emission,kilogram,biosphere3,4.269473325412555e-07,1.0093330621027233e-05,2.967529567103916e-05,6.55228713335399e-07,8.294913038868324e-06,2.2194885294414794e-05,7.254350338134745e-07,8.608504815651584e-06,2.160725006503334e-05,8.986122910987873e-07,9.000411651373845e-06,2.8412710893069307e-05,8.645189286393293e-07,7.741581768349318e-06,2.2582472070345293e-05,7.624401105691822e-07,7.4607099855298755e-06,2.2184268145294675e-05,5.754573477768107e-06,3.4396613120914676e-05,5.224919923207606e-05,3.072701739032746e-05,3.203867257283724e-05,3.380359240990413e-05,3.078722111924876e-05,3.213920202955125e-05,3.398949745562522e-05,2.1970830677985458e-05,2.2779332026787093e-05,2.387943378890211e-05 +1566,Phosphate,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,5.344023808125424e-12,2.0460295480848425e-11,3.097045601365231e-11,4.791194545279109e-12,1.9498833632379028e-11,2.90356826628193e-11,4.8189487034627475e-12,1.959697031535139e-11,2.887365323043362e-11,4.1729425042059396e-12,1.8944075026156092e-11,3.082709939521513e-11,4.190017387380707e-12,1.8859300311805932e-11,3.048940866481254e-11,5.601960386407275e-12,2.1158041332399018e-11,3.486078400101954e-11,0.0,0.0,0.0,1.807759898218455e-11,1.893904159418155e-11,2.0105205476579015e-11,1.4888255232703426e-11,1.5594899731728945e-11,1.655088093392304e-11 +1567,Phosphorus,"('water', 'ground-')",emission,kilogram,biosphere3,8.187473494217925e-11,4.110332559367761e-10,3.1720943187479055e-07,1.145579710220433e-08,2.6471641148477396e-08,1.1826852156221586e-06,4.7023439866652084e-09,1.1211091658940023e-08,6.269828248214638e-07,4.97825188993099e-09,1.1715296714587446e-08,4.821913428081467e-07,1.4332426129910755e-09,3.6656623276070308e-09,6.377306705753646e-07,1.1525775267964806e-09,3.0170427362299064e-09,6.328565215583613e-07,1.2184122066986327e-09,3.09960548825178e-09,5.899214193585643e-07,3.3880663858637844e-07,3.532171368691562e-07,3.7267474905153066e-07,6.293735337924952e-07,6.561373486412912e-07,6.922750009682932e-07,6.753316912307187e-07,7.040450540711141e-07,7.428147462706501e-07 +1568,Phosphorus,"('water', 'ocean')",emission,kilogram,biosphere3,2.7378216856959242e-08,1.8231495297881866e-07,6.797527771116764e-07,2.294952530665245e-08,1.7670300835767128e-07,6.654952463524712e-07,1.7603812147804585e-08,1.6680717645361134e-07,6.5304692304457e-07,1.6819989405728495e-08,1.6208116643425352e-07,6.445004861895624e-07,1.5154610310060848e-08,1.530428299061581e-07,6.172781672879214e-07,1.806050279042241e-08,1.5927849029371477e-07,6.2396553161165e-07,6.461807260025292e-10,1.452017989918912e-09,5.52631861572105e-10,6.353218588007652e-07,6.994496721818879e-07,7.91722054921551e-07,3.865175700883218e-10,4.018960517747103e-10,4.2264477415316224e-10,6.015149771251878e-07,6.666433062068742e-07,7.60641816950512e-07 +1569,Phosphorus,"('water', 'surface water')",emission,kilogram,biosphere3,2.6795222199547486e-07,1.0841771580833927e-05,2.421361409563496e-05,3.538663429673799e-07,9.924308968908414e-06,3.1200339312712076e-05,2.5695427957814683e-07,1.214016552747081e-05,3.042390114977658e-05,2.7819185620447364e-07,1.2183516138987881e-05,3.0315217978733767e-05,1.9757698207593405e-07,1.195345777773601e-05,3.091831146393938e-05,2.0406853151998632e-07,1.1288401609584634e-05,2.9384329953686073e-05,3.0673912534633765e-07,1.1303975792452477e-05,3.525419135319401e-05,2.274428832654435e-05,2.409013584836368e-05,2.5874929344912946e-05,3.487213922488645e-05,3.657880457572389e-05,3.886484397023263e-05,2.8632211141603045e-05,3.008885189835494e-05,3.203862642839093e-05 +1570,Phosphorus,"('water',)",emission,kilogram,biosphere3,3.973457090180123e-09,2.0506051201566255e-08,1.135830933380575e-07,1.112542229376735e-08,4.013462464453057e-08,1.3965960325997975e-07,1.027389622890801e-08,3.9369042849455945e-08,1.3968269021261417e-07,9.645829838390908e-09,3.625236869032992e-08,1.329386231967042e-07,9.001743561171185e-09,3.447969267698682e-08,1.3165183936363073e-07,4.695559184620271e-09,2.4466870838178708e-08,1.1703870207743388e-07,2.5848079061383194e-08,1.8966055719100765e-07,7.636586701681172e-07,2.838511478776575e-08,1.1649155093311442e-07,2.2633390842151285e-07,6.452306482125491e-07,7.964013570711507e-07,9.98531077177866e-07,3.160478146346797e-08,1.1495716556542094e-07,2.188993591642585e-07 +1571,Polonium-210,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,4.90425233270158e-07,5.723909119192457e-07,7.715979106890475e-07,8.958647053079057e-07,1.0203703016463403e-06,1.5502924134338885e-06,8.491780458727833e-07,9.75964396768102e-07,1.5918046858086582e-06,8.480815067563023e-07,9.791026400483996e-07,1.6661636427748023e-06,8.46444289857902e-07,9.89111985689399e-07,1.6958982306513047e-06,8.427927706999856e-07,9.81860391373132e-07,1.677415643919829e-06,9.973294036698824e-07,1.155198555937669e-06,1.92900689785069e-06,2.8619120940937906e-07,3.0720151739132816e-07,3.3684836911024045e-07,9.051458500626061e-07,1.0075188015277661e-06,1.1512100653843303e-06,8.278500003578134e-07,9.152912412367996e-07,1.039793502311749e-06 +1572,Polonium-210,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.0005783954067522252,0.0006761475102620787,0.0018003678631121304,0.00017547481462882117,0.0001998619752292133,0.00030365888094591707,0.00016633020511462682,0.00019116410168234734,0.00031178997291328187,0.00016611542380108121,0.0001917787956807706,0.00032635481078496336,0.0001657947388473521,0.00019373934626610274,0.00033217898408663816,0.0001650795084627376,0.00019231896193824282,0.00032855876274876357,0.00019534890836530558,0.00022627105550278895,0.0003778384457015423,0.0012884265522472307,0.0013537205689845896,0.0014433991542623912,0.0001772927310489802,0.00019734472614846418,0.00022548982187398244,0.00016215263810847488,0.0001792799291409692,0.0002036664364479971 +1573,Polonium-210,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.0003283868595614423,0.0007308878409116628,0.00017384192546305544,0.00029785832369500783,0.0006476188650407778,0.00013659240398405405,0.00035296073753888937,0.0007685876843098562,0.0007597321147636611,0.00045118467201653317,0.0009907248903484353,0.0009763467303016328,0.0005324776880693269,0.0011682059973752244,0.0009733494962849461,0.0003825724954070238,0.0008424865452255854,0.0009792518484158014,0.0001461400083652107,0.00032604443886638247,0.0009493208231907942,0.00013716682246032937,0.00014323722923694981,0.0001515368577469614,0.00015830144189498362,0.00016460047909345245,0.00017310413985165441,0.00017617792994110474,0.0001834120109286983,0.0001932359911042815 +1574,"Potassium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.03609701568375324,0.049729584987853605,0.062007131380803375,0.04186923673544131,0.05429650703290699,0.0641855412224253,0.03902753567115384,0.05326467134061675,0.06662305147174888,0.03918193865377336,0.05358234501445381,0.06716972233580423,0.04028893171556682,0.05636807325234469,0.06834178404201395,0.03991391564657484,0.05543367772309976,0.07037704674741369,0.008165898382913846,0.01453238755305799,0.033864570545167505,0.019963580351021287,0.020847615059037785,0.022050296103293253,0.011385725681034067,0.011940890555866383,0.012687069280806536,0.02002857568736338,0.02098454149115738,0.022279138889898627 +1575,"Potassium, ion","('water', 'ocean')",emission,kilogram,biosphere3,1.3414565575384326e-05,8.302620315724797e-05,0.00031452118425089845,5.223717855312393e-06,2.2437224494150932e-05,7.553543472688824e-05,3.908774388567843e-06,1.9694483243013972e-05,7.495115476237652e-05,4.5279506684976885e-06,2.0956706670661218e-05,7.419215922385956e-05,4.667538753792908e-06,1.9780906729084086e-05,6.602707135655406e-05,3.29661187475816e-06,1.6810041467572533e-05,6.657501057881177e-05,3.872439719335461e-06,1.3370779715953643e-05,6.311021841546433e-05,0.0002895281636939557,0.0003216393694040268,0.00036802893014819003,3.834571699035414e-05,4.230973705111002e-05,4.8007911457923096e-05,5.376832230026344e-05,5.9494208955902206e-05,6.773673886561346e-05 +1576,"Potassium, ion","('water', 'surface water')",emission,kilogram,biosphere3,9.92049366438011e-05,0.00034198735930147754,0.001608492479427692,4.7482278302209806e-05,0.0002609005797856675,0.0009177888184760917,0.0005177149352993063,0.0012800500857951887,0.0035489533682040854,0.0005187180878700781,0.0012812349682301248,0.0035523669157657696,0.000597535853387361,0.001441477593279086,0.003492854200990904,0.0004490913439330285,0.0011347788283039663,0.003604427421522086,0.00022463283332958963,0.0006176979596322759,0.0034020299768234186,0.0007453622375950576,0.0008199479698959794,0.0009266147202952928,0.0011239721911836505,0.0012199461326120756,0.0013561018149283461,0.0011941644313637606,0.0012952466677419272,0.001438938274784942 +1577,"Potassium, ion","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,3.3525272320757636e-12,7.682554814734038e-12,9.289241967088165e-12,7.329909473372098e-12,1.6754800199517556e-11,2.0002129468201662e-11,3.154910103421591e-12,7.30302422344354e-12,9.25681114848989e-12,3.2143687622437253e-12,7.48243938300663e-12,9.41392630396308e-12,3.1792758407576523e-12,7.364967543536226e-12,9.172736860294121e-12,3.1752220073080484e-12,7.283577764316383e-12,9.075549967598131e-12,0.0,0.0,0.0,2.8838074959202965e-12,3.033449251165898e-12,3.2393054095535754e-12,3.026883357086413e-12,3.188271967681e-12,3.4113305840926703e-12 +1578,Potassium-40,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,3.895434708607479e-08,4.5464859329181834e-08,6.12878187625745e-08,7.115725347190917e-08,8.104655509689496e-08,1.231375112740902e-07,6.744899882541773e-08,7.751945752979441e-08,1.264347717669453e-07,6.736190229027231e-08,7.776872370929274e-08,1.3234099746723578e-07,6.723186049163483e-08,7.856375173355926e-08,1.347027732995025e-07,6.694182552767504e-08,7.798776793173946e-08,1.3323472778568868e-07,7.921644947203929e-08,9.175577066712269e-08,1.532182615958756e-07,2.273209234746671e-08,2.440093557423681e-08,2.675577719430431e-08,7.189444154221121e-08,8.002577879884451e-08,9.143897056998965e-08,6.57549426427074e-08,7.270027546304448e-08,8.258931216190047e-08 +1579,Potassium-40,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,4.581090572040449e-05,5.355320854321504e-05,0.0001425953275317846,1.3898005259079745e-05,1.5829523961588486e-05,2.4050475467191123e-05,1.3173731343245266e-05,1.5140632552560923e-05,2.469447648330479e-05,1.3156720173685444e-05,1.5189317718238342e-05,2.5848044838774302e-05,1.3131321194447045e-05,1.5344597793059978e-05,2.630933263865709e-05,1.3074673317864589e-05,1.5232100117012014e-05,2.6022602857617904e-05,1.5472078779869872e-05,1.7921183310606484e-05,2.9925666065262368e-05,0.00010204781478251,0.00010721932550129774,0.00011432217792447704,1.4041988382930721e-05,1.563015209712287e-05,1.7859307826613513e-05,1.2842858514882806e-05,1.4199379001011002e-05,1.613084596121726e-05 +1580,Potassium-40,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00041223032969947093,0.0009174975394112894,0.00021822710668204713,0.0003739072548628223,0.0008129683565282828,0.00017146705953849606,0.00044307838363623407,0.0009648228614807773,0.0009537062952228402,0.0005663807813153552,0.0012436759763051993,0.0012256267959444257,0.0006684294651540312,0.0014664714175095604,0.0012218643105379112,0.0004802505986960019,0.0010575895355661512,0.0012292736464900684,0.00018345235832011267,0.0004092898440084335,0.001191700655863457,0.0001721881457218706,0.0001798084438929282,0.00019022712690387384,0.0001987188393235917,0.00020662614165734719,0.0002173009502733566,0.00022115953798810864,0.00023024061874276936,0.0002425728496729529 +1581,Propanal,"('water', 'surface water')",emission,kilogram,biosphere3,6.07036847068029e-12,8.401726769333127e-12,4.1223824008724886e-11,1.39393604285972e-11,2.3957216728687622e-11,3.309101006349141e-10,1.1443840367719735e-11,1.9621096360922885e-11,2.346662323256256e-10,1.3645786782370975e-11,2.4609659369977354e-11,2.335516371257562e-10,7.182067303047533e-12,1.002012017962604e-11,2.899185404454352e-10,7.0861661786209986e-12,9.703505218666982e-12,2.8692113235281764e-10,1.2904348817054687e-11,1.736402378402081e-11,4.746395111311035e-10,3.3961115106019024e-11,3.730684818721146e-11,4.206205500632633e-11,4.890891564656012e-10,5.127292476322986e-10,5.450017375898427e-10,2.9684764464882225e-10,3.1135620907508817e-10,3.311815738972594e-10 +1582,Propanol,"('water', 'surface water')",emission,kilogram,biosphere3,5.753749002555097e-12,8.154699803723666e-12,1.7063502901705867e-10,2.034511463038966e-11,3.912996980351915e-11,8.072733902049414e-10,1.4904030937881598e-11,2.822685440715656e-11,5.113194319641775e-10,1.8802677785730825e-11,3.696344041941972e-11,4.170782040160623e-10,8.435338210276954e-12,1.3532229628619545e-11,6.534969685817859e-10,7.951080294948633e-12,1.232542068830317e-11,6.47242527233466e-10,1.6187177678951226e-11,2.20767739716917e-11,7.110852332560598e-10,1.7271478250370354e-10,1.8181041296655152e-10,1.9431064611650885e-10,7.372879364431089e-10,7.721475900547787e-10,8.196518817196256e-10,6.816565619126907e-10,7.123865341569231e-10,7.540978429992232e-10 +1583,Propene,"('water', 'surface water')",emission,kilogram,biosphere3,3.30404843304545e-07,1.5779951766088757e-06,8.31512266746897e-06,3.0782056405879757e-06,4.3811255711551154e-06,1.1244371537235882e-05,2.6952889717507043e-06,3.9900045160302905e-06,1.08313534942517e-05,2.6988736701812444e-06,3.996151986245716e-06,1.0845176731667143e-05,2.7092324285669456e-06,3.982589693216216e-06,1.0539609569056608e-05,2.829298081198282e-06,4.482406807686192e-06,1.2986787299847597e-05,3.45451797842976e-06,5.195704530100112e-06,1.3655921117120818e-05,2.2553580619539754e-06,8.489870562402246e-06,1.626414992268133e-05,3.270296332791702e-06,1.0797575697328969e-05,2.019275657458047e-05,3.2601457126616883e-06,1.0808742075692538e-05,2.0234552814040363e-05 +1584,Propionic acid,"('water', 'surface water')",emission,kilogram,biosphere3,2.9560479477843835e-13,9.953615398916758e-13,5.626120328717769e-10,9.965075444114028e-11,2.2462092658428647e-10,4.670063678746935e-09,8.681674319749718e-11,1.9848839055538004e-10,2.831595321312106e-09,1.5087433134356734e-10,3.412329348861073e-10,2.7044184298450814e-09,1.0509225730567164e-11,2.6210564033930853e-11,4.09349699651217e-09,4.9714690415155515e-11,2.1519375016517315e-10,4.583526753873624e-09,9.806169380206759e-11,2.8461968957026893e-10,3.936701594604937e-09,6.006260614562118e-10,6.261851840028567e-10,6.606978881393609e-10,4.0752111298508625e-09,4.255443058596125e-09,4.499937004652402e-09,4.842433051780749e-09,5.0463554508674065e-09,5.321820216626327e-09 +1585,Propylamine,"('water', 'surface water')",emission,kilogram,biosphere3,2.4285699990366387e-12,3.361276534048335e-12,1.6493008390825004e-11,5.549473244361345e-12,9.541946056127176e-12,1.326782772880677e-10,4.553369196070876e-12,7.832676200363206e-12,9.415177494020998e-11,5.357046754695063e-12,9.640774212781039e-12,7.539996568318878e-11,3.2097952848068142e-12,4.766667527282446e-12,1.1475957511312189e-10,3.073498869658141e-12,4.426144195889985e-12,1.1354850199705074e-10,5.13479012696064e-12,6.88651069193059e-12,1.886594374073791e-10,1.3587460693718837e-11,1.492601427119473e-11,1.6828465043949015e-11,1.9437765339012029e-10,2.037798364659871e-10,2.1661606897866533e-10,1.1728049478947128e-10,1.2302757590559278e-10,1.3088249886886547e-10 +1586,Propylene oxide,"('water', 'surface water')",emission,kilogram,biosphere3,1.1738918207051723e-08,6.891376758753487e-08,1.846243986120139e-07,1.1870943839957151e-08,8.002098501700563e-08,2.397555304972449e-07,9.645910964785526e-09,7.523368313859652e-08,2.2831611937418252e-07,9.695927935148193e-09,7.350388049872311e-08,2.2214027095064493e-07,9.807362395660875e-09,7.51252593724684e-08,2.235592740407264e-07,1.0196318259219936e-08,7.585716435975031e-08,2.272702714936966e-07,9.941349096329262e-09,5.479293065160309e-08,1.3763869619821883e-07,1.7639362761035678e-07,1.8487821050242529e-07,1.965075429078137e-07,1.298933712790694e-07,1.3559048057944879e-07,1.4328141917256855e-07,2.1868147892745905e-07,2.3344310899981504e-07,2.541985724182888e-07 +1587,Protactinium-234,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00013370938373276153,0.0003120582104787668,0.00020669963514631276,9.528341213895331e-05,0.00022189020236427402,0.00014278156266895738,0.00011966489068362216,0.0002741871033582819,0.0001233364474548262,0.00011908353030528772,0.00027147812633208343,0.0001175342647980183,4.2504871302184595e-05,0.0001095781325421377,0.0001271370153862903,0.00014064983826387416,0.00031959022905732863,0.00012251842027689972,0.00015376575151797674,0.00034463009277258964,0.00011545073085188242,0.00015244026697631735,0.0001590637310690521,0.0001681097663880914,7.883689614509532e-05,8.19110349393106e-05,8.606014801010927e-05,8.77851755608199e-05,9.137241698615736e-05,9.624957329230757e-05 +1588,"Radioactive species, alpha emitters","('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.1392103129477263e-06,1.3356454926359157e-06,2.222544307548143e-06,1.7975130535012652e-06,2.0862980509170167e-06,3.6328644126726713e-06,1.7228940935130416e-06,2.0362987446849472e-06,3.50253030473936e-06,1.7234889202936398e-06,2.0484946397026656e-06,3.91369438214457e-06,1.6903269196836713e-06,2.0099444306305487e-06,3.986744914735289e-06,1.7292814493023705e-06,2.094785499898347e-06,3.9532246347522744e-06,2.0505645999422406e-06,2.4641546945339787e-06,4.593273767728368e-06,1.1256492296142776e-06,1.1940002297351018e-06,1.2892571569496712e-06,2.559500559934201e-06,2.812730789918006e-06,3.1678430722966148e-06,2.2659503395397e-06,2.482857216263501e-06,2.790735898175893e-06 +1589,"Radioactive species, Nuclides, unspecified","('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.05088215991810199,0.11907564561825966,0.06891592737862139,0.00807222891881783,0.018825437777917856,0.013372467946913916,0.010141169008525243,0.023376801756324513,0.01327102483389201,0.010087839973818978,0.023140875447922926,0.012762828878671223,0.004049468585441203,0.010434413853066513,0.012265446710030183,0.011934684371914696,0.02727679247956184,0.011765974329605945,0.012985449668769678,0.029179308152515324,0.011105520383152693,0.057818565069700775,0.060339586631061336,0.0637830661637252,0.007767338533206494,0.008076379784186264,0.00849333974491823,0.008639398452060902,0.008998264639190406,0.009486078468391028 +1590,"Radioactive species, Nuclides, unspecified","('water', 'surface water')",emission,kilo Becquerel,biosphere3,6.728433281718722e-05,0.00017446638449738566,0.00020494853225969402,3.905255953904719e-05,0.00010589319376239633,0.00011583135863364165,3.277741658365395e-05,9.236919120651657e-05,0.00011106333194775087,3.226901248603839e-05,8.954861669233697e-05,0.0001052546733162473,7.12660072859469e-05,0.00017742802976674447,0.0001251003109611619,5.7693447844093676e-05,0.000145085562368053,0.00010524168304655923,4.78871043304287e-05,0.00012089304118173273,9.284822251043982e-05,0.00017716044234039027,0.00018483608892146323,0.00019531554681671292,8.737610895542456e-05,9.228880807201315e-05,9.915652779710143e-05,9.972873983311154e-05,0.00010535582006313804,0.0001132296410850297 +1591,Radium-224,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.00015578906242791,0.000970851718801396,0.0037019176921377034,1.9091613165554976e-05,0.00014527768046924163,0.0005464199719946395,1.4062866048685224e-05,0.00013574723864241743,0.0005345418453058089,1.393041372451498e-05,0.00013326508463686374,0.0005297617093110071,1.1105347917790631e-05,0.0001095895283263083,0.0004401242242512643,1.330033878928942e-05,0.00011438154585309469,0.00044586346684109986,1.2030757113456933e-05,0.0001023811757667888,0.0004096226409515694,0.0034047701743995986,0.0037844306697419764,0.00433303153671533,0.0003905889705862577,0.0004338542375750601,0.0004963500885755754,0.0004290255208614929,0.0004754615671412231,0.0005424732245302217 +1592,Radium-224,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00033814383690260625,0.0019764161464283577,0.007428422314154269,0.00031503550059498644,0.002396598307990568,0.009014223539829868,0.0002425819437063153,0.002340764721356241,0.009217596060617178,0.00024027593154198886,0.0022979544787579856,0.009135130691272053,0.0002188890692054007,0.0021577623142080985,0.008664222308859751,0.0002620065714785528,0.0022518908675756804,0.008777154276537764,0.00023707911819636468,0.0020157826270335664,0.008063921208882425,0.006805927182749982,0.007559007486096851,0.00864683959141975,0.007688928595814392,0.008540553464644052,0.009770701356452555,0.008445428514791794,0.009359460952677581,0.010678489645850895 +1593,Radium-226,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,3.615191504438793e-07,4.219405163538641e-07,0.016428979435095914,6.603802910707416e-07,7.521587088288647e-07,0.016429553435274448,6.259655523413925e-07,7.194252122475601e-07,0.016429584035750393,6.25157246313765e-07,7.21738545908911e-07,0.016429638848925985,6.2395038332791e-07,7.291168635128286e-07,0.0164296607675662,6.21258692075627e-07,7.237714025400997e-07,0.016429647143259236,7.352306089727243e-07,8.521849813994346e-07,0.016429835133984563,0.014522180956568001,0.01831306669470343,0.023828075312890867,0.014522639643551365,0.018313585649943228,0.023828678759069848,0.014522580233178456,0.018313514940159946,0.023828593479993936 +1594,Radium-226,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.0006760557105938215,0.0020522865217260855,0.007251545296429634,0.00016002800199739427,0.0003799208085019631,0.001098339400619202,0.00014523427409137823,0.0003582540113431662,0.0010853342623042886,0.00014486386499764451,0.00035473614228970495,0.001088433317946575,0.0001401071286080466,0.0003183019236574245,0.0009493109412876397,0.00014309135164606817,0.00032492106235514333,0.0009558223986048453,0.00016339556141806307,0.00033077343875771156,0.0009342001448357746,0.006398351970021634,0.0070539887206212855,0.007997923256420401,0.0007557652409240853,0.0008397858747823184,0.0009605472774270276,0.0008060919759205339,0.0008930277419838668,0.0010182410039530942 +1595,Radium-226,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.08391092435203192,0.19771352969955341,0.15042048505744293,0.0494509074582523,0.11779060731719991,0.09743868630392019,0.04010954788934515,0.09473378169754491,0.06579312394296097,0.03997454653078634,0.09390806440092515,0.06387942549124422,0.014710430545476888,0.04034703168310136,0.06629417135963364,0.04708642451255923,0.10962560696917321,0.06495381923125398,0.05123046836542503,0.1171953292583708,0.06146108419813896,0.11678357754912116,0.12211204813116473,0.1294843370641982,0.04941715672932096,0.05179848395421069,0.055141681929614994,0.053592502253663445,0.05624363374364648,0.05997018248822828 +1596,Radium-226,"('water',)",emission,kilo Becquerel,biosphere3,3.285617297139394e-08,1.7726158555860054e-07,4.639034938242626e-07,0.00010156918918461568,0.00019601630735446287,0.0004435744266168531,7.095850154126285e-05,0.00013214864770814806,0.0003199019667848013,5.975789913242955e-05,0.0001215436828245139,0.00030904781701488474,6.151522587624281e-05,0.0002129241993208188,0.000639487640717366,5.7078138060622963e-05,0.0002031891236007256,0.0006404160529554687,7.21840433680024e-05,0.00021438490486594606,0.0006341752637752915,4.3588278323437385e-07,4.567537011038714e-07,4.850684932353e-07,0.00047123346809448266,0.0005028989326417953,0.0005447314280297096,0.0004967774910534805,0.000528716180692114,0.0005709837616248715 +1597,Radium-228,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.000311578120963414,0.0019417034318380167,0.007403835377394621,3.818322633111178e-05,0.0002905553609385002,0.0010928399439893363,2.8125732097368895e-05,0.000271494477284829,0.0010690836906116043,2.7860827449033463e-05,0.00026653016927373225,0.0010595234186220187,2.2210695835585104e-05,0.0002191790566526211,0.0008802484485025318,2.6600677578578822e-05,0.00022876309170619062,0.0008917269336822033,2.4061514226909476e-05,0.00020476235153356912,0.0008192452819031225,0.0068095403451353615,0.007568861335575297,0.00866606306917758,0.0007811779411725034,0.0008677084751501078,0.0009927001771511373,0.0008580510417229895,0.0009509231342824499,0.0010849464490604475 +1598,Radium-228,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.0006762876718581978,0.003952832289818073,0.014856844624237612,0.0006300710011899814,0.004793196615981151,0.018028447079659768,0.0004851638874126012,0.004681529442712207,0.01843519212123341,0.00048055186308399144,0.0045959089575158965,0.01827026138254387,0.0004377781384106064,0.004315524628415591,0.017328444617718198,0.0005240131429568507,0.004503781735150708,0.01755430855307412,0.00047415823639299445,0.004031565254067399,0.01612784241776512,0.013611854363055122,0.015118014969575606,0.017293679179976,0.015377857191628791,0.01708110692928811,0.019541402712905116,0.016890857029582408,0.018718921905353927,0.02135697929170049 +1599,Radium-228,"('water',)",emission,kilo Becquerel,biosphere3,4.6233329550333145e-08,2.4943237589896344e-07,6.527784925701031e-07,0.0001429223601125062,0.0002758229487950739,0.0006241725905909049,9.984874932788935e-05,0.00018595202706401327,0.00045014777084031494,8.408790153729265e-05,0.000171029326368665,0.00043487443140977604,8.656071225675939e-05,0.0002996147692254722,0.0008998504713886388,8.031709563596701e-05,0.0002859161265055908,0.0009011568793319699,0.00010157326276647568,0.0003016701906684489,0.0008923751982002335,6.133493494727945e-07,6.42717712687955e-07,6.825606704759241e-07,0.0006630928110331102,0.0007076506436677303,0.0007665149412398672,0.0006990369001659358,0.0007439791995009197,0.000803455724543235 +1600,Rubidium,"('water', 'ocean')",emission,kilogram,biosphere3,3.115781271399266e-08,1.9417034703344318e-07,7.403835524188347e-07,3.818322708815989e-09,2.905553666992575e-08,1.0928399656568129e-07,2.8125732655015993e-09,2.7149448266771803e-08,1.0690837118082187e-07,2.7860828001414434e-09,2.6653017455818984e-08,1.0595234396290914e-07,2.221069627593847e-09,2.1917906099825408e-08,8.802484659551662e-08,2.6600678105984018e-09,2.2876309624180384e-08,8.917269513622305e-08,2.4061514703960828e-09,2.0476235559335692e-08,8.192452981462005e-08,6.809540480146991e-07,7.568861485641908e-07,8.666063240998302e-07,7.811779566608381e-08,8.677084923540736e-08,9.927001968333002e-08,8.580510587353267e-08,9.509231531361446e-08,1.084946470571397e-07 +1601,Rubidium,"('water', 'surface water')",emission,kilogram,biosphere3,6.762876852695207e-08,3.952832368193976e-07,1.485684491880679e-06,6.300710136822612e-08,4.793196711014864e-07,1.8028447437106614e-06,4.85163897031922e-08,4.6815295355328154e-07,1.8435192486747672e-06,4.805518726118212e-08,4.595909048638614e-07,1.827026174478728e-06,4.377781470902569e-08,4.315524713979378e-07,1.7328444961289104e-06,5.240131533463804e-08,4.5037818244468336e-07,1.755430890112213e-06,4.7415824579385176e-08,4.031565334001003e-07,1.6127842737531854e-06,1.3611854632938365e-06,1.5118015269321518e-06,1.7293679522858828e-06,1.5377857496525826e-06,1.7081107267955528e-06,1.9541403100352903e-06,1.6890857364476224e-06,1.8718922276492667e-06,2.1356979715143825e-06 +1602,Ruthenium-103,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,3.5300508658610775e-09,7.802154437846129e-09,1.9122728995779164e-08,2.1740351632649965e-07,4.836843932971185e-07,1.3265375795589265e-07,7.181724463621189e-08,1.698011138286072e-07,1.6975407386266647e-07,7.13256354262293e-08,1.6772720609708894e-07,1.6484414735243682e-07,1.6532771835602575e-08,5.3605943542685515e-08,1.8142196392160384e-07,7.820979639788023e-08,1.8492070312547615e-07,1.7658185979732212e-07,8.961496647081554e-08,2.0573635262244715e-07,1.7283413864132549e-07,1.5461358933442868e-08,1.6118688683824078e-08,1.701512523860504e-08,9.26530930480373e-08,9.643403339958895e-08,1.0153858256234186e-07,9.914326376520232e-08,1.0334433374994598e-07,1.0905616850046242e-07 +1603,Scandium,"('water', 'ground-')",emission,kilogram,biosphere3,7.767396536810404e-08,1.2418316089323832e-07,1.8150720074016e-07,7.611052563400372e-08,9.356625008626798e-08,1.024074561828455e-07,7.301742951216213e-08,1.0197475596768416e-07,1.3120693484503773e-07,7.314496894726163e-08,1.019503183808144e-07,1.3104638009106821e-07,7.117572706841712e-08,9.88749090398234e-08,1.3273063890151809e-07,7.387366889853114e-08,1.0392121498521041e-07,1.3012314764527053e-07,4.357727896174165e-07,5.090543769989553e-07,6.05366959083944e-07,1.0477220854483796e-07,1.0934813466267518e-07,1.1559005141907474e-07,1.6495304943195012e-07,1.7283112563091887e-07,1.8352153762664218e-07,5.596647134139964e-08,5.847236488578564e-08,6.187353839106276e-08 +1604,Scandium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,2.100498985569207e-05,2.7621955497499595e-05,4.311519741135657e-05,2.410320632527478e-05,2.9812277499143823e-05,3.419469066007724e-05,2.5010872853738932e-05,3.479662295922425e-05,5.0959801068195526e-05,2.5100412064893553e-05,3.50056561622601e-05,5.137527247877628e-05,2.565400007016333e-05,3.6404890838641555e-05,5.186802018098811e-05,2.4970006939738585e-05,3.478602299214809e-05,5.304491273070009e-05,0.00012221278954422027,0.0001422864324329989,0.00018356012348639926,1.0107753785547203e-05,1.0542436537281444e-05,1.1133256699189948e-05,4.2811489743936784e-05,4.491149408081971e-05,4.7763399934583616e-05,1.168602805956798e-05,1.222808047976954e-05,1.296361939362707e-05 +1605,Scandium,"('water', 'surface water')",emission,kilogram,biosphere3,8.551935550675208e-08,2.053158678193457e-07,2.1823844359045203e-06,1.4007816958676995e-08,3.250574247390368e-08,7.955614105507457e-08,6.200435175494101e-07,1.3369035078442777e-06,3.4146790045912592e-06,6.204961248839562e-07,1.3406541394204361e-06,3.4246216454151777e-06,7.168753485987368e-07,1.5486386875614403e-06,3.4064105310711604e-06,5.23966943156814e-07,1.1388599636627706e-06,3.4814017170748726e-06,2.2823440705688178e-07,4.778809920035809e-07,3.2456151702354934e-06,2.2954154171865386e-07,2.3781833589315941e-07,2.490364617156822e-07,4.4800800269080593e-07,4.688944847984132e-07,4.970342152754957e-07,4.898362873237656e-07,5.111166639289198e-07,5.400516120904656e-07 +1606,Selenium,"('water', 'ground-')",emission,kilogram,biosphere3,1.6030732086783912e-07,2.518060320145651e-07,3.899933544375089e-07,1.6042923989654227e-07,1.9582127057511652e-07,2.322472830008396e-07,1.7760008426413215e-07,2.7148540217625914e-07,3.4040764848481594e-07,1.7759279108740946e-07,2.6924667818588675e-07,3.349307370153499e-07,1.6542105039247963e-07,2.4612420715140973e-07,3.395905436123698e-07,1.8180220828334318e-07,2.7911713314512883e-07,3.325844631438686e-07,1.0086055796405889e-07,1.7403163251687393e-07,2.1815793476641554e-07,2.225539137929529e-07,2.3227992733447482e-07,2.455471577931512e-07,1.1910166862156658e-07,1.2417706857120257e-07,1.3102828725405065e-07,1.5837668856636487e-07,1.654153874720299e-07,1.7497105214102272e-07 +1607,Selenium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,4.094730275517037e-05,5.037732957130137e-05,6.107121962011304e-05,4.855611260415866e-05,5.7859430705834465e-05,6.658304497546545e-05,4.37275259398585e-05,5.384471255684369e-05,6.410714584572081e-05,4.391365701838991e-05,5.426244310486583e-05,6.491969175431914e-05,4.438026082349045e-05,5.566197355387198e-05,6.605490529080506e-05,4.423876299448999e-05,5.524139188351534e-05,6.680903173536553e-05,5.305040335748162e-06,8.647167251434636e-06,1.868321780541917e-05,1.562054114229592e-05,1.6312055912229666e-05,1.725133034260502e-05,5.967480857897074e-06,6.255630065734849e-06,6.643366848083317e-06,1.6985626962332952e-05,1.7790136887797905e-05,1.888084703281551e-05 +1608,Selenium,"('water', 'ocean')",emission,kilogram,biosphere3,9.635105064280922e-10,6.840078268309553e-09,2.6227442253163575e-08,8.743897058957706e-10,6.81606323261327e-09,2.578212003419734e-08,6.630898399763773e-10,6.423516569289593e-09,2.5298943201125563e-08,6.327968341054071e-10,6.2407015627655966e-09,2.496850097252179e-08,5.798673510049985e-10,5.914723201816559e-09,2.3913804584722234e-08,6.773388962283922e-10,6.124035225642547e-09,2.417409818483108e-08,0.0,0.0,0.0,2.452531993093636e-08,2.700726968659684e-08,3.057885881132753e-08,0.0,0.0,0.0,2.330951998537988e-08,2.5834443523393937e-08,2.9478677032157336e-08 +1609,Selenium,"('water', 'surface water')",emission,kilogram,biosphere3,1.0618409622614784e-07,2.574654800281308e-07,2.008759889392476e-06,5.306589552037538e-08,1.2539964311932172e-07,3.3906525034289234e-07,4.592997816726775e-07,9.984261353528554e-07,2.596804728036909e-06,4.6039653475379065e-07,1.0026040237177743e-06,2.604501150615078e-06,5.065043451691086e-07,1.1032454171163262e-06,2.5946886719249003e-06,3.8846478352454274e-07,8.614606252191265e-07,2.615037587149094e-06,2.146710830801025e-07,4.69298098840403e-07,2.5521754701785156e-06,4.964804182254854e-07,5.090234045398658e-07,5.261076478131448e-07,6.513027745242479e-07,6.724198258303844e-07,7.00959671025565e-07,6.118354006004374e-07,6.304786990972466e-07,6.559030035604511e-07 +1610,Selenium,"('water',)",emission,kilogram,biosphere3,5.5151435846016785e-14,2.9754624879542337e-13,7.786951927943798e-13,1.7649370290350507e-10,4.1344369572033224e-10,8.548487631322037e-10,1.3406172082427706e-10,3.8789698351765293e-10,7.67808577951114e-10,1.177289379034194e-10,3.793322249933908e-10,7.669835462210256e-10,1.1304243165522406e-10,5.043674149953812e-10,1.2659325869853071e-09,1.5090038845501604e-10,9.686453683118873e-10,1.9147015492416872e-09,1.464074928775726e-09,1.1829706581845587e-08,4.499688467425024e-08,7.316604263067546e-13,7.666937546459461e-13,8.142221583209473e-13,4.186337890123859e-08,4.652888340282671e-08,5.326409957865007e-08,9.316795347005477e-10,1.0042546214551346e-09,1.102653421257978e-09 +1611,Silicon,"('water', 'ground-')",emission,kilogram,biosphere3,3.930783808982328e-05,9.650580260602026e-05,0.0001769512444064442,2.6851771022826535e-05,4.7416844758100075e-05,6.0462206315058914e-05,3.5628869385611026e-05,7.682138003438016e-05,0.0001235913653321862,3.544209180899461e-05,7.575819786989307e-05,0.00012114864837014236,3.675724285013506e-05,7.986647389624731e-05,0.0001222624025129985,3.7044640782364005e-05,7.965301621482506e-05,0.00012345680609394082,5.665226510497319e-05,8.885866151326452e-05,0.0001534939749314523,0.0001288182443893793,0.00013443765344150227,0.00014211159285057838,7.614993733632936e-05,7.955166088276514e-05,8.414059789939589e-05,7.51575585282159e-05,7.853877986774991e-05,8.312412686952479e-05 +1612,Silicon,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.1702833943672819,0.201195391615233,0.2994671668220957,0.16672928670194762,0.1844338886295893,0.20245662745862794,0.17159313611918275,0.21870424846018433,0.3165623760849808,0.17159797211509964,0.21873468737862134,0.3166043850549517,0.1760779647473698,0.2291153846496436,0.31759030038905894,0.16856753014296316,0.213496334841592,0.3209392298605139,0.1724244288195881,0.19669788046698858,0.3295048255947978,0.062488841219951616,0.06535577199937277,0.06923320678669367,0.04990757589091015,0.05231437739300457,0.05556750095893213,0.05424125644569738,0.05677956251276047,0.06022567045471951 +1613,Silicon,"('water', 'ocean')",emission,kilogram,biosphere3,9.604784889751785e-09,2.4404109417360516e-08,2.5399671262477736e-08,1.0715407832686735e-08,2.6425538044840534e-08,2.0876998194758876e-08,5.94401773673679e-09,1.6114005171660157e-08,2.002399286243296e-08,6.039293042688862e-09,1.6344625851973966e-08,1.995043195498134e-08,8.22545915424433e-09,2.1009935817093142e-08,2.0513103237724475e-08,6.108126028601142e-09,1.6439572844532247e-08,2.052670070718004e-08,9.159381994337913e-09,2.2703717504759366e-08,1.9661601829741183e-08,2.2835323034611152e-08,2.520391321402108e-08,2.860766834726211e-08,1.8258359140584142e-08,2.0006332606229025e-08,2.2509490744249424e-08,1.9392906031880183e-08,2.1246451066409807e-08,2.390063559569014e-08 +1614,Silicon,"('water', 'surface water')",emission,kilogram,biosphere3,0.000352618797866625,0.0003833057421587263,0.003277348202493456,0.0003476399809860498,0.0003627254691042554,0.0030998169167093617,0.0003556433467409592,0.0004295171911761451,0.0033366862009048676,0.0003556800475715566,0.0004298855647940134,0.003337581746077287,0.00036353991167736914,0.00044784308477474166,0.0033387931262838302,0.0003466116678803554,0.00041283991598265043,0.0033416513408764826,0.0003779976895238764,0.0004160570665770042,0.00338297242356975,0.0029737487169769023,0.003100670407014506,0.0032720216323125118,0.002976231401168164,0.003103514034296388,0.0032753886602917516,0.002976671857800115,0.0031036271166009132,0.003275084033644242 +1615,"Silver, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,2.834033420941689e-06,3.225046166494966e-06,3.5335874539797482e-06,3.4003730792691904e-06,3.831107431587957e-06,4.259947170155582e-06,2.968353130220178e-06,3.372882189733897e-06,3.7496656352293154e-06,2.982370507285153e-06,3.405581884335174e-06,3.8148624652592185e-06,2.9719548664906257e-06,3.4068499119688863e-06,3.884035702409308e-06,2.9904057695451007e-06,3.4389993537143614e-06,3.870969199728363e-06,7.930608293634543e-05,9.004765065994313e-05,0.0001038114242500532,7.188849655527286e-07,7.512352615298787e-07,7.950320959289787e-07,2.413369035828434e-05,2.5320203663386802e-05,2.6933284475004365e-05,8.8026384125335e-07,9.21982712752228e-07,9.785792261906018e-07 +1616,"Silver, ion","('water', 'ocean')",emission,kilogram,biosphere3,1.8694687202757297e-09,1.1650220464129769e-08,4.442301170499011e-08,2.2909935493240364e-10,1.7433321423894616e-09,6.557039576519703e-09,1.687543903344782e-10,1.6289668419922939e-09,6.414502058154003e-09,1.671649624656272e-10,1.5991809943226589e-09,6.357140426980817e-09,1.332641732369028e-10,1.3150743223836753e-09,5.281490620604377e-09,1.5960406334370856e-10,1.3725785319384747e-09,5.3503615307641806e-09,1.4436908343678583e-10,1.228574092822468e-09,4.915471625887127e-09,4.085724154298159e-08,4.541316742597977e-08,5.199637774136729e-08,4.687067584548425e-09,5.2062507814924345e-09,5.9562009835004675e-09,5.148306181702614e-09,5.705538729630546e-09,6.509678607578015e-09 +1617,"Silver, ion","('water', 'surface water')",emission,kilogram,biosphere3,6.4086669003986955e-09,3.787016365713328e-08,3.568669026656003e-07,5.654791997955769e-09,4.229643334634079e-08,3.73904959209895e-07,4.275936016258233e-09,4.064413627646215e-08,3.7505754080251697e-07,4.291509621868021e-09,4.005386182936661e-08,3.7386952766528236e-07,3.882412457095226e-09,3.7645065178808246e-08,3.6623117319815064e-07,4.7471813511374695e-09,3.9538512837354276e-08,3.6830921340312267e-07,3.0335242313345377e-09,2.461513936958018e-08,3.128799084578009e-07,3.703542773415083e-07,3.842115014331526e-07,4.0419765089938607e-07,3.3298500781079625e-07,3.432258607898221e-07,3.5801716568512145e-07,3.871474035410252e-07,4.030247249596422e-07,4.259357051554404e-07 +1618,"Silver, ion","('water',)",emission,kilogram,biosphere3,5.2022277292776676e-11,2.806641943312627e-10,7.345139095107906e-10,1.6081793119119423e-07,3.1035971643854666e-07,7.023269288210726e-07,1.1235106394279561e-07,2.0923644280580573e-07,5.065129668387865e-07,9.461679166205657e-08,1.9244530699554593e-07,4.89327340901067e-07,9.739917587867733e-08,3.3713094767087656e-07,1.0125233921326182e-06,9.037407882158453e-08,3.217201778600576e-07,1.0139975542382752e-06,1.1429181823310663e-07,3.394468716498984e-07,1.0041163892039093e-06,6.901477814960801e-10,7.231934034391299e-10,7.680251603378629e-10,7.461203398720244e-07,7.962574515208806e-07,8.624924180318724e-07,7.86565031680831e-07,8.371347485680433e-07,9.040585989277635e-07 +1619,Silver-110,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,7.869015874387596e-05,0.00017954451664972703,0.00013271226735272503,4.401821217002311e-05,0.0001176011849812561,0.00020086651926667386,0.00109406796899907,0.0023884040658134742,0.0002567036866135,0.0010927555004346858,0.0023837057821269347,0.00024692949936526133,3.384818642854666e-05,9.286847460534087e-05,0.00013798563600589555,0.0011786620722166856,0.0025725332922899146,0.0002658827922051966,0.001375670543263726,0.002991114844573067,0.00027208936528926167,0.00010884600922436702,0.00011354454691395428,0.00011995837933153887,0.00017447729393034643,0.00018156540269668612,0.00019114995025316413,0.00018239564395192216,0.0001902186061742537,0.00020087362636073987 +1620,Sodium chlorate,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.263880622647432e-12,2.9402039714387474e-12,5.562033653275694e-12,1.7139143236404574e-12,4.310554764986834e-12,5.882766019886133e-12,2.1683868752469813e-12,5.193161425990649e-12,6.019508002007098e-12,4.671805917072689e-12,1.0530215953406556e-11,5.892637805843184e-12,3.32653485749406e-12,7.593537907254524e-12,5.737218802940221e-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.951867089432678e-12,4.203480456941853e-12,4.5556970442314855e-12 +1621,Sodium formate,"('water', 'surface water')",emission,kilogram,biosphere3,4.2601153020833546e-09,8.530941849548895e-09,1.4275899631404806e-08,4.399825420238219e-09,7.976327343325576e-09,1.3052232684827408e-08,3.926724084966533e-09,9.042394169603418e-09,1.5991020253418643e-08,3.932672704273133e-09,9.054659614001927e-09,1.6011882708957693e-08,3.931012986601372e-09,9.127634823054563e-09,1.625667942462912e-08,5.534202437956781e-10,1.0261279654751387e-09,2.305147243586829e-09,5.605073701116258e-10,6.34768102928339e-10,1.4791060465635818e-09,1.0329669987060403e-08,1.0918524313800326e-08,1.1732538427858293e-08,7.786834480914807e-10,9.61123677117623e-10,1.2260179905098863e-09,1.483293971516435e-09,1.7007096236338795e-09,2.0131212159430007e-09 +1622,"Sodium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.02059562623993117,0.037937396854454866,0.05451471320319788,0.022539146750481652,0.03745181423641984,0.04868993455756178,0.02222210932589919,0.03869630855473617,0.05157222879255675,0.022276602703424943,0.0387378102264377,0.05170970815636472,0.023711966025458848,0.04221328918759981,0.05281117917460858,0.023406133877513877,0.04161750533771931,0.05605507728767447,0.01611090375672872,0.0264050001381118,0.05310899038702668,0.025469999821685955,0.026601237160527473,0.02814531144488654,0.020628677523300786,0.021641953027572693,0.023009224514081203,0.022130869398657233,0.023197308941661055,0.024642813838391085 +1623,"Sodium, ion","('water', 'ocean')",emission,kilogram,biosphere3,0.0009539468024143905,0.005961504031809938,0.022734486781706514,0.00020665478390771054,0.0011399853583490933,0.004111107732905165,0.00015559394655138075,0.0010373539733049544,0.004051289425238657,0.00017223550944517525,0.001063059223281157,0.004012668024342696,0.00016464241956200976,0.0009396254734561586,0.0034489009526929636,0.0001363221678131855,0.0008783763095107964,0.003485430872593864,0.00014626975217835484,0.0007421758618337285,0.0032899363444338324,0.02091766177021463,0.023245114919238582,0.026607937747443747,0.002531012578139856,0.002803701172307532,0.0031968373238549876,0.0030680497841178303,0.003397698283500224,0.003872856676954793 +1624,"Sodium, ion","('water', 'surface water')",emission,kilogram,biosphere3,0.002283863704051205,0.014023414956843928,0.05249971614578381,0.0021715205329626217,0.01657869851665436,0.06092320351442449,0.0020419943014727835,0.016291939900723865,0.0618282271054805,0.00203883477942505,0.016055037814319842,0.06148287891758568,0.0019267007447434223,0.01580260515452505,0.06044447203450291,0.0020922925312160503,0.016238268994957863,0.0612472972691936,0.0019098866278912019,0.014711531546720833,0.05736484303040679,0.04738091197905366,0.05222811614148255,0.05920315224161684,0.05323569753965509,0.058682863446139356,0.06652243853991098,0.057454878110198664,0.06328209535250624,0.07166505186221177 +1625,"Sodium, ion","('water',)",emission,kilogram,biosphere3,4.452222538864023e-05,0.0001496945560992104,0.0003571622933126002,0.0007902114715900859,0.0015257852598983288,0.0034463596413256896,0.0005560150110865255,0.001037323718204018,0.002501702267739271,0.0004698894740426808,0.0009557908851956598,0.0024183967235848944,0.0004846404890030555,0.0016621248773425145,0.004962155616238394,0.00044808233771847475,0.0015829077078385035,0.004956212316579104,0.0005743081731416596,0.0017072400370497147,0.005021036786207601,0.00031033510856088366,0.00032449799229840976,0.0003439056421433733,0.003737397659073804,0.003996357527020853,0.004339539770911881,0.0038383031912722562,0.004085391431049782,0.004412504750278048 +1626,Sodium-24,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.2657898689284548e-07,2.7976616821273703e-07,6.856942732532191e-07,7.62109667449395e-06,1.695970971904814e-05,4.689666097883823e-06,2.7825459315621706e-06,6.529531622963508e-06,6.002669547379577e-06,2.7650391725119734e-06,6.455912088185188e-06,5.828660108993639e-06,5.83346001083278e-07,1.8905038455233427e-06,6.381065742836434e-06,3.025783244157318e-06,7.101229629742667e-06,6.244221792419428e-06,3.4742480054728397e-06,7.934596194742293e-06,6.115105915015509e-06,5.544065012709521e-07,5.779767377951686e-07,6.101207592891218e-07,3.2837928186208538e-06,3.4178023284432495e-06,3.598729014469326e-06,3.5124283272798656e-06,3.6612999011046682e-06,3.863712586407963e-06 +1627,"Solids, inorganic","('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4477103652481433e-28,4.57439319173697e-27,1.2651686403012633e-26,2.200372304503836e-25,3.368808761076413e-24,9.261526531430656e-24,0.0,0.0,0.0,9.291046292073426e-24,9.700640683744885e-24,1.0249621430720575e-23,1.2772917685374577e-26,1.332546130618049e-26,1.4066514154854215e-26 +1628,"Solids, inorganic","('water', 'surface water')",emission,kilogram,biosphere3,6.0225050566777714e-05,0.016236196588368532,0.03545094969322613,6.734458217306309e-05,0.014032925270415525,0.030590383204570155,6.28987864976496e-05,0.01872471747616244,0.040727985537878514,6.350222284063734e-05,0.018725695548565457,0.04072861717775662,5.846516038830432e-05,0.018644210445882225,0.04060845374341804,5.73812835416957e-05,0.01737277603379192,0.03780749576998635,6.878303056896947e-05,0.01738427762978963,0.037823328147691265,0.037811944256769335,0.03940137199474527,0.041547192699165056,0.04030601683565213,0.04200840728122093,0.04430622108747873,0.040303168053559234,0.042003704903231846,0.04429924310970524 +1629,"Solids, inorganic","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,9.756964864079948e-12,4.630025673834783e-11,2.546598958578173e-10,8.581064354182824e-12,4.4724681677872763e-11,2.528298276340984e-10,8.79742561363786e-12,4.5703780465297016e-11,2.5898057669544444e-10,9.51793712424622e-12,4.773087899145617e-11,2.6445775617599633e-10,9.45223398110376e-12,4.7425436547265136e-11,2.6453546754359244e-10,7.348602222618218e-07,2.4774439418413937e-06,5.063011159982416e-06,0.0,0.0,0.0,4.112583863022445e-06,4.494263836664205e-06,5.038608462420891e-06,6.820899916312494e-11,2.718382127111266e-10,5.258262252205625e-10 +1630,Strontium,"('water', 'ground-')",emission,kilogram,biosphere3,1.1326566503565044e-05,2.1762494763517403e-05,4.144365245666272e-05,1.3362021811339934e-05,2.4010108018802354e-05,4.116848050983996e-05,1.3218115210663073e-05,2.448720743711398e-05,4.186787423218217e-05,1.3244867137758507e-05,2.452964345326176e-05,4.1912968600830294e-05,1.454780032094094e-05,2.746828580470835e-05,4.243665788879511e-05,1.2703932651670281e-05,2.343879200247756e-05,4.378798234421927e-05,5.811869258768719e-06,1.102116025429969e-05,3.942535654494717e-05,1.1175804735431901e-05,1.1650775565684991e-05,1.2298428705040392e-05,9.424043523992255e-06,9.891886363328926e-06,1.0519947991810024e-05,1.0920871524768158e-05,1.145887150996875e-05,1.2185297884933215e-05 +1631,Strontium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0011369227255075636,0.0017680248059597603,0.0024645655244240356,0.0012846599020058175,0.00183092709208687,0.0022632458852128974,0.0012452287364978663,0.00188619538442361,0.0024951024935976666,0.0012487489007022208,0.0018917007609111046,0.0025031827080810535,0.0013016394231262266,0.002022208354692696,0.002549215321430622,0.001289641761694048,0.0019841084901045954,0.002664747966186919,0.0011504639381615732,0.001573999765493229,0.0026916418175510683,0.0009565241998499078,0.0009982519139416057,0.0010551316117481265,0.0008312893377771982,0.0008712935706081594,0.0009252621100772194,0.0008614240724892451,0.0009020935105611623,0.0009571933652277787 +1632,Strontium,"('water', 'ocean')",emission,kilogram,biosphere3,5.653331692726349e-06,3.526959356947645e-05,0.00013449194226164378,8.220596042069374e-07,5.733676255264559e-06,2.1354572254984683e-05,6.101240932368945e-07,5.32509582196325e-06,2.0928309645723437e-05,6.257710877224403e-07,5.280350587641202e-06,2.0735536699371123e-05,5.340703318040993e-07,4.442189670518795e-06,1.744959161792803e-05,5.651719000856235e-07,4.510702202578935e-06,1.766552542146296e-05,5.231996957291588e-07,3.841243556331683e-06,1.5758425449441794e-05,0.0001237152668649867,0.0001374987703917047,0.00015741493382816143,1.4289189802851763e-05,1.5862666265517734e-05,1.8134601996091102e-05,1.665215268183394e-05,1.8451619250025756e-05,2.1047759342028373e-05 +1633,Strontium,"('water', 'surface water')",emission,kilogram,biosphere3,1.225892172815879e-05,7.158929813985386e-05,0.00026931057346176086,1.1405858051883979e-05,8.669142213780262e-05,0.0003260257672426491,8.881688213270076e-06,8.487587607492567e-05,0.00033389849207520996,8.799179506184287e-06,8.333114378516552e-05,0.00033092227941697815,8.043694944985673e-06,7.830325558189413e-05,0.0003138952479667214,9.574594897711308e-06,8.164147325296426e-05,0.00031799703673147635,8.606219084157608e-06,7.283943278842021e-05,0.0002915627511290449,0.0002464637302454447,0.00027372700262823967,0.00031310835171801375,0.00027753448805933585,0.0003082681315449682,0.0003526614802618435,0.000305471908382106,0.00033852591301140823,0.00038622523722358216 +1634,Strontium,"('water',)",emission,kilogram,biosphere3,1.3533613960250071e-09,7.301489077544484e-09,1.910840572924396e-08,4.1836832506958065e-06,8.074005006095894e-06,1.8271041779208116e-05,2.922814455604163e-06,5.4432657034818904e-06,1.317691428914307e-05,2.461456310759499e-06,5.0064421518294555e-06,1.2729826693405002e-05,2.5338414344608142e-06,8.77044912151369e-06,2.6340800319500567e-05,2.351075675445655e-06,8.36945671909062e-06,2.6379042062499757e-05,2.9732951053281722e-06,8.830616278301604e-06,2.6121980984892527e-05,1.7954219328480022e-08,1.8813902370622413e-08,1.9980202137130335e-08,1.9410330860522582e-05,2.0714646418013188e-05,2.2437746815350296e-05,2.0462501325639247e-05,2.177807115472172e-05,2.351909293278497e-05 +1635,Strontium-89,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,2.722864746299811e-06,6.0195591423782495e-06,2.5882454336610376e-06,3.4364393538363533e-06,7.976647690058241e-06,5.262150716185504e-06,2.2297206629530984e-05,4.8776450281011535e-05,6.838415196601275e-06,2.2267541961045488e-05,4.8669957173748855e-05,6.6089973528488866e-06,5.64957755754259e-07,1.7574639829826814e-06,4.5787248544792144e-06,2.3927512165949554e-05,5.234431772861602e-05,7.1206517976117075e-06,2.7993043879671067e-05,6.0951471938026534e-05,7.240569398687535e-06,2.047611002306424e-06,2.1365078911028685e-06,2.2579059487418844e-06,4.331358416235719e-06,4.508578099610693e-06,4.748151586281472e-06,4.524947935026623e-06,4.719606145568212e-06,4.984646590799793e-06 +1636,Strontium-90,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.0010842746000451838,0.0025374453078495663,0.0014623890764844554,0.00017195343030303954,0.00040102141876289604,0.00027791347114106433,0.0002161034824435762,0.0004981485136169012,0.00028279921967454063,0.00021496706610876082,0.0004931210363307651,0.0002719698058670075,8.629224723737518e-05,0.00022235239044031987,0.0002613708287017539,0.00025432244078246773,0.0005812554587906653,0.00025072731011899126,0.0002767137488940119,0.0006217971618213537,0.00023665335102153654,0.0012316802822186445,0.0012853894774827815,0.0013587514120692611,0.00016551828540960304,0.00017210380730543493,0.00018098902551620365,0.00018410146701416277,0.0001917487345732325,0.00020214381498119872 +1637,Strontium-90,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.011589171222240492,0.03906983376900451,0.09074851931248863,0.0011772176579013909,0.007875183262097156,0.028177120050889893,0.0013854186697478694,0.006712517645727179,0.018932396408693958,0.001244221549755491,0.005922757600935979,0.017278814442408773,0.002459262884412979,0.009552170549641264,0.021957939933951197,0.002048622477064539,0.007636844378277377,0.01532723045623249,0.0013889809640862817,0.005506325262567307,0.012290072420391348,0.07940684388767195,0.08285039837815399,0.08755197386293466,0.012130342248935229,0.012572728238383294,0.013169085016774267,0.015197857874570073,0.01578530257488447,0.01658323043068365 +1638,Sulfate,"('water', 'ground-')",emission,kilogram,biosphere3,0.0423136244443778,0.051615732583869596,0.0625400545068038,0.04994846324576388,0.05841955514156867,0.06824941496775153,0.044522233357684404,0.05374471053597561,0.06374691262893951,0.044707400435624794,0.054140720229050705,0.06452009489623475,0.0449115033122292,0.05500650205807496,0.0656840140057109,0.044897538492915307,0.054810368431972116,0.06566213558487939,0.00580370488487515,0.008898726847692556,0.016372702960213047,0.0174540915088258,0.0182245407945105,0.019271649275669406,0.006186623388965203,0.00646918393148009,0.006849836845896096,0.017608951038639457,0.018432257797709798,0.01954880496580227 +1639,Sulfate,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.3485911690393038,0.5009687607270812,0.6323933776663515,0.40047515002853334,0.5337149115631888,0.635827265684285,0.3677341582608544,0.5119605684698523,0.6169653525070863,0.3709821357586924,0.5187368634040532,0.6261785477643078,0.38050514880886654,0.5438623652931589,0.6395121184244514,0.38277261492464204,0.5480408586523783,0.658717269629162,0.055311082284047235,0.12460484574520729,0.283562350523302,0.23728880040713624,0.24772769792006094,0.2619463619973987,0.12533807475677702,0.1312805314457044,0.139265688882023,0.21738625405830161,0.22764118736027875,0.24153100810733852 +1640,Sulfate,"('water', 'ocean')",emission,kilogram,biosphere3,0.00033218990297544776,0.00047021371422639144,0.0012943675606486456,0.00011945983602094673,0.00023167497327515908,0.0005959294586888415,0.0001073373893910225,0.00021144949550992834,0.0005987418157103934,0.00011138344571125775,0.0002205137207959692,0.0006007830350248727,0.00011328351042726333,0.0002236392972658838,0.0005881593295679286,0.00010305303591314169,0.00020149581929589013,0.0005891957651302693,0.00011700084847409182,0.00014724417306066502,0.00039979765216775645,0.000990127342609588,0.0010576825475957872,0.0011526881994506366,0.0001370100043427024,0.00015042957265189549,0.00016921221987431907,0.0004185197913980212,0.000463281708297937,0.0005275966258951683 +1641,Sulfate,"('water', 'surface water')",emission,kilogram,biosphere3,0.03700631098648739,0.04433716658096204,0.05558168532910771,0.043930892330395,0.05078423470615576,0.061032237105125266,0.03842797710532147,0.043755767463628296,0.05117188355330273,0.03992588522477109,0.047194098311078014,0.055291025580727224,0.039988967188550974,0.048485363477177475,0.05908065174682751,0.041811740778627614,0.052466608159436504,0.05899549021231716,0.04787996566771086,0.05706229005370807,0.06868762469519382,0.01880687292326134,0.019636875505303696,0.02074084073397681,0.019474104797234208,0.02032858893432723,0.021469465675914352,0.0188458098286158,0.0196701792330204,0.020769788145594992 +1642,Sulfate,"('water',)",emission,kilogram,biosphere3,2.174140363286434e-08,6.738086769076655e-08,1.7539226819569003e-07,4.7698852447669225e-05,6.5314088037868e-05,0.00010834730311464745,4.1108618943026416e-05,5.703453606232561e-05,0.00011383550429960628,4.065534264366833e-05,5.681119599978963e-05,0.00011356795670359486,4.193855122914491e-05,6.47288466053371e-05,0.00013119824426788916,4.285860021371351e-05,6.692508085141875e-05,0.0001368558708966404,6.917380391301504e-05,0.0002191705849236505,0.0007160952656891919,1.5417243673392102e-07,1.6921256633360793e-07,1.9073199822856634e-07,0.0006135415119049505,0.0006795226139766999,0.0007742516997715575,7.392739246855722e-05,7.844461652511156e-05,8.462479397474078e-05 +1643,Sulfide,"('water', 'ocean')",emission,kilogram,biosphere3,1.7058003974062476e-08,7.022107196468227e-08,1.8626283402487493e-07,7.56407527171602e-09,4.943851711283218e-08,1.7444105619671706e-07,6.605188170013562e-09,4.781029903470759e-08,1.712742465070481e-07,6.392014694761227e-09,4.6542382622907967e-08,1.689647944529937e-07,4.734960995760228e-09,4.162694839587066e-08,1.6183655666032936e-07,7.087566873820341e-09,4.665942654839636e-08,1.6346132395654495e-07,2.805784609377031e-09,6.304814682197405e-09,2.3995856104314107e-09,1.7331650856478826e-07,1.9041604736020535e-07,2.150022849823851e-07,1.6782999024434471e-09,1.745074885811612e-09,1.8351680185399911e-09,1.5703054696533673e-07,1.7391567462382443e-07,1.9827954313065725e-07 +1644,Sulfide,"('water', 'surface water')",emission,kilogram,biosphere3,6.062179945133932e-08,2.7865717356374256e-07,1.0124755717518335e-06,9.557014158822645e-08,3.4752955067355615e-07,1.7026746175161566e-06,4.678209150678583e-08,2.3948320885284747e-07,9.810473025900523e-07,5.425618467781089e-08,2.5688725242918445e-07,8.972362531758245e-07,3.514842934929076e-08,2.1580557291052797e-07,1.0708506322605815e-06,3.140890328503461e-08,2.0675569274333247e-07,1.0640559623158017e-06,3.667325379713137e-08,1.9060255457011286e-07,1.1970790253917866e-06,8.182821268209529e-07,8.558047631984939e-07,9.073346064661645e-07,1.2379940562833855e-06,1.2924168601156825e-06,1.366529252995201e-06,1.095525242231503e-06,1.14856060642048e-06,1.2215632052051439e-06 +1645,Sulfide,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.599166337895508e-09,1.3545245992507308e-08,5.384936074628174e-08,0.0,0.0,0.0,5.121564816522951e-08,5.6957155114160836e-08,6.525377361935103e-08,0.0,0.0,0.0 +1646,Sulfite,"('water', 'surface water')",emission,kilogram,biosphere3,2.5195155741172926e-06,6.053991406639088e-06,1.1857239961367828e-05,3.2887147088667984e-06,7.3782995350627396e-06,6.100083297457789e-06,2.0356969301997676e-06,4.603757369075782e-06,4.625069528188742e-06,2.410698935418534e-06,5.488240163707002e-06,5.464420986810963e-06,2.019560588953522e-06,4.656297401937217e-06,4.667627104450562e-06,1.5396466895794573e-06,3.5877553749161977e-06,4.5939084088379775e-06,1.0613119396216941e-06,2.4309204863379537e-06,4.317095693673975e-06,4.1618845990242485e-06,4.3383267567181904e-06,4.5791970965343895e-06,1.9897929742477865e-06,2.0791565306554028e-06,2.1996436668298855e-06,2.248188995643509e-06,2.3530036841783995e-06,2.4954387260996106e-06 +1647,Sulfite,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.493499709131608e-14,1.4601497135119168e-13,3.1030392195588214e-13,0.0,0.0,0.0,2.338093272432454e-13,2.4533234472273665e-13,2.609409936531604e-13,0.0,0.0,0.0 +1648,Sulfur,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2845048369561423e-07,6.19841138104957e-07,1.4794984483078874e-06,1.1179454076006377e-07,5.956256290316171e-07,1.42005403963092e-06,9.568933662544154e-08,4.232878578429631e-07,1.0034747907638901e-06,1.0061757889479287e-07,4.2421804095909684e-07,9.906948982918783e-07,9.830610342037214e-08,3.964891447901154e-07,9.505633505119346e-07,1.2099359003630836e-07,4.298685939791065e-07,9.83116141942762e-07,0.0,0.0,0.0,8.586983217268977e-07,8.966453444590026e-07,9.483203785490275e-07,8.440628825797273e-07,8.814013117769732e-07,9.322894448267755e-07 +1649,Sulfur,"('water', 'ocean')",emission,kilogram,biosphere3,6.348875509536234e-07,1.5452354851767484e-06,1.0980275024038932e-06,7.016227268993145e-07,1.5387491134252876e-06,2.456191175294855e-07,3.7288720651513556e-07,8.273604447973385e-07,2.097558827843364e-07,3.8049546498684104e-07,8.455912184870353e-07,2.115736917422887e-07,2.5334997873574203e-07,5.623539812319378e-07,1.2668711686562447e-07,1.8079855691450567e-07,4.0607001404799414e-07,1.234783946686233e-07,2.830465493248291e-07,6.259279194619209e-07,1.2876223911513342e-07,9.8047694839835e-07,1.088502529316266e-06,1.244428683288848e-06,1.1139046119842873e-07,1.20185998817e-07,1.326737824414445e-07,1.120185429067135e-07,1.2114040802793783e-07,1.3410666461860695e-07 +1650,Sulfur,"('water', 'surface water')",emission,kilogram,biosphere3,1.704259480063814e-06,1.044157279492521e-05,5.42204051073223e-05,1.4487874826720244e-06,9.04788591646753e-06,4.827033816612059e-05,1.1471585524470627e-06,8.935823343001448e-06,4.822665478145741e-05,1.1997797897266185e-06,8.889599761113045e-06,5.0419489654131464e-05,1.0464497074700644e-06,8.139886641072886e-06,4.795001875547817e-05,1.2086956948273522e-06,9.890559119855402e-06,5.3015954806465906e-05,1.2261958931107248e-06,9.192106756051217e-06,5.228325044660368e-05,5.200834531124317e-05,5.671662277046157e-05,6.345530265237661e-05,5.1994842888428986e-05,5.6149217275141876e-05,6.204975529291765e-05,5.2924395090793256e-05,5.720743664468061e-05,6.329896106525433e-05 +1651,Sulfur,"('water',)",emission,kilogram,biosphere3,6.579058012592674e-11,3.5494524525388904e-10,9.289115763708521e-10,2.035834226583197e-07,3.9298517220666745e-07,8.887673419828583e-07,1.425041511103472e-07,2.666755787623533e-07,6.448449572940711e-07,1.200921368726899e-07,2.4547500148024955e-07,6.231681108453597e-07,1.2683961475318277e-07,4.4363623683581397e-07,1.3654566666717476e-06,1.1844608158516852e-07,4.2495293936881125e-07,1.3674149456554105e-06,1.61412032283763e-07,4.83037138921006e-07,1.4210474447953105e-06,8.728034347880998e-10,9.145949657070833e-10,9.712919695619282e-10,1.0101462252205315e-06,1.136524261173873e-06,1.2990459792434244e-06,1.0189080968361569e-06,1.143825301606508e-06,1.3045081899503849e-06 +1652,"Suspended solids, unspecified","('water', 'ocean')",emission,kilogram,biosphere3,0.0011080467162302365,0.0028892684896441234,0.003322462329743578,0.0011806279117580667,0.0027645191283371573,0.0014776329597985052,0.0006505714663125354,0.0016172820214072623,0.0014077190746405593,0.0006633555159389169,0.0016494100232478232,0.0014065036528575251,0.0007758098316278053,0.0018835467489214397,0.0013996419575750905,0.000569546148671922,0.0014384071851901905,0.001396009667063803,0.0008633348452502285,0.0020510308777780322,0.0013391730339932083,0.0030018537685071313,0.0033174805199047714,0.0037714955534694115,0.0012458875434001322,0.001357790512866378,0.0015176255248600817,0.0013238763361957864,0.001443772042815312,0.0016150718762555443 +1653,"Suspended solids, unspecified","('water', 'surface water')",emission,kilogram,biosphere3,5.102431914471301e-05,0.004362907386817607,0.0055146935389608935,3.789920066887778e-05,0.004373323842215041,0.005644556531076267,3.339120879024796e-05,0.004323460221704057,0.005539906853730186,3.399656671007713e-05,0.004323723515449283,0.0055386520741297785,2.3555511551951373e-05,0.00431509309644514,0.005579218222805184,3.506262372610348e-05,0.004346553124320631,0.005604660126044337,3.532467773848188e-05,0.0043233487591679155,0.005558953707533564,0.005219330245018253,0.005363331993886344,0.0055588544580150116,0.005348685019051693,0.0054962151966375765,0.00569663552346753,0.005376256910342089,0.005526425004563727,0.005730576519286725 +1654,"Suspended solids, unspecified","('water',)",emission,kilogram,biosphere3,3.29788328447865e-06,1.0375308750553515e-05,3.0756735085859216e-05,0.00024645463112287695,0.000553948702437006,0.009738263617288136,0.00039153266553497196,0.0009100375618480718,0.02059931114337482,0.0007271817346177895,0.0016574549945972906,0.022561461543513545,9.845981740662232e-05,0.000244706525442921,0.03666661066901289,8.257561646880328e-05,0.0002054835795442452,0.036220673470106136,7.346773690345017e-05,0.0001838928111655373,0.028358682754633317,2.4445144952115856e-05,2.628652993494696e-05,2.8850156715819538e-05,0.030237544408118017,0.031525008006027026,0.033263644048747834,0.038639704161345795,0.04028212803510212,0.04249973745309248 +1655,t-Butyl methyl ether,"('water', 'ocean')",emission,kilogram,biosphere3,2.0367970440757496e-08,1.4459742403910506e-07,5.544373876726095e-07,4.640751616290213e-10,4.05129380986319e-09,1.4055269890113244e-08,3.989239056187489e-10,3.81735855323475e-09,1.3452713911043617e-08,3.89338808808403e-10,2.699291697004519e-09,9.002213631931179e-09,4.275069908045554e-10,1.8266519487845308e-09,5.124711992007658e-09,4.117811985215816e-10,2.637995116002418e-09,8.477287217611343e-09,0.0,0.0,0.0,5.184560366009857e-07,5.709230302740056e-07,6.464243675482475e-07,0.0,0.0,0.0,8.232153843324923e-09,8.598403850225945e-09,9.096097382807923e-09 +1656,t-Butyl methyl ether,"('water', 'surface water')",emission,kilogram,biosphere3,2.0896084439858498e-11,6.258181768933426e-11,1.1645960265647697e-10,2.673401787862166e-10,2.3266302423467677e-09,8.066115950354295e-09,2.2982082754490963e-10,2.1922153640997173e-09,7.720167170000304e-09,2.2407034969053828e-10,1.5502222181561545e-09,5.1663035671053305e-09,2.4571975475749065e-10,1.0484966479416835e-09,2.939258417913307e-09,2.3681533128373235e-10,1.5138548558243952e-09,4.862325015787834e-09,4.1597399194562284e-12,9.44694098549682e-12,5.2600416457497304e-11,5.078182333096173e-11,5.3073251121023186e-11,5.6183770016254615e-11,4.9359242829432334e-11,5.228094077376998e-11,5.630712077877427e-11,4.721102273927664e-09,4.93120015999784e-09,5.216707517083496e-09 +1657,t-Butyl methyl ether,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.396665286690904e-10,5.4180984208815914e-09,2.1539744140775226e-08,0.0,0.0,0.0,2.0486259174371664e-08,2.2782861904946305e-08,2.6101509235701946e-08,0.0,0.0,0.0 +1658,t-Butylamine,"('water', 'surface water')",emission,kilogram,biosphere3,6.677786324715253e-13,7.789807433847106e-12,2.1207460492703095e-10,3.047182704005236e-11,8.412538162021631e-11,1.0170611652245023e-09,1.8996278755358474e-11,5.851546572573429e-11,6.251910990486238e-10,2.332839092727434e-11,6.824692947774929e-11,5.347683295341966e-10,6.1660739332369224e-12,2.7093839630327896e-11,7.942300120223598e-10,2.6063534108638174e-12,1.5125969731872197e-11,7.72027361809319e-10,1.7514758612534252e-11,3.3598897086511785e-11,7.725370147432252e-10,2.1690606336930534e-10,2.2625464457466555e-10,2.3889319524027385e-10,7.884395089642322e-10,8.257661724949221e-10,8.766379357560648e-10,8.097558801683003e-10,8.443989949742576e-10,8.912026604680228e-10 +1659,Technetium-99m,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,3.8569210864692886e-07,8.540079963181064e-07,2.092560222348187e-06,3.1055212992786527e-06,7.395139995238485e-06,6.551903442834594e-06,3.226336137194845e-05,7.046108154037408e-05,8.548309991693729e-06,3.2224098484586224e-05,7.032308683212874e-05,8.255000433687323e-06,6.830271997109791e-07,2.103999593650925e-06,5.1054527881381866e-06,3.461172105266658e-05,7.559046398101371e-05,8.905201003619777e-06,4.051021440996793e-05,8.810872560244624e-05,9.11782534350131e-06,1.692598033373086e-06,1.7645655288277474e-06,1.8627121633405e-06,5.5487784256657324e-06,5.775930341188531e-06,6.083065954258122e-06,5.774110480491854e-06,6.0231221918642545e-06,6.362243971638139e-06 +1660,Tellurium-123m,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,2.3061241205413414e-06,5.244973193349197e-06,2.096919328441491e-06,1.3932716959048974e-06,3.175658439658665e-06,1.1917927354532706e-06,4.219094045053701e-07,1.0792600259857277e-06,1.3653026596126478e-06,4.1617221380160025e-07,1.051920088633109e-06,1.3057220618248232e-06,5.062650966296602e-07,1.293978343315985e-06,1.541897101140028e-06,6.011862529482438e-07,1.4700921908264422e-06,1.3777599754879796e-06,5.736751348000349e-07,1.3762881722795714e-06,1.2940313349866733e-06,1.7260638113559122e-06,1.8017173229969074e-06,1.9050886902911727e-06,8.4656604946191e-07,8.796012419519679e-07,9.241753698440463e-07,9.417435239483344e-07,9.80157688385804e-07,1.0323692325837976e-06 +1661,Tellurium-132,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,9.686644911706024e-10,2.140952142609972e-09,5.247377244209966e-09,6.402508326765897e-08,1.4234141011301621e-07,3.8077856088103794e-08,1.4514970925677165e-08,3.5554953472007956e-08,4.869213837966933e-08,1.4377037384871155e-08,3.4967189830795804e-08,4.729353516309684e-08,4.774021813196371e-09,1.5502854644304042e-08,5.289509017097689e-08,1.591816684245152e-08,3.896401989935773e-08,5.0647734073451725e-08,1.8058665932686112e-08,4.2498306291720376e-08,4.948742605030354e-08,4.2426780756416745e-09,4.423052810571269e-09,4.6690397080913084e-09,2.6389024189712074e-08,2.7465739821889428e-08,2.891928705198388e-08,2.82722756608487e-08,2.9469353986782495e-08,3.109679940323342e-08 +1662,Thallium,"('water', 'ground-')",emission,kilogram,biosphere3,7.985255394018958e-09,9.130463920539357e-09,1.0183167926105353e-08,9.592700140856205e-09,1.0848722188845396e-08,1.2201894141007758e-08,8.4021839009422e-09,9.617318367123951e-09,1.0834190032105817e-08,8.4415771847869e-09,9.709206901192866e-09,1.101724502222434e-08,8.462905968113192e-09,9.822449680937971e-09,1.1215332701418673e-08,8.493226180842677e-09,9.870743619112174e-09,1.130263151877354e-08,6.474181622506583e-09,8.167585074576254e-09,1.1022018637853105e-08,2.0972089992045626e-09,2.1907838597027584e-09,2.317571163290026e-09,4.159066803359854e-09,4.369554934919012e-09,4.65588151995482e-09,2.6493338002698197e-09,2.774305405198427e-09,2.9438197117449003e-09 +1663,Thallium,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,4.8113991755726445e-06,5.534211634437199e-06,7.096507277341285e-06,5.795338803032165e-06,6.5996995662106605e-06,7.5535070097940156e-06,5.321067163734835e-06,6.3775617149671324e-06,8.083618412531907e-06,5.345394136114829e-06,6.435321696343628e-06,8.199792095878748e-06,5.401495950916768e-06,6.596730884977128e-06,8.308989326454053e-06,5.369533347977837e-06,6.470413164574842e-06,8.457260462021343e-06,2.9543492115231457e-05,3.7029570038088076e-05,5.000118125397541e-05,1.363125859308878e-06,1.4232254149827618e-06,1.5046706077831692e-06,1.8422207827576282e-05,1.9360784845548917e-05,2.0638839993559252e-05,1.823662432157875e-06,1.9097652167621047e-06,2.0267018811549185e-06 +1664,Thallium,"('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.568692969700435e-12,2.0897640140738388e-11,4.4410649769728154e-11,0.0,0.0,0.0,3.3462755467464516e-11,3.511192798011609e-11,3.734583544588246e-11,0.0,0.0,0.0 +1665,Thallium,"('water', 'surface water')",emission,kilogram,biosphere3,3.803588497222784e-09,9.395119346533104e-09,1.064821793297751e-06,5.495623488095843e-09,1.2414636899433961e-08,1.0516437029174622e-06,3.131458041935717e-09,7.161910461628377e-09,1.0483970708047755e-06,3.478505122792791e-09,8.010962366423754e-09,1.0491762803833919e-06,2.396539530468253e-09,5.691787306624331e-09,1.0475366898979586e-06,1.9297682162096036e-09,4.618371102052138e-09,1.0474586518285574e-06,1.7531215414118996e-09,3.986035467710562e-09,1.0468503098615843e-06,1.1668738760708574e-06,1.1672168663813512e-06,1.1676850025717069e-06,1.162519231749e-06,1.162694355255408e-06,1.1629305825006283e-06,1.1629961104461026e-06,1.16319812309817e-06,1.1634727401616467e-06 +1666,Thallium,"('water',)",emission,kilogram,biosphere3,5.898465267472195e-14,3.1822675030966074e-13,8.328172238140337e-13,1.8234087783625793e-10,3.5189594246203806e-10,7.963217092142676e-10,1.2738740522452236e-10,2.372382867426519e-10,5.743001978594588e-10,1.0727965707846929e-10,2.1819984977342203e-10,5.548144146893071e-10,1.104344773565626e-10,3.822496338396032e-10,1.1480325713389183e-09,1.0246884821381132e-10,3.647728548852752e-10,1.1496992920399982e-09,1.2958754498852728e-10,3.84871948158132e-10,1.138495590141536e-09,7.825133772920209e-13,8.199816441087297e-13,8.708134375651318e-13,8.459762703107144e-10,9.028233185026798e-10,9.779226077463403e-10,8.918338729700605e-10,9.491714252287493e-10,1.0250517965826072e-09 +1667,"Thiocyanate, ion","('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.950720869260923e-12,3.013095066101288e-11,7.236722517535416e-11,0.0,0.0,0.0,6.208240733212814e-11,6.810231192271943e-11,7.669999288625224e-11,0.0,0.0,0.0 +1668,Thorium-228,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,3.951368985271372e-09,4.611768612467301e-09,6.2167846331622294e-09,7.218109944568257e-09,8.221269325563649e-09,1.2490927503488542e-08,6.841948858304019e-09,7.863484604737263e-09,1.282539781411188e-08,6.833113885953741e-09,7.888769879278217e-09,1.3424518555805153e-08,6.819922595459074e-09,7.969416607417233e-09,1.3664094379284407e-08,6.790501783571327e-09,7.910989475346506e-09,1.3515177535940623e-08,8.035625517797303e-09,9.30759983628032e-09,1.5542284219799325e-08,2.3058500919109647e-09,2.475130695180938e-09,2.713996158184874e-09,7.292889454131411e-09,8.117722952572488e-09,9.275463998092403e-09,6.67010574789139e-09,7.3746323204878875e-09,8.37776482860234e-09 +1669,Thorium-228,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.0006278031232667222,0.003888839097874182,0.014822135059335896,7.777625030768305e-05,0.0005827164505549603,0.002188119540508525,5.758779232846976e-05,0.0005445248028967519,0.0021406723604748055,5.705625743835652e-05,0.0005346011254416602,0.0021216688331407666,4.5753417768267436e-05,0.00043991465163145313,0.0017631656854051382,5.320161947250653e-05,0.0004575264913418614,0.001783454393432736,4.812334123469437e-05,0.00040952506535874976,0.001638491168778569,0.013629432012336917,0.01514859857074471,0.017343722523140436,0.001562356166215643,0.001735417266276915,0.001985400715343231,0.0017161023430748584,0.0019018465556169544,0.0021698932242191393 +1670,Thorium-228,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.0013525753476589851,0.007905664585867672,0.029713689257118373,0.0012601420023799648,0.009586393231962306,0.03605689415931954,0.0009703277748252443,0.009363058885424713,0.036870384242468024,0.0009611037261680153,0.009191817915032695,0.036540522765090205,0.0008755562768210382,0.008631049256830973,0.034656889235435896,0.0010480262859137424,0.009007563470302212,0.035108617106150444,0.00094831647278566,0.008063130508131136,0.03225568483551577,0.027223708731437247,0.03023602994486964,0.034587358366226,0.030755714383243673,0.03416221385856065,0.03908280542579223,0.03378171405916704,0.03743784381071018,0.04271395858340343 +1671,Thorium-230,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.018243340367329802,0.04257729691288686,0.02820214779177813,0.012506221175491588,0.029123725579804232,0.01874048968687931,0.01013146950720243,0.023214146280274652,0.010442323135690532,0.010082248428972079,0.02298478980002558,0.009951079327028968,0.0035986896828762386,0.009277470627889736,0.010764099538842322,0.011908167378273897,0.027058217677689074,0.010373064580723368,0.013018630726661828,0.029178226430849045,0.009774676202238295,0.020798986530902133,0.02170269356069341,0.022936936790109268,0.006674753177578934,0.006935026205669239,0.0072863123040254486,0.007432362360407584,0.007736077400869171,0.008149003532463617 +1672,Thorium-232,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,0.0,0.0,0.08320883260510947,7.496348438696877e-15,2.70625282284567e-14,0.08320883260515066,7.078854279106685e-15,2.7589811414111663e-14,0.08320883260515058,6.957953516834994e-15,2.7435442849399178e-14,0.08320883260514975,5.926550922034492e-15,2.609758638184638e-14,0.08320883260515215,5.983060173599339e-15,2.605843391182046e-14,0.0832088326051517,2.85076753217026e-10,3.23126581802047e-09,0.08320884541719197,0.07355283452671703,0.09275334605750896,0.12068639571644249,0.07355284683411391,0.09275335984549436,0.12068641165116394,0.07355283452673804,0.09275334605753098,0.12068639571646589 +1673,Thorium-232,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,7.685650119994049e-05,0.00017105886122326667,0.049988344947162526,6.971152299375988e-05,0.0001515703739379719,0.04997962697443473,8.260783331475592e-05,0.00017988222677224686,0.05012546818511326,0.0001055964158722882,0.00023187179043373637,0.05017616522748207,0.0001246224414201862,0.0002734099230184188,0.050175463747238226,8.953824638348753e-05,0.00019717770861469634,0.050176845148826144,3.421236280364644e-05,7.641460770351157e-05,0.05017026162607806,0.05570903418178698,0.055710454915325065,0.05571239738162276,0.05571438558679283,0.05571590855191212,0.05571796941395928,0.055718164441996273,0.05571985752486219,0.05572215675437559 +1674,Thorium-232,"('water',)",emission,kilo Becquerel,biosphere3,0.0,0.0,1.422373266705754,0.0,0.0,1.422373266705754,0.0,0.0,1.4223732667057543,0.0,0.0,1.4223732667057538,0.0,0.0,1.422373266705754,0.0,0.0,1.422373266705754,0.0,0.0,1.4223732667057543,1.5209436942178227,1.5855273496723363,1.6727151660903143,1.5209436942178225,1.5855273496723363,1.6727151660903148,1.5209436942178225,1.5855273496723363,1.6727151660903148 +1675,Thorium-234,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.000133728024881459,0.0003121010155473985,0.00020674276100506338,9.532058328731722e-05,0.00022197675957222242,0.00014283649420496203,0.00011971125651672517,0.00027429329191146445,0.00012338248644944242,0.00011912967200080256,0.00027158326021606527,0.00011757804740904466,4.252121232522228e-05,0.00010962024400398506,0.0001271855787962775,0.00014070438979340194,0.0003197141119156573,0.0001225651895061278,0.00015382538409298665,0.0003447637314214883,0.0001154947703168863,0.0001524585384877945,0.00015908278281630568,0.0001681298833213351,7.886686856006475e-05,8.194217117583855e-05,8.609285513529309e-05,8.781856730991209e-05,9.140716856846667e-05,9.62861737425755e-05 +1676,"Tin, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,4.576144080329698e-05,5.1660191634420656e-05,6.0054348869562624e-05,5.640362481176343e-05,6.740935032276933e-05,8.368460091030923e-05,4.974693625290383e-05,6.0779816031931564e-05,7.564577781557162e-05,4.85801375087159e-05,5.550897136650678e-05,6.384596077038992e-05,4.8605354346798505e-05,5.5948866043056476e-05,6.484996254104676e-05,4.871945994503872e-05,5.5961752030305394e-05,6.48333267481864e-05,0.0002582057915970454,0.0002936669006608762,0.0003406351003225286,1.2020812015232933e-05,1.2573694956422028e-05,1.3321370100022955e-05,8.004457558756086e-05,8.400075228698907e-05,8.937978414900076e-05,1.4977548311347651e-05,1.5699031637460128e-05,1.667759057786545e-05 +1677,"Tin, ion","('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.43035555112595e-27,1.0148497066666938e-25,2.8068335398299876e-25,5.463190572472664e-28,8.364241008818951e-27,2.2994965138238058e-26,0.0,0.0,0.0,2.3068258224924246e-26,2.408521895221538e-26,2.544825485081349e-26,2.833729245158935e-25,2.9563135329522505e-25,3.12071944092271e-25 +1678,"Tin, ion","('water', 'surface water')",emission,kilogram,biosphere3,5.2991596134506826e-08,8.348988413072507e-08,6.015510946449185e-08,4.958278512247638e-08,7.577311168906697e-08,4.887412051937557e-08,4.9664291048174507e-08,8.050423227664828e-08,8.654325629386912e-08,5.593454910298666e-08,9.465304181397424e-08,1.0018890928809091e-07,6.104360735165153e-08,1.0461909693152087e-07,9.770987101155652e-08,5.1481525221396606e-08,8.379154099498082e-08,9.779810758940893e-08,4.200725863980916e-08,6.4364633926096e-08,1.1257843092921577e-07,2.2197518512994354e-08,2.3111901069604274e-08,2.4355872899347014e-08,1.8745157035323895e-08,1.9518028090440744e-08,2.0566897111952608e-08,1.8490492439358058e-08,1.923774899972514e-08,2.0254259481772664e-08 +1679,"Tin, ion","('water',)",emission,kilogram,biosphere3,2.730477140850091e-12,1.4737635107869467e-11,3.857131185469576e-11,8.439916793737659e-09,1.6288030028816964e-08,3.6858945912889876e-08,5.896314252120314e-09,1.0980931108032432e-08,2.6582351669197717e-08,4.965597488758121e-09,1.009970899224888e-08,2.5680423486664002e-08,5.111623042892914e-09,1.769299647585316e-08,5.3138404136721175e-08,4.742922177445859e-09,1.6884057883394307e-08,5.321555030590759e-08,6.317984401077404e-09,2.0523423360029627e-08,6.346684265665438e-08,3.624350509975089e-11,3.797875146058205e-11,4.0332875620838415e-11,4.940041233781479e-08,5.317996419320667e-08,5.831537059291801e-08,4.1279869464849006e-08,4.393382364054515e-08,4.7446059888894284e-08 +1680,"Titanium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0001325785900066089,0.0002723175305651041,0.001150188903901212,0.0001534182738673417,0.00027301348733619734,0.0004519172855927516,0.00040227880006600303,0.0008248649552849345,0.0019096301527103282,0.0004027370494387866,0.0008266365152246985,0.0019140742197607248,0.00044448061259532134,0.0009217052082315957,0.0019175786447140702,0.00035615804816267716,0.0007341359363802268,0.0019168284271291872,0.0023015196179441803,0.002778398313027626,0.0045305974403607105,0.00026330986017048273,0.00027791482870966825,0.00029819453390085636,0.0010035493159088757,0.0010584586542811167,0.00113370761368837,0.00039738146596738787,0.0004195868849516799,0.0004502961746012496 +1681,"Titanium, ion","('water', 'ocean')",emission,kilogram,biosphere3,1.4076722371443254e-09,3.59431019475305e-09,3.879515675170749e-09,1.573001497078742e-09,3.93477778604636e-09,3.3902205413137024e-09,8.772790171399069e-10,2.4315154870410057e-09,3.2591593851486594e-09,8.908551750790919e-10,2.464440947734967e-09,3.2464285029835498e-09,1.2913377489244048e-09,3.3225815878200645e-09,3.3649828877086294e-09,9.610341073477062e-10,2.609511038648244e-09,3.3681262112168607e-09,1.4376962275622794e-09,3.5852467550102814e-09,3.2232504444931193e-09,3.489481681873158e-09,3.849494767222325e-09,4.36663656188362e-09,2.9954771201383576e-09,3.2827613567586897e-09,3.6941896547433935e-09,3.183344075940021e-09,3.488034515249691e-09,3.9243602292105465e-09 +1682,"Titanium, ion","('water', 'surface water')",emission,kilogram,biosphere3,1.453786686995499e-07,3.3768867508855365e-07,1.731455175690954e-06,1.5817415864364778e-07,3.1448703617365663e-07,5.25469032985115e-07,5.868962838137454e-07,1.2506112188918172e-06,2.9948504402975437e-06,5.879125184148425e-07,1.2536024518658827e-06,3.002393690380991e-06,6.516002156331679e-07,1.3981707010471053e-06,3.006403429179293e-06,4.889838667647797e-07,1.0710580913539403e-06,2.9630578591314034e-06,3.0215973578426796e-07,6.257150307795555e-07,2.8939159025268518e-06,3.4150098538909746e-07,3.615957689836389e-07,3.8960584829825854e-07,6.063112744947632e-07,6.452255711560572e-07,6.990953346358362e-07,5.688635722312005e-07,6.013064604812277e-07,6.462638170130387e-07 +1683,"Titanium, ion","('water',)",emission,kilogram,biosphere3,4.286948528479875e-12,2.3128417445188566e-11,6.0528363207714e-11,3.957315296864353e-07,5.171741012655824e-07,8.052537816640774e-07,3.472234779003245e-07,4.658414151493432e-07,9.019551172988469e-07,3.4734414692796826e-07,4.676450444366715e-07,9.032233089146762e-07,3.590709605542474e-07,5.084624055911071e-07,9.507072808238386e-07,3.652939134082009e-07,5.209025721574381e-07,9.802773167738241e-07,4.4806438403703776e-07,6.180331247129827e-07,1.1349235083811164e-06,5.687232743089602e-11,5.959548540171368e-11,6.328989177005864e-11,5.193799878825636e-07,5.578597314348459e-07,6.102646508712479e-07,4.627440099063884e-07,4.908531075988619e-07,5.298363274108947e-07 +1684,"TOC, Total Organic Carbon","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.002192056984884794,0.002739544191966084,0.0035800643668381293,0.0028504872421126117,0.004384707289443716,0.007406003980157583,0.002071654134320509,0.00263042624808951,0.0035446467028747435,0.002095442206502523,0.0026126557268607927,0.003464945636670634,0.0021051019189509204,0.002641974889691022,0.003456252325170732,0.003914227679763982,0.005941483871490389,0.00956201111923345,0.011304408774025616,0.01431622158238162,0.019563053010746057,0.0013435494622943886,0.0014331572187283835,0.0015554869724406122,0.007517139114718085,0.007928142760104501,0.008488452541582418,0.0051002675002894335,0.0053884969630501696,0.005781205845838835 +1685,"TOC, Total Organic Carbon","('water', 'ocean')",emission,kilogram,biosphere3,0.0003058249434629664,0.0010478817231228438,0.0024269386518044602,0.0002842863552540561,0.0008942084905813673,0.0014993972740890986,0.0001611862522331258,0.0006306762958382131,0.0014539160206129477,0.00016348052866215295,0.000631113063413576,0.0014443819982067332,0.00012018048037093421,0.0005234536462968973,0.0013596333183010624,0.00010095266558249367,0.00048042907083746376,0.0013330549888878726,0.0001321035350959753,0.0005070293943347001,0.001192616763997706,0.0022094331750583253,0.002460746055811261,0.0028237341675024304,0.0011323191259221177,0.0012570038331594763,0.0014370705008639538,0.0012824940717635891,0.001417144933470545,0.0016112160377734887 +1686,"TOC, Total Organic Carbon","('water', 'surface water')",emission,kilogram,biosphere3,0.0005788065414775338,0.003291394825610813,0.012207193864706768,0.0004450279871914801,0.0028840657039755965,0.01047295470418583,0.00035656260594725883,0.0028570599362687885,0.010879528371048474,0.0003558896993072897,0.0028127066400524207,0.010791728925536197,0.0003257083706699421,0.0025526662238649204,0.009848893498989614,0.00037238975062089616,0.0026536100055187216,0.009969948287879619,0.0003754859146485684,0.0024765597426666024,0.009250011942802696,0.011133259026550948,0.012408705256814806,0.014242313078513586,0.008655643547165014,0.009631226048199689,0.011034436454378604,0.009495862429676146,0.010542825777822697,0.012047658727384848 +1687,"TOC, Total Organic Carbon","('water',)",emission,kilogram,biosphere3,4.3868020243302886e-07,3.703069596963894e-06,8.928602640816309e-05,9.198611969838505e-06,2.1107706684019987e-05,0.00012719139422228144,6.705897477439912e-06,1.5927587643919052e-05,0.00011726848797895433,5.775735165192358e-06,1.4869253508655948e-05,0.00011587730196502879,6.888416680950383e-06,2.630079646136368e-05,0.00016210820691082495,6.470391303819506e-06,2.5506588857182592e-05,0.00016361997232326424,8.289451107532032e-06,3.014606781296502e-05,0.00017787284778914312,8.959831335801252e-05,9.555017068864408e-05,0.00010337620352735317,0.00014798289132379662,0.0001738164158872664,0.000206935831636386,0.00013615955911000738,0.00016057020705010998,0.00019161289686788055 +1688,Toluene,"('water', 'ocean')",emission,kilogram,biosphere3,4.501866650806031e-07,2.906508734569751e-06,1.1161199847562097e-05,1.4255174730228539e-07,1.0933481033176832e-06,4.1200037008052495e-06,1.0629133275377467e-07,1.0251101478716498e-06,4.0357531230579e-06,1.036767815669225e-07,1.002042436129447e-06,3.992713623589282e-06,9.685643236430787e-08,9.389602983258603e-07,3.7510891989833205e-06,1.1305702657565593e-07,9.741181885706584e-07,3.7964295273998002e-06,6.326048141873194e-08,5.109500234289281e-07,2.009953465706662e-06,1.0298963368300267e-05,1.1454820576168823e-05,1.3125195848627967e-05,1.9163780637595846e-06,2.1284341855008633e-06,2.4347289458379397e-06,3.6561448380747484e-06,4.0518031347442e-06,4.622795282348056e-06 +1689,Toluene,"('water', 'surface water')",emission,kilogram,biosphere3,7.753424562432765e-07,4.546432939700775e-06,1.7097569586717587e-05,7.168984481139534e-07,5.44420014250214e-06,2.047774102846619e-05,5.499886106681384e-07,5.303368549249312e-06,2.088916917141973e-05,5.459987129161064e-07,5.209688040573575e-06,2.0714250968988953e-05,4.974768189752048e-07,4.893683869107145e-06,1.965263582915458e-05,5.962527392136186e-07,5.109513595548978e-06,1.9911076156357235e-05,5.142672484632388e-07,4.358515660663101e-06,1.7435219247883068e-05,1.567948815805089e-05,1.7402865321232048e-05,1.9891623040448446e-05,1.662315714138656e-05,1.846351758861892e-05,2.1121808601741483e-05,1.9157258140513888e-05,2.1229816491020583e-05,2.422063270212196e-05 +1690,Toluene,"('water',)",emission,kilogram,biosphere3,3.9349178735979635e-11,2.1229185738507667e-10,5.555796793143346e-10,1.2164120022611842e-07,2.3475287222296999e-07,5.312332024730337e-07,8.498125625522346e-08,1.5826374360690407e-07,3.8312070330351135e-07,7.156720095748758e-08,1.4556303518194624e-07,3.7012156630130714e-07,7.389576703827061e-08,2.5529552059865665e-07,7.662080963768917e-07,6.85817225800686e-08,2.4363742957663083e-07,7.673200175705629e-07,8.673817977866175e-08,2.571280220708048e-07,7.60138129554347e-07,5.220215424034812e-10,5.470169520603902e-10,5.809272876303262e-10,5.646288075832984e-07,6.025989249680439e-07,6.527658906691373e-07,5.950194921971568e-07,6.332724920414083e-07,6.838966223041412e-07 +1691,"Toluene, 2-chloro","('water', 'surface water')",emission,kilogram,biosphere3,5.395326886410634e-12,8.508672500449751e-12,1.1062044311094525e-09,5.901021516334015e-11,1.2576859507278548e-10,1.6734597704733267e-09,6.36529287852103e-11,1.394773938542747e-10,1.4207257269075188e-09,1.063560316135516e-10,2.3453195103681544e-10,1.3025056302959448e-09,1.066786252110209e-11,1.9839042783543868e-11,1.5424050276026778e-09,8.868299270374057e-11,3.9050352807953814e-10,2.540362421532007e-09,2.3375694105532e-10,5.850165046222343e-10,3.4241241399630976e-09,1.1730018793034267e-09,1.2244734224254389e-09,1.2941699611444405e-09,3.3351516527146857e-09,3.505300791247522e-09,3.739095329824088e-09,2.608749278275961e-09,2.717657986196563e-09,2.8651629679065046e-09 +1692,Tributyltin compounds,"('water', 'ocean')",emission,kilogram,biosphere3,5.871000112862156e-08,1.6481786960661243e-07,2.4462325490216153e-07,2.0345144533904905e-08,8.536701052423586e-08,2.1287531837286512e-07,1.810425400582343e-08,8.141982267491485e-08,2.0449159808211328e-07,1.809942869067509e-08,8.077053308055074e-08,2.033185343446247e-07,1.9280954290278652e-08,8.11985014085886e-08,1.9653651104765334e-07,6.340110608853548e-08,1.806989163385556e-07,2.3517303221390032e-07,7.276596617132864e-11,2.75762000062727e-10,6.623129609026741e-10,2.1772774173506222e-07,2.407505758181476e-07,2.7390081527005224e-07,5.681850506625486e-10,6.232798718703877e-10,7.019667814976324e-10,1.9771181003412695e-07,2.1574186218465517e-07,2.414911160194061e-07 +1693,Triethylene glycol,"('water', 'ocean')",emission,kilogram,biosphere3,5.044081127498675e-08,1.1680485038020451e-07,4.195478585366784e-07,1.30882329315337e-08,3.9041579032436645e-08,2.2207906603667384e-07,2.7046205410880742e-08,6.682429186925995e-08,2.160863131217229e-07,3.0186541152454906e-08,7.861819228087966e-08,2.2593411669039013e-07,1.8375308739705994e-07,4.113875271158519e-07,2.1906400899228603e-07,1.3367255777451366e-07,3.027471780667471e-07,2.1249077324625926e-07,1.9761722056103743e-07,4.406508332596626e-07,2.2399477612603567e-07,3.756899847611377e-07,3.9641903010715494e-07,4.2403548588250823e-07,2.0716642969302974e-07,2.1658917597055685e-07,2.2922611589462914e-07,2.0004387726117048e-07,2.0937292224507285e-07,2.2188639702653316e-07 +1694,Triethylene glycol,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2346096735712002e-09,4.188978885205987e-09,1.0561393200443806e-08,2.209462661411986e-10,1.9858811531730277e-09,7.206219575423222e-09,2.8368107940503726e-10,2.139860700403282e-09,7.524153091523903e-09,1.3220039950724168e-10,1.0570733658585613e-09,3.760221573691788e-09,1.1184148261923864e-10,1.0227950731115087e-09,3.709745464730471e-09,1.4765763128996162e-10,9.850023165552626e-10,3.4638153004445114e-09,0.0,0.0,0.0,3.401849202501545e-09,3.5764456778633645e-09,3.8099023929550626e-09,3.6954848680699107e-09,3.879535024064017e-09,4.125743972641403e-09 +1695,Triethylene glycol,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.234625414809953e-09,4.18902547385943e-09,1.0561509380992056e-08,2.20962497039535e-10,1.9859334195674287e-09,7.206409577565082e-09,2.836972143355142e-10,2.1399128249557677e-09,7.52434252651001e-09,1.3230660832201163e-10,1.0591003896637807e-09,3.7658625942750256e-09,1.1195454350383676e-10,1.024797939586815e-09,3.715285895618444e-09,1.477986658885471e-10,9.870498931191353e-10,3.469442801979086e-09,0.0,0.0,0.0,3.4074851796574805e-09,3.582330211978871e-09,3.816120080982864e-09,3.7010764200311346e-09,3.885368515773782e-09,4.131901966091159e-09 +1696,Trimethylamine,"('water', 'surface water')",emission,kilogram,biosphere3,2.0481629366444295e-14,5.722687548036202e-14,1.9470186945417253e-11,5.62346187616966e-12,1.2624417083536619e-11,2.6831087307913524e-10,4.056281409847452e-12,9.245550564677151e-12,1.859230642527151e-10,5.699620086029157e-12,1.2979417169080883e-11,1.4549130334433313e-10,6.036039062440587e-13,1.4980025670949365e-12,2.3048595557095717e-10,5.019499355321393e-13,1.2459200702370662e-12,2.2804545457705482e-10,9.962992283879057e-12,1.3529804923414823e-11,4.0366216438377795e-10,2.076281647601637e-11,2.1644697601478643e-11,2.2835330764105045e-11,4.173951217610865e-10,4.3730983809450046e-10,4.6446811403420266e-10,2.4332580582664465e-10,2.536650426521068e-10,2.6762483030784525e-10 +1697,Tungsten,"('water', 'ground-')",emission,kilogram,biosphere3,1.0072474571521089e-06,1.169858759832174e-06,1.3702732338097921e-06,1.1905770723060183e-06,1.3249701045887438e-06,1.477601651408902e-06,1.0517630491450545e-06,1.205562606215776e-06,1.388726606254391e-06,1.0564210252547497e-06,1.215968940924462e-06,1.4094708968502677e-06,1.0549644818356072e-06,1.2220362778484434e-06,1.4324465467218668e-06,1.0568091609879633e-06,1.2221834285732606e-06,1.4201570796161267e-06,2.3578485476847524e-07,2.8588845040900756e-07,3.6254537023808377e-07,3.67319546418854e-07,3.836130779675201e-07,4.0573949303908903e-07,1.2579537491698138e-07,1.3150442559255375e-07,1.3923854224131606e-07,3.6359064655709283e-07,3.8049479867545465e-07,4.034385477490157e-07 +1698,Tungsten,"('water', 'ground-, long-term')",emission,kilogram,biosphere3,6.82502376803252e-05,7.666216164299336e-05,8.685436237397744e-05,8.20414644875977e-05,9.143844892663877e-05,0.00010198588251375448,7.273862476388565e-05,8.29519997680432e-05,9.617188103015578e-05,7.30806153740064e-05,8.376131993661823e-05,9.779992321436282e-05,7.322320782550831e-05,8.462732193919953e-05,9.938761437994468e-05,7.296579528726438e-05,8.39298582960694e-05,9.908886087486475e-05,1.1885703685609442e-05,1.4027687465820413e-05,2.1157327032927195e-05,1.6501219917401567e-05,1.7237370808758205e-05,1.823389521461144e-05,4.434313263735832e-06,4.64899691947492e-06,4.940231720363275e-06,2.150910563530897e-05,2.2521268318423507e-05,2.3894871089871816e-05 +1699,Tungsten,"('water', 'surface water')",emission,kilogram,biosphere3,9.892579881184315e-08,2.301870624061056e-07,1.5371644242755146e-06,1.0607155059376497e-16,2.2843707051899095e-16,5.546320488684666e-16,6.161602305298994e-07,1.3284641545795582e-06,3.3932043081491726e-06,6.166102453772945e-07,1.332192860675875e-06,3.4030880229640536e-06,7.123931967700516e-07,1.5388801704764192e-06,3.384960945535845e-06,5.046535606528078e-07,1.111018071518674e-06,3.4267084431586086e-06,2.0756679484712868e-07,4.510008421548644e-07,3.189172799531105e-06,1.74006350777371e-07,1.8039908560826666e-07,1.890712900745996e-07,4.3238590848105886e-07,4.523250466252675e-07,4.791592436786694e-07,4.737516115845293e-07,4.940758782306977e-07,5.216877050997927e-07 +1700,Uranium alpha,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.007702697888435574,0.017977087252260656,0.01190699027707527,0.005765207762016543,0.01342567571876478,0.008639135209858892,0.0046725954213888915,0.010706265721163179,0.0048156802150583775,0.004649895126377466,0.010600487341451591,0.004589120912264087,0.001659686780261926,0.004278686646707364,0.004964204181628036,0.005492010550192795,0.012479153303528629,0.004783863764995558,0.006004151026714815,0.01345689932764488,0.004507891331631704,0.008782349846344684,0.009163939926929193,0.009685098851660632,0.0030782677477357223,0.0031982999729608273,0.0033603054462222537,0.003427666493626996,0.003567733540899971,0.0037581664751283874 +1701,Uranium-234,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.00016045126448645098,0.0003744698612341972,0.00024803956858635695,0.00011434009683847147,0.0002662682481273787,0.00017133787860684798,0.000138500930653406,0.0003173459547853812,0.00014275041458178088,0.00013782806033209278,0.0003142105669777938,0.00013603493025556466,4.919541729428706e-05,0.00012682645051231576,0.00014714921687474184,0.0001627890468500155,0.0003698958307596134,0.00014180362455183147,0.0001779694910194299,0.0003988771335308443,0.00013362343437757775,0.00018292832481444385,0.00019087648193838946,0.00020173172461403303,9.124634154183767e-05,9.480436997874802e-05,9.960658070574126e-05,0.00010160313892645229,0.00010575503571965019,0.00011139988847040265 +1702,Uranium-235,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.0002647445760345407,0.0006178752468882716,0.0004092652719932957,0.0001886611524571509,0.0004393425923491056,0.00028270748872303057,0.00015453593746512386,0.000354086823764736,0.00015927740728428826,0.00015378516528326226,0.0003505884350400061,0.0001517844347750847,5.489103859948356e-05,0.00014150983919625315,0.00016418548286799918,0.00018163602111075222,0.00041272068498892267,0.00015822100221772907,0.00019857398795177677,0.0004450573109711092,0.00014909374689016895,0.0003018317240134869,0.0003149461827409975,0.00033285733243489167,0.00010181042729423395,0.00010578038805504814,0.0001111385768636488,0.00011336628749947429,0.00011799887198947264,0.00012429726007664847 +1703,Uranium-238,"('water', 'ground-')",emission,kilo Becquerel,biosphere3,1.653433663232284e-07,1.9297750973646928e-07,0.0002204435171585585,3.0203437897349434e-07,3.4401055054706746e-07,0.00022070604843251552,2.8629430563159954e-07,3.2903941732490933e-07,0.0002207200439983877,2.85924615310257e-07,3.300974536041028e-07,0.000220745113588959,2.8537263933984736e-07,3.334720329198876e-07,0.00022075513839266066,2.8414155565895297e-07,3.310272095545491e-07,0.0002207489071202788,3.362432312822962e-07,3.894754892200567e-07,0.00022083376324150318,0.0001947286086046698,0.0002455432008996878,0.00031946834492784936,0.00019493731732478424,0.00024577934437387984,0.0003197429433447068,0.00019491122498913301,0.0002457482139978608,0.00031970533784859555 +1704,Uranium-238,"('water', 'ocean')",emission,kilo Becquerel,biosphere3,0.00019444630977854415,0.00022730883873066572,0.0006052518452809123,5.899153416004391e-05,6.719006692530724e-05,0.0001020847537848173,5.59172779152223e-05,6.426599542340898e-05,0.00010481828332305956,5.584507223017477e-05,6.447264469147072e-05,0.00010971472463149167,5.573726361130087e-05,6.513174717854519e-05,0.0001116727088518125,5.549681578900636e-05,6.465423905494619e-05,0.00011045565437760265,6.567285354203056e-05,7.606833338815187e-05,0.00012702261361004956,0.0004331462276347782,0.00045509692167133116,0.0004852452765348767,5.960268555884843e-05,6.634381223523679e-05,7.580569643496167e-05,5.4512853655302895e-05,6.02707464684949e-05,6.846905961070717e-05 +1705,Uranium-238,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,0.0005645022966712702,0.0013000843234161647,0.0008414538243889019,0.00043351635911489754,0.000987028277126416,0.0006301927510017204,0.0004517128958601678,0.0010153587993393396,0.0007914804645203875,0.0004984245460629258,0.0011177485276682427,0.0008839561306735264,0.0003596703027470195,0.0008271463950641305,0.0009048773079625651,0.0005151281898185051,0.0011573751938254802,0.0008969978735031734,0.0004300057230459262,0.0009630265627681078,0.0008658742396100184,0.0006748014012499632,0.0006977748874942052,0.0007291554346213386,0.0004085761431914129,0.0004188258450625403,0.000432660664679368,0.00043818521052230207,0.00045008860847453775,0.00046626671904469587 +1706,Urea,"('water', 'surface water')",emission,kilogram,biosphere3,6.986289863827593e-12,9.68467753039906e-12,5.766172665115261e-11,1.8602532566742038e-11,3.336015936490522e-11,5.215237944295787e-10,1.4803269146977468e-11,2.63301628589479e-11,3.67247098740135e-10,1.786904980921694e-11,3.3281076254656387e-11,2.9198629334936427e-10,8.396689573636348e-12,1.1909477363301864e-11,4.4998617893637137e-10,8.280232569804836e-12,1.1515821411420651e-11,4.4525588990498447e-10,2.00136759832857e-11,2.693005609387124e-11,7.552057378847542e-10,4.9999392296168684e-11,5.431011426204771e-11,6.04036611608196e-11,7.788875192919589e-10,8.164175326856308e-10,8.676390941807274e-10,4.644867924653106e-10,4.863964745576535e-10,5.162492222534772e-10 +1707,Urea,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3804556965275085e-14,1.3939531216239332e-13,2.9623614391033733e-13,0.0,0.0,0.0,2.232094685630713e-13,2.342100844844562e-13,2.491111077833387e-13,0.0,0.0,0.0 +1708,"Vanadium, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,3.2644913371847097e-05,5.156144507795254e-05,0.00014188396028984453,3.536144734896475e-05,4.990777010751025e-05,6.632239726056816e-05,5.314811972069371e-05,9.231433110246204e-05,0.00018022587553971978,5.3251317239252414e-05,9.249210858893637e-05,0.00018061528680052375,5.660178503767577e-05,0.00010025930291027891,0.00018127441040479447,4.980922389026132e-05,8.61407425846141e-05,0.00018260818612679162,1.635229753211239e-05,3.424852725424528e-05,0.00014817103723225683,3.513548926326133e-05,3.680599204839947e-05,3.909711268425032e-05,3.441159227609895e-05,3.6244652797044956e-05,3.874813870172742e-05,4.145417372496059e-05,4.349928056570129e-05,4.6296061629920194e-05 +1709,"Vanadium, ion","('water', 'ocean')",emission,kilogram,biosphere3,1.9212420173191397e-09,1.3639371099555982e-08,5.2298061966169414e-08,1.811642461518033e-09,1.293561656859982e-08,5.035867603223657e-08,1.361701983355733e-09,1.2098864122603979e-08,4.9344164619468766e-08,1.2998768021530747e-09,1.1716879643562176e-08,4.864925306783008e-08,1.185367979241226e-09,1.1051429436640232e-08,4.649239218313294e-08,1.3898381671516434e-09,1.1499279705052044e-08,4.7047702881731595e-08,0.0,0.0,0.0,4.8904072158198665e-08,5.385308973401469e-08,6.097485219632038e-08,0.0,0.0,0.0,4.516188420439745e-08,5.0179526751503563e-08,5.7418572043127055e-08 +1710,"Vanadium, ion","('water', 'surface water')",emission,kilogram,biosphere3,2.2850185470492116e-07,5.441568105050371e-07,1.020982011431759e-06,1.9077617325561284e-07,4.4347396509596123e-07,5.863701670269629e-07,2.1308179355828939e-07,4.829240315398613e-07,8.689639941516743e-07,2.2226245474608048e-07,5.031956140584475e-07,8.857774068465701e-07,1.7282229242404149e-07,3.9957634795667116e-07,8.744620194702664e-07,2.0592242770641674e-07,4.707227216586458e-07,8.723980665264923e-07,1.6833207981122674e-07,3.7523929451363935e-07,8.142254969816761e-07,5.790496877771935e-07,5.961203460668772e-07,6.196793383445101e-07,4.1509010169449993e-07,4.238493767939445e-07,4.35769749152065e-07,4.53793471662418e-07,4.6580292161580016e-07,4.824338447390557e-07 +1711,"Vanadium, ion","('water',)",emission,kilogram,biosphere3,6.743338365525491e-13,3.638083005923554e-12,9.521066903981697e-12,2.0845866813726043e-09,4.023001334586221e-09,9.103836993724564e-09,1.4563387620861284e-09,2.7121936601608276e-09,6.5656069981372235e-09,1.2264597329013788e-09,2.4945393820231383e-09,6.342838496880525e-09,1.2625268107665491e-09,4.370015767671089e-09,1.3124722601470564e-08,1.1714608599532239e-09,4.1702149148047216e-09,1.3143777129785333e-08,2.1211581193447026e-09,9.818093429612797e-09,3.455543652257042e-08,8.945975175839564e-12,9.374325916878063e-12,9.955453314728404e-12,3.015776513839957e-08,3.310426383809783e-08,3.7281473344197195e-08,1.01957666149042e-08,1.0851270202819735e-08,1.171876198975607e-08 +1712,"VOC, volatile organic compounds, unspecified origin","('water', 'ocean')",emission,kilogram,biosphere3,1.0905235063624728e-06,6.795962388294005e-06,2.591342514239026e-05,1.336412987153749e-07,1.0169438131763884e-06,3.82493999161592e-06,9.844006717030628e-08,9.50230717115777e-07,3.7417931007152997e-06,9.751290085562863e-08,9.328556382244814e-07,3.7083321471101265e-06,7.77374392383091e-08,7.671267359197175e-07,3.0808697209079777e-06,9.310237609267764e-08,8.006708602528979e-07,3.121044421007545e-06,8.421530392581077e-08,7.166682655274134e-07,2.8673586273343216e-06,2.3833392402640472e-05,2.6491016001216026e-05,3.0331222259543518e-05,2.7341229282405704e-06,3.03697981202042e-06,3.4744507904864586e-06,3.003178793367722e-06,3.328231133273075e-06,3.797312758009461e-06 +1713,"VOC, volatile organic compounds, unspecified origin","('water', 'surface water')",emission,kilogram,biosphere3,2.7027259973320472e-06,1.4618459035513884e-05,5.2508958163207684e-05,2.4209554839455846e-06,1.7280813588940952e-05,6.343029963795367e-05,1.971373706653078e-06,1.7012858926462245e-05,6.47996926407954e-05,1.9538530892232364e-06,1.6706653556846966e-05,6.42085052192457e-05,1.6363482180082875e-06,1.5371221262848832e-05,6.094260543465961e-05,2.158362018075662e-06,1.650085944775704e-05,6.171965923571172e-05,2.011944720356904e-06,1.4901339225281246e-05,5.670957318715923e-05,4.8021767137157624e-05,5.330985987361815e-05,6.094726183261309e-05,5.400408591147778e-05,5.9972487533437715e-05,6.859300782164149e-05,5.932097542342386e-05,6.572744565522204e-05,7.497185379493647e-05 +1714,"VOC, volatile organic compounds, unspecified origin","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.878176685685183e-10,1.1853880597107666e-09,4.742960631486621e-06,3.8833263665392845e-10,1.203955600288144e-09,1.0907350455704419e-07,3.5926322008692715e-10,1.1159843133873696e-09,1.0867694906768549e-07,9.504301893101562e-10,2.154312105253128e-09,1.1013341135509001e-07,0.0,0.0,0.0,1.1619120437619521e-07,1.2120563301559427e-07,1.279848120621371e-07,1.1574437695690014e-07,1.2075719748605405e-07,1.2753769304185903e-07 +1715,Xylene,"('water', 'ocean')",emission,kilogram,biosphere3,3.6875854980566916e-07,2.2982558690343912e-06,8.767850847723116e-06,8.482136658976771e-08,6.443196842256656e-07,2.4223980444897968e-06,6.262798591988232e-08,6.022677410450125e-07,2.3704204888056507e-06,6.186537683024923e-08,5.908474867157078e-07,2.3485162312582796e-06,5.900705396767942e-08,5.539238865782832e-07,2.1951772249566574e-06,6.875352588287053e-08,5.752001189036414e-07,2.2233163635841013e-06,5.989186777359365e-08,4.822832801439373e-07,1.8952590699455394e-06,8.065467392139147e-06,8.963438955804648e-06,1.026087052591264e-05,1.8070130983165365e-06,2.006954939354964e-06,2.295750852823033e-06,2.13954322636082e-06,2.3709311332539432e-06,2.704833802921158e-06 +1716,Xylene,"('water', 'surface water')",emission,kilogram,biosphere3,6.402021229525637e-07,3.7434779102327337e-06,1.406928139906099e-05,5.958761355656991e-07,4.532352765836921e-06,1.7046707889700355e-05,4.586229385623255e-07,4.425376312022956e-06,1.742651817197395e-05,4.5437504993761535e-07,4.3447439386180656e-06,1.7271094763608176e-05,4.139616583335265e-07,4.079938382511905e-06,1.6381795587816714e-05,4.955878471717989e-07,4.2581512796472926e-06,1.6595562299398225e-05,4.4587400044787927e-07,3.7900449189327898e-06,1.516092711185057e-05,1.2891517388829255e-05,1.4316937940991742e-05,1.6375911752859343e-05,1.4455735156341804e-05,1.6056826487325078e-05,1.836955528747137e-05,1.5968131572528138e-05,1.7696324756864268e-05,2.0190256319330684e-05 +1717,Xylene,"('water',)",emission,kilogram,biosphere3,1.987016235340298e-11,1.0720105681642992e-10,2.805511673194991e-10,6.142517774660774e-08,1.1854319816003135e-07,2.682569213898604e-07,4.291299955034919e-08,7.991846976052355e-08,1.9346452727450376e-07,3.613930174538139e-08,7.35049908482487e-08,1.8690035083229273e-07,3.7202065378994684e-08,1.2876844566798101e-07,3.867377690658505e-07,3.4518683741338424e-08,1.2288104283141379e-07,3.872992378856842e-07,4.368614319192671e-08,1.2992272971660805e-07,3.846020332153456e-07,2.6360530851882705e-10,2.762272448672586e-10,2.933509529019253e-10,2.8600836687262124e-07,3.052732638952605e-07,3.307378961609823e-07,3.0043210629026275e-07,3.197474093170949e-07,3.453092323985962e-07 +1718,"Zinc, ion","('water', 'ground-, long-term')",emission,kilogram,biosphere3,0.0027763960017081904,0.0032602080472442898,0.0036914284214891653,0.0033281381244037555,0.003844895475800837,0.004380253732749716,0.002923447297639377,0.0034262652384641308,0.0039028408555032627,0.002937041634941499,0.0034565604375553366,0.003960687107708379,0.0029535172330669777,0.0035160894723655833,0.004032007303266667,0.0029572038898805185,0.0035145251049551107,0.004054232085449298,0.0021989958295364296,0.0025608331941423847,0.0031275410147454338,0.0008438034564257194,0.0008816600234748307,0.0009329942151126808,0.0007521058860619499,0.0007889988378202871,0.000839023285545746,0.0009904923728872347,0.0010377684338090587,0.001101891392479553 +1719,"Zinc, ion","('water', 'ocean')",emission,kilogram,biosphere3,1.5290007396099142e-05,4.067790605740725e-05,5.00998977032793e-05,1.6135174665870018e-05,3.811607844755371e-05,2.1668552378464383e-05,8.902610545942114e-06,2.2472556026050663e-05,2.069812983803537e-05,9.07650522825093e-06,2.2905587267678228e-05,2.0674799602888644e-05,1.061346652696146e-05,2.6118309937808253e-05,2.0569936882181094e-05,7.805517251860158e-06,2.005486453909382e-05,2.051740142083345e-05,1.1847233146695225e-05,2.897006565939955e-05,2.125999105495144e-05,4.539289584849536e-05,5.015581951117721e-05,5.700772198098654e-05,1.9958458744049276e-05,2.1662717672488817e-05,2.408939150994954e-05,1.949866657994196e-05,2.125079453633092e-05,2.3753002311308874e-05 +1720,"Zinc, ion","('water', 'surface water')",emission,kilogram,biosphere3,1.924757462217954e-06,1.0852914226685069e-05,1.9017814021488847e-05,2.105471404475595e-06,1.1104817077422785e-05,1.9775245658243865e-05,1.8010866136604598e-06,1.078254280579137e-05,1.9725641467452112e-05,1.8171543223508009e-06,1.0767932759575257e-05,1.9744227988573803e-05,1.9082987098212004e-06,1.1086297680704626e-05,2.023171351963288e-05,1.9842636557153504e-06,1.1251768495210669e-05,2.0418403824802692e-05,2.4168975881111674e-06,1.1824018530891931e-05,2.058636928714433e-05,1.7141502561584884e-05,1.8437139578351813e-05,2.0283424520910736e-05,1.7697258969618526e-05,1.904860856897015e-05,2.0987477098146096e-05,1.849072781863904e-05,1.995817294611774e-05,2.2065503506101565e-05 +1721,"Zinc, ion","('water',)",emission,kilogram,biosphere3,1.6779749116563662e-07,1.3914805603826767e-06,3.233553824958121e-05,1.491674113350953e-07,1.0569498982649118e-06,3.141067879699462e-05,1.2567181433767953e-07,9.948973186239473e-07,3.135064789403183e-05,1.221988059435453e-07,9.92091683562683e-07,3.134720164692131e-05,1.2627511929561854e-07,1.0346810488614159e-06,3.147127486279641e-05,1.2882211939263206e-07,1.0397739975880367e-06,3.148727623509156e-05,1.5229098783233672e-07,1.0669278709957747e-06,3.154806550826904e-05,3.327117034949945e-05,3.468679649731942e-05,3.659906453676618e-05,3.244481316921031e-05,3.383480109358936e-05,3.571185512494249e-05,3.2414531887467885e-05,3.379963146945558e-05,3.566997804249739e-05 +1722,Zinc-65,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.7161246742680562e-06,3.7929962654206288e-06,9.296462955998323e-06,1.349416974405883e-05,3.1951202708132634e-05,5.624205770464513e-05,0.00016374050176869468,0.00036033407435586394,0.00011929722019491453,0.00016347082131923135,0.00035970658834639233,0.00011785548405406174,1.0733033912599454e-05,3.0093987415091855e-05,6.131145984601689e-05,0.00017411493114813116,0.0003836886196008401,7.973234004681705e-05,0.00020363443704263473,0.0004439529749570358,8.005208934953909e-05,7.516497809175023e-06,7.836056888618913e-06,8.271857094002838e-06,5.488643410993388e-05,5.7276467607304865e-05,6.0501079890894744e-05,5.837650655629419e-05,6.101350912556847e-05,6.459912547824487e-05 +1723,Zirconium-95,"('water', 'surface water')",emission,kilo Becquerel,biosphere3,1.9873204774554175e-08,4.392395997417549e-08,1.0765564694764309e-07,5.575037823865125e-05,0.00012117936444149445,0.0001944247863279649,5.808459126503595e-05,0.0001482493188130185,0.0005447935126458834,5.744127752761238e-05,0.00014791964467791835,0.0005432515925107272,5.208692940410334e-05,0.00014238946724766044,0.00028672493322988397,5.284769003260488e-05,0.00014158199137747428,0.00028396749035324855,6.028672996302659e-05,0.00014115394738074957,0.0002782120443961168,8.70431516039564e-08,9.074373531924578e-08,9.579042385621065e-08,0.00020474476569207791,0.00021403342972639797,0.0002265459255998335,0.00022193115419402113,0.00023223930557271828,0.0002462388656158761 +1724,Sodium tetrahydridoborate,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,-1.617920935450132e-26,-9.707525612700794e-27,-8.686146881590057e-19,7.943499501375656e-14,1.6250244750715523e-13,2.1039760426901133e-13,8.177469731728485e-14,1.7709074267042513e-13,2.0659566091547666e-13,1.1216559572408579e-13,2.389661809625484e-13,1.7967444232074115e-13,3.195520953838776e-14,6.099794965305318e-14,1.3473672189704973e-13,3.5036389720557303e-14,6.974043103166371e-14,1.432156274505296e-13,3.231490510140139e-14,6.345055084935491e-14,1.3819446208466293e-13,-2.7144209004968927e-20,-2.7144209004968927e-20,-2.7144209004968927e-20,9.782510311330835e-14,1.0629977504981053e-13,1.182820392233682e-13,1.0268989884756422e-13,1.1111974421785951e-13,1.230379259056008e-13 +1725,Allyl chloride,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.9905489748925893e-10,5.586876791896745e-10,1.0887939903741114e-09,1.6064078591342056e-10,4.656353587279397e-10,8.682909416135314e-10,1.6213859416537855e-10,4.695330039112384e-10,8.734420429956463e-10,1.1348731784262357e-10,4.623956772803357e-10,9.610109217264868e-10,4.98803075221645e-11,2.2748434244917565e-10,3.846474461909513e-10,5.540901539043855e-11,2.0887275442231111e-10,3.569434262262606e-10,0.0,0.0,0.0,1.7950836636268027e-10,1.9335424507300502e-10,2.1303808243850128e-10,1.9390791975652256e-10,2.086716362104396e-10,2.2983294653746133e-10 +1726,Perfluoropentane,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,8.539937232993787e-10,2.211996648907836e-09,4.339437388508816e-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1727,Oxygen,"('natural resource', 'in air')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.018948160235924324,0.0473397511613209,0.10743548454304151,0.00493656853170233,0.013700546814066595,0.030077932343351956,0.008143022040329018,0.020388016825803407,0.045690277017964326,0.00828687565089173,0.022126659849892056,0.047070314827159135,0.008070521175066899,0.021001823116553155,0.08960746763236589,0.010018740922492698,0.023821500541210194,0.09614261717144754,0.0,0.0,0.0,0.03872552875114088,0.042428914250105074,0.047259386084071646,0.035695825450127144,0.03871668614281276,0.04268738209300242 +1728,"Water, in air","('natural resource', 'in air')",natural resource,cubic meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0822079214264208e-06,1.4403295315573312e-06,2.8713363931294242e-06,0.0,0.0,0.0,1.6466047161756465e-06,1.7088176287783354e-06,1.7933339993384124e-06,0.0,0.0,0.0 +1729,Flumioxazin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.7874835483184502e-11,4.0266116222128336e-11,7.256176347433894e-10,2.8749779869969108e-11,6.69065268752346e-11,1.5377181018651156e-09,5.38492344259833e-11,1.2280902726434224e-10,1.6844832629293497e-09,6.815592415384215e-12,1.7100787347843623e-11,2.7393117261142924e-09,5.657637782128585e-12,1.423355736335385e-11,2.7061026833902063e-09,4.866606459373957e-12,1.2228613296269616e-11,2.1167509884645508e-09,0.0,0.0,0.0,2.2582383362710817e-09,2.3542523043395265e-09,2.483896148927004e-09,2.887796823764641e-09,3.010491555979422e-09,3.176149577739504e-09 +1730,Clethodim,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.9697896695659844e-11,6.689957851827106e-11,1.2055673226997823e-09,4.7765921728526824e-11,1.1116091811132771e-10,2.554820343892663e-09,8.946706125638177e-11,2.0403934953274925e-10,2.798661278592964e-09,1.1323671183578257e-11,2.8411865192252106e-11,4.551191351429505e-09,9.39980357031254e-12,2.3648145828296162e-11,4.4960166494743306e-09,8.0855555860846e-12,2.031705940934774e-11,3.516846476435325e-09,0.0,0.0,0.0,3.751918661734588e-09,3.911439733003818e-09,4.1268346946755705e-09,4.79788985083141e-09,5.001739306443855e-09,5.276969521662167e-09 +1731,Imazaquin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.6115155595331017e-13,8.135554892447396e-13,1.4660718867123774e-11,5.808740305957181e-13,1.3518108353297878e-12,3.106877742331844e-11,1.0879951772485522e-12,2.481291160736169e-12,3.4034089542166446e-11,1.3770542436390663e-13,3.455123246691269e-13,5.534633832319466e-11,1.1430956609455502e-13,2.875814658420568e-13,5.467536725524564e-11,9.832719840860112e-14,2.4707263596384016e-13,4.276782931874179e-11,0.0,0.0,0.0,4.562650602408052e-11,4.756641724696114e-11,5.018580226095562e-11,5.834640084685253e-11,6.082538273667569e-11,6.417241506996516e-11 +1732,"Hydrocarbons, unspecified","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.7059690451725856e-08,3.843147027292826e-08,6.925020763771267e-07,2.7438210353555428e-08,6.385622817575001e-08,1.4675319931274046e-06,5.139190496461768e-08,1.1720682756032432e-07,1.607597458918707e-06,6.5053494731981875e-09,1.6324086676028905e-08,2.614273872950105e-06,5.400241712280543e-09,1.3587537192282622e-08,2.5825805270154798e-06,2.3564917325775389e-07,2.699336211852459e-07,2.3591338906256858e-06,0.0,0.0,0.0,2.2420251007013876e-06,2.3379381561763485e-06,2.46756552069375e-06,2.75597960629464e-06,2.873073785428927e-06,3.031170145803343e-06 +1733,Dicamba,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.365874823807834e-12,7.582207230884335e-12,1.366355584527716e-10,5.4145408797793435e-12,1.2603111216637982e-11,2.895645165061243e-10,1.0140507727939546e-11,2.3127446799344083e-11,3.1719564480623453e-10,1.2834743225854742e-12,3.2214290906152892e-12,5.158226460908012e-10,1.065411626011551e-12,2.6811458291918554e-12,5.095682466108694e-10,9.164192953875404e-13,2.302977173195983e-12,3.985900522021847e-10,0.0,0.0,0.0,4.252323666084573e-10,4.433120584153083e-10,4.677243475713929e-10,5.437816983913099e-10,5.668855249725181e-10,5.980794810874402e-10 +1734,Bentazone,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.8384815958975583e-11,4.14149342431918e-11,7.46319969428562e-10,2.9617292276064276e-11,6.892812816487627e-11,1.5860212429255827e-09,5.547884564125253e-11,1.265284092566396e-10,1.7376111484587436e-09,7.03071105912912e-12,1.764051879471826e-11,2.8257660346197944e-09,5.836375599117416e-12,1.4683211587283178e-11,2.79158777506322e-09,5.017654514023045e-12,1.2608192351777635e-11,2.182459707995306e-09,0.0,0.0,0.0,2.328339167997871e-09,2.4273336274611655e-09,2.561001911151427e-09,2.979021563590435e-09,3.1055921943276984e-09,3.2764833156345644e-09 +1735,Thiodicarb,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.1512699612242346e-12,4.846102576268283e-12,8.73294426920521e-11,3.4600899059655333e-12,8.052325942592579e-12,1.8506725639451716e-10,6.480856316940996e-12,1.4780296667543403e-11,2.0273071867634539e-10,8.202693247302969e-13,2.058111817362416e-12,3.296813017587551e-10,6.80907313747373e-13,1.7130353134216921e-12,3.256845312083861e-10,5.857052110748177e-13,1.4717365361940664e-12,2.5475494983805324e-10,0.0,0.0,0.0,2.717832173997296e-10,2.8333867845883574e-10,2.989415582045767e-10,3.475517616332307e-10,3.6231830267706233e-10,3.822555561630393e-10 +1736,Chlorpyrifos,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.0025256215731044e-10,4.511030576543772e-10,8.12912603534536e-09,3.220850388159889e-10,7.495567410665037e-10,1.7227123016848583e-08,6.03275323800992e-10,1.3758348930566417e-09,1.887133952251215e-08,7.635537933065829e-11,1.9158086709786626e-10,3.0688628839029933e-08,6.338276302928553e-11,1.5945916442545266e-10,3.031658648380897e-08,5.4520804591816226e-11,1.3699768852815823e-10,2.371405372026567e-08,0.0,0.0,0.0,2.5299142653688038e-08,2.6374791328982937e-08,2.782719697886971e-08,3.235211386940239e-08,3.3726668310048133e-08,3.5582542358823956e-08 +1737,Fluazifop-p-butyl,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.1772062198605617e-11,2.6518578317449788e-11,4.778794152619472e-10,1.8934115345871957e-11,4.4063499026456194e-11,1.0127149509251825e-09,3.5464188613424166e-11,8.087993363009325e-11,1.1093719862419107e-09,4.4886330791952595e-12,1.1262287281620897e-11,1.8040640458748113e-09,3.726023880457054e-12,9.373978449875291e-12,1.782193135966075e-09,3.2050641244332137e-12,8.053556436128096e-12,1.394056147738783e-09,0.0,0.0,0.0,1.4872373051405405e-09,1.5504704691659864e-09,1.6358516970707154e-09,1.901853802136462e-09,1.9826584629922783e-09,2.091758014576418e-09 +1738,Carfentrazone-ethyl,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.517145011453525e-13,1.242831031644508e-12,2.2396501033598423e-11,8.873743466931803e-13,2.0650987884383967e-12,4.746233196260121e-11,1.66207982928659e-12,3.790553556469641e-12,5.19923019134085e-11,2.10366197387251e-13,5.278231718869757e-13,8.455003705542504e-11,1.7462542855775662e-13,4.3932488261864906e-13,8.35250256387247e-11,1.5020990584994154e-13,3.774414198548456e-13,6.533443156736446e-11,0.0,0.0,0.0,6.97014995377069e-11,7.266501204364857e-11,7.666652518264785e-11,8.91330935905895e-11,9.292011938117668e-11,9.803322562052919e-11 +1739,Trifloxystrobin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.86225625703006e-13,8.700391087781392e-13,1.5678584861038302e-11,6.212030165917095e-13,1.4456645062020687e-12,3.322582390269608e-11,1.1635326557895844e-12,2.6535625519894777e-12,3.639701209027993e-11,1.4726608196916861e-13,3.6950062965402776e-13,5.918893001278238e-11,1.2224588113560674e-13,3.0754772447110477e-13,5.84713746680573e-11,1.051538830805354e-13,2.6422643690134655e-13,4.5737118874451424e-11,0.0,0.0,0.0,4.879426808310445e-11,5.086886367503285e-11,5.3670107638949704e-11,6.239728115951872e-11,6.504837407590093e-11,6.862778453718235e-11 +1740,Chlorimuron-ethyl,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0038126527771109e-11,2.2612592424168877e-11,4.0749139398750427e-10,1.614526344887949e-11,3.7573279092612096e-11,8.635497028843543e-10,3.024058202389724e-11,6.896693150810842e-11,9.459698884054891e-10,3.827491396714287e-12,9.603437599942576e-12,1.5383390650857809e-09,3.17720876140251e-12,7.993262366039605e-12,1.5196895746809614e-09,2.732982434905371e-12,6.86732852342004e-12,1.1887222274014663e-09,0.0,0.0,0.0,1.2681785055132843e-09,1.3220979030267128e-09,1.3949031222266722e-09,1.6217251303167853e-09,1.6906278761584436e-09,1.7836578894599575e-09 +1741,Sulfentrazone,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.2353923683561525e-11,9.540943832477231e-11,1.7193307291870343e-09,6.812180082309743e-11,1.585331476768228e-10,3.6435801154308967e-09,1.2759425771675587e-10,2.9099256177343876e-10,3.991336067473219e-09,1.6149355964796218e-11,4.0519838249701926e-11,6.490722664394525e-09,1.3405614786371681e-11,3.372601683447057e-11,6.412034764699955e-09,1.1531288149322772e-11,2.8975357832974817e-11,5.0155823759132484e-09,0.0,0.0,0.0,5.350832696777526e-09,5.578335113788282e-09,5.8855225843987265e-09,6.842553958140503e-09,7.133275700975866e-09,7.525797759025126e-09 +1742,Alachlor,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.2532419023985434e-11,9.581152952534975e-11,1.7265766345734168e-09,6.840889167459696e-11,1.592012658866451e-10,3.65893553037138e-09,1.2813198783716385e-10,2.9221891370559136e-10,4.008157056612564e-09,1.6217415415078088e-11,4.069060405062202e-11,6.5180770072922396e-09,1.3462111081205841e-11,3.386815092725135e-11,6.439057487255558e-09,1.1579885328345309e-11,2.909747087452237e-11,5.036719923683517e-09,0.0,0.0,0.0,5.373383115305293e-09,5.6018443129414966e-09,5.910326386919549e-09,6.871391050261225e-09,7.163338003702275e-09,7.557514297116943e-09 +1743,Permethrin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.543493882955554e-12,1.2487665644913156e-11,2.2503462610048881e-10,8.91612283624201e-12,2.0749613210263805e-11,4.768900334453606e-10,1.6700176173515185e-11,3.80865654431785e-11,5.22406076003625e-10,2.11370867723031e-12,5.30343958562136e-12,8.495383250688418e-10,1.7545940753738544e-12,4.414230175697865e-12,8.392392582347602e-10,1.5092728078114027e-12,3.792440108251882e-12,6.564645681536316e-10,0.0,0.0,0.0,7.003438110041006e-10,7.301204679789889e-10,7.703267042886377e-10,8.955877687807187e-10,9.336388880842347e-10,9.850141430425565e-10 +1744,Pendimethalin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.730511262531538e-10,8.403613012794245e-10,1.5143774393052732e-08,6.000135361842082e-10,1.3963531432587959e-09,3.209246444097761e-08,1.1238436891114207e-09,2.563047902475553e-09,3.5155478761430533e-08,1.4224270396482213e-10,3.5689705119595926e-10,5.7169944186203204e-08,1.1807597046938344e-10,2.97057300157439e-10,5.6476864950197325e-08,1.0156698673359696e-10,2.5521352738783797e-10,4.41769853150969e-08,0.0,0.0,0.0,4.7129852428544625e-08,4.913368173018854e-08,5.1839372785221576e-08,6.026885530416015e-08,6.282951712221289e-08,6.628683076134381e-08 +1745,Acetamide,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0777599546219252e-11,2.4278381545932227e-11,4.375098332121225e-10,1.7334627486265395e-11,4.034116869837472e-11,9.271643329195014e-10,3.246829796317069e-11,7.40474796388965e-11,1.0156561198632839e-09,4.109449051461847e-12,1.0310888628892694e-11,1.6516630233558176e-09,3.4112624113620676e-12,8.582097526020138e-12,1.6316396914463942e-09,2.9343115139553357e-12,7.373220147491368e-12,1.2762911588273591e-09,0.0,0.0,0.0,1.3616006978687393e-09,1.4194921452980737e-09,1.4976606656129761e-09,1.7411918429437631e-09,1.8151704085916198e-09,1.9150536115348354e-09 +1746,"2,4-D","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.1189469632777206e-10,9.278630692728406e-10,1.6720604538938865e-08,6.624889980180835e-10,1.54174529862775e-09,3.54340565091699e-08,1.2408625568709795e-09,2.8299218216422115e-09,3.8816006038506465e-08,1.5705354999755908e-10,3.9405809463633e-10,6.312270524853641e-08,1.303704863951195e-10,3.2798773410054243e-10,6.2357460243394e-08,1.12142536448452e-10,2.817872625643059e-10,4.8776868822595377e-08,0.0,0.0,0.0,5.203720026528134e-08,5.424967624905719e-08,5.723709462540935e-08,6.654428774421469e-08,6.937157583387879e-08,7.318887869134553e-08 +1747,Cloransulam-methyl,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.228155657506131e-12,1.1777312497781296e-11,2.1223367039313456e-10,8.408934696006182e-12,1.9569284279409068e-11,4.497624384578942e-10,1.5750196967234886e-11,3.592003469319802e-11,4.926893290494576e-10,1.993471664670022e-12,5.001756699617855e-12,8.012128621866749e-10,1.6547850751867514e-12,4.163129418999884e-12,7.914996514114526e-10,1.4234187563935866e-12,3.5767094953306645e-12,6.191219866790664e-10,0.0,0.0,0.0,6.605051859032837e-10,6.885880161385921e-10,7.26507145530343e-10,8.446428117403145e-10,8.805294166256674e-10,9.289822219391551e-10 +1748,Diflubenzuron,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.517145011453525e-13,1.242831031644508e-12,2.2396501033598423e-11,8.873743466931803e-13,2.0650987884383967e-12,4.746233196260121e-11,1.66207982928659e-12,3.790553556469641e-12,5.19923019134085e-11,2.10366197387251e-13,5.278231718869757e-13,8.455003705542504e-11,1.7462542855775662e-13,4.3932488261864906e-13,8.35250256387247e-11,1.5020990584994154e-13,3.774414198548456e-13,6.533443156736446e-11,0.0,0.0,0.0,6.97014995377069e-11,7.266501204364857e-11,7.666652518264785e-11,8.91330935905895e-11,9.292011938117668e-11,9.803322562052919e-11 +1749,Metribuzin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.5043954845054777e-11,1.2399589832627962e-10,2.234474513580049e-09,8.85323720296203e-11,2.0603265678622436e-10,4.735265163305718e-09,1.658238942093926e-10,3.781793996179046e-10,5.1872153312318596e-09,2.098800637931271e-11,5.266034293928239e-11,8.435465103991334e-09,1.7422188802746437e-11,4.38309650174711e-11,8.333200831416917e-09,1.4986278696304624e-11,3.7656919348624447e-11,6.518345074369096e-09,0.0,0.0,0.0,6.954042689102643e-09,7.249709103924327e-09,7.648935711302462e-09,8.892711662593423e-09,9.27053910084192e-09,9.780668141079447e-09 +1750,Propiconazole,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.509907802432842e-12,1.466467786061208e-11,2.6426558758787853e-10,1.0470497286065939e-11,2.4366955540913474e-11,5.600277036944708e-10,1.961156809862329e-11,4.472631079657191e-11,6.134786946934245e-10,2.4821979633184525e-12,6.228004257316873e-12,9.976408901570832e-10,2.0604777903681353e-12,5.183776243542558e-12,9.85546356016163e-10,1.7723889149276457e-12,4.453587627610433e-12,7.70908005842003e-10,0.0,0.0,0.0,8.224368486786037e-10,8.57404559597409e-10,9.046200697064364e-10,1.0517182713740683e-09,1.0964029564641178e-09,1.1567346137519391e-09 +1751,Flufenacet,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.413886017987245e-12,9.94303122748441e-12,1.791789096695953e-10,7.099268214665071e-12,1.652142665979774e-11,3.7971328104278364e-10,1.3297150798109821e-11,3.032559649753451e-11,4.1595443654546673e-10,1.6829944026684598e-12,4.22274802189473e-12,6.764263502260306e-10,1.3970572386065123e-12,3.5147344365774174e-12,6.682259430368632e-10,1.2017255334132643e-12,3.019647665786103e-12,5.226955851027409e-10,0.0,0.0,0.0,5.57633474561391e-10,5.813424878043598e-10,6.133558259678527e-10,7.130922147572485e-10,7.4338958803991e-10,7.842960135394713e-10 +1752,Imazaquin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.427436661960804e-12,1.898423873110168e-11,3.421064581745139e-10,1.3554639377088712e-11,3.154437522252569e-11,7.249869191579281e-10,2.538826233378233e-11,5.790068947971198e-11,7.941821909275287e-10,3.2133427717331476e-12,8.062496710024868e-12,1.2915014569463468e-09,2.6674026795428025e-12,6.710685715192193e-12,1.275844411903565e-09,2.2944556740102447e-12,5.765416086596696e-12,9.97983164724118e-10,0.0,0.0,0.0,1.0646901094244685e-09,1.1099577503670468e-09,1.171080846571316e-09,1.3615076260511878e-09,1.4193544289190416e-09,1.49745710500997e-09 +1753,Cyfluthrin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0480110432121546e-12,2.3608236567584656e-12,4.2543345088487524e-11,1.6856147751235533e-12,3.922765000636332e-12,9.015722430582997e-11,3.157209049559549e-12,7.20035811817928e-12,9.876214319951611e-11,3.9960178230655905e-13,1.0026281925173774e-12,1.6060729299945125e-10,3.3171029068279604e-13,8.345209841551395e-13,1.5866022928755545e-10,2.853317065318906e-13,7.16970054918117e-13,1.2410622820657144e-10,0.0,0.0,0.0,1.3240170612102758e-10,1.3803105576917125e-10,1.456321428359223e-10,1.6931305268150843e-10,1.7650670962034485e-10,1.8621932691203307e-10 +1754,"Cyhalothrin, gamma-","('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.155908413369297e-13,1.161456325544314e-12,2.093008392374228e-11,8.292732655047631e-13,1.9298858731312463e-12,4.435472262836495e-11,1.5532546920069765e-12,3.5423660122992206e-12,4.858809154192133e-11,1.965924123279014e-13,4.932638033648204e-13,7.901409995522572e-11,1.631917802406058e-13,4.1055996413952135e-13,7.805620144510263e-11,1.403748706492337e-13,3.5272833830640406e-13,6.10566415602443e-11,0.0,0.0,0.0,6.513777454537941e-11,6.790725024898322e-11,7.164676320662763e-11,8.329707959416224e-11,8.683614882194653e-11,9.161447301373368e-11 +1755,"Cyhalothrin, gamma-","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2027052436501294e-11,2.7092987327981684e-11,4.882305826045336e-10,1.9344240138962546e-11,4.501794200077058e-11,1.0346509908267497e-09,3.623236514355896e-11,8.263184363559045e-11,1.1334016780646113e-09,4.5858596822111124e-12,1.1506235478214826e-11,1.8431412026633496e-09,3.8067318905490864e-12,9.577024690957047e-12,1.8207965551414467e-09,3.274487820073137e-12,8.228001510554133e-12,1.4242522767340878e-09,0.0,0.0,0.0,1.5194517963470812e-09,1.5840546302963626e-09,1.6712852690557208e-09,1.943049146262126e-09,2.0256040866647556e-09,2.1370668028446242e-09 +1756,Sethoxydim,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.429185299392788e-12,9.97749546878309e-12,1.7979997431643504e-10,7.12387548855066e-12,1.6578692740955845e-11,3.8102943200684374e-10,1.3343240989681285e-11,3.043071018556453e-11,4.173962055353553e-10,1.6888279482101096e-12,4.237384787016557e-12,6.787709592728155e-10,1.4018996772337497e-12,3.526917106658624e-12,6.705421280764037e-10,1.2058909190192765e-12,3.0301142799929445e-12,5.24507337110062e-10,0.0,0.0,0.0,5.595663272496931e-10,5.833575199744824e-10,6.154818218256931e-10,7.155639139432821e-10,7.459663030869137e-10,7.870145172310854e-10 +1757,Pyraclostrobin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.533342931668618e-11,3.454116529085236e-11,6.224508596878401e-10,2.4662567878956055e-11,5.739478352230832e-11,1.3191233405638912e-09,4.619379572316462e-11,1.0534999066898755e-10,1.4450267377893975e-09,5.846727969813051e-12,1.46698403563583e-11,2.3499072588023008e-09,4.8533826499628706e-12,1.221020208908274e-11,2.3214196365728452e-09,4.174778328573664e-12,1.0490215651574252e-11,1.8158374985975434e-09,0.0,0.0,0.0,1.9372112612484194e-09,2.0195760573820933e-09,2.130789967652468e-09,2.477285246281019e-09,2.582538443981837e-09,2.7246475321292068e-09 +1758,Trifluralin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.100223213164881e-10,1.3741793434725336e-09,2.4763470094649532e-08,9.811563004320185e-10,2.2833482788441063e-09,5.247837760001305e-08,1.8377363537938252e-09,4.191157337431319e-09,5.7487096383876915e-08,2.325987005760213e-10,5.836060424068328e-10,9.348568827610685e-08,1.930806768169243e-10,4.857548318693151e-10,9.235234876379034e-08,1.6608480520625132e-10,4.1733122955175826e-10,7.223928594155053e-08,0.0,0.0,0.0,7.706788648596557e-08,8.034459712953082e-08,8.47690092643326e-08,9.855310408736115e-08,1.0274036082766438e-07,1.0839384452398096e-07 +1759,Acifluorfen,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.576254118794426e-13,5.803451890094268e-13,1.0458140562680641e-11,4.1436319161458326e-13,9.643065839640125e-13,2.2162735971338396e-11,7.761151822280247e-13,1.7700149610789488e-12,2.4278024534735908e-11,9.823138259990869e-14,2.464692550150222e-13,3.9480996195348307e-11,8.154207994287491e-14,2.0514460582362185e-13,3.9002362793776605e-11,7.014114869998614e-14,1.7624786204095645e-13,3.050818821584224e-11,0.0,0.0,0.0,3.254740901249825e-11,3.3931233668844065e-11,3.5799757096140776e-11,4.162107376282288e-11,4.3389441418676277e-11,4.577702792972856e-11 +1760,Flumiclorac-pentyl,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.767084365522307e-12,3.9806589829862595e-12,7.17336715578871e-11,2.8421680618020755e-12,6.614297384702735e-12,1.5201693011026153e-10,5.3234694293467996e-12,1.2140750174867435e-11,1.6652595436169948e-10,6.737811271362506e-13,1.6905629141748179e-12,2.7080500562280393e-10,5.593071488605483e-13,1.4071120656377481e-12,2.67522000290138e-10,4.811067601458051e-13,1.208905748369908e-12,2.0925941281770772e-10,0.0,0.0,0.0,2.23246678908288e-10,2.327385023158565e-10,2.4555493416903613e-10,2.854840606998861e-10,2.9761351180631703e-10,3.1399026115045023e-10 +1761,Zeta-cypermethrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0896594414326358e-13,2.454643778627858e-13,4.423403545797786e-12,1.752601812969031e-13,4.0786573265585547e-13,9.374011019743893e-12,3.282677860798004e-13,7.486503368393617e-13,1.0268699217465835e-11,4.154821246626684e-14,1.0424730572297852e-13,1.6698989415540103e-11,3.448925967205469e-14,8.676851983279734e-14,1.6496545331641617e-11,2.966709081767852e-14,7.454627455766498e-14,1.2903826174539578e-11,0.0,0.0,0.0,1.3766340542992466e-11,1.435164677931158e-11,1.5141962524655437e-11,1.7604162437808786e-11,1.8352116025955212e-11,1.9361976103434265e-11 +1762,Carfentrazone-ethyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.36461199904886e-14,5.32669191105051e-14,9.598992770881169e-13,3.803227980174469e-14,8.850877336723892e-14,2.034204274633732e-12,7.123564632675188e-14,1.624606278171581e-13,2.2283558019142785e-12,9.016156608433333e-15,2.262215336672767e-14,3.6237588775442974e-12,7.484330806133288e-15,1.882917499791941e-14,3.5798275636041063e-12,7.39939378932581e-12,1.6405502693409975e-11,1.2554236729339483e-11,0.0,0.0,0.0,9.212900014944223e-12,9.711987108134844e-12,1.0401334597934899e-11,3.82018566082206e-12,3.982495090906653e-12,4.201639455260873e-12 +1763,Thifensulfuron,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.036475442297055e-13,1.3598190705680923e-12,2.450469005293673e-11,9.709031466067466e-13,2.2594871253656813e-12,5.19299747840466e-11,1.8185318768700593e-12,4.147359442215802e-12,5.6886352096744005e-11,2.3016802745386934e-13,5.775073175308621e-13,9.250875611775116e-11,1.9106296986830895e-13,4.806786589004133e-13,9.138726008400414e-11,1.6434920706273224e-13,4.129700882679014e-13,7.148438021361097e-11,0.0,0.0,0.0,7.626252153542976e-11,7.950499031736261e-11,8.38831670274947e-11,9.752321706895255e-11,1.0166671667547971e-10,1.0726112106098661e-10 +1764,Methyl parathion,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.795497207052868e-12,1.5308016713814093e-11,2.758589087395097e-10,1.092983759174947e-11,2.5435932932966333e-11,5.845960974755677e-10,2.0471926719990027e-11,4.668845218640793e-11,6.403919811934773e-10,2.5910917763966866e-12,6.501226420176435e-12,1.041407357376836e-09,2.1508708029027155e-12,5.411188226710435e-12,1.0287822365824486e-09,1.850143495560341e-12,4.6489662853117135e-12,8.047277102860018e-10,0.0,0.0,0.0,8.585171215369879e-10,8.950188645857699e-10,9.443057173030202e-10,1.0978571114034812e-09,1.1445021119053328e-09,1.2074805166717915e-09 +1765,Carbaryl,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.0207633517914854e-12,1.1310125949962052e-11,2.0381471098637313e-10,8.075382107741836e-12,1.8793083137371803e-11,4.3192125730812404e-10,1.5125422999421605e-11,3.4495186149352555e-11,4.731452174038518e-10,1.914395563862998e-12,4.803369021285237e-12,7.694301356419563e-10,1.589143741247113e-12,3.99800183504193e-12,7.601022127793338e-10,1.366954611656514e-12,3.434832801907503e-12,5.945624522852494e-10,0.0,0.0,0.0,6.343040464911981e-10,6.612728777264965e-10,6.97687818548772e-10,8.111372716261689e-10,8.456003161328271e-10,8.921310813230682e-10 +1766,Flumiclorac-pentyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,7.571518378862341e-14,1.7056136786096927e-13,3.0736099712123374e-12,1.2177985463370868e-13,2.8340624360141334e-13,6.513548547486948e-12,2.2809746614243814e-13,5.202010434747377e-13,7.135224263252573e-12,2.886985073859628e-14,7.243642933563966e-14,1.160332306231881e-11,2.396492459407065e-14,6.029126325820594e-14,1.1462654423632964e-11,2.0614231826731775e-14,5.179861399872579e-14,8.966247005580765e-12,0.0,0.0,0.0,9.565566677807417e-12,9.972267776982059e-12,1.0521420105082532e-11,1.2232284177408568e-11,1.2752001083795953e-11,1.3453704189000923e-11 +1767,Methyl parathion,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.912841706845541e-13,6.561672850963579e-13,1.1824496576160956e-11,4.684997405797545e-13,1.0902932344507655e-12,2.5058297317995635e-11,8.775146270011527e-13,2.0012674070534706e-12,2.7449948321736447e-11,1.1106531225379856e-13,2.78670461897095e-13,4.463918815569685e-11,9.219555228613985e-14,2.319467474999555e-13,4.40980213025699e-11,7.930508943415467e-14,1.9927464433084931e-13,3.4494082857542205e-11,0.0,0.0,0.0,3.6799727841346735e-11,3.8364349182299285e-11,4.0476995186265095e-11,4.7058866846962645e-11,4.9058271728429335e-11,5.1757796405506954e-11 +1768,Lactofen,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.48693430361972e-12,1.9118267318961483e-11,3.4452172728596067e-10,1.3650335032672953e-11,3.176707828257267e-11,7.301053215431486e-10,2.5567503281532374e-11,5.830946792729056e-11,7.99789111429712e-10,3.2360289483818825e-12,8.119417878501033e-12,1.3006194478555577e-09,2.686234523226035e-12,6.758063110110296e-12,1.2848518641946775e-09,2.3106545143488204e-12,5.806119881383755e-12,1.005028918618241e-09,0.0,0.0,0.0,1.0722068138638128e-09,1.1177940440226475e-09,1.1793486688421572e-09,1.3711198600122536e-09,1.4293750608886335e-09,1.5080291413060689e-09 +1769,Imazethapyr,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.7441351112632742e-11,3.928961873022293e-11,7.080206110424575e-10,2.8052566167331052e-11,6.528397019871056e-11,1.500426750895262e-09,5.254333141428887e-11,1.1983077362593397e-10,1.6436326957963687e-09,6.65030682230616e-12,1.668607449912876e-11,2.6728804115160086e-09,5.5204338589887035e-12,1.3888377981526377e-11,2.6404767244948927e-09,4.748585913820106e-12,1.193205601049826e-11,2.0654174547473476e-09,0.0,0.0,0.0,2.2034735791460765e-09,2.2971591031537713e-09,2.423658942280215e-09,2.8177645826314937e-09,2.9374838329835875e-09,3.099124465975156e-09 +1770,Paraquat,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.540968237246335e-11,7.976635014295017e-11,1.4374336476736008e-09,5.6952724092440707e-11,1.3254045709464773e-10,3.046188011994822e-09,1.0667422862744475e-10,2.432821634689979e-10,3.336926785026843e-09,1.3501548746593574e-11,3.387630890464094e-11,5.426520329734389e-09,1.1207664374409024e-11,2.8196385123231336e-11,5.360733897397373e-09,9.64064755315326e-12,2.422463206432094e-11,4.193240280901903e-09,0.0,0.0,0.0,4.473523814152176e-09,4.663725515073948e-09,4.920547311429632e-09,5.720666261842081e-09,5.963722009154608e-09,6.29188715162159e-09 +1771,Flumetsulam,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0327116108210106e-12,2.3263590753243054e-12,4.192227431247116e-11,1.661007258401998e-12,3.865498354445987e-12,8.884106035332512e-11,3.111118403165796e-12,7.095243393311078e-12,9.732035998257917e-11,3.9376817921124794e-13,9.879912832682242e-13,1.5826266081520341e-10,3.2686780433758306e-13,8.22338195168471e-13,1.5634402139383097e-10,2.811662798630364e-13,7.065033380941354e-13,1.222944583213877e-10,0.0,0.0,0.0,1.3046883435975646e-10,1.360160037151536e-10,1.4350612599922419e-10,1.668413291065964e-10,1.739299691482476e-10,1.8350079639626375e-10 +1772,Acephate,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.378187191420818e-11,9.86261353064602e-11,1.7772973839631439e-09,7.041850432787497e-11,1.638780391989872e-10,3.766422188306448e-09,1.3189605501749816e-10,3.0080327770137894e-10,4.125902614811354e-09,1.6693826046090185e-11,4.1885950905217004e-11,6.709555186614433e-09,1.385758056056193e-11,3.4863078095355296e-11,6.628214350959372e-09,1.1920061634305698e-11,2.995225223517619e-11,5.184681041583633e-09,0.0,0.0,0.0,5.5312342137770035e-09,5.766406797932864e-09,6.083950990354983e-09,7.073248353588434e-09,7.373771681784642e-09,7.779527488436477e-09 +1773,Azoxystrobin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.9889260294921335e-11,4.480395175497924e-11,8.073919351916032e-10,3.198976884552356e-11,7.444663363621054e-11,1.7110129834276428e-09,5.991783483492505e-11,1.3664912956498997e-10,1.8743180103949343e-09,7.583683315350756e-12,1.9027979934693908e-11,3.0480215608724794e-09,6.2952316741395825e-12,1.5837624217807802e-11,3.0110699874864084e-09,5.4150541814683355e-12,1.360673071201874e-11,2.355300636403397e-09,0.0,0.0,0.0,2.51273306097617e-09,2.6195674318245096e-09,2.763821636181412e-09,3.213240354612988e-09,3.3497623085145155e-09,3.5340893484933653e-09 +1774,Fomesafen,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.645902757031563e-11,1.497102969575459e-10,2.6978621670851636e-09,1.0689230761350334e-10,2.4875992388439914e-10,5.717269388176688e-09,2.0021262622031098e-10,4.5660663767387466e-10,6.262945452998835e-09,2.5340521018533783e-11,6.358109977524854e-11,1.0184820649179225e-08,2.1035220475536967e-11,5.292067623778196e-11,1.0061348705118405e-08,1.809414879185414e-11,4.54662505326518e-11,7.870126269617869e-09,0.0,0.0,0.0,8.396179309799121e-09,8.753161333883974e-09,9.235179971192948e-09,1.0736891475612736e-08,1.1193073161795967e-08,1.180899329408008e-08 +1775,Acifluorfen,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.010126646352434e-12,1.3538835548309773e-11,2.4397728783239403e-10,9.6666522181162e-12,2.2496246209278124e-11,5.170330405125024e-10,1.8105941115499254e-11,4.12925650627176e-11,5.663804712131635e-10,2.291633599934737e-12,5.749865380159078e-12,9.210496182303678e-10,1.902289932730151e-12,4.785805298649473e-12,9.098836104188017e-10,1.63631834183823e-12,4.111675024154208e-12,7.117235585946918e-10,0.0,0.0,0.0,7.59296409263388e-10,7.915795655726899e-10,8.351702283018133e-10,9.709753500083145e-10,1.0122294851940134e-09,1.0679293371837691e-09 +1776,Atrazine,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.364174796280195e-11,7.578377628803281e-11,1.3656654691108468e-09,5.4109529741267257e-11,1.2592468702348215e-10,2.894101209144715e-09,1.0134841591918358e-10,2.3113642161165683e-10,3.1703220170735415e-09,1.2827474901879749e-11,3.218543564167678e-11,5.15558644241008e-09,1.064811303310871e-11,2.678895431015862e-11,5.093084189010374e-09,9.159319156742764e-12,2.3015259865136498e-11,3.983880479156516e-09,0.0,0.0,0.0,4.250169980989607e-09,4.430875303672587e-09,4.674874517954397e-09,5.435045854434022e-09,5.665966358585614e-09,5.977746931126693e-09 +1777,Thiodicarb,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,9.22215691354455e-14,2.0774481670436554e-13,3.743676238663411e-12,1.4832862738196853e-13,3.4519058369206103e-13,7.933543017777949e-12,2.7782414558097574e-13,6.336081363874699e-13,8.69074794207807e-12,3.5163659421343234e-14,8.822802561564207e-14,1.413292032649813e-11,2.918942858880364e-14,7.343513711152123e-14,1.3961585041615242e-11,7.693417361018062e-11,3.2976038951535176e-10,2.5719547664193073e-08,0.0,0.0,0.0,2.720935901015449e-08,2.8370031728156544e-08,2.99377149481302e-08,1.4898998912850783e-11,1.5532017367209182e-11,1.638669615409523e-11 +1778,Fenoxaprop,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,8.203894728945826e-12,1.848067239324388e-11,3.330319148675926e-10,1.3195095851589282e-11,3.0707645040104715e-11,7.057562819123939e-10,2.471482609611228e-11,5.636484500345261e-11,7.731161148158252e-10,3.1281072625585413e-12,7.848634989679357e-12,1.2572437408903406e-09,2.5966485019699647e-12,6.532681454207898e-12,1.2420020067331423e-09,2.2335941003875668e-12,5.612485567972543e-12,9.715111668010441e-10,0.0,0.0,0.0,1.036448676741441e-09,1.080515571078895e-09,1.1400173468711932e-09,1.3253929616813946e-09,1.381705349441718e-09,1.4577363133516573e-09 +1779,Glyphosate,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.3285005761525598e-08,2.992674178925362e-08,5.39296401765971e-07,2.1368905519944743e-08,4.9729826276446103e-08,1.1429983399516522e-06,4.002476451199133e-08,9.128090652426056e-08,1.2520963390473964e-06,5.0661151070647155e-09,1.2711229004807429e-08,2.0361644971448366e-06,4.2053978294498645e-09,1.0579993272424092e-08,2.011482106054169e-06,3.6266602704811864e-09,9.136913614754932e-09,1.5734470506708645e-06,0.0,0.0,0.0,1.6785605499228378e-06,1.749928368306884e-06,1.8462935122324512e-06,2.1465377757513233e-06,2.2377384017032525e-06,2.360874212081161e-06 +1780,Metolachlor,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.3871484400436664e-10,3.124788497050127e-10,5.631041309720171e-09,2.2339839934225879e-10,5.199104904691596e-10,1.1960409902236366e-08,4.1846088694831933e-10,9.543634217746392e-10,1.3103267531954033e-08,5.301815545475617e-11,1.3302640719376412e-10,2.1308925656731933e-08,4.401150982881139e-11,1.1072484493573713e-10,2.1051078396768837e-08,3.784140168707914e-11,9.508661852183152e-11,1.6459333754713912e-08,0.0,0.0,0.0,1.7559504602175234e-08,1.8306085551822675e-08,1.931416413227046e-08,2.2464497442614643e-08,2.3418953640400488e-08,2.4707626129408905e-08 +1781,Esfenvalerate,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.267666714120727e-12,1.4118988485150437e-11,2.544319639048816e-10,1.0080878142830821e-11,2.3460233346477758e-11,5.391884345908181e-10,1.8881799192511817e-11,4.3061993668756653e-11,5.906504531199934e-10,2.3898324412847062e-12,5.996252988114179e-12,9.605175354768502e-10,1.9838050001653967e-12,4.990881947811517e-12,9.488730528235074e-10,1.7064362547919989e-12,4.287864501102898e-12,7.42221640301424e-10,0.0,0.0,0.0,7.918330362298259e-10,8.254995587730837e-10,8.709581259399714e-10,1.0125826358762352e-09,1.0556045529071636e-09,1.1136912004674994e-09 +1782,Imazamox,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.6434017785770174e-12,5.954713448251878e-12,1.0730722238264075e-10,4.2516318157662515e-12,9.89440335290404e-12,2.2740387005190782e-10,7.963439002871757e-12,1.8161487494478735e-11,2.4910808591210826e-10,1.0079169192801152e-12,2.5289324610446404e-12,4.0510031522846174e-10,8.366739816862568e-13,2.1049150848168832e-12,4.001892298823349e-10,7.196931229106781e-13,1.8084159805576997e-12,3.130335567555801e-10,0.0,0.0,0.0,3.3395726859563213e-10,3.4815619614378164e-10,3.673284436135339e-10,4.270588821527166e-10,4.4520346724072237e-10,4.697016344976083e-10 +1783,Quizalofop-ethyl,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.0577734299609297e-12,4.635485689981072e-12,8.353401017268117e-11,3.3097106370119667e-12,7.702363103054097e-12,1.7702403223554136e-10,6.19919125573029e-12,1.4137928905882003e-11,1.9391982124348134e-10,7.846195281570966e-13,1.968664041034849e-12,3.1535299397285096e-10,6.513143416330053e-13,1.6385849361929865e-12,3.115299274131603e-10,5.602498258568678e-13,1.4077732664170847e-12,2.436830227611126e-10,0.0,0.0,0.0,2.599712233022531e-10,2.710244714612048e-10,2.859492330905165e-10,3.324467842307447e-10,3.4657155534732313e-10,3.6564231412195627e-10 +1784,Zeta-cypermethrin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.5431053486219545e-12,5.728778630452805e-12,1.032357522791501e-10,4.090315629901326e-12,9.518988105981848e-12,2.1877567114893535e-10,7.661288755143218e-12,1.7472401041073087e-11,2.3965638171298556e-10,9.696743526948683e-13,2.4329792481614816e-12,3.897299255581289e-10,8.049287456816892e-13,2.0250500154482366e-12,3.8500517750140866e-10,6.923863958665184e-13,1.739800733689342e-12,3.011563807397871e-10,0.0,0.0,0.0,3.212862013081557e-10,3.349463905706302e-10,3.5339120114774606e-10,4.1085533654929845e-10,4.2831147649726665e-10,4.518801298465026e-10 +1785,Elemental carbon,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,6.4979949657603555e-09,2.4878489292475742e-08,3.765588434520405e-08,5.825728516579071e-09,2.3710327501736324e-08,3.5303841170957304e-08,5.859217473690177e-09,2.3829478766296303e-08,3.5106884867630996e-08,5.0735700694179754e-09,2.3035639786672413e-08,3.748292298283605e-08,5.094645206460766e-09,2.2933299745861916e-08,3.7072416455520756e-08,6.802607388396888e-09,2.570160600544816e-08,4.232780108373791e-08,0.0,0.0,0.0,2.1927420546001822e-08,2.2972419611653367e-08,2.4387035158516455e-08,1.81001607969055e-08,1.895927576688369e-08,2.0121521958050567e-08 +1786,Potassium,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.6400951345228173e-08,7.914328693963606e-08,1.8890730376976586e-07,1.4274267644461001e-08,7.605137591760857e-08,1.813172523286418e-07,1.221789651421878e-08,5.404666414627579e-08,1.2812690804231443e-07,1.2847160957510158e-08,5.4165442014463456e-08,1.264950990077616e-07,7.263211370200063e-08,1.808455914983649e-07,1.6639568024746844e-07,4.6293852197286034e-08,1.198347473184494e-07,1.8349868406153492e-07,0.0,0.0,0.0,1.4813458241075612e-07,1.5666441318370919e-07,1.6813516536786266e-07,1.3819962804174923e-07,1.4479586485749646e-07,1.537852095400109e-07 +1787,Elemental carbon,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.8989249165246977e-09,7.270304814811085e-09,1.1004275323742777e-08,1.7024661486281313e-09,6.928926358164318e-09,1.0316926876402043e-08,1.712253018031318e-09,6.96374678758976e-09,1.0259370958962498e-08,1.4826616083392503e-09,6.731762118881378e-09,1.0953727094422434e-08,1.4888203838882264e-09,6.7018548846045395e-09,1.0833763701460545e-08,1.9879438514264193e-09,7.510848294850228e-09,1.2369567682675687e-08,0.0,0.0,0.0,6.407911884070464e-09,6.713294895051747e-09,7.126691975424409e-09,5.289453845992755e-09,5.540515098084009e-09,5.88016112394799e-09 +1788,Lithium,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,7.619894508524953e-11,3.6770048102563086e-10,8.776657279690101e-10,6.63183520192741e-11,3.533354373696929e-10,8.424022742697253e-10,5.676441431427912e-11,2.511011520416006e-10,5.952789937010971e-10,5.968800825044479e-11,2.5165301648014235e-10,5.876975189922175e-10,5.831679230100275e-11,2.352036783139838e-10,5.63890698891873e-10,7.177534052204426e-11,2.5500483521411325e-10,5.83201274873537e-10,0.0,0.0,0.0,5.093956538675143e-10,5.319065205642179e-10,5.625610948819088e-10,5.007139067152196e-10,5.228637575836334e-10,5.530515455268193e-10 +1789,"Sulfate, ion","('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.4659284641612494e-07,7.073879426822435e-07,1.6884650824774367e-06,1.2758440642710647e-07,6.797522288287058e-07,1.6206247012081822e-06,1.0920445366178685e-07,4.830729535013221e-07,1.1452065758959066e-06,1.148288195075958e-07,4.841345629314395e-07,1.1306214803661588e-06,1.1219086320673223e-07,4.524891610396423e-07,1.084821656872079e-06,1.3808270192716312e-07,4.905830673759333e-07,1.1219720064568664e-06,0.0,0.0,0.0,9.799821880850655e-07,1.023288902177152e-06,1.0822625919120236e-06,9.63279810665592e-07,1.005891982087703e-06,1.0639676406934627e-06 +1790,Chlorine,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,3.0407161436166915e-08,1.467305885561492e-07,3.5023129978525103e-07,2.646431843295721e-08,1.4099822445024893e-07,3.3615944705569704e-07,2.2651843376142447e-08,1.002018816690253e-07,2.3754549167931628e-07,2.3818477679075987e-08,1.0042208282483578e-07,2.3452017936527473e-07,2.327129775787734e-08,9.385801154628784e-08,2.2502011523540221e-07,2.8641939974846027e-08,1.0175968190597258e-07,2.3272608005142158e-07,0.0,0.0,0.0,2.0327363572219032e-07,2.1225656796658313e-07,2.2448923600373221e-07,1.9980911370169758e-07,2.0864797899435398e-07,2.206943710047105e-07 +1791,Iron,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.0014789091054202e-07,4.832661908280175e-07,1.1535076115638876e-06,8.716189559490242e-08,4.643862922684343e-07,1.1071611027376423e-06,7.460529556460475e-08,3.3002124629133667e-07,7.823704882625006e-07,7.844764774640572e-08,3.307464674258851e-07,7.724065231064671e-07,7.664548053047472e-08,3.0912732641047005e-07,7.411175152771273e-07,9.433404385907372e-08,3.351520050190222e-07,7.664977011042386e-07,0.0,0.0,0.0,6.694938086215374e-07,6.990796324883524e-07,7.393686550319635e-07,6.580830959418356e-07,6.871944216366928e-07,7.268699260557174e-07 +1792,Organic carbon,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.5368273966479558e-08,5.883960226708124e-08,8.905915595751689e-08,1.3778310443284307e-08,5.6076806892248933e-08,8.349638712302214e-08,1.3857514485521604e-08,5.635860909227784e-08,8.303056982935447e-08,1.1999396002276227e-08,5.448111688300595e-08,8.865008860426966e-08,1.2049240374526202e-08,5.423907456174944e-08,8.767920807720386e-08,1.6088706529038543e-08,6.078633864006644e-08,1.0010860994517106e-07,0.0,0.0,0.0,5.1860090397768305e-08,5.433159614995758e-08,5.7677274223868064e-08,4.2808317247013337e-08,4.4840192355699097e-08,4.758899686792445e-08 +1793,Nitrate,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,8.781056955850003e-08,4.2373239411670764e-07,1.0114073234320418e-06,7.642432546244366e-08,4.071783273280799e-07,9.707702621699993e-07,6.541455171603904e-08,2.893654933486521e-07,6.859900960212902e-07,6.878360225795291e-08,2.9000140760020405e-07,6.772534802678083e-07,6.720344031311266e-08,2.7104549837962493e-07,6.498189321871231e-07,8.271290883659687e-08,2.9386412668335733e-07,6.720723616290915e-07,0.0,0.0,0.0,5.870190459947093e-07,6.129601970991932e-07,6.482860219402285e-07,5.770141549782555e-07,6.025392680708507e-07,6.373271632712615e-07 +1794,Organic carbon,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,4.722932653150677e-09,1.8082426314370398e-08,2.7369415360443917e-08,4.234306860808665e-09,1.723335704759852e-08,2.5659860565564598e-08,4.2586488851914066e-09,1.731996198731516e-08,2.5516711497257968e-08,3.6876184054902852e-09,1.674298003258458e-08,2.7243688406610515e-08,3.702936171836428e-09,1.6668595665499366e-08,2.6945319980475745e-08,4.944339215998242e-09,1.8680700117468624e-08,3.0765128639170446e-08,0.0,0.0,0.0,1.5937524178532768e-08,1.6697061622919944e-08,1.7725247717986622e-08,1.3155724687429386e-08,1.3780154511811032e-08,1.4624908957747667e-08 +1795,Sodium,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.7736778815586834e-08,1.8209989104079424e-07,4.3465441420852783e-07,3.284351637116238e-08,1.7498574571866723e-07,4.171905513584241e-07,2.8112043437255197e-08,1.243554375647118e-07,2.9480568775797797e-07,2.955989918261368e-08,1.2462872234844839e-07,2.910511111547737e-07,2.8880821347532144e-08,1.1648238119900394e-07,2.792610572150982e-07,3.5546048872009535e-08,1.262887361098057e-07,2.8882451887059184e-07,0.0,0.0,0.0,2.5227266375991523e-07,2.6342092781171346e-07,2.786022750619923e-07,2.479730379588302e-07,2.589425086589026e-07,2.7389267932204357e-07 +1796,Organic carbon,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.5368273966479558e-08,5.883960226708124e-08,8.905915595751689e-08,1.3778310443284307e-08,5.6076806892248933e-08,8.349638712302214e-08,1.3857514485521604e-08,5.635860909227784e-08,8.303056982935447e-08,1.1999396002276227e-08,5.448111688300595e-08,8.865008860426966e-08,1.2049240374526202e-08,5.423907456174944e-08,8.767920807720386e-08,1.6088706529038543e-08,6.078633864006644e-08,1.0010860994517106e-07,0.0,0.0,0.0,5.1860090397768305e-08,5.433159614995758e-08,5.7677274223868064e-08,4.2808317247013337e-08,4.4840192355699097e-08,4.758899686792445e-08 +1797,Lithium,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,7.619894508524953e-11,3.6770048102563086e-10,8.776657279690101e-10,6.63183520192741e-11,3.533354373696929e-10,8.424022742697253e-10,5.676441431427912e-11,2.511011520416006e-10,5.952789937010971e-10,5.968800825044479e-11,2.5165301648014235e-10,5.876975189922175e-10,5.831679230100275e-11,2.352036783139838e-10,5.63890698891873e-10,7.177534052204426e-11,2.5500483521411325e-10,5.83201274873537e-10,0.0,0.0,0.0,5.093956538675143e-10,5.319065205642179e-10,5.625610948819088e-10,5.007139067152196e-10,5.228637575836334e-10,5.530515455268193e-10 +1798,"PAH, polycyclic aromatic hydrocarbons","('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,2.2859735096423622e-10,1.1031034175397527e-09,2.633000172439316e-09,1.9895551841237168e-10,1.0600081938615737e-09,2.52720962467303e-09,1.7029370795518024e-10,7.533053473331965e-10,1.78583976733431e-09,1.7906442741137044e-10,7.549608776464974e-10,1.7630955317804628e-09,1.7495078123565154e-10,7.056128550257637e-10,1.691675038899511e-09,2.1532656144988e-10,7.65016545430643e-10,1.7496071839338799e-09,0.0,0.0,0.0,1.5281887018551641e-09,1.5957213848807677e-09,1.6876852201036323e-09,1.5021431566509109e-09,1.5685927774391446e-09,1.6591562335094672e-09 +1799,Sulfate,"('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.4659284641612494e-07,7.073879426822435e-07,1.6884650824774367e-06,1.2758440642710647e-07,6.797522288287058e-07,1.6206247012081822e-06,1.0920445366178685e-07,4.830729535013221e-07,1.1452065758959066e-06,1.148288195075958e-07,4.841345629314395e-07,1.1306214803661588e-06,1.1219086320673223e-07,4.524891610396423e-07,1.084821656872079e-06,1.3809398746288627e-07,4.906075624733563e-07,1.122014350181811e-06,0.0,0.0,0.0,9.800060085258515e-07,1.023313893397914e-06,1.0822891727248748e-06,9.63279810665592e-07,1.005891982087703e-06,1.0639676406934627e-06 +1800,Lithium,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.243371172864347e-13,1.2417771874065633e-12,1.8795431368838046e-12,2.907805062559854e-13,1.1834624011188897e-12,1.7621337114876269e-12,2.924527133006169e-13,1.1894108487518343e-12,1.7523052965491295e-12,2.5323889464604063e-13,1.149789404786325e-12,1.8709030082644146e-12,2.542906924017757e-13,1.1446809351924998e-12,1.8504130783306934e-12,3.395441361216242e-13,1.2828661673445862e-12,2.112748780666918e-12,0.0,0.0,0.0,1.094490086495127e-12,1.146650377890709e-12,1.2172597954815117e-12,9.034402203696551e-13,9.46321559059359e-13,1.0043332072260306e-12 +1801,Elemental carbon,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.4979949657603555e-09,2.4878489292475742e-08,3.765588434520405e-08,5.825728516579071e-09,2.3710327501736324e-08,3.5303841170957304e-08,5.859217473690177e-09,2.3829478766296303e-08,3.5106884867630996e-08,5.0735700694179754e-09,2.3035639786672413e-08,3.748292298283605e-08,5.094645206460766e-09,2.2933299745861916e-08,3.7072416455520756e-08,6.802607388396888e-09,2.570160600544816e-08,4.232780108373791e-08,0.0,0.0,0.0,2.1927420546001822e-08,2.2972419611653367e-08,2.4387035158516455e-08,1.81001607969055e-08,1.895927576688369e-08,2.0121521958050567e-08 +1802,"Pesticides, unspecified","('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.791080721424e-10,6.492976056837343e-10,1.228287278317704e-09,3.784909067897597e-10,9.51917936877837e-10,1.2991159653551575e-09,4.788539912819056e-10,1.14682767691115e-09,1.3293132721974474e-09,1.0316945443828081e-09,2.3254318694472193e-09,1.3012959948888196e-09,7.346126797543971e-10,1.6769129067102887e-09,1.2669741574575272e-09,7.0735213093089556e-09,1.5775041766101368e-08,1.3050611675951326e-07,0.0,0.0,0.0,1.255800364091728e-07,1.3109364668349805e-07,1.385456160430315e-07,8.727074317605652e-10,9.282722699247891e-10,1.0060537402075714e-09 +1803,Mineral oil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.225379384157912e-09,1.367166539103392e-08,2.2494831245698283e-06,0.0,0.0,0.0,2.3990937808070855e-06,2.501109280371563e-06,2.6388581579715383e-06,0.0,0.0,0.0 +1804,Fosetyl-aluminium,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.755236447438065e-18,4.408280452557972e-17,1.2606480706484023e-16,1.0429269771842501e-19,1.7897246137972237e-18,5.005620126899938e-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,Quizalofop-p-ethyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1530376318189597e-36,1.7653209268084387e-35,4.853218974328224e-35,0.0,0.0,0.0,4.868687899669461e-35,5.083323280424629e-35,5.370999806398579e-35,0.0,0.0,0.0 +1806,Alpha-cypermethrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.869795300336932e-13,3.931849190494634e-12,6.090166048875675e-12,0.0,0.0,0.0,2.0923585864753346e-12,2.255311258644967e-12,2.4836651642165222e-12,0.0,0.0,0.0 +1807,"TiO2, 54% in ilmenite, 18% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,1.997381143943941e-05,2.563739710991767e-05,3.8880775798283064e-05,1.705901037541767e-05,2.2616592586611988e-05,4.330891840261825e-05,1.7124039619062768e-05,2.2756082934300727e-05,4.340276150393459e-05,1.7710334720028565e-05,2.42416652139306e-05,4.3724155640702275e-05,1.8041044973691657e-05,2.4880545451888354e-05,4.5033585442345434e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.988206477003875e-05,2.1082140430724408e-05,2.2759875698544145e-05 +1808,"Iron, 72% in magnetite, 14% in crude ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,2.663174803910243e-05,3.418319544468945e-05,5.184103333328165e-05,2.2745346700204936e-05,3.01554561629862e-05,5.774522335118396e-05,2.283205376384505e-05,3.034144515947062e-05,5.78703510504479e-05,2.361378059726261e-05,3.232222161372586e-05,5.82988765837619e-05,2.4054727618046236e-05,3.3174061961181416e-05,6.0044783056137974e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6509420781878352e-05,2.8109521728495646e-05,3.0346502177445427e-05 +1809,Haloxyfop- (R) Methylester,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.643952960817472e-11,2.1745198704761756e-10,3.7674629874804884e-08,0.0,0.0,0.0,4.0193079882315215e-08,4.1901976606974975e-08,4.420943183451056e-08,0.0,0.0,0.0 +1810,Lenacil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9943110953340075e-14,1.0220948237550071e-13,1.2904180851198936e-13,2.761928883083416e-15,4.821792472190032e-14,1.334618302968805e-13,2.346391325294742e-15,2.6069679645051314e-14,7.022575003832769e-14,1.5017444454159987e-15,5.129691785417288e-15,1.2376372868505421e-14,0.0,0.0,0.0,1.0409500060047078e-14,1.102908848168127e-14,1.1881496680029856e-14,6.933172918120657e-14,7.249065828572575e-14,7.674906878342712e-14 +1811,"Oils, non-fossil","('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.267486227442412e-08,7.558102937732482e-08,2.984209701039613e-06,3.227963462516931e-08,7.694000642594928e-08,2.991119151358848e-06,5.6279527715091184e-08,1.3001850959093035e-07,3.0019999807957046e-06,1.2229146808152696e-08,3.068376467178368e-08,4.915118644638917e-06,1.0089646510600167e-08,2.538366111279599e-08,4.825975187332081e-06,7.563153860865914e-09,1.9025186626384583e-08,3.2960585018991503e-06,0.0,0.0,0.0,3.5163904270521218e-06,3.66589746105179e-06,3.867770858587104e-06,5.1500025861105485e-06,5.368812366288122e-06,5.664241474545055e-06 +1812,"Gangue, bauxite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0467249756035758,0.09895129333312214,0.1927145935749959,0.03104966803068057,0.06588457329122473,0.13187725172697268,0.031034411876617957,0.06587887250943562,0.13235802011701306,0.031237882587008846,0.06886266947422744,0.1386377642671657,0.015824916017964142,0.03731138294805658,0.07251079274277553,0.02698878501481787,0.05403175704559903,0.10590407842951488,0.0,0.0,0.0,0.06355992560491369,0.06923933699105594,0.07726924280093811,0.044196272908376896,0.048104230865075336,0.053629905317981424 +1813,Water,"('water', 'ocean')",emission,cubic meter,biosphere3,0.0,0.0,0.0,3.133120287847155e-05,6.040336876556883e-05,0.00012676479341048357,3.007595313608714e-05,5.724299745352657e-05,0.00012915120226536064,3.1024836297575204e-05,5.957906216002498e-05,0.0001293371588032905,3.176193722759418e-05,6.347014003931885e-05,0.00013434945349518232,7.380494464748995e-05,0.00013451239292031617,0.00030150050438831303,0.00015349883522937488,0.0002799692443065352,0.0011268683334977048,0.0,0.0,0.0,0.0008547732639147035,0.0010042384314500297,0.0012198948391986565,0.00020297865737512448,0.00022127425226703653,0.00024715665366188363 +1814,Water,"('air',)",emission,cubic meter,biosphere3,2.904336074906691e-06,3.3024962258287005e-06,8.163170286331507e-06,0.01737581457797121,0.07901812121746908,0.23921021032768275,0.016375155914394913,0.07833054840037404,0.19555435800846419,0.01569173790262083,0.07585665168302438,0.17774563234949614,0.014256548493487892,0.06799605720124127,0.16986394558815007,0.015660586010015774,0.06888469995910355,0.17487584354455926,0.016398890318536846,0.06939171592774404,0.17794499348499984,4.614139094493617e-06,5.767469305687054e-06,7.444346709007675e-06,0.14536233373231847,0.15276243070139536,0.16264553911933022,0.14482248000409303,0.15247565829131982,0.16266279007555137 +1815,Water,"('water', 'ground-')",emission,cubic meter,biosphere3,0.0,0.0,0.0,0.00016204602358645037,0.0003161172624939686,0.020510706812901982,0.00014062008971218946,0.0002803922300869819,0.01481243594855883,0.00015177515223716582,0.0003007151010030581,0.0038929364783874447,0.0001294279113359936,0.0002523078930150459,0.0016426883877653704,0.00014395862446609168,0.0002761454377553477,0.0017327819037781132,0.0003954265863568948,0.0007066516597980001,0.004378357000410533,0.0,0.0,0.0,0.0019236347675908158,0.002034672852302473,0.0021872630289781272,0.0014050018581660466,0.0014736438617042754,0.0015668229847096101 +1816,Water,"('air', 'low population density, long-term')",emission,cubic meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8938706301814377e-21,3.539352138919954e-20,9.789008389646062e-20,1.4864552122673232e-06,3.3268431757356626e-06,2.293604630929859e-06,0.0,0.0,0.0,1.4176961769376908e-06,1.6192582983711216e-06,1.8819225461395643e-06,9.882808852470706e-20,1.0310329261009446e-19,1.088370519855398e-19 +1817,Water,"('air', 'lower stratosphere + upper troposphere')",emission,cubic meter,biosphere3,1.1349780569729393e-11,2.881159811913093e-10,8.310088371852699e-10,1.848130408308442e-11,4.353754242922354e-11,6.786446793178334e-11,8.588734274789057e-14,1.8635792223633885e-13,8.836053358547937e-13,3.123894933991096e-12,7.453701939447032e-12,6.7895065098461126e-09,8.980053692203652e-13,2.521888125021346e-12,2.6123123686332985e-10,8.794856125271926e-13,2.487507626448135e-12,2.6495766589307767e-10,1.2390296609625853e-14,5.546016091464758e-14,1.154541040751599e-12,8.496050734471197e-10,8.853729330365531e-10,9.333435632228064e-10,1.2075426667192585e-12,1.2614025704586507e-12,1.334433573772873e-12,2.8200740414730263e-10,2.9413928536157036e-10,3.1053872510728435e-10 +1818,Water,"('air', 'non-urban air or from high stacks')",emission,cubic meter,biosphere3,1.867580252253657e-12,4.7408821542672835e-11,1.3674059145276095e-10,0.00020006933851776236,0.00044947294311228724,0.00069551467331229,0.00026233960209680237,0.0006719304294417232,0.0018540425521221607,0.0002965150354062193,0.0007430465963605905,0.009335763325663883,0.0004890072980834337,0.001173068430625195,0.0012503078564565964,0.00039385353815924676,0.0009597976827638886,0.0012614196592060178,0.0004977804470596297,0.0011111375931889132,0.0013289968344492966,1.3980055933779116e-10,1.4568607830811549e-10,1.5357953509366884e-10,0.0010441879716109616,0.0010976388731995205,0.0011702167217790274,0.0010519568952956518,0.0011000144298370486,0.0011652754606509771 +1819,Water,"('water',)",emission,cubic meter,biosphere3,0.0,0.0,0.0,40.888734597483804,52.72161036651873,94.09901551164559,37.055927467857565,49.33077443025046,146.42196607380077,37.1171151319896,49.61416161910061,146.84160629166587,35.351295284627334,46.86064552673277,159.04909630705234,38.507175261014545,53.21296228282013,141.21606654766336,44.07173270977149,57.20092795049458,146.08704108806486,0.0,0.0,0.0,26.32168322336993,27.446605096105394,28.972036277116526,27.922149474359152,29.14172111042251,30.802888968669407 +1820,Water,"('air', 'urban air close to ground')",emission,cubic meter,biosphere3,3.4265215175212685e-12,1.3819348458416744e-11,3.380309227287212e-11,3.977671346258269e-05,7.485522582059568e-05,0.00014725758297959857,1.5242906943324175e-05,2.9002730316334573e-05,5.321555739941536e-05,1.7534251155369538e-05,3.0236496830089114e-05,5.546113700833176e-05,1.75747382886561e-05,3.10596124921787e-05,6.389010616372672e-05,1.7061705689343615e-05,3.0951740793644955e-05,6.390408225543904e-05,2.07763831310464e-05,3.671556898047151e-05,7.403395426566662e-05,3.075741691987835e-11,3.206975753974955e-11,3.3851292795954235e-11,4.6498451883871265e-05,4.918176138789099e-05,5.2884400086393896e-05,4.279117355605087e-05,4.513696853478268e-05,4.836571636705617e-05 +1821,Water,"('water', 'surface water')",emission,cubic meter,biosphere3,0.0,0.0,0.0,0.0007349809481466689,0.0016042376321923344,0.007431971400894971,0.0007660768187259462,0.0019516206509014073,0.010419366674942762,0.0007608247559886782,0.0019496173376836975,0.014375192005554835,0.0006863026009497711,0.0018676759357401944,0.004174027497814668,0.0006952516472897199,0.0018506867894543281,0.004141079912054942,0.00083338445072285,0.0019152597636739417,0.004308576455337621,0.0,0.0,0.0,0.00328977962747803,0.003472850594130231,0.003724063343168917,0.003344266398401715,0.003501532986893923,0.0037153949270232836 +1822,Fresh water (obsolete),"('water', 'surface water')",emission,cubic meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.742252946158478e-06,3.1593072590612275e-06,6.824077617687878e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.82496854005734e-06,5.2607343507969205e-06,5.877637338458451e-06 +1823,Cyclohexane (for all cycloalkanes),"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.2150963005237677e-10,4.6513408976310653e-10,7.038539095500012e-10,1.091307954295189e-10,4.436773949885641e-10,6.606352897414073e-10,1.0990049372234236e-10,4.462773534970033e-10,6.576699968373742e-10,9.521572993004094e-11,4.3156810867724447e-10,7.025903370311537e-10,9.570176389962324e-11,4.29839129643032e-10,6.948986222288971e-10,1.2538163189398687e-10,4.747328057009475e-10,7.781931355220545e-10,0.0,0.0,0.0,3.9841467602296647e-10,4.174299412958226e-10,4.431623744308865e-10,3.3957033859063433e-10,3.5569142052069676e-10,3.7749996441114185e-10 +1824,Methane,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,6.6665941946801e-09,2.550172216069241e-08,3.854622302025503e-08,6.028146302185202e-09,2.4411034511620993e-08,3.6340284334357936e-08,6.099697576619819e-09,2.4631428735874668e-08,3.632901131573978e-08,5.296032524592654e-09,2.385584124966794e-08,3.8905216261700205e-08,5.343203739810088e-09,2.3802550525625346e-08,3.848029986847158e-08,6.5100138405901145e-09,2.4862395800424124e-08,3.9910893794565134e-08,0.0,0.0,0.0,1.9428070652366756e-08,2.0361172588045915e-08,2.1622009618704307e-08,1.8858345362568483e-08,1.9754461371117425e-08,2.0966556988502804e-08 +1825,Chromium IV,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,3.332160812541267e-15,1.2757184483425196e-14,1.9305050430865836e-14,2.9881489234466284e-15,1.2159373435282283e-14,1.810123281890583e-14,3.0061413175316603e-15,1.222317141272614e-14,1.8005967672650995e-14,2.6040436515003315e-15,1.1819258590072704e-14,1.923267934759959e-14,2.6159477247315552e-15,1.1769120652185666e-14,1.9022213413458816e-14,3.4634200678705924e-15,1.3103262960052038e-14,2.153011133631286e-14,0.0,0.0,0.0,1.1091661811866654e-14,1.1620589196426919e-14,1.233648729556182e-14,9.287510774148524e-15,9.728387575315837e-15,1.03248127812465e-14 +1826,Argon-40,"('natural resource', 'in air')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,4.199658713558922e-05,0.00013331498637286887,0.0003550662393031615,5.98860775481505e-05,0.0002021839470968693,0.0005482688929191365,6.0122568293284316e-05,0.00020204575447656372,0.0005465090332025851,6.205205301899837e-05,0.0002515188287877732,0.0006724222744869962,6.801387168801963e-05,0.0002621849541229335,0.0006814249683310285,7.801824664771622e-05,0.00027297481682010693,0.0007074866193730367,0.0,0.0,0.0,0.00047803592179944816,0.0005867781178795165,0.0007254522373809112,0.0004779110339715201,0.0005796451009658249,0.0007099538127536788 +1827,Nitrogen,"('natural resource', 'in air')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.00226481591378393,0.00718948667186027,0.019148214759202274,0.003229570645667375,0.010903491529850403,0.029567358463783725,0.003242324216489836,0.010896038890020162,0.029472451409188957,0.0033463785746840457,0.013564051170983181,0.036262772801528405,0.0036678909384435117,0.014139260072687381,0.0367482752183385,0.004207412588947631,0.014721141947855189,0.038153742796671546,0.0,0.0,0.0,0.025779794474552063,0.031644105760767184,0.039122602917161686,0.025773059484306273,0.03125943238415304,0.03828679505839303 +1828,Argon-40,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,9.870750179750194e-06,3.259432364194329e-05,9.815207116308166e-05,8.514680487501372e-06,2.828254332561116e-05,8.58031813485393e-05,8.7346384932442e-06,2.86381882601649e-05,8.630627935631584e-05,8.83848131585853e-06,2.999471769236433e-05,8.93237000867412e-05,1.0355217404323358e-05,3.289783461700419e-05,9.257060471058312e-05,9.581609021803866e-06,2.9571086972817564e-05,8.714654278018782e-05,0.0,0.0,0.0,7.062418063786951e-05,7.436769444629347e-05,7.954661312846995e-05,7.5952847082732e-05,7.997481564435967e-05,8.554515196766814e-05 +1829,Nitrogen,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,2.446894485561155e-06,8.302210499952836e-06,2.093180993162794e-05,4.3789726600245974e-07,3.935852606557989e-06,1.4282132690635028e-05,5.622324991313357e-07,4.241027485533649e-06,1.4912251140770812e-05,0.0002607682820612906,0.004206742762501639,0.011566589066242298,0.000268097804009657,0.004225285093655896,0.011599262739284176,0.0003116596998173648,0.004255926877354415,0.01165068947990016,0.0,0.0,0.0,0.010407804850729285,0.011143232030558182,0.012115109697435582,0.010405396469833855,0.011145782915780849,0.012123823211774139 +1830,Diquat dibromide,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.230429597988019e-19,3.568608134073309e-18,1.0205246711354632e-17,8.44274218858738e-21,1.4488246860447383e-19,4.0521686704783214e-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,Tebufenpyrad,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.6240348211636796e-20,4.1983625106762583e-19,1.2006172601599956e-18,9.93263751437969e-22,1.7044995697924728e-20,4.767257089203894e-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,"Fungicides, unspecified","('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.042779997716189e-14,9.640060352948961e-14,2.4580291549110316e-13,2.9858294221746014e-14,8.842718933242654e-14,2.014335898492795e-12,4.8837090398082434e-14,1.2153612834637266e-13,2.264155993688909e-12,9.817690364832838e-15,3.544698735911718e-14,3.687335942125581e-12,8.237010854877533e-15,2.6019964186838275e-14,3.6612490555041986e-12,5.761702753171967e-15,1.4866170193997948e-14,2.3427669358274953e-12,0.0,0.0,0.0,2.4986405014780355e-12,2.6049220589059796e-12,2.7484339231511537e-12,3.905592834161306e-12,4.0715885108482746e-12,4.295708344139376e-12 +1833,"Methane, from soil or biomass stock","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,1.5545806569193532e-07,3.8005940821533573e-07,3.783936676932739e-05,1.0549957218531988e-07,2.735870009394946e-07,3.118737491968365e-05,6.548331138937981e-07,1.5285486613635934e-06,5.409385839752567e-05,1.7411560769900052e-07,4.373292373409778e-07,6.76128359925991e-05,1.402619988876029e-07,3.6404594590600247e-07,6.631067063836943e-05,1.3027149685897292e-07,3.1978292645331673e-07,4.7554136250837116e-05,0.0,0.0,0.0,5.068046991097135e-05,5.283608920663791e-05,5.574672584484918e-05,7.074530620921662e-05,7.375249436323475e-05,7.78128451115928e-05 +1834,"Carbon dioxide, from soil or biomass stock","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.00012783707751434434,0.0003322592321490269,0.054544786814525764,9.7283980933777e-05,0.00027338036742235886,0.051325501160988114,2.971297341449153e-05,9.094790616122957e-05,0.02518368467993582,5.0521464268362917e-05,0.00013492585806783013,0.026854819765382416,3.4461332857063073e-05,0.00012067077894807832,0.02434506344974394,4.2736152890847395e-05,0.00013411329198604314,0.024340516416502235,0.0,0.0,0.0,0.025941556838544662,0.02704491999323388,0.028534705188025422,0.025950864529571262,0.02705524455747915,0.028546510373997646 +1835,"Carbon dioxide, to soil or biomass stock","('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.206187356407072e-06,1.4866118264133632e-05,0.0009354705338211024,1.3102863191549424e-06,3.417668271464223e-06,0.0006459301460689697,1.0471437747694878e-06,2.5831127353909455e-06,0.0006714010116956741,1.2814265919686598e-06,2.9618933453875395e-06,0.000671259330471866,0.0,0.0,0.0,0.0007164378044913357,0.0007469151178266653,0.0007880668886072794,0.0007167388464514945,0.0007472475959785611,0.0007884450312566546 +1836,"Carbon monoxide, from soil or biomass stock","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,2.3215184854772473e-06,5.682223236635502e-06,0.000578472932513762,1.5374804740472704e-06,3.993022476347434e-06,0.00047672236507030835,9.918888440273673e-06,2.3147394656438267e-05,0.0008270507683925025,2.4556674845039264e-06,6.221363754468949e-06,0.0010338172340992192,1.997592941183448e-06,5.230854017276192e-06,0.001013908659183378,1.9923876053316464e-06,4.890797715418317e-06,0.0007272985561091553,0.0,0.0,0.0,0.0007751130710150435,0.0008080813662013583,0.0008525969854767815,0.0010818117097609312,0.0011277928360489005,0.0011898766915562054 +1837,"Carbon dioxide, from soil or biomass stock","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.00023397977619903941,0.0005550515930074455,0.028195797084024195,0.002110271170376931,0.0046122898954774495,0.07353112665337956,0.003061954869242204,0.007022206804549294,0.06261238046182856,0.0041032305713739,0.0094787097381207,0.09996799581383144,0.0012313899255204273,0.0032334576815733897,0.12521769437725816,0.0031320216865569363,0.007347006777047924,0.1243119451903859,0.0035557070151038105,0.007997863357902143,0.12855648454166135,0.03006830483824161,0.03134732798621581,0.03307441309850843,0.13417977345100973,0.1399081563486808,0.14764459480618125,0.13015813263731296,0.13571651062349005,0.14322472694843513 +1838,"Chlorides, unspecified","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,3.754615661585712e-05,4.8145805386989726e-05,7.19542379112899e-05,3.3143485925342835e-05,4.384394045664674e-05,8.291782443701668e-05,3.3314321748558955e-05,4.417364648078196e-05,8.31989430175544e-05,3.4516796114248865e-05,4.7360767142255564e-05,8.508454841419795e-05,3.460804706347817e-05,4.692098837264496e-05,8.461829509646728e-05,4.2885054617428934e-05,5.7054862706803794e-05,9.99789308581217e-05,0.0,0.0,0.0,4.165833703617772e-05,4.490327109472125e-05,4.933751620086415e-05,3.571326858395241e-05,3.792912819034247e-05,4.1029749981026335e-05 +1839,Sulfur oxides,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,4.233459756343258e-08,1.7481733521781555e-07,2.626235237805576e-07,3.930326607534079e-08,1.7130877681268938e-07,2.6402353707440244e-07,3.4480745686772114e-08,1.505675148998221e-07,2.211835016536129e-07,3.166341396825e-08,1.396777684793023e-07,2.003664571893328e-07,3.706079930866542e-09,5.407313318551343e-08,8.435964236027508e-08,1.3733829648731125e-05,1.8011868511308988e-05,3.180516517813004e-05,0.0,0.0,0.0,1.6546834068180215e-05,1.8259954094921316e-05,2.0712198842036997e-05,2.078643250527972e-08,2.2676276775064157e-08,2.5353420855312195e-08 +1840,"Bromine, 0.23% in water","('natural resource', 'in water')",natural resource,kilogram,biosphere3,1.974439728556517e-08,2.8057439907899943e-08,8.5866267522199e-07,8.064775866601175e-08,1.574607885491249e-07,2.6971987770271134e-06,6.973893230550745e-08,1.3837481823628256e-07,2.0492508493150716e-06,9.936013896384401e-08,2.0550066331711177e-07,7.808323141309138e-06,2.896234575746554e-08,4.706407955026335e-08,2.8471597332395337e-06,2.7463160718396688e-08,4.322735043426874e-08,2.827961449458865e-06,0.0,0.0,0.0,8.846486998167021e-07,9.28371624906532e-07,9.881702320975214e-07,0.0,0.0,0.0,2.9869750526853167e-06,3.1201541944356107e-06,3.3007494647692655e-06 +1841,Hydrochloric acid,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,3.6567384192645667e-06,4.656211954645038e-06,6.958515562378717e-06,3.2296429686716696e-06,4.243293306155008e-06,8.039414258500008e-06,3.24531795030033e-06,4.271740531256195e-06,8.059840940946978e-06,3.3657323073557155e-06,4.59419741450531e-06,8.266393753176816e-06,3.37541831571196e-06,4.5629544911631415e-06,8.23623339006699e-06,4.182779576387822e-06,5.551515311265955e-06,9.734591520789224e-06,0.0,0.0,0.0,4.0625340662494895e-06,4.378765773953186e-06,4.810871983252547e-06,3.4825681179503585e-06,3.698405643022384e-06,4.000406873889097e-06 +1842,Carbonyl sulfide,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,5.462252840835852e-07,6.955216387041742e-07,1.0394282292209659e-06,4.824279031711504e-07,6.338419175388643e-07,1.200887466842304e-06,4.847693534778089e-07,6.380912216537702e-07,1.2039387024359952e-06,5.027562474934835e-07,6.862582170641846e-07,1.2347925277862765e-06,5.042030949458874e-07,6.815913055377086e-07,1.2302873236894278e-06,6.24854099133218e-07,8.297371339182955e-07,1.456045729523257e-06,0.0,0.0,0.0,6.087258850725173e-07,6.561476555549348e-07,7.209587165949282e-07,5.202085961488401e-07,5.524493254357263e-07,5.975607578682063e-07 +1843,Sulfur trioxide,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,6.954333327554917e-11,1.0944853336150175e-10,1.4162180128733268e-08,3.501973059262733e-10,7.122143596318732e-10,1.7520270368520597e-08,3.4442744073155087e-10,7.239686519249302e-10,1.547497183205048e-08,5.25497984055351e-10,1.126349802195239e-09,1.4479601506787758e-08,1.272919023466578e-10,2.3043036887908586e-10,1.6784685146900606e-08,1.1338816192561319e-10,1.9895850053925987e-10,1.6644554339723638e-08,1.5871584019353665e-09,1.9300721845251643e-09,2.3197058920712592e-08,1.5016660764638468e-08,1.567581495319683e-08,1.6568388102305908e-08,2.2520115393651848e-08,2.3872889774451712e-08,2.574857510965444e-08,1.7651047767673973e-08,1.842259331914649e-08,1.9466985166873405e-08 +1844,Sulfur trioxide,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,5.396481746379574e-10,7.611894332570306e-10,1.394035979054322e-09,4.705306409693372e-10,6.868324454477175e-10,1.3053715067586257e-09,4.709001073543894e-10,6.870069523738546e-10,1.3081025661710613e-09,4.707544658030705e-10,6.939249578888151e-10,1.3257843907387617e-09,4.715092557948878e-10,6.880356909762051e-10,1.282493904465842e-09,5.963412602669938e-10,8.145209131194661e-10,1.4270544364896486e-09,0.0,0.0,0.0,6.880803312881645e-10,7.804085665925468e-10,9.133502463294746e-10,6.767446004517578e-10,7.689191678427296e-10,9.017528428023656e-10 +1845,"2,2,4-Trimethyl pentane","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.752527189181535e-15,1.9724130863537285e-14,7.255512141857593e-14,4.656968165536099e-15,1.062391883352684e-14,7.658094750225755e-14,4.639972923077679e-13,6.881641885698586e-13,7.986349674216972e-12,0.0,0.0,0.0,7.908924174902025e-12,8.338270344482891e-12,8.92947944798725e-12,7.874462128193123e-14,8.220444470363226e-14,8.689277834463115e-14 +1846,Acenaphthylene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,4.529109609878637e-11,4.990712581037314e-11,6.019477927312268e-11,4.4804767677401476e-11,4.8588345688865614e-11,5.797377234367902e-11,4.471609828672747e-11,4.8543622641519916e-11,5.826878885044122e-11,4.486723425606601e-11,4.818574911259756e-11,5.7454546253038685e-11,3.7998344744571033e-11,4.2404545229700066e-11,5.432827489785844e-11,0.0,0.0,0.0,1.3170070979884438e-11,1.3907674107749589e-11,1.4930290826603302e-11,1.1233792232691331e-11,1.1879595237771974e-11,1.2779442713115205e-11 +1847,Anthracene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.532995028962759e-18,7.96172977078938e-18,2.928718503327259e-17,1.8798051149402857e-18,4.288390268986318e-18,3.091222694783824e-17,1.8728147118801596e-16,2.816491212640817e-16,3.2102030511054748e-15,0.0,0.0,0.0,3.172634704079909e-15,3.344900190383389e-15,3.582112972584565e-15,3.178560312167446e-17,3.318217564133294e-17,3.507464156457654e-17 +1848,Benz(a)anthracene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,8.747398530994608e-13,9.6389258871089e-13,1.1625855147124668e-12,8.653470389668283e-13,9.384220301184057e-13,1.1196895944237247e-12,8.63627006464454e-13,9.375413686016542e-13,1.1253253224839409e-12,8.665495129451972e-13,9.30637291139822e-13,1.109595815940837e-12,7.334922313567397e-13,8.183921527284737e-13,1.0424700833626095e-12,0.0,0.0,0.0,2.476315419082898e-13,2.6151189901052624e-13,2.8075912735032386e-13,2.168989506423173e-13,2.2936885009428597e-13,2.4674424280490464e-13 +1849,Benzo(b)fluoranthene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.0345907987632917e-12,1.1400354061045372e-12,1.3750377020259586e-12,1.023481531146234e-12,1.109910328797053e-12,1.3243029326285078e-12,1.0214443043507249e-12,1.1088622584191253e-12,1.3309447188610042e-12,1.0249022175932379e-12,1.1006995097356265e-12,1.3123394626046934e-12,8.673791052144483e-13,9.677169894197102e-13,1.2303612219518971e-12,0.0,0.0,0.0,2.9030354174420123e-13,3.0658029838322204e-13,3.2915184928058584e-13,2.565094566803729e-13,2.7125698374858423e-13,2.9180603612525584e-13 +1850,Benzo(ghi)perylene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,6.371835720432409e-14,7.021247758673647e-14,8.468579431311337e-14,6.30341598503898e-14,6.835713492122909e-14,8.156114233310113e-14,6.291000430645025e-14,6.829554558996429e-14,8.198108195628489e-14,6.312235574105783e-14,6.779145307886591e-14,8.08358257849036e-14,5.348973661205158e-14,5.970441826666148e-14,7.696862809575172e-14,0.0,0.0,0.0,1.905841001462033e-14,2.0124890028735508e-14,2.1603193249250218e-14,1.5809713337784742e-14,1.6718502819097434e-14,1.7984780839406685e-14 +1851,Benzo(k)fluoranthene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,7.481911973016965e-13,8.244462027882529e-13,9.94394214510263e-13,7.401572419910901e-13,8.026604709861547e-13,9.57704048774207e-13,7.386839327489438e-13,8.019024510226811e-13,9.625069322285267e-13,7.41184629236128e-13,7.95999384591588e-13,9.490520416437977e-13,6.272658165909255e-13,6.998267995760648e-13,8.897351153230244e-13,0.0,0.0,0.0,2.099083835935289e-13,2.216775966910578e-13,2.379983954146746e-13,1.8550115140184985e-13,1.9616619434745665e-13,2.1102675592297165e-13 +1852,Chrysene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,9.546653075204919e-14,1.0519639769380179e-13,1.2688115833450774e-13,9.444142668655838e-14,1.024166159589659e-13,1.221996239543195e-13,9.426868165800365e-14,1.0235424816380638e-13,1.22938821566319e-13,9.458062852325652e-14,1.015851883986995e-13,1.2122903713661313e-13,9.035854550006133e-14,1.0059253533605474e-13,1.395071005653517e-13,0.0,0.0,0.0,4.253003179883156e-14,4.487520789126699e-14,4.8119410433184115e-14,2.3806432690408038e-14,2.5173280018563517e-14,2.7077600226011186e-14 +1853,"Dibenz(a,h)anthracene","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,4.862132648949948e-13,5.357677038792203e-13,6.462086949515308e-13,4.809923860103507e-13,5.216102107504544e-13,6.223655312991772e-13,4.800331086628542e-13,5.211134525944779e-13,6.25471399002966e-13,4.816590536439761e-13,5.17279253562067e-13,6.167268679970487e-13,4.560259583635776e-13,5.06027342247051e-13,6.38344293582454e-13,0.0,0.0,0.0,1.452394825296482e-13,1.5330843642163766e-13,1.644951758124781e-13,1.2053162559712883e-13,1.2746159175083694e-13,1.3711776353001227e-13 +1854,Fluoranthene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,7.970345355998625e-12,8.78267612170153e-12,1.0593101517692226e-11,7.884761084823943e-12,8.550596665692722e-12,1.0202247825959039e-11,7.869175230551339e-12,8.542767346992053e-12,1.0254315993025086e-11,7.895763673433316e-12,8.479769675406923e-12,1.0111033635512122e-11,7.48269320660643e-12,8.306059984009969e-12,1.0590508177152276e-11,0.0,0.0,0.0,2.5059058408526335e-12,2.644967259868201e-12,2.837697355595041e-12,1.97709120746918e-12,2.090747082590597e-12,2.2491123632158675e-12 +1855,Fluorene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,7.2376951347101114e-12,7.975354818633731e-12,9.619362261976548e-12,7.1599779422830475e-12,7.764608574083243e-12,9.264436629428179e-12,7.146519560700575e-12,7.759064675049025e-12,9.317478126602568e-12,7.170338828278075e-12,7.701135487044125e-12,9.187686148530287e-12,6.830667197794717e-12,7.596844911975198e-12,1.0247002831105347e-11,0.0,0.0,0.0,2.8992579867945304e-12,3.0594030743374366e-12,3.2810517688790786e-12,1.8016038705398964e-12,1.9050869147753426e-12,2.0492671069244034e-12 +1856,"Indeno(1,2,3-cd)pyrene","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.9115508070066718e-13,2.106374426403941e-13,2.5405739461062775e-13,1.8910248855758706e-13,2.0507141442730885e-13,2.4468343832641623e-13,1.8872598772285772e-13,2.0487755524093508e-13,2.4590981537301233e-13,1.893649297715079e-13,2.0336947210514947e-13,2.424721911928334e-13,1.792825506422612e-13,1.989554297957894e-13,2.514979662940009e-13,0.0,0.0,0.0,5.766719257228485e-14,6.087029632039458e-14,6.531076656249544e-14,4.7392847291971557e-14,5.0117621153039184e-14,5.391429443192458e-14 +1857,Naphthalene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.779483044889828e-15,8.517199268589195e-15,3.133047693477439e-14,2.0109543040322756e-15,4.58758027640723e-15,3.306889386241344e-14,2.003485097570189e-13,3.0130037114279794e-13,3.4341886029440472e-12,0.0,0.0,0.0,3.3939993127023025e-12,3.5782842605500465e-12,3.832048061363069e-12,3.4003203255369394e-14,3.54972110634021e-14,3.752170948791152e-14 +1858,Phenanthrene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.1145162436483364e-10,1.2281067838008037e-10,1.4812637579146987e-10,1.102548749614202e-10,1.1956544480235003e-10,1.4266095654896566e-10,1.1003711658452554e-10,1.194563777990758e-10,1.4339055842365573e-10,1.1040882473048983e-10,1.1857527292763663e-10,1.413870843483213e-10,1.0464216029561762e-10,1.1616041314004177e-10,1.482562339179095e-10,0.0,0.0,0.0,3.5205175416832305e-11,3.715863648829587e-11,3.986592708256746e-11,2.7647880480743546e-11,2.9237235546433904e-11,3.145180074779366e-11 +1859,Pyrene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,5.816797647724392e-12,6.4096406805133984e-12,7.730898137718355e-12,5.7543378209291084e-12,6.240267939071952e-12,7.44565116874175e-12,5.7428850775037505e-12,6.234378040888135e-12,7.48300327807861e-12,5.762326004854881e-12,6.188483238709456e-12,7.37839917252241e-12,5.455978616661078e-12,6.054742409867621e-12,7.657028314097194e-12,0.0,0.0,0.0,1.7585096537938669e-12,1.8561805240135736e-12,1.9915800185156713e-12,1.4421882598436546e-12,1.525104006599575e-12,1.6406379363936645e-12 +1860,Silicon tetrachloride,"('air', 'urban air close to ground')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.572744697804622e-23,-2.1281296336943712e-22,-1.6388992630688056e-22,0.0,0.0,0.0,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,Silicon dioxide,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.578643093079137e-22,-1.8062584548813464e-21,-1.391022240256053e-21,0.0,0.0,0.0,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,Polychlorinated biphenyls,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,2.323569531036507e-14,3.267727996606741e-13,4.26880125380611e-13,5.788181294035799e-14,6.428749631133584e-13,8.935364712920335e-13,6.743624670352193e-14,6.786288904067336e-13,9.608697506335339e-13,3.7876367097066554e-14,5.688732717540999e-13,7.451878735113741e-13,2.132541466828931e-13,2.4293338360428914e-12,3.250519082598204e-12,2.460998548759626e-13,2.4528362345447298e-12,3.301501489859315e-12,0.0,0.0,0.0,3.865606003730221e-13,4.60675289825131e-13,5.679114731423274e-13,3.7859226343084254e-13,4.520001855167154e-13,5.582568717344943e-13 +1863,"Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,2.7928708364030557e-11,4.795916001614382e-10,1.374001385055558e-09,2.5102637151404903e-11,4.6064040287957096e-10,1.2914231055216118e-09,2.5387537721717827e-11,4.6113372394835435e-10,1.2926548488358719e-09,2.486852648192957e-11,5.38150729856353e-10,1.5042057149218335e-09,2.6863612019097858e-11,5.320667302085989e-10,1.4771486616185088e-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.496697384583175e-09,1.5613746943713246e-09,1.6481090126678057e-09 +1864,"Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,7.720010763164347e-12,1.3256797510699637e-10,3.797993570981826e-10,6.938832489521955e-12,1.2732951419519506e-10,3.569731956178094e-10,7.017584268522011e-12,1.2746587724883678e-10,3.573136722165058e-10,6.874119977050132e-12,1.48754799987161e-10,4.157902384011994e-10,7.425598463591806e-12,1.4707307012869567e-10,4.0831116919407266e-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13714797236156e-10,4.315928000845324e-10,4.5556776742060714e-10 +1865,"Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,5.681041582936035e-12,9.755480947560654e-11,2.794887218483175e-10,5.106184060161977e-12,9.369990366126025e-11,2.626912876445994e-10,5.1641363279521355e-12,9.380025121289143e-11,2.629418393313382e-10,5.058563080659902e-12,1.0946645415282907e-10,3.059738783092329e-10,5.464387931134943e-12,1.0822889405772386e-10,3.0047014205050805e-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0444659189608783e-10,3.1760274940711573e-10,3.3524557278454194e-10 +1866,"Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,2.188198193355137e-11,3.7575725283939553e-10,1.076522161089139e-09,1.9667771435028703e-11,3.609090990341036e-10,1.0118225552353418e-09,1.9890989388663795e-11,3.6129561324570185e-10,1.0127876190162152e-09,1.9484347075563646e-11,4.2163799319926887e-10,1.178536502530025e-09,2.1047485087719282e-11,4.1687121456310193e-10,1.1573374573114708e-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1726537690138184e-09,1.2233280682233747e-09,1.2912839063911576e-09 +1867,"Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,1.732754540376436e-12,2.975484980807932e-11,8.524587343619453e-11,1.5574192666345585e-12,2.8579078529114086e-11,8.012254703735996e-11,1.575095084304314e-12,2.8609685183414626e-11,8.0198966927352e-11,1.5428945589332272e-12,3.3387978720314806e-11,9.332401800179014e-11,1.6666737712671035e-12,3.3010514862126154e-11,9.164534273513724e-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.28581857364753e-11,9.687089913271657e-11,1.0225207472709568e-10 +1868,"Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,1.5861113587805492e-13,2.7236694038258524e-12,7.803150705787551e-12,1.4256147258571876e-13,2.6160428393224314e-12,7.334176825608274e-12,1.441794637391848e-13,2.6188444803440043e-12,7.341172072345381e-12,1.4123192455482852e-13,3.056235090355866e-12,8.542599747632908e-12,1.525623011364002e-13,3.021683184764803e-12,8.38893886573831e-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.499958864016181e-12,8.867270571977832e-12,9.359847191146294e-12 +1869,Carnallite,"('natural resource', 'in water')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,8.926771566981964e-08,3.3292988191788963e-07,4.135348448627054e-06,8.123100609364221e-08,3.267267556398057e-07,3.822899555844157e-06,9.781249204248879e-08,3.5580174017849304e-07,4.365842996608261e-06,9.933948468268669e-08,3.8494726923723197e-07,4.365262763109824e-06,9.454189553299126e-07,6.275559652256989e-06,1.600944294555921e-05,1.2269283910871366e-06,6.639021863624385e-06,1.7173554478459047e-05,0.0,0.0,0.0,1.104414253394349e-05,1.368953163827242e-05,1.7034683788289086e-05,1.044992302809077e-05,1.2675589002628839e-05,1.5497820826508374e-05 +1870,"Chlorinated solvents, unspecified","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,5.44495040523736e-11,2.2877233635895547e-10,5.425325352213564e-10,5.489171990374603e-11,2.589726337017159e-10,6.143029075061606e-10,5.5354521755740526e-11,2.587472503481453e-10,6.142359567562926e-10,5.82682707129191e-11,2.5976089586659137e-10,6.074660475816067e-10,5.743055304368618e-11,2.4616719849141894e-10,5.899458710480444e-10,5.035864991054928e-11,2.0697885686427013e-10,5.158501375500288e-10,0.0,0.0,0.0,4.5876517678372857e-10,4.784472963452424e-10,5.052430057167013e-10,5.311117247090943e-10,5.541070817352593e-10,5.854372289242773e-10 +1871,"Hydrocarbons, unspecified","('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,8.18097589262005e-09,1.895142942548121e-08,2.289929927496003e-08,1.7853543162204717e-08,4.115532160402667e-08,4.8944677318525514e-08,8.060584951036872e-09,1.8982795819127923e-08,2.4966927855079765e-08,7.947480437505991e-09,1.886085454782776e-08,2.5265799706079615e-08,7.913943492157346e-09,1.8666286245804483e-08,2.4671182498440665e-08,4.851169425004766e-07,1.6266451418945506e-06,3.310223595906804e-06,0.0,0.0,0.0,2.6768498568455468e-06,2.9248130734132295e-06,3.278453775276038e-06,8.661987592994273e-09,9.171483391536478e-09,9.879871172326618e-09 +1872,"Phenol, pentachloro-","('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,8.765331249405526e-12,2.0305102879212673e-11,2.4534963889936124e-11,1.912900525403298e-11,4.4095468975257e-11,5.2441296385074076e-11,8.636551765963717e-12,2.0339195118094936e-11,2.6750853944923846e-11,8.515367604209352e-12,2.020854503502578e-11,2.7071083612314282e-11,8.479433877166268e-12,2.000007519304997e-11,2.643398730650278e-11,8.496484764539668e-12,1.9866539413385977e-11,2.607355776747205e-11,0.0,0.0,0.0,8.772060051531308e-12,9.275937470287682e-12,9.973778078285377e-12,9.280849488599021e-12,9.826744423834727e-12,1.0585740289287563e-11 +1873,Hydrogen carbonate,"('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,9.415684539193946e-07,1.8619587726344733e-06,4.821638481363943e-06,7.307144724881804e-07,1.3893156864229753e-06,5.060847290673969e-06,9.493756095071485e-07,1.9216135155282783e-06,5.007948225879286e-06,1.0742902554475266e-06,2.2157139674433605e-06,4.909590640061366e-06,5.48739154428187e-07,1.0761177807760055e-06,4.881385501722396e-06,9.02508043907195e-07,1.5579449398289524e-06,1.0137889186351223e-05,0.0,0.0,0.0,2.283871305137338e-06,2.4434192219619973e-06,2.664657574402107e-06,1.205993125555125e-06,1.3065698276248094e-06,1.4448304658790516e-06 +1874,Tebuconazole,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.465904572496788e-22,3.064400014286742e-22,4.620104251771998e-22,3.217788177452218e-20,3.9394251035234126e-20,5.848625942717369e-20,3.219710745029697e-20,3.980610223320289e-20,5.896475458233056e-20,1.9083783285553365e-20,2.248955597279466e-20,3.355020981642443e-20,1.3992680489526403e-20,1.588280188207785e-20,2.278971499547216e-20,0.0,0.0,0.0,5.987458380460818e-21,6.381624783375391e-21,6.931654329426837e-21,1.0102220750729714e-20,1.0765088806446844e-20,1.1691809053912469e-20 +1875,Tebuconazole,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.8324947140232516e-25,2.2772563430587306e-25,3.433351281187382e-25,2.3912441266753873e-23,2.9275162384222987e-23,4.346306115702226e-23,2.3926728498152768e-23,2.958122254229196e-23,4.3818646629514234e-23,1.418178642587191e-23,1.671272801872623e-23,2.493226332760261e-23,1.0398420651639184e-23,1.180303196519565e-23,1.6935786051273357e-23,0.0,0.0,0.0,4.449477062052263e-24,4.742395067817243e-24,5.151140096693205e-24,7.507292184825819e-24,7.999891217950962e-24,8.688567484579896e-24 +1876,Propiconazole,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.3935946387546522e-24,1.7475004047408944e-24,2.6564312992286423e-24,3.044030346411108e-23,3.7289700673786794e-23,5.539381399186781e-23,3.0458457407643695e-23,3.7683316467453745e-23,5.585731295488583e-23,1.806447913315741e-23,2.13022503126118e-23,3.179788223475152e-23,1.3692613405466214e-23,1.5544029148159143e-23,2.2306214888145672e-23,0.0,0.0,0.0,5.8644476001805105e-24,6.250397589450154e-24,6.788948522436893e-24,9.60366785085545e-24,1.0232896167685195e-23,1.1112484516060808e-23 +1877,Monoethanolamine,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,1.992948534923809e-10,4.566983443417226e-10,5.522097178430778e-10,4.3573493471779355e-10,9.960084497179466e-10,1.1890496887724084e-09,1.8754727503100852e-10,4.341367099832421e-10,5.502818303739684e-10,1.910818636796651e-10,4.4480225136858687e-10,5.596217222594259e-10,1.8899572442945634e-10,4.3781900219079973e-10,5.452839372056427e-10,1.8875473961784736e-10,4.3298069275946476e-10,5.39506550117614e-10,0.0,0.0,0.0,1.7143126740275978e-10,1.8032689438003675e-10,1.9256425147990187e-10,1.7993657722340505e-10,1.8953050958463137e-10,2.0279048667073394e-10 +1878,Cu-HDO,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,5.5359682212966933e-14,1.2686065278103486e-13,1.5339159019410176e-13,1.2103748336876815e-13,2.766690172454652e-13,3.3029158431520697e-13,5.2096465933184074e-14,1.205935320480907e-13,1.5285606589046865e-13,5.307829612555628e-14,1.2355618246971737e-13,1.5545048033539846e-13,5.249881299330616e-14,1.2161639100735977e-13,1.5146776221545217e-13,5.243187276702835e-14,1.2027241614864025e-13,1.4986293244887103e-13,0.0,0.0,0.0,4.76197970920282e-14,5.009080461639997e-14,5.3490070519684375e-14,4.998238318263449e-14,5.264736442717533e-14,5.633069144127038e-14 +1879,Benzo(ghi)perylene,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0021238520297736e-16,6.119612128601245e-16,2.4485719396413968e-12,2.004782394872088e-16,6.215467781597051e-16,5.630962248426111e-14,1.854710397151617e-16,5.761312579107495e-16,5.610489916496808e-14,4.906632951186826e-16,1.1121720332387445e-15,5.685680350536854e-14,0.0,0.0,0.0,5.998416279845552e-14,6.257288115680025e-14,6.607265880133681e-14,5.97534863997194e-14,6.234137456490059e-14,6.58418318625196e-14 +1880,Chrysene,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.744346837687923e-15,2.367106250093374e-14,9.471237425390228e-11,7.754630256384827e-15,2.4041838475860053e-14,2.178093260190836e-12,7.174141891594824e-15,2.2285136260532482e-14,2.1701744274534823e-12,1.8979179205817014e-14,4.3019546272888295e-14,2.1992585822516994e-12,0.0,0.0,0.0,2.3202268981088017e-12,2.4203602280819483e-12,2.5557339308964487e-12,2.311304183161777e-12,2.411405400716276e-12,2.546805392958469e-12 +1881,Benzo(k)fluoranthene,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693757170244714e-16,2.045987191222571e-15,8.186379659388466e-12,6.702645551548029e-16,2.0780348821734237e-15,1.8826154979155403e-13,6.200905606850777e-16,1.926195891793927e-15,1.8757709254129703e-13,1.6404484400930264e-15,3.7183561423484995e-15,1.90090955540964e-13,0.0,0.0,0.0,2.005467441130921e-13,2.0920167924882547e-13,2.2090258460429263e-13,1.997755171987514e-13,2.0842767672619995e-13,2.2013085438492262e-13 +1882,"Dibenz(a,h)anthracene","('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4017868382674478e-16,4.2846458916503503e-16,1.714367427399872e-12,1.403648216803876e-16,4.3517592186341597e-16,3.942517721179904e-14,1.2985753208469743e-16,4.0337824937004835e-16,3.928184019786744e-14,3.4353786277526867e-16,7.786871510469341e-16,3.980828595583448e-14,0.0,0.0,0.0,4.1997906288832745e-14,4.381039721893479e-14,4.6260766227849236e-14,4.1836398228210934e-14,4.364830789862477e-14,4.609915276656079e-14 +1883,Fluoranthene,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.303538131148791e-11,1.926714391887962e-10,7.709146750707154e-07,6.311908355680084e-11,1.9568938317430984e-10,1.772866609227199e-08,5.839417825640137e-11,1.8139064419541875e-10,1.7664210476891735e-08,1.5448169139440695e-10,3.5015909800994017e-10,1.7900941969786848e-08,0.0,0.0,0.0,1.8885567797694547e-08,1.9700606531000454e-08,2.080248550870394e-08,1.881294104796796e-08,1.9627718401118618e-08,2.072981136253191e-08 +1884,Fluorene,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3233040367462722e-11,7.101318705777407e-11,2.8413712098102677e-07,2.3263890623361363e-11,7.212551497556917e-11,6.534279739622328e-09,2.1522425539904134e-11,6.685540836262183e-11,6.5105232415591824e-09,5.6937537260920365e-11,1.290586380143541e-10,6.597775705419451e-09,0.0,0.0,0.0,6.960680650716469e-09,7.261080638753881e-09,7.667201744653003e-09,6.933912506030696e-09,7.2342161568121995e-09,7.64041613099314e-09 +1885,"Indeno(1,2,3-cd)pyrene","('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.200234995477268e-15,6.725150769491546e-15,2.6908593417338284e-11,2.2031566024462158e-15,6.830491386667797e-15,6.188148742465384e-13,2.0382349064725847e-15,6.331397302711722e-15,6.165650663186123e-13,5.392146703816984e-15,1.222222005065717e-14,6.248281227830547e-13,0.0,0.0,0.0,6.59196253171727e-13,6.876449863493795e-13,7.261058100498732e-13,6.566612337450807e-13,6.851008435106816e-13,7.235691362618351e-13 +1886,Naphtalene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1646537260498098e-11,3.559834253175307e-11,1.4243566551155736e-07,1.1662002246963014e-11,3.615594361778047e-11,3.275582156032121e-09,1.0789019733199854e-11,3.3514081336140054e-11,3.2636732136166754e-09,2.854233190074604e-11,6.469606270502128e-11,3.307412175689516e-09,0.0,0.0,0.0,3.489333521349488e-09,3.639921632005595e-09,3.843506893225049e-09,3.4759148645746157e-09,3.626454682134989e-09,3.830079479393008e-09 +1887,Naphtalene,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6586147877195595e-12,1.4239336656677355e-11,5.6974264780078853e-08,4.664800782150066e-12,1.4462377085505897e-11,1.3102328296527168e-09,4.315607785375691e-12,1.3405632199272594e-11,1.3054692528056465e-09,1.1416932475004732e-11,2.5878424437522147e-11,1.3229648372043744e-09,0.0,0.0,0.0,1.3957333736489323e-09,1.4559686164056082e-09,1.537402718857689e-09,1.3903659110661266e-09,1.4505818365846797e-09,1.5320317534513715e-09 +1888,Phenanthrene,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2289351694780276e-11,1.5982555250199213e-10,6.394921032087146e-07,5.235878470290213e-11,1.6232900899213153e-10,1.4706351212463253e-08,4.843936310448818e-11,1.5046786409698148e-10,1.4652883742747174e-08,1.2814624617911286e-10,2.904653202868538e-10,1.4849258160155804e-08,0.0,0.0,0.0,1.566602875996864e-08,1.6342122821488708e-08,1.725615770461319e-08,1.5605783139623102e-08,1.628166038007822e-08,1.7195872767799417e-08 +1889,Pyrene,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.748665202657502e-11,1.4514581173085052e-10,5.807556987140213e-07,4.7549707715523733e-11,1.4741932944252393e-10,1.3355594589946791e-08,4.3990279197918155e-11,1.366476131749137e-10,1.3307038028297844e-08,1.1637620287374837e-10,2.6378650997736864e-10,1.3485375745834875e-08,0.0,0.0,0.0,1.4227127173262222e-08,1.4841122994520749e-08,1.5671205124603557e-08,1.4172415023979405e-08,1.4786213938861876e-08,1.5616457269999245e-08 +1890,Anthracene,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1817859676208478e-12,9.725320428267348e-12,3.8912836637763644e-08,3.1860109381697572e-12,9.877654746302024e-12,8.948755416943601e-10,2.94751571421222e-12,9.155908861830089e-12,8.91622067720152e-10,7.797647411802861e-12,1.7674697627595776e-11,9.035713718509637e-10,0.0,0.0,0.0,9.53271533528628e-10,9.944115845721913e-10,1.0500302386730594e-09,9.496056118121022e-10,9.90732469380863e-10,1.046361924564306e-09 +1891,Benz(a)anthracene,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2006739706494227e-14,3.669932300058804e-14,1.4684089549252338e-10,1.2022682991857493e-14,3.7274169493597377e-14,3.3768888945308166e-12,1.1122700999216245e-14,3.4550600071499816e-14,3.3646116340401215e-12,2.942508507739392e-14,6.66969733181837e-14,3.409703348498649e-12,0.0,0.0,0.0,3.597251131632688e-12,3.7524966099320926e-12,3.962378327120908e-12,3.5834174645569646e-12,3.738613156158887e-12,3.948535632151565e-12 +1892,Benzo(a)pyrene,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4588188368015565e-15,4.458967629836168e-15,1.7841168343259994e-11,1.4607559459231878e-15,4.528811476939361e-15,4.1029199012803207e-13,1.3514081366310178e-15,4.197897800669421e-15,4.0880030301679606e-13,3.57514774489881e-15,8.103682049478813e-15,4.142789461820972e-13,0.0,0.0,0.0,4.3706600124653366e-13,4.55928326374536e-13,4.814289543567819e-13,4.3538521074052064e-13,4.5424148678495233e-13,4.797470669617638e-13 +1893,Benzo(b)fluoranthene,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.422798544881873e-15,4.348869438315778e-15,1.7400644766442346e-11,1.4246878240507969e-15,4.416988742455319e-15,4.001613029693597e-13,1.3180399661932941e-15,4.0942457909647696e-15,3.9870644771403427e-13,3.4868723113763727e-15,7.903590726996756e-15,4.040498154677148e-13,0.0,0.0,0.0,4.262742260456069e-13,4.4467081379764037e-13,4.695417953560515e-13,4.2463493661952324e-13,4.430256246481515e-13,4.679014361241626e-13 +1894,"Copper, Cu 0.38%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.00021052992424412922,0.0004869747433060947,0.0010012323325406644,0.0001884280734986851,0.00044575209975073344,0.0009073158893379636,0.0002250526206795787,0.0005298838795348948,0.0010749348645944087,0.00022201242319674328,0.000565416225708012,0.0011894844436337111,0.00022855767873661975,0.0005727464998243468,0.0011846785301584451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009200417883247559,0.0009664298740380979,0.001029616185541887 +1895,"Gold, Au 9.7E-4%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.482976148378474e-11,9.800930929847268e-10,2.820332220738103e-09,5.129604382884034e-09,1.1865238571055803e-08,2.4395229227432957e-08,4.591088523867321e-09,1.0860841011504541e-08,2.2106937070773934e-08,5.483453070770412e-09,1.2910728948553211e-08,2.6191007514359048e-08,5.409378038141746e-09,1.3776481819427839e-08,2.8982031401383666e-08,5.568854526142545e-09,1.395508544541414e-08,2.886493433810819e-08,0.0,0.0,0.0,2.8911083081209514e-09,3.009629673573544e-09,3.1680406716276045e-09,0.0,0.0,0.0,2.2417006069500996e-08,2.354726125173396e-08,2.5086808636067798e-08 +1896,"Lead, Pb 0.014%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,2.5444836058334213e-05,5.885620557337093e-05,0.0001210098404343701,2.277358640158433e-05,5.387399954662218e-05,0.00010965901409291642,2.720006215989966e-05,6.404224229604817e-05,0.0001299175946060089,2.683262115737735e-05,6.833671361379373e-05,0.00014376215976113636,2.762368662889234e-05,6.922265713578125e-05,0.0001431813127317972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011119707808493458,0.00011680358384827425,0.00012444033828985738 +1897,"Silver, Ag 9.7E-4%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,3.806850463887425e-10,1.0170943100654446e-08,2.922899008860406e-08,2.594230525146638e-07,6.000689679608872e-07,1.2337569054933192e-06,2.3218831147516325e-07,5.492728625213139e-07,1.1180294964366774e-06,2.773184726681561e-07,6.529432437378707e-07,1.3245759766820081e-06,2.7357222470170973e-07,6.967275637769282e-07,1.465728362308454e-06,2.816375396613523e-07,7.057602087330776e-07,1.4598063313325421e-06,0.0,0.0,0.0,2.9936969739533804e-08,3.116457686059144e-08,3.2805528593992883e-08,0.0,0.0,0.0,1.1337107860519979e-06,1.1908719647971718e-06,1.26873256177086e-06 +1898,"Zinc, Zn 0.63%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,3.2984202168774005e-05,7.629544081029888e-05,0.0001568653471099061,2.952145362393901e-05,6.983699245064119e-05,0.00014215123823205371,3.5259505579306694e-05,8.301811167681963e-05,0.0001684124881991147,3.47831909299332e-05,8.858504510057304e-05,0.0001863592310709666,3.5808650990054865e-05,8.973349580449105e-05,0.00018560627768151973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014414503786999445,0.00015141276468114796,0.00016131230770294726 +1899,"Silver, Ag 5.4E-3%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,4.500125458224223e-10,2.2552949190082998e-09,5.9157077015482705e-09,5.332710360663883e-10,3.7191401158487397e-09,8.354787076738883e-09,5.622028639413909e-10,3.773210153473265e-09,8.460844662749824e-09,5.369507567319324e-10,4.29685940297071e-09,1.022179793699304e-08,5.919763482526207e-10,3.780569560758678e-09,7.951589211284e-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.009706254791217e-09,6.315893697321846e-09,6.7327686582423325e-09 +1900,"Gold, Au 1.8E-4%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,1.9739362815315286e-11,9.892631911650569e-11,2.5948676700920533e-10,2.339141552169187e-11,1.6313646515197354e-10,3.664746117798682e-10,2.4660483716577675e-11,1.6550820620138094e-10,3.7112675037997217e-10,2.3552824507718042e-11,1.8847757297242463e-10,4.483692589335786e-10,2.596646874541851e-11,1.6583101944327212e-10,3.4878875352091894e-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.636099397612057e-10,2.770405551453303e-10,2.953263712360697e-10 +1901,"Copper, Cu 0.2%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,1.6538253778108943e-08,8.288355528393727e-08,2.1740610601521988e-07,1.9598057449368673e-08,1.3668081841888165e-07,3.0704385952860377e-07,2.0661322167623928e-08,1.3866793568399402e-07,3.109415631883714e-07,1.9733290746289233e-08,1.579123873508548e-07,3.7565774527362165e-07,2.1755517146072203e-08,1.3893839869140728e-07,2.9222609294736064e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2086062692616353e-07,2.3211321526348878e-07,2.4743364213865126e-07 +1902,"Lead, Pb 3.6E-1%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,2.976787985609747e-08,1.4918550347098078e-07,3.913181482550423e-07,3.527534570803491e-08,2.460173990868291e-07,5.526608092616691e-07,3.718915876723676e-08,2.4959408862385724e-07,5.596764363633491e-07,3.551875705802957e-08,2.8423296423309987e-07,6.761617392386793e-07,3.915864505936199e-08,2.500809060568188e-07,5.25989696072394e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9753607511206267e-07,4.177900690662599e-07,4.4536593197025483e-07 +1903,"Zinc, Zn 3.1%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,2.555023456563497e-07,1.2804823939378434e-06,3.3587445683320547e-06,3.0277378229951335e-07,2.111605625659265e-06,4.743573740860693e-06,3.1920033559589636e-07,2.1423048950200034e-06,4.803789930242155e-06,3.048630178679633e-07,2.439615753744808e-06,5.803601408143752e-06,3.3610474289798224e-07,2.1464833251891984e-06,4.514651398466421e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.412113985332818e-06,3.5859571667648884e-06,3.822645088603507e-06 +1904,"Carbon dioxide, to soil or biomass stock","('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001132798943091676,0.00021318565586293125,0.0003487327368134623,0.0,0.0,0.0,0.0001976209978247455,0.00020800904377441738,0.00022203134629548337,0.0,0.0,0.0 +1905,"Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.606522857875839e-18,2.8241853149874673e-17,1.1539309811110633e-16,0.0,0.0,0.0,3.625076438978662e-17,1.1209348508425306e-16,2.0665663009640218e-16,0.0,0.0,0.0 +1906,"Energy, geothermal, converted","('natural resource', 'in ground')",natural resource,megajoule,biosphere3,0.0,0.0,0.0,0.06070234298854906,0.16455114463928733,0.337729647949239,0.0,0.0,0.0,0.014343637398986461,0.0406284057083437,0.0840449306882325,0.015076588080860105,0.046629425430411625,0.10205623557047759,0.01463362862376015,0.04446564725505867,0.09774593792378745,0.01687391347597408,0.04717211969648226,0.10482037241874262,0.0,0.0,0.0,0.08567122916687331,0.08926506811203636,0.09410750945627468,0.08226482098601023,0.08587317338302218,0.09077427524833667 +1907,"Energy, kinetic (in wind), converted","('natural resource', 'in air')",natural resource,megajoule,biosphere3,0.1480916095710041,0.3774805009193051,0.40587994495636087,0.42855117740457593,0.9975322597375863,0.645677313039321,1.1901437443067278,2.6931336158925423,1.7909288712107745,1.1861614020507425,2.670622370975768,1.7405721131763228,0.19663228053677057,0.5901894386648345,2.2633934159463704,1.919178809489785,4.295748062421645,2.3425705832512524,2.3210474076024514,5.171628772103686,2.533863112177652,0.32869298394534346,0.3429353638288133,0.3623795446101957,1.0691651683633978,1.1100698206159116,1.1651920319506923,0.929140634438615,0.9660891869540583,1.0162305786639898 +1908,"Energy, potential (in hydropower reservoir), converted","('natural resource', 'in water')",natural resource,megajoule,biosphere3,3.9058896421140172,5.185954359460558,12.937345940721737,3.6892885271094804,5.198052384019197,14.529801051011034,3.3059810875111277,4.790012379321118,13.596937513898245,3.331042772795448,4.861758816425288,13.691730482589879,3.182482656117515,4.6687209926320214,14.720602248713018,3.411385909721784,5.115285409485209,13.186741952133573,3.900462011330025,5.454329976354959,13.629725795531083,2.9592849946751394,3.0952127441335002,3.280512233929259,3.229459045109429,3.3725411008574344,3.566443953171487,3.386719433955842,3.5418313761552613,3.7528379987015854 +1909,"Energy, solar, converted","('natural resource', 'in air')",natural resource,megajoule,biosphere3,0.0007216541036121528,0.0023620241526083213,0.005506403093108188,5.063968468078158e-05,0.0003842529275263722,0.0010848857222922868,0.0001930430173158828,0.001052853001761601,0.0038600406344412304,0.0002231717056894577,0.0011480326179302376,0.003834269756500095,0.00027419834659629655,0.001459877573926595,0.0053960258453186055,0.0003059065297391154,0.0015408552598923403,0.005815556894881173,0.00048393270354168646,0.002210524125703316,0.007703475621609886,0.004799941171632878,0.005007844810123346,0.0052916828751365785,0.007248890210475208,0.007658566170559765,0.008234734433738547,0.005709518148451179,0.006066071506142286,0.0065705806392974755 +1910,"Silver, Ag 1.8E-6%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.3603847520433906e-11,8.725614691085448e-11,1.694727698797199e-10,2.728114758366942e-11,1.0899589916871422e-10,2.1081825642932497e-10,2.6915958132064715e-11,1.1992945787636538e-10,2.467745170046857e-10,2.6644265220936547e-11,1.0126754201503015e-10,1.766389576949915e-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0818493784545684e-10,1.1524310146262051e-10,1.246931928070365e-10 +1911,"Gold, Au 1.0E-7%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.3331802562478375e-12,4.928356370592738e-12,9.572072967331146e-12,1.5408796084983774e-12,6.15624976639752e-12,1.1907327264547797e-11,1.5202531675650098e-12,6.773793350631885e-12,1.3938190099339872e-11,1.5049075496712122e-12,5.71974071160821e-12,9.976829865529364e-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110445470138205e-12,6.509101001683708e-12,7.042856152797057e-12 +1912,"Nickel, Ni 2.5E+0%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,3.1659458720651613e-07,1.1703525786872933e-06,2.273110838239687e-06,3.659176178924166e-07,1.4619443577854638e-06,2.8276711587837365e-06,3.610193908730765e-07,1.608594411457749e-06,3.3099466634232774e-06,3.573752178215594e-07,1.3582851538889471e-06,2.3692297557688905e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.45106706478725e-06,1.5457370712291618e-06,1.6724896172139324e-06 +1913,"Copper, Cu 6.8E-1%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,8.788321854404148e-08,3.2487716342182173e-07,6.309908780642402e-07,1.0157475611349688e-07,4.058198740166277e-07,7.849307993885068e-07,1.0021506149768371e-07,4.465283359965646e-07,9.188052409781107e-07,9.920347864176894e-08,3.7704520496586984e-07,6.576724455224984e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0280045562993463e-07,4.2907982110838354e-07,4.6426495108195575e-07 +1914,"Cobalt, Co 5.0E-2%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,6.4626864699271936e-09,2.3890559349302918e-08,4.640130707398138e-08,7.46952390793514e-09,2.984286024664515e-08,5.772161899709517e-08,7.369535762957857e-09,3.2836446858607924e-08,6.756637157517713e-08,7.295146784668982e-09,2.7726851440504447e-08,4.83633950341986e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9620820650479696e-08,3.155333180027028e-08,3.414074800088289e-08 +1915,"Platinum, Pt 4.7E-7%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,6.119516023815724e-12,2.2621964013923183e-11,4.3937384783627105e-11,7.072890114285361e-12,2.8258196080777173e-11,5.465658500018679e-11,6.978211367571516e-12,3.109282241238533e-11,6.397857848267842e-11,6.90777246468793e-12,2.6254547929824842e-11,4.5795285328336806e-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8047946848827095e-11,2.9877841119943954e-11,3.232786480183006e-11 +1916,"Palladium, Pd 1.6E-6%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.115604013318545e-11,7.820735769097197e-11,1.5189780894645144e-10,2.445199040791864e-11,9.769261622159075e-11,1.8895561369680977e-10,2.4124672470116416e-11,1.0749232394366665e-10,2.2118307538968781e-10,2.3881155131398717e-11,9.076571864839136e-11,1.5832083624695384e-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.696575462474883e-11,1.0329196024110686e-10,1.1176204172133306e-10 +1917,"Rhodium, Rh 1.6E-7%, in mixed ore, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.0762643652231973e-12,7.675309219010058e-12,1.4907326980160443e-11,2.399730574489349e-12,9.587602241690888e-12,1.8544198482203776e-11,2.367607428283115e-12,1.0549350461343827e-11,2.1707017699475334e-11,2.3437085148047553e-12,8.907793047618035e-12,1.5537686093539278e-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.516267680848532e-12,1.013712466569152e-11,1.096838270061684e-11 +1918,Glyphosate,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,5.25422985361271e-14,1.2532878195552623e-13,4.925308734682095e-12,1.0366407432240688e-13,2.396234978750183e-13,5.633789271921513e-12,2.2970930701044517e-14,5.76285949122039e-14,9.225670625964715e-12,1.9254219788815048e-14,4.8428937263150976e-14,9.201494034565638e-12,1.3561577682539903e-14,3.411434227541486e-14,5.9093763805690306e-12,0.0,0.0,0.0,6.3043971321255055e-12,6.572442912562349e-12,6.934374524930708e-12,9.819276621438104e-12,1.0236476120580953e-11,1.0799764490486642e-11 +1919,Glyphosate,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,8.054610597530381e-12,1.9214199084287447e-11,7.549831470818251e-10,1.5890643903258933e-11,3.673244399599024e-11,8.635793059155622e-10,3.5211640027655295e-12,8.834515991927768e-12,1.4141619672788538e-09,2.951434360443479e-12,7.424084074926101e-12,1.4104553248586866e-09,2.0788086818993024e-12,5.229432753665481e-12,9.05820879984719e-10,0.0,0.0,0.0,9.663716780186242e-10,1.0074591693861722e-09,1.0629379833743325e-09,1.5051523018129322e-09,1.5691029193902002e-09,1.6554468362514537e-09 +1920,"2,4-DB","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.0738772866924207e-19,1.311170849795225e-18,3.6136584602240844e-18,7.600043437056408e-20,1.2685202976004259e-18,3.542680041332516e-18,7.430833711748399e-20,1.4767907070631772e-18,4.1051068849407546e-18,4.196531830489844e-20,7.699908573231399e-19,2.1283880080636405e-18,1.837602163430969e-20,9.004197640787517e-20,2.274099879043292e-19,0.0,0.0,0.0,2.1185967719844238e-19,2.213250619130814e-19,2.3403250381327137e-19,2.1477671909763228e-18,2.240687096904903e-18,2.3653097483099093e-18 +1921,"2,4-DB","('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,8.733537006215467e-18,2.908105865253842e-17,6.917845894416167e-17,1.3541937704367747e-18,1.989409990134566e-17,5.5279089994313674e-17,1.3280474033621474e-18,2.3127427499943905e-17,6.400712742998859e-17,8.236291624550148e-19,1.2148880556444097e-17,3.3322826220815254e-17,3.1420014794183512e-18,4.642724334669167e-18,8.189590402751872e-18,0.0,0.0,0.0,4.518071067773168e-18,4.745781179196018e-18,5.055742621726441e-18,3.3411415700598606e-17,3.4858952327682597e-17,3.680070555069777e-17 +1922,"2,4-DB","('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.662233433279067e-19,8.154835956436022e-19,1.9030618124206384e-18,3.6861422494200487e-20,5.302042247651233e-19,1.4719299016510944e-18,3.6166441016069297e-20,6.16220237638938e-19,1.7041047990166813e-18,2.273638418551367e-20,3.2413116991202137e-19,8.878293362818722e-19,9.728537927269447e-20,1.3907026377172467e-19,2.402092703965519e-19,0.0,0.0,0.0,1.2608758835022136e-19,1.3253263523208872e-19,1.4131887454849943e-19,8.89168193014997e-19,9.277008329748513e-19,9.793908796763726e-19 +1923,"2,4-DB","('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.0922058286513254e-21,3.3555440804715967e-21,7.836309366050826e-21,1.5184647788314897e-22,2.185892408743489e-21,6.0685927779129e-21,1.4898095158935318e-22,2.5405387860949914e-21,7.025858889535693e-21,9.361022925760655e-23,1.336251860476945e-21,3.660329747180444e-21,3.9891092954184958e-22,5.708924785849383e-22,9.868028090944803e-22,0.0,0.0,0.0,5.189167986356731e-22,5.454277435652475e-22,5.815669209564867e-22,3.6660133203198425e-21,3.824880650241039e-21,4.0379947695878395e-21 +1924,Atrazine,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,7.409981824602352e-18,3.714763962573039e-17,7.072681057860467e-17,4.728339378515812e-18,1.8443554616325553e-17,2.809524415323649e-17,6.82493832432156e-19,1.0930325865438972e-17,3.01513620990358e-17,5.403022614859559e-19,7.784060241223702e-18,2.1333981413634925e-17,2.1294263044923642e-19,2.501471337212392e-18,5.953346636747014e-18,0.0,0.0,0.0,5.152458937744343e-18,5.394729854263481e-18,5.72157287678898e-18,2.1375624963904986e-17,2.2304487602853296e-17,2.3550828789986747e-17 +1925,Atrazine,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.9159000568078643e-15,9.604769084696006e-15,1.828688679930893e-14,1.222543592795605e-15,4.768703643480183e-15,7.264212027280632e-15,1.7646332728560511e-16,2.826108618615071e-15,7.795835677476553e-15,1.3969874464504297e-16,2.0126205870893634e-15,5.516042898646351e-15,5.5057735478217664e-17,6.467720828954538e-16,1.5392774496520038e-15,0.0,0.0,0.0,1.3322026037451851e-15,1.3948433640200005e-15,1.4793508059844906e-15,5.526810117348926e-15,5.766973735393989e-15,6.089223545281531e-15 +1926,Carbaryl,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.7742149109902893e-21,1.3906542685428245e-20,2.647705226222901e-20,1.8088669035073988e-21,6.95184659392874e-21,1.0587977147630822e-20,2.9433282736149884e-22,4.13977576742883e-21,1.1358260209022746e-20,2.252838687414136e-22,2.941084518055867e-21,8.026824407835196e-21,9.65953640012476e-23,9.55583488485877e-22,2.2561211788370574e-21,0.0,0.0,0.0,1.936039887320774e-21,2.027209224844573e-21,2.150226057639707e-21,8.014126335444839e-21,8.362644606727749e-21,8.83032889300919e-21 +1927,Carbaryl,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.227759131183985e-19,1.1167277036334902e-18,2.1261688031709885e-18,1.452564162834752e-19,5.582496653323383e-19,8.502395178650081e-19,2.363581857515642e-20,3.324338717175139e-19,9.1209507031025e-19,1.8090942223504858e-20,2.3617607623919536e-19,6.445728957208719e-19,7.756922574241488e-21,7.673567385078877e-20,1.811719119160345e-19,0.0,0.0,0.0,1.5546853251083603e-19,1.6278964434790905e-19,1.7266818494080552e-19,6.435530594665898e-19,6.715398919573543e-19,7.090960344636626e-19 +1928,Dicamba,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,8.121425012394117e-19,4.071423916139352e-18,7.751739624284765e-18,5.182314092509069e-19,2.021434675250889e-18,3.079270843645261e-18,7.480210572777423e-20,1.1979762303250665e-18,3.304623809738898e-18,5.921774570504053e-20,8.531418939336727e-19,2.3382287310437512e-18,2.3338757115910195e-20,2.7416413541900674e-19,6.5249364199827755e-19,0.0,0.0,0.0,5.647154322642441e-19,5.912686035920642e-19,6.270909750782629e-19,2.342792910805663e-18,2.4445973169717077e-18,2.5811977346411576e-18 +1929,Dicamba,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.030333199756403e-16,1.017844446239098e-15,1.9379129769370198e-15,1.2955638007394222e-16,5.053529762177527e-16,7.698091226124217e-16,1.8700317182879422e-17,2.994907230331073e-16,8.261467558960141e-16,1.4804269933099578e-17,2.1328308415868758e-16,5.845506352849439e-16,5.834623033995083e-18,6.854025641502597e-17,1.631215610136081e-16,0.0,0.0,0.0,1.411772581828191e-16,1.4781547577070252e-16,1.5677096712970916e-16,5.856916683117928e-16,6.111424848001576e-16,6.452922067325494e-16 +1930,Dimethenamid,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,5.557163240208467e-17,2.7859109863620174e-16,5.304202386075972e-16,3.5460481538986485e-17,1.3831861153487525e-16,2.1070207491162965e-16,5.118406489683819e-18,8.197268540057407e-17,2.261220893676844e-16,4.052031341803864e-18,5.837705769430382e-17,1.5999555831562552e-16,1.5969768751168044e-18,1.8759944361693118e-17,4.4647504253690814e-17,0.0,0.0,0.0,3.864119588196696e-17,4.0458122136468454e-17,4.290930231574929e-17,1.6030786681847442e-16,1.672739315981801e-16,1.7662094705887285e-16 +1931,Dimethenamid,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.4516760593155224e-19,1.2290715745600154e-18,2.3400763629060187e-18,1.5644244168713557e-19,6.1022582374010825e-19,9.295628935429643e-19,2.258108038772302e-20,3.616422090148032e-19,9.975919608653844e-19,1.7876511757112123e-20,2.5754445193633214e-19,7.058589462170434e-19,7.045447130007538e-21,8.276400163687879e-20,1.9697319228191126e-19,0.0,0.0,0.0,1.7047492044401683e-19,1.7849072717831017e-19,1.893046974955657e-19,7.072367711864958e-19,7.379692439993277e-19,7.7920585427891615e-19 +1932,Dimethenamid,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.9613408242286797e-17,9.832572486245046e-17,1.8720610705924776e-16,1.2515394937110474e-17,4.8818065495867606e-17,7.436503279796401e-17,1.806486512596536e-18,2.8931378271381616e-17,7.980736116816488e-17,1.430120874723115e-18,2.060355499206111e-17,5.646871249203801e-17,5.636357764032922e-19,6.621120229129515e-18,1.5757855655239113e-17,0.0,0.0,0.0,1.3637993907050149e-17,1.4279258457658926e-17,1.514437609892814e-17,5.657893845951469e-17,5.90375361447307e-17,6.233646477960478e-17 +1933,"Herbicides, unspecified","('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.418516585569567e-11,5.769903200469339e-11,2.2667854888812996e-09,4.771122379387347e-11,1.1029031460813148e-10,2.5928230170045573e-09,1.0572145927700849e-11,2.6527881776667102e-11,4.2458961160717094e-09,8.861549788606657e-12,2.2292308798272973e-11,4.234764788702387e-09,6.241482974736674e-12,1.5701582838621923e-11,2.719643267517816e-09,0.0,0.0,0.0,2.9014410935557206e-09,3.0248024718881925e-09,3.191372460231625e-09,4.519083527729861e-09,4.711089473181489e-09,4.9703292721893175e-09 +1934,"Insecticides, unspecified","('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,3.0112843415100693e-18,1.508915987011674e-17,2.872791748367413e-17,2.161844876827265e-18,7.786200985738486e-18,1.1849361858768213e-17,5.188404436506861e-19,4.737927261752322e-18,1.2688010101500451e-17,3.626688953317516e-19,3.330156263151334e-18,8.916235308505205e-18,1.9150591013878883e-19,1.1351379798845813e-18,2.5888966738959756e-18,0.0,0.0,0.0,2.1375197816108305e-18,2.238872292217524e-18,2.3757421162445577e-18,8.757157645944534e-18,9.139374097606294e-18,9.652509247345564e-18 +1935,Metolachlor,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,4.799120466174231e-14,1.1465939705861112e-13,4.4927402596882954e-12,9.459059961287036e-14,2.1872219254312744e-13,5.138494454925872e-12,2.095686808957741e-14,5.266455713116187e-14,8.414443134040693e-12,1.7565723165647545e-14,4.4243672261925793e-14,8.392307817961452e-12,1.2370681487472214e-14,3.113740986051047e-14,5.389626772195431e-12,0.0,0.0,0.0,5.749892697949278e-12,5.994362682585806e-12,6.324460827847267e-12,8.955748828662344e-12,9.336259126192176e-12,9.850010927191805e-12 +1936,Metolachlor,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,6.441180779197668e-16,1.5389605013635967e-15,6.029755947666771e-14,1.2695256007394732e-15,2.9355413048702065e-15,6.896413935704672e-14,2.8126498941518354e-16,7.068345516497398e-16,1.1293086780644072e-13,2.357520677601818e-16,5.938142111283569e-16,1.12633779560709e-13,1.6602838074877354e-16,4.179044506323471e-16,7.233456328921257e-14,0.0,0.0,0.0,7.71697142221602e-14,8.045076314659575e-14,8.488103366040157e-14,1.2019575956322482e-13,1.253026161297976e-13,1.321977166557087e-13 +1937,Pendimethalin,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,4.525048690414909e-20,2.2684925774503386e-19,4.3190698690480145e-19,2.887451813439597e-20,1.1262914342036686e-19,1.7156907923894027e-19,4.167781380466234e-21,6.674816555925067e-20,1.8412517053239515e-19,3.299460672085107e-21,4.7534877853131777e-20,1.302801072202497e-19,1.300375400053484e-21,1.5275719235466732e-20,3.63552648001585e-20,0.0,0.0,0.0,3.146448932953838e-20,3.294396363718475e-20,3.4939893900334173e-20,1.3053441188646245e-19,1.362066922706131e-19,1.4381771716340976e-19 +1938,Pendimethalin,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.6991987828949283e-17,1.3531593842504784e-16,2.57633187296584e-16,1.722369652440322e-17,6.718345568497406e-17,1.0234120135635886e-16,2.4860878679990445e-18,3.9815379691482976e-17,1.0983093697163209e-16,1.9681333253998583e-18,2.8354625874918007e-17,7.771227905058293e-17,7.756759652964788e-19,9.111990352816896e-18,2.168597194288893e-17,0.0,0.0,0.0,1.8768616540386707e-17,1.965112525779946e-17,2.084170075374985e-17,7.786397204792394e-17,8.124749578921276e-17,8.57874835328833e-17 +1939,Pyraclostrobin,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,7.617460704730886e-20,1.8270338023293772e-19,7.135031542802459e-18,1.501901681993722e-19,3.4812120003094354e-19,8.160708406973121e-18,3.3328809871135897e-20,8.473832106952804e-20,1.3362153639467604e-17,2.7918195615998585e-20,7.080711259401953e-20,1.3325441300408201e-17,1.964236247287786e-20,4.9461899689452937e-20,8.556816509708364e-18,0.0,0.0,0.0,9.1287932922551e-18,9.51692503857382e-18,1.0041003915525157e-17,1.4219991968971306e-17,1.4824169702029996e-17,1.5639908897412306e-17 +1940,Pyraclostrobin,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,4.79400892988784e-18,1.1440237702157427e-17,4.492249902250623e-16,9.455957425396649e-18,2.1859604695488027e-17,5.138300823330124e-16,2.0953729106495156e-18,5.259004632737774e-18,8.414234836574156e-16,1.7562928740454273e-18,4.4190540756354774e-18,8.392160598580434e-16,1.2369916251563116e-18,3.1120920292456832e-18,5.389586644068377e-16,0.0,0.0,0.0,5.749857233925489e-16,5.994325557647086e-16,6.324421463170083e-16,8.955600111568755e-16,9.336103958510536e-16,9.84984710602091e-16 +1941,Tefluthrin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.4238100899350654e-17,7.137829075536585e-17,1.3589985453402457e-16,9.085389520188851e-18,3.5438843474999934e-17,5.398433162162847e-17,1.3113953862439591e-18,2.1002356802597822e-17,5.79351130817207e-17,1.0381777398739679e-18,1.4956883864158065e-17,4.099273035585567e-17,4.0916411205768346e-19,4.806516725123579e-18,1.1439211874533009e-17,0.0,0.0,0.0,9.900325667898627e-18,1.036584339133672e-17,1.0993864376431884e-17,4.1072747451103436e-17,4.285753459273051e-17,4.5252349101961945e-17 +1942,Tefluthrin,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.1619232509458178e-24,5.820987734336525e-24,1.1077814316507604e-23,7.413050000451471e-25,2.887279961099434e-24,4.3911391899527465e-24,1.06725363548958e-25,1.7079212190255273e-24,4.7111660619453815e-24,8.456493609680374e-26,1.2175405594900529e-24,3.33686119750752e-24,3.338174836676786e-26,3.920762681144675e-25,9.330148579005889e-25,0.0,0.0,0.0,8.073939475402924e-25,8.453602148723244e-25,8.9658006992387e-25,3.343303319462075e-24,3.4885860408120434e-24,3.683525604043946e-24 +1943,Tefluthrin,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,6.973676669327783e-23,3.496036008837517e-22,6.656236641147583e-22,4.4499312909618805e-23,1.735758459257367e-22,2.6440975567908604e-22,6.4230815106546674e-24,1.0286741415236131e-22,2.837603099489704e-22,5.084888791744804e-24,7.325729246830303e-23,2.0077821442677695e-22,2.004044204738711e-24,2.3541829916436203e-23,5.602809534729093e-23,0.0,0.0,0.0,4.849078675114455e-23,5.077084515868716e-23,5.384682799635549e-23,2.0117012992231999e-22,2.099118353968188e-22,2.216413927305563e-22 +1944,MCPA,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,3.5648730423629606e-20,4.1220314181544907e-19,1.1327927773301977e-18,1.4955567445649335e-18,2.1314032356992676e-18,3.588495675780649e-18,1.4960062140612122e-18,2.2035294082590756e-18,3.754199683414389e-18,8.861064464821718e-19,1.2284102293593326e-18,2.0829661410481435e-18,6.435761724631408e-19,7.461267460506121e-19,1.0927621641428687e-18,0.0,0.0,0.0,3.214337009448532e-19,3.4158266380165246e-19,3.6958598213136015e-19,1.0123512828829712e-18,1.0665071559958696e-18,1.1408690925488366e-18 +1945,MCPA,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.6493041281831794e-19,3.345067281554753e-19,5.116579258408721e-19,1.3795521408854607e-20,2.345841829421987e-20,4.410062413688959e-20,1.3794054064131236e-20,2.4793455290008772e-20,4.744252659078858e-20,1.0733773545572477e-20,1.6673691143939703e-20,3.034585821181693e-20,1.0989039761714838e-19,1.252233667428814e-19,1.8037317658762938e-19,0.0,0.0,0.0,4.846405418300135e-20,5.1622859076679286e-20,5.602719351311905e-20,1.7553634716212938e-20,1.843730127968413e-20,1.9643197769061325e-20 +1946,MCPA,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.062735992623736e-19,2.929528683787698e-19,6.652823391978484e-19,7.06933447826261e-19,9.976321664643346e-19,1.6676881941671447e-18,7.071604806097498e-19,1.0299867767191815e-18,1.741306968443528e-18,4.1975889935577246e-19,5.756797482277915e-19,9.689534465855663e-19,3.399472480387476e-19,3.927868794396376e-19,5.734202874604329e-19,0.0,0.0,0.0,1.6586705169184714e-19,1.7633814407786914e-19,1.908996760281185e-19,4.61177151051668e-19,4.860402950376914e-19,5.202060850012752e-19 +1947,Bromoxynil,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.0611325899560629e-19,2.2120950857675794e-19,4.576819159659706e-19,1.5493947796452155e-18,1.970585486350819e-18,3.029671485403151e-18,1.550211552482479e-18,2.0034164595701064e-18,3.0879112536817208e-18,9.1954844769103e-19,1.1288401044852116e-18,1.745456020917368e-18,7.068599080014247e-19,8.062230117163617e-19,1.162332468736514e-18,0.0,0.0,0.0,3.139083686772501e-19,3.3432217533135863e-19,3.6278001337685953e-19,6.200679199998173e-19,6.577437297341637e-19,7.100849149382813e-19 +1948,Bromoxynil,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,6.33661788575304e-20,6.415513421393818e-19,1.7494595536748605e-18,4.241855338823859e-19,9.791256723883162e-19,2.1027493092042257e-18,4.237593171893467e-19,1.065643429191003e-18,2.3286192186716448e-18,2.5047232319976643e-19,5.770243740384342e-19,1.2440432691278645e-18,1.8318614982172308e-19,2.318440225645881e-19,3.666121055055743e-19,0.0,0.0,0.0,1.4889623390400172e-19,1.571492595580414e-19,1.684926386017864e-19,9.640413839541079e-19,1.0085186789914949e-18,1.0686331834618306e-18 +1949,Bromoxynil,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.4924109844079143e-22,2.4919852439517133e-21,6.962796299552507e-21,1.8182711728140018e-22,2.1061826420368835e-21,5.7859142404310286e-21,1.791515951454287e-22,2.440683211431197e-21,6.688038688322486e-21,1.0237306284725151e-22,1.2752282712699362e-21,3.4722797332094285e-21,3.511580366014703e-23,1.3776296078637866e-22,3.3665355251288693e-22,0.0,0.0,0.0,3.0370701705986276e-22,3.1735839771332056e-22,3.356991906421274e-22,3.460171638351111e-21,3.610286396813999e-21,3.811687226317714e-21 +1950,Propiconazole,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.4580079665431693e-20,1.8282712107026236e-20,2.779213038905266e-20,3.185112246906115e-19,3.901796576295844e-19,5.796114524797054e-19,3.187011779977648e-19,3.9429823889599783e-19,5.84461243869669e-19,1.8901713192216473e-19,2.228954318381824e-19,3.3271612054756365e-19,1.4327156995721356e-19,1.6264370846877757e-19,2.3339929549260324e-19,0.0,0.0,0.0,6.136217256277009e-20,6.54005291944442e-20,7.103561353089987e-20,1.0048762646113766e-19,1.0707153528163369e-19,1.1627507782293124e-19 +1951,MCPB,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.536559774729022e-20,1.7875337413478264e-19,4.914013269299437e-19,7.045698138075314e-19,9.92959870460979e-19,1.6582407469122188e-18,7.04798062603364e-19,1.0249705565424827e-18,1.7309750485217559e-18,4.17479470352026e-19,5.719040986814836e-19,9.618396052475052e-19,3.032372789333701e-19,3.509750256290922e-19,5.132226392146557e-19,0.0,0.0,0.0,1.4973685086602857e-19,1.5915533167325563e-19,1.7224905943568463e-19,4.56756752846008e-19,4.814024341881926e-19,5.1527219003213745e-19 +1952,MCPB,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.5913122277681048e-22,1.8985392274489076e-21,5.226196491586424e-21,6.91139228965369e-21,9.850265367906532e-21,1.6584748813365385e-20,6.913468758842116e-21,1.0183659572378204e-20,1.7350727132206678e-20,4.094893221297013e-21,5.6770395025667855e-21,9.626658506626754e-21,2.9719149891993384e-21,3.4455486675221636e-21,5.046384144117407e-21,0.0,0.0,0.0,1.4845398413812155e-21,1.5775936004124181e-21,1.7069205695108498e-21,4.6791393065283614e-21,4.929441716633038e-21,5.27313311214333e-21 +1953,MCPB,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,3.442496836609617e-20,4.106658335950873e-19,1.130452051000016e-18,1.495524926084956e-18,2.1313403338751257e-18,3.588368483154155e-18,1.4959744123693741e-18,2.2034618840417852e-18,3.754060604950311e-18,8.860757618193498e-19,1.2283594025627395e-18,2.0828703757416124e-18,6.4308199972968e-19,7.455638935030336e-19,1.0919518093920142e-18,0.0,0.0,0.0,3.212165618639916e-19,3.4135135487162666e-19,3.693349141943429e-19,1.0122917754473745e-18,1.066444721088733e-18,1.140802672446577e-18 +1954,Methomyl,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,3.624714810624871e-21,4.504463085603008e-21,6.791244276243022e-21,4.72993342653785e-19,5.790691447343123e-19,8.597089000368123e-19,4.732759472302272e-19,5.851230819128232e-19,8.667424588165374e-19,2.8051885173688677e-19,3.305814325796751e-19,4.931656471078419e-19,2.056830453851309e-19,2.3346656580928734e-19,3.3499356947677556e-19,0.0,0.0,0.0,8.801163399238127e-20,9.380561651068613e-20,1.0189068299735063e-19,1.484958890297699e-19,1.5823960614617645e-19,1.7186177402629645e-19 +1955,Methomyl,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,5.589017608095688e-23,6.945518422003048e-23,1.0471550397341399e-22,7.293175487697974e-21,8.928778718845537e-21,1.3256017180026412e-20,7.297533022117396e-21,9.022125542693949e-21,1.3364468978114864e-20,4.325374225874817e-21,5.097298806031178e-21,7.604216136863303e-21,3.1714665082219974e-21,3.599865963023287e-21,5.165330394991952e-21,0.0,0.0,0.0,1.3570683427749496e-21,1.4464068756197753e-21,1.5710720736229228e-21,2.2896867253846046e-21,2.4399269770391968e-21,2.6499698083263915e-21 +1956,Methomyl,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,6.2681937983573605e-25,7.789536293942064e-25,1.1744050901495587e-24,8.179440568513724e-23,1.001380194450599e-22,1.4866885471561614e-22,8.184327629555822e-23,1.0118492253858664e-22,1.4988516308312055e-22,4.850992750249422e-23,5.716721435583703e-23,8.528278808982461e-23,3.556862420599233e-23,4.0373208829084223e-23,5.793020208271128e-23,0.0,0.0,0.0,1.5219789892616837e-23,1.6221739209654236e-23,1.7619884064065157e-23,2.567928952583709e-23,2.736426366569546e-23,2.9719935565094684e-23 +1957,Lambda-cyhalothrin,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,3.3537766083722444e-23,4.1677659399971435e-23,6.283616059694169e-23,4.3763829470302065e-21,5.357852006850726e-21,7.954478488884044e-21,4.378997753069869e-21,5.413866214752854e-21,8.01955667060255e-21,2.5955078187226802e-21,3.0587131227398e-21,4.563027707634438e-21,1.9030876148622655e-21,2.160155345055e-21,3.099536531731836e-21,0.0,0.0,0.0,8.143298846065721e-22,8.67938855392725e-22,9.427461389353189e-22,1.3739619944746946e-21,1.464115985203803e-21,1.5901554403832984e-21 +1958,Lambda-cyhalothrin,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.6926320614929333e-26,2.1034478671104268e-26,3.171305439588025e-26,2.2087356895264927e-24,2.7040775658704633e-24,4.014580246425531e-24,2.2100553673269298e-24,2.732347619377876e-24,4.047424836173501e-24,1.3099380975216557e-24,1.5437151912847145e-24,2.3029342432118673e-24,9.604775418695188e-25,1.0902181695003682e-24,1.5643185346178344e-24,0.0,0.0,0.0,4.109876811385963e-25,4.380438251020731e-25,4.757986374658317e-25,6.934308377378516e-25,7.38931046308615e-25,8.025424455648683e-25 +1959,Lambda-cyhalothrin,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,4.2471405988698653e-29,5.277956762403707e-29,7.957417559201979e-29,5.5421442335131866e-27,6.78505262522655e-27,1.0073356838568925e-26,5.5454555598745576e-27,6.855987646948833e-27,1.0155770254889264e-26,3.286887565526312e-27,3.873479423617301e-27,5.778506589434302e-27,2.41002356928988e-27,2.7355678499811547e-27,3.92517718944143e-27,0.0,0.0,0.0,1.0312474316838357e-27,1.0991365199805487e-27,1.1938706326334697e-27,1.7399518362499544e-27,1.8541206432072766e-27,2.0137339238952965e-27 +1960,Prothioconazol,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,9.254006934532049e-23,1.1500030982031401e-22,1.7338252769869313e-22,1.2075663608442683e-20,1.4783811033352258e-20,2.1948629170425656e-20,1.2082878589060212e-20,1.493836988712312e-20,2.2128198061062223e-20,7.161731432404128e-21,8.43984431711344e-21,1.2590668664171352e-20,5.251150580884798e-21,5.960472290609537e-21,8.552487511333177e-21,0.0,0.0,0.0,2.2469637305155734e-21,2.3948858628893654e-21,2.601300064401498e-21,3.791145120769147e-21,4.0399051763192095e-21,4.387683257116006e-21 +1961,Prothioconazol,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,9.504808260901369e-24,1.1811703863951726e-23,1.7808152650510016e-23,1.2402937239451263e-21,1.5184480650691549e-21,2.2543479093170506e-21,1.24103477598728e-21,1.534322834560669e-21,2.2727914644774153e-21,7.3558280821774795e-22,8.668580275978818e-22,1.2931899919283173e-21,5.393466827288781e-22,6.122012515005521e-22,8.784276316702724e-22,0.0,0.0,0.0,2.3078607546887256e-22,2.4597918603931617e-22,2.6718002824296085e-22,3.89389242049678e-22,4.1493943503833574e-22,4.506597883801947e-22 +1962,Prothioconazol,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.4883299328682784e-25,1.849559921319372e-25,2.788526176663256e-25,1.942139414308357e-23,2.3776931051208092e-23,3.530016998163135e-23,1.943299805876497e-23,2.402550939141217e-23,3.558897218015656e-23,1.1518274556637717e-23,1.3573874554958895e-23,2.0249681225033785e-23,8.44547086130724e-24,9.58627909723014e-24,1.3755039577706286e-23,0.0,0.0,0.0,3.6138111867270064e-24,3.8517156306113536e-24,4.183693374796934e-24,6.0973314619705446e-24,6.497414409172541e-24,7.05674890212308e-24 +1963,Trifloxystrobin,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.8118999315233373e-24,3.4943713104072885e-24,5.2683591165243535e-24,3.669281632625854e-22,4.492172690791783e-22,6.669256820013032e-22,3.671473959004117e-22,4.539136566372395e-22,6.723820184266541e-22,2.1761462106599446e-22,2.5645104682578877e-22,3.8257698102528383e-22,1.5956017823418277e-22,1.8111345435651207e-22,2.5987379539709833e-22,0.0,0.0,0.0,6.827569078559855e-23,7.277041654959264e-23,7.904246803169601e-23,1.151968091307488e-22,1.2275557138481542e-22,1.333230711552501e-22 +1964,Trifloxystrobin,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,4.5839829680195067e-26,5.696553559808621e-26,8.588523428997555e-26,5.9816938436382876e-24,7.323177782276315e-24,1.0872278678987176e-23,5.985267792578007e-24,7.399738688079073e-24,1.0961228335278501e-23,3.547571894024554e-24,4.180686580036391e-24,6.236802189722774e-24,2.6011634739261695e-24,2.9525267978613734e-24,4.236484515722406e-24,0.0,0.0,0.0,1.1130360657118244e-24,1.1863094639484257e-24,1.288556975841175e-24,1.8779480916562328e-24,2.001171671002551e-24,2.173443942928314e-24 +1965,Ethephon,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.0595883987077563e-21,1.3167592696778439e-21,1.98523856929779e-21,1.3826694919048276e-19,1.6927537196038796e-19,2.5131289614423133e-19,1.3834956107760188e-19,1.710450785268174e-19,2.533689688772111e-19,8.2002181262153e-20,9.663663738956369e-20,1.441637827041319e-19,6.012593544353176e-20,6.824770431506541e-20,9.792640756861692e-20,0.0,0.0,0.0,2.572784652121807e-20,2.742156229736495e-20,2.978501517565645e-20,4.3408800276009727e-20,4.625711529009826e-20,5.023919162029686e-20 +1966,Ethephon,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,6.993136594765565e-23,8.690428707193704e-23,1.3102299452253315e-22,9.125427037408147e-21,1.1171939969056308e-20,1.6586302878368062e-20,9.130879307471513e-21,1.128873814996617e-20,1.6722000829378885e-20,5.412030325373424e-21,6.377884149496843e-21,9.514609877580664e-21,3.968228417260075e-21,4.504253907706217e-21,6.463007193954833e-21,0.0,0.0,0.0,1.6980022169819637e-21,1.80978511107211e-21,1.9657697257884327e-21,2.8649206627283386e-21,3.052905506490169e-21,3.3157170259594386e-21 +1967,Ethephon,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,4.237987239565663e-25,5.2665818081340995e-25,7.940267882337219e-25,5.530199906105754e-23,6.770429604502333e-23,1.0051646925045926e-22,5.53350409595616e-23,6.841211748343706e-23,1.0133882725417078e-22,3.2798037258460334e-23,3.8651313719491425e-23,5.766052858235708e-23,2.4048295307803752e-23,2.7296722044190185e-23,3.916717719687494e-23,0.0,0.0,0.0,1.0290249061645173e-23,1.0967676811450527e-23,1.1912976245783302e-23,1.7362019240421126e-23,1.8501246764853863e-23,2.0093939615649205e-23 +1968,Tebuconazole,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,7.610070769438911e-23,9.457097904786475e-23,1.4258183664249335e-22,9.930471773034865e-21,1.2157527977324588e-20,1.8049545722757063e-20,9.936405042104884e-21,1.2284630088159074e-20,1.8197214940510185e-20,5.889479381144623e-21,6.940540783297634e-21,1.0353988304659082e-20,4.318305337935354e-21,4.901618971440438e-21,7.033173378660279e-21,0.0,0.0,0.0,1.8477998911236172e-21,1.9694442667683492e-21,2.139189836712531e-21,3.117663826155815e-21,3.322232683817155e-21,3.608229422927705e-21 +1969,"2,4-D amines","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,6.984714427418547e-21,8.984733683946545e-20,2.482700880631055e-19,2.502909503758004e-19,3.7270508565983185e-19,6.46901980947838e-19,2.5034252001150396e-19,3.8759769908422887e-19,6.82274251924108e-19,1.4824683908931016e-19,2.1533317510461598e-19,3.7648042925533537e-19,1.0723977739252984e-19,1.25170783501329e-19,1.8449411322202445e-19,0.0,0.0,0.0,5.604621682222036e-20,5.951267404030838e-20,6.43249163955167e-20,1.9833176474840539e-19,2.0863843441572566e-19,2.227496999543633e-19 +1970,"2,4-D amines","('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.3337746794231012e-18,1.7847093043453448e-17,4.940853857700239e-17,4.2172679043088445e-17,6.485123389051444e-17,1.1494398303928282e-16,4.2178334513210557e-17,6.772251036420198e-17,1.218840702040455e-16,2.497280093002636e-17,3.7533506094412237e-17,6.701183103300545e-17,1.8019774501539895e-17,2.1141037248569958e-17,3.131006881890094e-17,0.0,0.0,0.0,9.736836123081412e-18,1.0333316677773037e-17,1.11606863200589e-17,3.712597095330645e-17,3.902207829649085e-17,4.1613498025304867e-17 +1971,"2,4-D amines","('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,4.154626967290416e-20,5.561838350682018e-19,1.539792736178294e-18,1.3115538029947402e-18,2.0177166196031123e-18,3.5772287161414836e-18,1.3117284019914405e-18,2.1071653815422654e-18,3.793477494105049e-18,7.766417923755942e-19,1.1678068056391753e-18,2.0855555373918275e-18,5.603869589853307e-19,6.574993253013778e-19,9.738256014037453e-19,0.0,0.0,0.0,3.0293594697311555e-19,3.2149150727085156e-19,3.4722937639370323e-19,1.1561725331680978e-18,1.2152082287051023e-18,1.295890830671277e-18 +1972,"2,4-D amines","('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.7000314990573893e-22,2.2733543397583144e-21,6.293450697185964e-21,5.3870600574487464e-21,8.279126442034447e-21,1.4668683964820964e-20,5.387789636801528e-21,8.645042445459388e-21,1.5552881308912105e-20,3.1899935870233717e-21,4.791504224647373e-21,8.5515143755641e-21,2.3019297809847597e-21,2.700397828712145e-21,3.998961412123229e-21,0.0,0.0,0.0,1.2430721964978532e-21,1.3192362132234358e-21,1.4248838114529674e-21,4.7336397311996675e-21,4.975468069376725e-21,5.305986101265309e-21 +1973,Dichlorprop,"('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,9.120178926638092e-21,1.2760050602607634e-19,3.539720976726024e-19,2.4304632693233723e-19,3.9249851752290223e-19,7.16750489474282e-19,2.4305120102554593e-19,4.1235315272114636e-19,7.657016921170126e-19,1.4386654942337126e-19,2.2774070575196314e-19,4.1887927388361763e-19,1.0339742718996964e-19,1.222991986927316e-19,1.824886386697753e-19,0.0,0.0,0.0,5.879489555981542e-20,6.234579451494109e-20,6.726508505631025e-20,2.4784244694508413e-19,2.60227183267812e-19,2.7711484503975925e-19 +1974,Dichlorprop,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,6.034204436728429e-19,5.5760438486651546e-18,1.5114453006615326e-17,3.942926595601076e-17,5.221299714838212e-17,8.3081055698456e-17,3.944699870088991e-17,5.34126874187225e-17,8.55492955074349e-17,2.337286212518337e-17,2.995989466861196e-17,4.79793131993526e-17,1.7050824323457548e-17,1.955888336551143e-17,2.8355199010992617e-17,0.0,0.0,0.0,7.900048415588695e-18,8.406854431639968e-18,9.112581292976178e-18,1.9499242614111223e-17,2.061774471931979e-17,2.2163747355754792e-17 +1975,Dichlorprop,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.692543196129652e-20,1.4212632281661609e-19,3.825798501095057e-19,1.2222513179860536e-18,1.595245943427359e-18,2.5079603533785247e-18,1.2228354229159314e-18,1.6283286452746467e-18,2.573354547115622e-18,7.245935718079908e-19,9.145225418644802e-19,1.4467140355569341e-18,5.291134814209486e-19,6.057255224667796e-19,8.764321162319007e-19,0.0,0.0,0.0,2.4156251553695877e-19,2.5713210372761244e-19,2.7882108765435923e-19,5.623835421360985e-19,5.952462683302846e-19,6.407453934103944e-19 +1976,Dichlorprop,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,7.02338069519796e-23,5.962215438057059e-22,1.6062542870798111e-21,5.019286290464509e-21,6.5605461858905606e-21,1.0326750528525826e-20,5.021670893812325e-21,6.698082810381078e-21,1.0599845288940695e-20,2.9755816441656856e-21,3.761374962083251e-21,5.957660128960039e-21,2.1726227496699616e-21,2.4877010102585915e-21,3.600186733357002e-21,0.0,0.0,0.0,9.933596364444517e-22,1.0573551103713688e-21,1.146499610681226e-21,2.3266853937597295e-21,2.4623792177539877e-21,2.650217329601345e-21 +1977,"2,4-D ester","('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,5.736525518018226e-19,5.0652091502967225e-18,1.3685716748551257e-17,3.940452019916997e-17,5.179575439872066e-17,8.191535827817649e-17,3.942281011099409e-17,5.2926888804223134e-17,8.419846003499905e-17,2.335931620586297e-17,2.970674232675641e-17,4.727915387611664e-17,1.7049405488004015e-17,1.953716074477049e-17,2.829547919825929e-17,0.0,0.0,0.0,7.840138254691558e-18,8.344303140223149e-18,9.046490085400478e-18,1.879237420799822e-17,1.988029789422952e-17,2.1385289787552543e-17 +1978,"2,4-D ester","('air', 'non-urban air or from high stacks')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,6.135181255684529e-20,1.0239263502276225e-18,2.860875479013165e-18,2.864659684873342e-19,1.1246050663991695e-18,2.7621178831971204e-18,2.854932087706948e-19,1.26474961955688e-18,3.1359171468471036e-18,1.6763461184153454e-19,6.719291377230687e-19,1.6473991036387381e-18,1.0588695761223925e-19,1.6041434802600427e-19,2.872747787672509e-19,0.0,0.0,0.0,1.6391502614619708e-19,1.7210013039818319e-19,1.8323066195564247e-19,1.4881342278553342e-18,1.5541727438673997e-18,1.6430190434441118e-18 +1979,"2,4-D ester","('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,1.6291485717017522e-20,1.3124742887636522e-19,3.5215304028297005e-19,1.2217243249617335e-18,1.586360217281464e-18,2.483135313148934e-18,1.2223202954941783e-18,1.6179829331463708e-18,2.5445867521627144e-18,7.243050941219706e-19,9.091313387974194e-19,1.4318032468073645e-18,5.29083265480317e-19,6.052629110927167e-19,8.75160305387447e-19,0.0,0.0,0.0,2.402866509815547e-19,2.557999928733114e-19,2.7741358969561107e-19,5.4732987488137535e-19,5.795413945136546e-19,6.241671433396457e-19 +1980,"2,4-D ester","('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,6.494173528968578e-23,5.054064520569287e-22,1.3522566342680294e-21,5.0148870451694395e-21,6.486369703188534e-21,1.0119515448694312e-20,5.0173707006980786e-21,6.611718625182636e-21,1.035969679647652e-20,2.973173481173397e-21,3.716370109577454e-21,5.8331873832533076e-21,2.172370512249408e-21,2.483839210914325e-21,3.589569877482581e-21,0.0,0.0,0.0,9.827089408953719e-22,1.0462348804957573e-21,1.1347500623614532e-21,2.2010199224273083e-21,2.331277584046544e-21,2.5118248984578746e-21 +1981,Bentazone,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,2.058964794625028e-16,4.910349210792056e-16,1.9303622440041006e-14,4.0627138239575986e-16,9.3907793001986e-16,2.2080589916181503e-14,9.002759642586009e-17,2.2581594778971393e-16,3.6158374822600906e-14,7.546124649695018e-17,1.8977379482355403e-16,3.6063658911697293e-14,5.3151375368370183e-17,1.3369416624548781e-16,2.316081063367592e-14,0.0,0.0,0.0,2.4709033804788843e-14,2.5759594459767708e-14,2.7178124949055477e-14,3.84849569703303e-14,4.01200981772067e-14,4.232780945569186e-14 +1982,Bentazone,"('water', 'ground-')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,3.3224349343448815e-13,7.92355075504176e-13,3.1149042609235956e-11,6.555769674506162e-13,1.5153363378587296e-12,3.563006089786595e-11,1.4527188097301064e-13,3.643850096451821e-13,5.834649606351191e-11,1.2176707790446453e-13,3.0622605310914947e-13,5.81936589440526e-11,8.576703405225382e-14,2.157338707602504e-13,3.737314357541122e-11,0.0,0.0,0.0,3.987141393858423e-11,4.156663759970723e-11,4.385563104154837e-11,6.21007553718955e-11,6.473927993272836e-11,6.830172481978445e-11 +1983,Mandipropamid,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1125424084699475e-12,3.655321031847681e-12,8.250424527405177e-12,0.0,0.0,0.0,4.331193320740022e-12,5.316294837666058e-12,6.746047503925842e-12,0.0,0.0,0.0 +1984,Myclobutanil,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.668497016670632e-13,1.4783284497033676e-12,8.79821655669306e-13,0.0,0.0,0.0,5.615479563945771e-13,5.951091876405455e-13,6.41819187139924e-13,0.0,0.0,0.0 +1985,Chlorpyrifos methyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.453687692490619e-08,3.3647953686001475e-08,8.234191802809491e-07,3.3562116957065853e-09,8.420964768850671e-09,1.3489230974017602e-06,2.7983652721154395e-09,7.040163160113223e-09,1.3384850800612232e-06,1.9045429548058824e-09,4.7913628522928276e-09,8.301532324066318e-07,0.0,0.0,0.0,8.856469557300482e-07,9.233021733157582e-07,9.741465147486667e-07,1.428354136944289e-06,1.4890410685520249e-06,1.5709783844851642e-06 +1986,Boscalid,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7463779592995145e-21,2.944599943766912e-20,8.226655972120151e-20,1.7070567588149248e-21,3.428417332768283e-20,9.533225516003849e-20,9.619471254303451e-22,1.797730827896045e-20,4.972097001337006e-20,1.9138658223196626e-22,2.9301622896081015e-21,8.055599979480494e-21,0.0,0.0,0.0,8.081276025694021e-21,8.437537875395046e-21,8.915036836183245e-21,5.019740744336512e-20,5.2368896992351273e-20,5.528122545936811e-20 +1987,Acetamiprid,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3466255339461487e-11,7.41908067885148e-11,4.415438157683257e-11,0.0,0.0,0.0,2.818162360583019e-11,2.986591428118797e-11,3.221008383879967e-11,0.0,0.0,0.0 +1988,Chloropicrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.540741580490109e-19,1.1028464478503167e-17,3.081144634177859e-17,6.393471001531073e-19,1.2840514344335725e-17,3.570496444994042e-17,3.6027983661637117e-19,6.733074530119422e-18,1.8622086889484532e-17,7.168036371950328e-20,1.0974389961193036e-18,3.0170784689946095e-18,0.0,0.0,0.0,3.0266949651449166e-18,3.1601263617890488e-18,3.3389649135106264e-18,1.8800527881613767e-17,1.9613819879938494e-17,2.0704579648883222e-17 +1989,Acrinathrin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.131945175372494e-23,1.0339185353565593e-21,2.888573067992154e-21,5.993878773437256e-23,1.2037981614350845e-21,3.3473402549413985e-21,3.377623268479039e-23,6.312256998578451e-22,1.7458205426131476e-21,6.720034224183011e-24,1.0288490780730821e-22,2.828511117497661e-22,0.0,0.0,0.0,2.837526582806957e-22,2.9626185194965325e-22,3.1302796648660484e-22,1.7625493846355433e-21,1.838795504968068e-21,1.9410542272574174e-21 +1990,"Water, unspecified natural origin","('natural resource', 'in ground')",natural resource,cubic meter,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4804494495690233e-06,4.8819262384838645e-06,8.584242265857728e-06,4.790596836065212e-05,0.0001090970583747654,0.00029637399658147956,0.0,0.0,0.0,0.0002234067282529862,0.00023534871600086883,0.00025187243914071965,5.146708489651489e-06,5.4871629927662186e-06,5.946311641772054e-06 +1991,Flurochloridone,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3740790711446357e-34,2.103739264402169e-33,5.783598415433715e-33,0.0,0.0,0.0,5.80203278910888e-33,6.057814540269893e-33,6.400639685511853e-33,0.0,0.0,0.0 +1992,"Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin","('soil',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0781008908800187e-15,2.007741799410649e-15,4.585508843376431e-14,1.313001131594602e-15,2.1876973446442104e-15,4.6062571570107567e-14,0.0,0.0,0.0,4.7652735568906846e-15,4.995897820319349e-15,5.3059985541872336e-15,4.8204276755906215e-15,5.055378810486911e-15,5.372342195176498e-15 +1993,"Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin","('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.416569617119835e-14,1.6192679655396786e-13,2.6943385684755585e-13,1.1205252734979232e-13,2.1420839272542482e-13,3.359050888925703e-13,0.0,0.0,0.0,1.6088802367482256e-13,1.6925945344890004e-13,1.805491229304759e-13,1.535255579191745e-13,1.613558398608724e-13,1.7192384483792844e-13 +1994,"Energy, gross calorific value, in biomass","('natural resource', 'biotic')",natural resource,megajoule,biosphere3,1.34772205442534,3.075100280553451,5.015121837619397,1.2775647970172477,2.733957166109669,5.364748436333392,2.0206421137199166,4.849667009403361,6.594926071145192,2.5909085344739733,5.964660767675928,6.76472184884687,6.311110219080068,13.943041503107565,6.081308453359864,4.450666953447452,9.8931211449544,5.921815764187832,5.4209391347426115,11.875764761303918,6.0168652290641385,3.782653784497312,3.951397580088502,4.179739962915429,4.111112974565252,4.295198874974783,4.544196727985454,4.209370386363724,4.397418799010165,4.652104564137356 +1995,"Energy, gross calorific value, in biomass, primary forest","('natural resource', 'biotic')",natural resource,megajoule,biosphere3,5.2199211767275807e-05,0.00026152596612131584,0.2023235973589741,0.001172016898102449,0.0030016535420053277,0.4477870016260315,0.0008393694445426295,0.002305814172070738,0.3886877286768847,0.004441321644244789,0.010333880537431523,0.30669534769001056,0.0009650731893043777,0.002431890687054677,0.3981809856805631,0.0007941202119249584,0.0020327189621620486,0.3934410763784331,0.0006523365754862242,0.0015337486869174686,0.20615342417826024,0.21609888070208683,0.22529023996950534,0.23770076983927058,0.21959124258255164,0.22893290830066687,0.24154654720389146,0.419819925925766,0.43766235524840014,0.46175310838187894 +1996,"Chloride, ion","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.875592074414328e-08,1.7715145995865642e-07,3.355974600539513e-08,2.3717444425849063e-07,5.469699837377055e-07,5.075002555391811e-07,5.46917545989781e-07,1.2462514541450056e-06,1.1284771212827095e-06,0.0,0.0,0.0,5.445508362482673e-07,5.682876835602715e-07,6.004226058214647e-07,2.4830813263558296e-07,2.5940720823580397e-07,2.7448590770850843e-07 +1997,Ethylene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5141292008921407e-06,8.031510099589485e-06,4.571265723227495e-05,1.5093767665211035e-06,8.013112152692862e-06,4.571215987881422e-05,1.8195636474842797e-06,8.179069445545244e-06,4.5400694059776956e-05,0.0,0.0,0.0,1.0148000302027571e-05,4.647594446653248e-05,9.173889410205245e-05,1.0725882048153075e-05,4.712568015755984e-05,9.249292602490862e-05 +1998,Trichloroethylene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.982602806502134e-09,1.7955853072126584e-08,3.401574384715646e-09,5.5504939827285585e-09,1.2656007787126335e-08,3.177709676822114e-09,6.889584817691614e-09,1.5517297128202716e-08,3.4396134186219256e-09,0.0,0.0,0.0,2.922242961777541e-09,3.045444272730555e-09,3.211609251544534e-09,2.8047726907394666e-09,2.9214597764083448e-09,3.0792894198243597e-09 +1999,Methylamine,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8316107661714294e-12,2.2522547522774958e-11,5.109883416109617e-11,1.2501524901765326e-12,8.0058677913711e-12,1.7971310666136526e-11,0.0,0.0,0.0,1.513009909043511e-11,1.5808050639767755e-11,1.671874692685417e-11,4.339790225893181e-11,4.530703217023765e-11,4.7871769585942065e-11 +2000,"Sulfate, ion","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.872781691049135e-10,2.2426243338795266e-09,1.1958327681914019e-08,5.545521677595965e-10,2.392164122737319e-09,1.2120441684931501e-08,6.588474297595687e-10,2.467156468524586e-09,1.2042871283183125e-08,0.0,0.0,0.0,3.0229530680722262e-09,1.2111726873547423e-08,2.3442862796910477e-08,3.1890380249244856e-09,1.2297264184276042e-08,2.3656593782937065e-08 +2001,Barium sulfide,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5714883050368074e-11,2.0914009432347896e-10,4.4445436471705843e-10,0.0,0.0,0.0,3.348896619718489e-10,3.513943047657192e-10,3.7375087721231497e-10,0.0,0.0,0.0 +2002,Elemental carbon,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.565608431968087e-14,4.4302876726341106e-13,9.415032059843569e-13,0.0,0.0,0.0,7.094084689622299e-13,7.443708303149886e-13,7.917295386644515e-13,0.0,0.0,0.0 +2003,Diethanolamine,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0336904384542404e-10,4.6317885247089415e-10,8.628380465572322e-10,1.1178402094118808e-10,4.730956311066712e-10,8.843378530635898e-10,1.3162164672921302e-10,4.895871895812029e-10,9.061046688781292e-10,0.0,0.0,0.0,7.956816076055346e-10,8.418288067379965e-10,9.033700262873601e-10,7.963193204732503e-10,8.423916608584737e-10,9.038423051220999e-10 +2004,Lauric acid,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2962915586363854e-10,1.0289286323074327e-09,1.9167515235440584e-09,2.483226061968603e-10,1.0509582595760139e-09,1.964512267337647e-09,2.923908955071986e-10,1.0875934190750887e-09,2.0128661366897192e-09,0.0,0.0,0.0,1.7675668369737454e-09,1.87008052841275e-09,2.006791265147921e-09,1.7689835037234302e-09,1.871330901336432e-09,2.007840431120199e-09 +2005,"1,3-Dioxolan-2-one","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3258137744514217e-08,8.81975151954961e-08,4.3684909313690195e-07,2.36110003665981e-08,8.832581981743544e-08,4.365494346304237e-07,2.7902705352686742e-08,9.116218693561812e-08,4.3626458903004647e-07,0.0,0.0,0.0,1.111918712804356e-07,4.328212067973367e-07,8.337222765621332e-07,1.1563855017631608e-07,4.378405744009345e-07,8.395770002449688e-07 +2006,Dimethyl carbonate,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2601020244721e-09,8.570565057111992e-09,4.245066955197905e-08,2.2943913358192118e-09,8.583033017312558e-09,4.24215503333796e-08,2.7114363819053348e-09,8.858656076063737e-09,4.239387055415157e-08,0.0,0.0,0.0,1.0805034183995704e-08,4.2059260997673035e-08,8.101669298731942e-08,1.1237138769717296e-08,4.254701642362612e-08,8.158562387050714e-08 +2007,Dinitrogen tetroxide,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.922448911027918e-10,6.449554518915688e-10,7.593819851217674e-10,4.920169590449954e-10,6.467594647853517e-10,7.594601072891531e-10,5.96184805578606e-10,7.493413410867437e-10,8.665993643269523e-10,0.0,0.0,0.0,1.5492542341314663e-10,1.6444863901573404e-10,1.772469884917536e-10,1.5230119070130974e-10,1.580510568095303e-10,1.6611582219488672e-10 +2008,Nitric oxide,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.396522627417847e-09,4.450235696955401e-09,5.239786419218819e-09,3.394949880992447e-09,4.462683506409963e-09,5.2403254673690546e-09,4.113714979819058e-09,5.170505304700078e-09,5.979593497139623e-09,0.0,0.0,0.0,1.068995769573227e-09,1.134706593320417e-09,1.22301605955204e-09,1.0508883885856582e-09,1.0905628487868022e-09,1.146210268620709e-09 +2009,Bisphenol A,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7765483501768785e-08,1.341173668777238e-07,1.4578572543837048e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.714863354737165e-08,7.010131921286661e-08,7.411142394406728e-08 +2010,Epichlorohydrin,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5753175016710602e-08,5.979259261071252e-08,6.499461399013737e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.993639812300788e-08,3.125277299088885e-08,3.3040569486604853e-08 +2011,Phosgene,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.313107315984612e-11,1.2582065835001596e-10,3.910888312209216e-10,7.320175551830998e-11,1.3529499685639262e-10,6.055243582662408e-10,0.0,0.0,0.0,2.5763521960430803e-10,2.7382890014213386e-10,2.9622563451899754e-10,1.995623881760108e-10,2.1194913211091692e-10,2.2893599836903843e-10 +2012,Aluminium hydroxide,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1452127789643995e-11,1.6998273616832047e-10,2.758760478166064e-10,1.7310370777211905e-11,1.800186040187709e-10,2.868731184854547e-10,0.0,0.0,0.0,8.394561961205208e-11,9.079422821839091e-11,1.0044741791876838e-10,7.66947284261621e-11,8.308041142544654e-11,9.209204496915799e-11 +2013,Hydrochloric acid,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6058956975944913e-12,2.3836142042096276e-11,3.868522657063934e-11,2.4273786029444573e-12,2.5243440082999752e-11,4.0227311045899074e-11,0.0,0.0,0.0,1.1771429016783286e-11,1.2731787763860365e-11,1.4085424056839832e-11,1.0754659454566497e-11,1.1650103606353794e-11,1.2913776506444651e-11 +2014,Sodium,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4559690464211847e-08,4.621233024583297e-08,1.3483619042548107e-07,0.0,0.0,0.0,1.0446890319864168e-07,1.1969796745064856e-07,1.4174655312979673e-07,0.0,0.0,0.0 +2015,"VOC, volatile organic compounds, unspecified origin","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.768603514050887e-15,2.6821420522758015e-14,5.952883195489523e-14,4.693438978096245e-15,2.3203260683832887e-14,5.459037968495588e-14,2.5596697476465444e-06,4.929147922015097e-06,1.1675645319342424e-05,0.0,0.0,0.0,7.64872827661567e-06,9.337862765889805e-06,1.1489726446988204e-05,4.564548444514677e-14,4.82284044750941e-14,5.179621787739353e-14 +2016,Azadirachtin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.478142879292917e-10,7.710778084892348e-10,4.589179568158055e-10,0.0,0.0,0.0,2.928926617367359e-10,3.103979593389772e-10,3.34761592339555e-10,0.0,0.0,0.0 +2017,Carbosulfan,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2298106908217103e-12,1.3959169424477912e-12,2.002933447025953e-12,0.0,0.0,0.0,5.26188835491588e-13,5.608299202092799e-13,6.091690601701754e-13,0.0,0.0,0.0 +2018,Clothianidin,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.756829219145285e-14,7.282789333226478e-13,2.0021838998974717e-12,0.0,0.0,0.0,2.00856556811194e-12,2.0971128819610098e-12,2.2157931458709733e-12,0.0,0.0,0.0 +2019,Diafenthiuron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.499981081623453e-13,5.542168118910786e-13,3.298400657417888e-13,0.0,0.0,0.0,2.1052109101987708e-13,2.2310300310311664e-13,2.4061431259001126e-13,0.0,0.0,0.0 +2020,Dichlorvos,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.324740992291483e-14,7.179001755005126e-14,1.030080106782147e-13,0.0,0.0,0.0,2.7061141380174105e-14,2.884268296349562e-14,3.1328695992364507e-14,0.0,0.0,0.0 +2021,Novaluron,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.972398748797478e-13,1.989076743870908e-12,1.1837915954329014e-12,0.0,0.0,0.0,7.555573870333844e-13,8.007137016403967e-13,8.635615577642998e-13,0.0,0.0,0.0 +2022,Pyraflufen-ethyl,"('soil', 'agricultural')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.157778550776532e-10,1.1434196865980806e-09,6.805019561035325e-10,0.0,0.0,0.0,4.3433175383884e-10,4.602898367808974e-10,4.964178927613774e-10,0.0,0.0,0.0 +2023,"Laterite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015219479569398746,0.0016739695081338373,0.002117715573217647,0.0,0.0,0.0,0.0004829973927879856,0.0005078262817832143,0.0005421671800292947,0.0,0.0,0.0 +2024,Monobutyltin,"('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.158218249625845e-27,4.033377072521311e-26,1.115536416039273e-25,2.1712680296344e-28,3.3242496035368e-27,9.13902452878565e-27,0.0,0.0,0.0,9.1681538322196e-27,9.572330528106803e-27,1.0114049919119243e-26,1.126225734911846e-25,1.1749451317436207e-25,1.2402859418595649e-25 +2025,Dibutyltin,"('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2531589718550888e-29,2.341960858770614e-28,6.477308161182473e-28,1.260736211460552e-30,1.9302093495132566e-29,5.306530102951655e-29,0.0,0.0,0.0,5.323443891185692e-29,5.558127122080063e-29,5.872673849327358e-29,6.539375173406765e-28,6.822261991056857e-28,7.201660239770828e-28 +2026,Monophenyltin,"('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3670779744206266e-30,4.4237036882274353e-29,1.2234914983786824e-28,2.38139073589686e-31,3.645951168457552e-30,1.0023446230930797e-29,0.0,0.0,0.0,1.0055394499130735e-29,1.0498685067640748e-29,1.1092828914275586e-29,1.23521526694052e-28,1.2886494417220955e-28,1.360313552839095e-28 +2027,Diphenyltin,"('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.936673071434988e-28,1.4832417992873626e-26,4.102294953203198e-26,7.984662628986892e-29,1.2224659146834799e-27,3.36080238019158e-27,0.0,0.0,0.0,3.3715144460139304e-27,3.52014715810381e-27,3.7193600842751815e-27,4.141604058879338e-26,4.320765700644417e-26,4.561051245538518e-26 +2028,Triphenyltin,"('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3670780044946305e-28,4.423703744432e-27,1.2234915139235454e-26,2.381390661122737e-29,3.645951053963822e-28,1.0023445916182475e-27,0.0,0.0,0.0,1.0055394183376036e-27,1.0498684737970514e-27,1.109282856595509e-27,1.2352152826343449e-26,1.28864945809482e-26,1.3603135701223368e-26 +2029,Trioctyltin,"('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.56959525940905e-28,1.0408714608147147e-26,2.878803538765475e-26,5.603271967836096e-29,8.57870809283428e-28,2.3584577885586083e-27,0.0,0.0,0.0,2.3659750276621463e-27,2.4702786842908673e-27,2.6100772276612993e-27,2.9063888766841925e-26,3.032116347333646e-26,3.2007377860273866e-26 +2030,"Gangue, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02255243597086513,0.07115902033600076,0.14386088122098717,0.0,0.0,0.0,0.09485835604101725,0.10092433066357143,0.10935956246451452,0.0,0.0,0.0 +2031,Ammonium sulfate,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8305439165549666e-12,2.4562812094290003e-11,3.7163732727695335e-11,0.0,0.0,0.0,9.365069282355652e-12,9.828477322184869e-12,1.0462272547496349e-11,0.0,0.0,0.0 +2032,Glyphosate,"('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.138534176761187e-12,5.78932756430678e-12,8.759299279212232e-12,0.0,0.0,0.0,2.2072983146145438e-12,2.316521188941893e-12,2.465903440205772e-12,0.0,0.0,0.0 +2033,"Fish, pelagic, in ocean","('natural resource', 'in water')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6742450026340643e-18,4.997751493286852e-17,1.382259503347685e-16,1.9712394434500511e-19,3.0180023142710557e-18,8.297089709729033e-18,0.0,0.0,0.0,8.323535469120087e-18,8.690477290297048e-18,9.182290652937288e-18,1.3955046223625415e-16,1.4558727540522785e-16,1.5368364540630601e-16 +2034,"Discarded fish, pelagic, to ocean","('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.003807049442166e-19,1.87596057031543e-18,5.18846191073432e-18,7.427187722192677e-21,1.1371155243806575e-19,3.1261571508688106e-19,0.0,0.0,0.0,3.1361213193580626e-19,3.2743767605243894e-19,3.459680995416845e-19,5.23817891057747e-18,5.464777281676138e-18,5.768683366344356e-18 +2035,"Oils, non-fossil","('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.568927895507887e-21,1.6014004754031444e-19,4.429093821020783e-19,6.310558618266e-22,9.661576414613497e-21,2.656159866749781e-20,0.0,0.0,0.0,2.664625987667911e-20,2.782095627376112e-20,2.939540582349112e-20,4.471534386374307e-19,4.664968483521766e-19,4.9243957636932615e-19 +2036,"Fish, demersal, in ocean","('natural resource', 'in water')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8006662833759525e-29,2.7568518012931633e-28,7.579134914378684e-28,0.0,0.0,0.0,7.603292297912664e-28,7.938482306184294e-28,8.387738606713824e-28,0.0,0.0,0.0 +2037,"Discarded fish, demersal, to ocean","('water', 'ocean')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2508190174393374e-30,3.446043567277492e-29,9.473860402990404e-29,0.0,0.0,0.0,9.504056946779426e-29,9.923041881430885e-29,1.0484608804888721e-28,0.0,0.0,0.0 +2038,Palladium,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.662909134483403e-11,2.7438292484122236e-10,1.078151467893722e-09,0.0,0.0,0.0,1.0368281808844957e-09,1.151048443538319e-09,1.3161436490886179e-09,0.0,0.0,0.0 +2039,Rhodium,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.662909134483403e-11,2.7438292484122236e-10,1.078151467893722e-09,0.0,0.0,0.0,1.0368281808844957e-09,1.151048443538319e-09,1.3161436490886179e-09,0.0,0.0,0.0 +2040,Tellurium,"('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.786022221746305e-11,3.992457129251357e-10,1.5550319249289995e-09,0.0,0.0,0.0,1.4957285235237547e-09,1.6581900033499275e-09,1.8929347005935383e-09,0.0,0.0,0.0 +2041,"Zinc, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004831749403028828,0.0010546014203622217,0.0018237400711971388,0.0,0.0,0.0,0.0010276987496980958,0.0010782207465010157,0.001146817117630751,0.0,0.0,0.0 +2042,"Lead, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010517631216415035,0.00023203600459997676,0.000401137800880013,0.0,0.0,0.0,0.00022648659222034324,0.000237631496856327,0.0002527638512840126,0.0,0.0,0.0 +2043,"Silver, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9171200559943275e-07,1.2850955815663323e-06,2.7232254561752554e-06,0.0,0.0,0.0,2.1697471603637614e-06,2.2688992743055863e-06,2.4024432392536033e-06,0.0,0.0,0.0 +2044,"Benzene, hexachloro-","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.407063519012184e-14,7.898652632307173e-14,3.2273023774631894e-13,0.0,0.0,0.0,1.0138576744622028e-13,3.135019137472397e-13,5.779751515004943e-13,0.0,0.0,0.0 +2045,"Benzene, pentachloro-","('water',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.949778147443701e-14,1.296098973496502e-13,5.295717501848593e-13,0.0,0.0,0.0,1.6636506912146625e-13,5.144288874472312e-13,9.484060578920413e-13,0.0,0.0,0.0 +2046,Nitrogen dioxide,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.387403082134183e-12,2.5691863213568092e-11,5.45990992823213e-11,0.0,0.0,0.0,4.1139598148821056e-11,4.316711481742569e-11,4.591351314027785e-11,0.0,0.0,0.0 +2047,Sulfuric acid,"('water', 'surface water')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2292333312883007e-07,7.198174807437562e-07,1.5297211376734982e-06,0.0,0.0,0.0,1.1526218199165977e-06,1.2094274295453798e-06,1.2863741858579365e-06,0.0,0.0,0.0 +2048,"Barium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010231815268435403,0.005388314225970692,0.015828782471290034,0.0,0.0,0.0,0.015195435284548392,0.01668906737476478,0.018838348794788167,0.0,0.0,0.0 +2049,"Cadmium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.634817036554814e-08,1.2230292115747537e-07,2.1142031931022258e-07,0.0,0.0,0.0,1.1893439527642228e-07,1.2478004731369203e-07,1.3271680948966308e-07,0.0,0.0,0.0 +2050,"Calcium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.954559699074826e-05,0.00012924288824126028,0.0002234171701187612,0.0,0.0,0.0,0.00012568321630274532,0.00013186057439502333,0.00014024770071448478,0.0,0.0,0.0 +2051,"Manganese, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011070432059261259,0.00033132295916482655,0.0010016113260416094,0.0,0.0,0.0,0.0008024327350060524,0.0008454167848883575,0.0009049947392154962,0.0,0.0,0.0 +2052,"Mercury, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.368405752803613e-10,9.372820364774957e-08,2.819788838591747e-07,0.0,0.0,0.0,3.033948335395457e-07,3.134862219532839e-07,3.2703599448370634e-07,0.0,0.0,0.0 +2053,"Potassium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.145816837657393e-06,4.657465523796075e-06,8.051180064955806e-06,0.0,0.0,0.0,4.529187269483498e-06,4.7517978332173e-06,5.054040780805881e-06,0.0,0.0,0.0 +2054,"Phosphorus, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029739819105940017,0.000350254935336636,0.000754053949588428,0.0,0.0,0.0,0.000456399943915256,0.000498138504333641,0.0005565227832918126,0.0,0.0,0.0 +2055,"Sodium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.552110330684581e-08,1.4221263817252702e-07,2.458374726973643e-07,0.0,0.0,0.0,1.3829574482407492e-07,1.4509301150579286e-07,1.5432180048594536e-07,0.0,0.0,0.0 +2056,Nitric acid,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5315729009602e-11,7.665229636603875e-11,1.3250585246551217e-10,0.0,0.0,0.0,7.45410999553273e-11,7.820481163095854e-11,8.317910843602809e-11,0.0,0.0,0.0 +2057,Ammonia,"('soil', 'industrial')",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3660582745659833e-10,9.47646845680031e-10,1.6381603525636688e-09,0.0,0.0,0.0,9.215462704868819e-10,9.668404750701347e-10,1.0283373495788803e-09,0.0,0.0,0.0 +2058,"Vanadium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.191677931088165e-09,4.757006368678703e-09,8.22325247571347e-09,0.0,0.0,0.0,4.625986525846799e-09,4.853354794694533e-09,5.162057376504741e-09,0.0,0.0,0.0 +2059,"Antimony, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.733752692695619e-10,3.834246978026661e-09,8.032445705242143e-09,0.0,0.0,0.0,6.055820321803525e-09,6.354032971431084e-09,6.757987713797481e-09,0.0,0.0,0.0 +2060,"Bromine, in water","('natural resource', 'in water')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0499225867070924e-07,1.41140302374686e-07,4.113333936763213e-06,0.0,0.0,0.0,4.248214463503083e-06,4.4521278675172395e-06,4.730346174110567e-06,0.0,0.0,0.0 +2061,"Cerium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.833881349804194e-08,7.746014699840577e-07,3.0713220391755206e-06,0.0,0.0,0.0,2.9503384323921174e-06,3.3052662239370526e-06,3.819883392228168e-06,0.0,0.0,0.0 +2062,"Europium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7121286236911222e-10,1.940650240803071e-09,7.694746377168423e-09,0.0,0.0,0.0,7.391639715568159e-09,8.280859179795926e-09,9.570156928722139e-09,0.0,0.0,0.0 +2063,"Fluorine, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.42702876713883e-05,8.745109725948417e-05,0.00018852616969866701,0.0,0.0,0.0,0.00011423991159719335,0.0001246326264299223,0.00013917777805182803,0.0,0.0,0.0 +2064,"Fluorspar, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009174452212659653,0.0016091781664552775,0.0020727579206706167,0.0,0.0,0.0,0.0006630401204221949,0.0007210453390234389,0.0008000264384658962,0.0,0.0,0.0 +2065,"Gadolinium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2730051400612086e-10,4.843332644105191e-09,1.9203984073521033e-08,0.0,0.0,0.0,1.8447512681661508e-08,2.066676145112915e-08,2.38844962825037e-08,0.0,0.0,0.0 +2066,"Holmium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.638753280666663e-05,6.148559439232789e-05,0.00013091859333202072,0.0,0.0,0.0,9.905389971090603e-05,0.00010442883300695664,0.00011177905882411687,0.0,0.0,0.0 +2067,"Iodine, in water","('natural resource', 'in water')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.522694732274597e-08,5.647833217605799e-08,9.077609390108931e-07,0.0,0.0,0.0,9.056718740374833e-07,9.55118810905419e-07,1.0232425972852013e-06,0.0,0.0,0.0 +2068,"Kaolinite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001261233805481923,0.0001557690820910062,0.00036260216710140043,0.0,0.0,0.0,0.00020982916031635503,0.00025400504348131704,0.00031812529187871135,0.0,0.0,0.0 +2069,"Lanthanum, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0487010223028602e-08,2.322145706376982e-07,9.207389299583029e-07,0.0,0.0,0.0,8.844697549153156e-07,9.90872089425075e-07,1.145147041653052e-06,0.0,0.0,0.0 +2070,"Kieserite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.742765944750421e-07,3.235647695766051e-07,8.936748688050324e-07,0.0,0.0,0.0,6.3891538495051e-07,6.929703004989601e-07,7.692384283447814e-07,0.0,0.0,0.0 +2071,"Lithium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.828339151822121e-10,3.0696890737289366e-09,2.3803860529791452e-08,0.0,0.0,0.0,2.1535640329168894e-08,2.3828139877299203e-08,2.680454135885402e-08,0.0,0.0,0.0 +2072,"Magnesite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022926682126810433,0.0005379322524253314,0.0014404685098014353,0.0,0.0,0.0,0.0010957809190511284,0.001151812911160387,0.001229166481632259,0.0,0.0,0.0 +2073,"Neodymium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.126785551363405e-08,1.277180126149204e-07,5.064064065770163e-07,0.0,0.0,0.0,4.864583604963969e-07,5.449796439105034e-07,6.298308668148571e-07,0.0,0.0,0.0 +2074,"Praseodymium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1955634178120974e-09,1.3551379274726554e-08,5.3731694865686673e-08,0.0,0.0,0.0,5.161512937352497e-08,5.782446579327875e-08,6.682751148714077e-08,0.0,0.0,0.0 +2075,"Rhenium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9365452170659494e-14,4.410843464333442e-14,2.5010150418789525e-13,0.0,0.0,0.0,2.3544060942926025e-13,2.491731504677295e-13,2.680738983490666e-13,0.0,0.0,0.0 +2076,"Samarium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.531376590037551e-10,9.670078406936614e-09,3.8342200580113607e-08,0.0,0.0,0.0,3.6831848471469245e-08,4.12627457858146e-08,4.768719572525654e-08,0.0,0.0,0.0 +2077,"Sylvite, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.313865228117462e-05,0.00029196816715321903,0.0035320350001788667,0.0,0.0,0.0,0.003696351930544896,0.003864071097446694,0.004091304433684734,0.0,0.0,0.0 +2078,"Tantalum, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7246521839503283e-08,4.3586345085082586e-07,1.2002828239334426e-06,0.0,0.0,0.0,1.2087535222704108e-06,1.261997571290946e-06,1.333354463358032e-06,0.0,0.0,0.0 +2079,"Tellurium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.528787181575459e-13,7.201193675758463e-12,1.9867376963799742e-11,0.0,0.0,0.0,2.0007063434337183e-11,2.088956508908458e-11,2.207263284765292e-11,0.0,0.0,0.0 +2080,"Cobalt, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,1.1811221215881943e-09,2.868378190795579e-09,4.437926236023483e-08,2.382293653502701e-09,7.169916558449507e-09,6.172780500319358e-08,1.092179439998392e-08,2.695654462060276e-08,7.531903867738796e-08,1.1094129348368643e-08,2.7362435272888383e-08,7.622034999592974e-08,3.3449268328401334e-09,1.0292484340960976e-08,7.404445620971559e-08,3.3118181813930205e-09,1.031156590879602e-08,7.551818097727246e-08,1.1618724416874227e-07,1.153428637883285e-06,4.49232286469882e-06,3.845747800205719e-08,4.728400187652921e-08,6.010394733783928e-08,4.2653159871933405e-06,4.784279102659385e-06,5.533250016505626e-06,4.982854781741641e-08,7.335767750883301e-08,1.0451117439489956e-07 +2081,"Uranium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,2.9502928248666656e-05,6.888362476464795e-05,4.5869215718177815e-05,2.103172342219946e-05,4.90035291389598e-05,3.1776379301260934e-05,2.8339544086917763e-05,6.500493218462135e-05,2.9616424540670585e-05,2.820232849576437e-05,6.436463278172655e-05,2.8243189405081243e-05,1.0078252218599896e-05,2.6011299726953454e-05,3.0387909180143337e-05,3.330637877538832e-05,7.571475748866698e-05,2.9292505531469723e-05,3.640288584666246e-05,8.161493514049853e-05,2.7525898834145945e-05,3.374169808141697e-05,3.536251458186105e-05,3.7557380321074296e-05,1.8762893839724944e-05,1.9588936727947918e-05,2.069398954491641e-05,2.0922744712346976e-05,2.1918816080456862e-05,2.3256922842141587e-05 +2082,"Gallium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,1.3482372551076105e-06,2.8552143342636605e-06,5.560730450882534e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.624880291425988e-07,1.0904366218626456e-06,2.1191501798676825e-06,7.887555648192416e-07,1.5790949352030876e-06,3.0950802861818216e-06,0.0,0.0,0.0,1.8575593568433102e-06,2.0235419452431817e-06,2.2582184727294046e-06,1.2916496446652945e-06,1.4058609157524316e-06,1.5673504481047376e-06 +2083,"Aluminium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0043432679258325856,0.009197906964880468,0.01791356982518854,0.002923252545074641,0.006202876190462579,0.012415930223348349,0.00292181621441015,0.006202339475652525,0.012461193427027683,0.002940972498827563,0.006483256877457147,0.013052416432915461,0.0014898782808161976,0.003512778141652566,0.006826719023921182,0.0025427442013931916,0.0050908989955912535,0.009977288251066713,0.0,0.0,0.0,0.005987741637928575,0.006522673009411957,0.0072789746366528334,0.004160974189310644,0.004528899154940273,0.005049128288849301 +2084,"Strontium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,4.464504093026597e-08,3.170046521558762e-07,7.158584568826277e-07,4.7172913726292024e-08,3.2175055268191814e-07,7.250328602970214e-07,4.469822583953315e-08,3.6660754436705496e-07,8.749177597709028e-07,4.9343465637074986e-08,3.2222282077365474e-07,6.80633308370961e-07,5.281053917627271e-08,2.24951226591462e-07,4.5679143123933006e-07,0.0,0.0,0.0,3.2661224446398413e-07,3.4271649981944815e-07,3.645385870836346e-07,5.166941672820539e-07,5.427720973132128e-07,5.78236681430152e-07 +2085,"Iron, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.017996115335256163,0.5779681503681008,0.7918456087574828,0.0,0.0,0.0,0.11839258698229803,0.1249680315092311,0.13410358995373312,0.0,0.0,0.0 +2086,"Chromium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039807967624307973,0.0015722733831888612,0.0037962911265037786,0.0,0.0,0.0,0.003336727436315135,0.0034997458414294555,0.0037217073474920133,0.0,0.0,0.0 +2087,"Titanium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000519549149099824,0.0007015734301108799,0.0012561149884958726,0.0,0.0,0.0,0.0005485460345688993,0.0005898770033911333,0.0006464036598563569,0.0,0.0,0.0 +2088,"Zirconium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.32960215815483e-05,9.977052980326974e-05,0.00018034476982489072,0.0,0.0,0.0,8.013358167756485e-05,8.611469943167234e-05,9.42996542929613e-05,0.0,0.0,0.0 +2089,"Platinum, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0780700824339334e-08,2.0699295117234323e-08,5.850943148187687e-08,0.0,0.0,0.0,4.525721540060423e-08,5.1574734093586386e-08,6.070543363057633e-08,0.0,0.0,0.0 +2090,"Palladium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.181909047706669e-09,1.849093603609127e-08,4.843649336439282e-08,0.0,0.0,0.0,3.7305052234981795e-08,4.192609708440093e-08,4.857030643619636e-08,0.0,0.0,0.0 +2091,"Rhodium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3709531220687867e-09,2.6157116114669765e-09,7.474901862132144e-09,0.0,0.0,0.0,5.78346880969409e-09,6.603921464042664e-09,7.790469591256716e-09,0.0,0.0,0.0 +2092,"Nickel, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11060192464395839,0.11135194070990428,0.11284125366643208,0.0,0.0,0.0,0.002161393943900846,0.0022716749184575865,0.002422402588184291,0.0,0.0,0.0 +2093,"Gold, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1096653085774813e-06,2.491718130397515e-06,4.4072745009015e-06,0.0,0.0,0.0,2.598081824386808e-06,2.7245788717495583e-06,2.8961420439716737e-06,0.0,0.0,0.0 +2094,"Copper, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.058260156306429924,0.0602307597580183,0.06386163652965862,0.0,0.0,0.0,0.005296851523997078,0.005577718163206387,0.0059610323198897005,0.0,0.0,0.0 +2095,"Magnesium, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.746702807399872e-05,0.00013984227952443433,0.0002333733254649163,0.0,0.0,0.0,0.00012830054370412976,0.00013454629493929576,0.00014303419336430704,0.0,0.0,0.0 +2096,"Tin, in ground","('natural resource', 'in ground')",natural resource,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8717598081765383e-06,7.388641077789491e-06,1.7752522798047013e-05,0.0,0.0,0.0,1.6074758741998313e-05,1.6842589080375817e-05,1.788074760759276e-05,0.0,0.0,0.0 +2097,"Carbon dioxide, non-fossil, from calcination","('air',)",emission,kilogram,biosphere3,0.0,0.0,0.0,0.0,0.0,0.0,3.971522899847687e-05,0.00010560943549078601,0.0001974578972090938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/data/results/brightway2-project-REM_aggregatedLCIs-backup.02-February-2022-07-01AM.tar.gz b/data/results/brightway2-project-REM_aggregatedLCIs-backup.02-February-2022-07-01AM.tar.gz new file mode 100644 index 0000000..d4735f7 Binary files /dev/null and b/data/results/brightway2-project-REM_aggregatedLCIs-backup.02-February-2022-07-01AM.tar.gz differ diff --git a/data/results/software_bw_LCIA-results.csv b/data/results/software_bw_LCIA-results.csv new file mode 100644 index 0000000..7c9c7fd --- /dev/null +++ b/data/results/software_bw_LCIA-results.csv @@ -0,0 +1,19 @@ +,index,amount,unit,reference product,name,location,database,CML 2001 (obsolete) | eutrophication potential | average European,CML 2001 (obsolete) | acidification potential | average European,CML 2001 (obsolete) | photochemical oxidation (summer smog) | high NOx POCP,CML 2001 (obsolete) | climate change | GWP 100a,CML 2001 (obsolete) | ionising radiation | ionising radiation,CML 2001 (obsolete) | freshwater aquatic ecotoxicity | FAETP infinite,CML 2001 (obsolete) | stratospheric ozone depletion | ODP steady state,CML 2001 (obsolete) | human toxicity | HTP infinite +0,"NdO from solvent extraction, primary, Hi-tech | REO solvent extraction, Hi-tech_1 | | kilogram | REM_replicated_2_2",0.395096026,kilogram,"NdO from solvent extraction, primary, Hi-tech","REO solvent extraction, Hi-tech_1",,REM_replicated_2_2,0.12057991016321322,0.1387649051916659,0.005343773462873647,12.367419057956301,3.9243215947511154e-08,2.7046389969439204,2.479144497598147e-06,35.01870350549211 +1,"NdO from solvent extraction, baseline | REO solvent extraction, baseline_1 | | kilogram | REM_replicated_2_2",0.395096026,kilogram,"NdO from solvent extraction, baseline","REO solvent extraction, baseline_1",,REM_replicated_2_2,0.1460770601826641,0.1711177308173618,0.006540802885591689,13.814162182804356,4.1034062890249364e-08,2.998434791655305,2.675438727740599e-06,140.2443844397896 +2,"NdO from solvent extraction, Low-tech | REO solvent extraction, Low-tech_1 | | kilogram | REM_replicated_2_2",0.395096026,kilogram,"NdO from solvent extraction, Low-tech","REO solvent extraction, Low-tech_1",,REM_replicated_2_2,0.1830323931179033,0.2225708273457156,0.008452374230002278,15.87300968013694,4.348898561972923e-08,3.4628183560671535,2.9538552402145632e-06,322.76748275015274 +3,"Magnetised NdFeB magnet, recycled, hand picking | Pulse magnetising and testing of magnet, recycled, hand picking | | kilogram | REM_replicated_2_2",1.0,kilogram,"Magnetised NdFeB magnet, recycled, hand picking","Pulse magnetising and testing of magnet, recycled, hand picking",,REM_replicated_2_2,0.0076455877088454265,0.026794166219766633,0.0010773498313080207,3.2468100109588924,2.9583999463524234e-08,5.259220209857412,9.336325296916372e-08,3.568362721565161 +4,"Magnetised NdFeB magnet, recycled, shredded | Pulse magnetising and testing of magnet, recycling, shredded | | kilogram | REM_replicated_2_2",1.0,kilogram,"Magnetised NdFeB magnet, recycled, shredded","Pulse magnetising and testing of magnet, recycling, shredded",,REM_replicated_2_2,0.03179097251966495,0.20628348989838774,0.008332134190152564,9.993123094450006,7.893343971887153e-08,11.232486263880176,8.441511848194765e-07,27.857173420953405 +5,"Magnetised NdFeB magnet, primary, baseline | pulse magnetising and testing of magnet, primary, baseline | | kilogram | REM_replicated_2_2",1.0,kilogram,"Magnetised NdFeB magnet, primary, baseline","pulse magnetising and testing of magnet, primary, baseline",,REM_replicated_2_2,0.18884891792212244,0.44016869473101783,0.01715007470908967,26.46512742286829,5.10924455235186e-08,13.883335695215058,2.5892328960331406e-06,148.45917133863585 +6,"NdO from solvent extraction, primary, Hi-tech | REO solvent extraction, Hi-tech_1 | | kilogram | REM2_2",0.395096026,kilogram,"NdO from solvent extraction, primary, Hi-tech","REO solvent extraction, Hi-tech_1",,REM2_2,0.12057991016321322,0.1387649051916659,0.005343773462873647,12.367419057956301,3.9243215947511154e-08,2.7046389969439204,2.479144497598147e-06,35.01870350549211 +7,"NdO from solvent extraction, baseline | REO solvent extraction, baseline_1 | | kilogram | REM2_2",0.395096026,kilogram,"NdO from solvent extraction, baseline","REO solvent extraction, baseline_1",,REM2_2,0.1460770601826641,0.1711177308173618,0.006540802885591689,13.814162182804356,4.1034062890249364e-08,2.998434791655305,2.675438727740599e-06,140.2443844397896 +8,"NdO from solvent extraction, Low-tech | REO solvent extraction, Low-tech_1 | | kilogram | REM2_2",0.395096026,kilogram,"NdO from solvent extraction, Low-tech","REO solvent extraction, Low-tech_1",,REM2_2,0.1830323931179033,0.2225708273457156,0.008452374230002278,15.87300968013694,4.348898561972923e-08,3.4628183560671535,2.9538552402145632e-06,322.76748275015274 +9,"Magnetised NdFeB magnet, recycled, hand picking | Pulse magnetising and testing of magnet, recycled, hand picking | | kilogram | REM2_2",1.0,kilogram,"Magnetised NdFeB magnet, recycled, hand picking","Pulse magnetising and testing of magnet, recycled, hand picking",,REM2_2,0.01757866718487554,0.17427750962175648,0.007492123071636957,4.253672994438616,3.379839580635886e-08,9.761013638544586,1.5652966875730455e-07,11.013392889058768 +10,"Magnetised NdFeB magnet, recycled, shredded | Pulse magnetising and testing of magnet, recycling, shredded | | kilogram | REM2_2",1.0,kilogram,"Magnetised NdFeB magnet, recycled, shredded","Pulse magnetising and testing of magnet, recycling, shredded",,REM2_2,0.0323602235770062,0.20788169559886058,0.00901118478744715,10.213072366857418,7.893343971887153e-08,11.232673044781947,8.441511848194765e-07,28.124507042976788 +11,"Magnetised NdFeB magnet, primary, baseline | pulse magnetising and testing of magnet, primary, baseline | | kilogram | REM2_2",1.0,kilogram,"Magnetised NdFeB magnet, primary, baseline","pulse magnetising and testing of magnet, primary, baseline",,REM2_2,0.18954073190507523,0.4421110030270904,0.017975328684962766,26.73243299960703,5.1092445523518604e-08,13.88356269108609,2.5892328960331406e-06,148.78406337957995 +12,"NdO from solvent extraction, primary, Hi-tech | REO solvent extraction, Hi-tech_1 | | kilogram | REM_unlinked_2_2",0.395096026,kilogram,"NdO from solvent extraction, primary, Hi-tech","REO solvent extraction, Hi-tech_1",,REM_unlinked_2_2,0.1205799101632132,0.13876490519166584,0.005343773462873646,12.3674190579563,3.9243215947511154e-08,2.7046389969439213,2.4791444975981476e-06,35.018703505492105 +13,"NdO from solvent extraction, baseline | REO solvent extraction, baseline_1 | | kilogram | REM_unlinked_2_2",0.395096026,kilogram,"NdO from solvent extraction, baseline","REO solvent extraction, baseline_1",,REM_unlinked_2_2,0.1460770601826641,0.1711177308173618,0.006540802885591689,13.814162182804354,4.1034062890249364e-08,2.9984347916553022,2.675438727740599e-06,140.2443844397896 +14,"NdO from solvent extraction, Low-tech | REO solvent extraction, Low-tech_1 | | kilogram | REM_unlinked_2_2",0.395096026,kilogram,"NdO from solvent extraction, Low-tech","REO solvent extraction, Low-tech_1",,REM_unlinked_2_2,0.1830323931179033,0.2225708273457156,0.008452374230002278,15.87300968013694,4.348898561972923e-08,3.4628183560671535,2.953855240214563e-06,322.76748275015274 +15,"Magnetised NdFeB magnet, recycled, hand picking | Pulse magnetising and testing of magnet, recycled, hand picking | | kilogram | REM_unlinked_2_2",1.0,kilogram,"Magnetised NdFeB magnet, recycled, hand picking","Pulse magnetising and testing of magnet, recycled, hand picking",,REM_unlinked_2_2,0.017009416127534288,0.17267930392128367,0.006813072474342369,4.033723722031202,3.379839580635886e-08,9.760826857642815,1.5652966875730455e-07,10.746059267035381 +16,"Magnetised NdFeB magnet, recycled, shredded | Pulse magnetising and testing of magnet, recycling, shredded | | kilogram | REM_unlinked_2_2",1.0,kilogram,"Magnetised NdFeB magnet, recycled, shredded","Pulse magnetising and testing of magnet, recycling, shredded",,REM_unlinked_2_2,0.03179097251966495,0.20628348989838774,0.008332134190152565,9.993123094450004,7.893343971887153e-08,11.232486263880169,8.441511848194761e-07,27.8571734209534 +17,"Magnetised NdFeB magnet, primary, baseline | pulse magnetising and testing of magnet, primary, baseline | | kilogram | REM_unlinked_2_2",1.0,kilogram,"Magnetised NdFeB magnet, primary, baseline","pulse magnetising and testing of magnet, primary, baseline",,REM_unlinked_2_2,0.18884891792212233,0.44016869473101783,0.01715007470908967,26.46512742286829,5.109244552351862e-08,13.883335695215054,2.5892328960331393e-06,148.4591713386358 diff --git a/data/results/software_editedCMLCA_LCIA-results.csv b/data/results/software_editedCMLCA_LCIA-results.csv new file mode 100644 index 0000000..a2f76c5 --- /dev/null +++ b/data/results/software_editedCMLCA_LCIA-results.csv @@ -0,0 +1,10 @@ +File,Nd LCA v34_strip20200406+raw22+CML2001_econAllocREO-electroplating-primaryNickel.lca,,,,,,,, +Resolution,7 digits,,,,,,,, +&Reference = None,,,,,,,,, +Label,Name,"[C2] CML 2001, eutrophication potential, average European[RER] (kg NOx-Eq)","[C14] CML 2001, acidification potential, average European[RER] (kg SO2-Eq)","[C17] CML 2001, photochemical oxidation (summer smog), high NOx POCP[RER] (kg ethylene-Eq)","[C22] CML 2001, climate change, GWP 100a[GLO] (kg CO2-Eq)","[C30] CML 2001, ionising radiation, ionising radiation[GLO] (DALYs)","[C38] CML 2001, freshwater aquatic ecotoxicity, FAETP infinite[GLO] (kg 1,4-DCB-Eq)","[C46] CML 2001, stratospheric ozone depletion, ODP steady state[GLO] (kg CFC-11-Eq)","[C50] CML 2001, human toxicity, HTP infinite[GLO] (kg 1,4-DCB-Eq)" +[A1],"baseline, primary, NdFeB magnet",0.1892194,0.4409249,0.01717864,26.48635,5.11E-08,13.9037,2.59E-06,148.3975 +[A2],Recycled NdFeB magnet via hand picking,0.0170463,0.173258,0.00683589,4.03699,3.38E-08,9.78102,1.57E-07,10.77481 +[A3],"Output of [G4116] NdO from solvent extraction, primary, Hi-tech",0.1208744,0.1389178,0.005348716,12.38273,3.92E-08,2.704858,2.48E-06,35.02097 +[A4],recycled NdFeB magnet via shredding,0.03182789,0.2068606,0.008355063,9.99697,7.90E-08,11.25264,8.44E-07,27.88272 +[A5],"Output of [G4097] NdO from solvent extraction, baseline",0.1464485,0.1713153,0.006547189,13.83331,4.10E-08,2.998565,2.68E-06,140.1453 +[A6],"Output of [G4133] NdO from solvent extraction, Low-tech",0.1836189,0.2228583,0.008461577,15.90579,4.35E-08,3.465054,2.96E-06,323.0595 diff --git a/data/results/versions_CML_LCIA-results.csv b/data/results/versions_CML_LCIA-results.csv new file mode 100644 index 0000000..ddda113 --- /dev/null +++ b/data/results/versions_CML_LCIA-results.csv @@ -0,0 +1,31 @@ +,index,amount,unit,reference product,name,location,database,CML 2001 (obsolete) | eutrophication potential | average European,CML 2001 (obsolete) | acidification potential | average European,CML 2001 (obsolete) | photochemical oxidation (summer smog) | high NOx POCP,CML 2001 (obsolete) | climate change | GWP 100a,CML 2001 (obsolete) | ionising radiation | ionising radiation,CML 2001 (obsolete) | freshwater aquatic ecotoxicity | FAETP infinite,CML 2001 (obsolete) | stratospheric ozone depletion | ODP steady state,CML 2001 (obsolete) | human toxicity | HTP infinite +0,"Magnetised NdFeB magnet, recycled, hand picking | Pulse magnetising and testing of magnet, recycled, hand picking | | kilogram | REM2_2",1.0,kilogram,"Magnetised NdFeB magnet, recycled, hand picking","Pulse magnetising and testing of magnet, recycled, hand picking",,REM2_2,0.017578667184875524,0.1742775096217564,0.007492123071636956,4.253672994438617,3.379839580635891e-08,9.76101363854459,1.5652966875730463e-07,11.013392889058764 +1,"Magnetised NdFeB magnet, recycled, shredded | Pulse magnetising and testing of magnet, recycling, shredded | | kilogram | REM2_2",1.0,kilogram,"Magnetised NdFeB magnet, recycled, shredded","Pulse magnetising and testing of magnet, recycling, shredded",,REM2_2,0.0323602235770062,0.20788169559886058,0.009011184787447153,10.213072366857416,7.893343971887165e-08,11.232673044781974,8.441511848194757e-07,28.124507042976784 +2,"Magnetised NdFeB magnet, primary, baseline | pulse magnetising and testing of magnet, primary, baseline | | kilogram | REM2_2",1.0,kilogram,"Magnetised NdFeB magnet, primary, baseline","pulse magnetising and testing of magnet, primary, baseline",,REM2_2,0.18954073190507498,0.44211100302709017,0.01797532868496276,26.73243299960702,5.109244552351876e-08,13.88356269108608,2.5892328960331398e-06,148.7840633795799 +3,"Magnetised NdFeB magnet, recycled, hand picking | Pulse magnetising and testing of magnet, recycled, hand picking | | kilogram | REM3_1",1.0,kilogram,"Magnetised NdFeB magnet, recycled, hand picking","Pulse magnetising and testing of magnet, recycled, hand picking",,REM3_1,0.020688868086334637,0.17644670980088528,0.007600453610310277,4.8461632769443685,2.2652170036057724e-08,10.472813877144002,2.5084445529080203e-07,12.228340823175028 +4,"Magnetised NdFeB magnet, recycled, shredded | Pulse magnetising and testing of magnet, recycling, shredded | | kilogram | REM3_1",1.0,kilogram,"Magnetised NdFeB magnet, recycled, shredded","Pulse magnetising and testing of magnet, recycling, shredded",,REM3_1,0.03650678672084549,0.21329923595311187,0.009305126720685472,11.306687720031139,5.54434696503131e-08,12.137230231660608,1.2281008052977497e-06,29.723972286038844 +5,"Magnetised NdFeB magnet, primary, baseline | pulse magnetising and testing of magnet, primary, baseline | | kilogram | REM3_1",1.0,kilogram,"Magnetised NdFeB magnet, primary, baseline","pulse magnetising and testing of magnet, primary, baseline",,REM3_1,0.19431910762440296,0.4268693583554546,0.01741743441885762,27.16089027705592,4.7739710335570746e-08,14.143053177815071,3.2590055715345558e-06,149.95432047230045 +6,"Magnetised NdFeB magnet, recycled, hand picking | Pulse magnetising and testing of magnet, recycled, hand picking | | kilogram | REM3_2",1.0,kilogram,"Magnetised NdFeB magnet, recycled, hand picking","Pulse magnetising and testing of magnet, recycled, hand picking",,REM3_2,0.018593852601076433,0.1562130209614495,0.006805580442476378,4.395894562748593,2.680506395506824e-08,10.00602266042245,2.293791028176884e-07,11.189332475867058 +7,"Magnetised NdFeB magnet, recycled, shredded | Pulse magnetising and testing of magnet, recycling, shredded | | kilogram | REM3_2",1.0,kilogram,"Magnetised NdFeB magnet, recycled, shredded","Pulse magnetising and testing of magnet, recycling, shredded",,REM3_2,0.03404116712313682,0.19209931695361354,0.00846584451205299,10.41868495650557,6.345922394425391e-08,12.022870624265266,1.1548712753143183e-06,28.69589859585578 +8,"Magnetised NdFeB magnet, primary, baseline | pulse magnetising and testing of magnet, primary, baseline | | kilogram | REM3_2",1.0,kilogram,"Magnetised NdFeB magnet, primary, baseline","pulse magnetising and testing of magnet, primary, baseline",,REM3_2,0.1816949152006567,0.34564287653600767,0.014348499596211574,26.70705791556162,3.688502811269821e-08,14.890578926173076,3.0722546309106207e-06,149.83585223411717 +9,"Magnetised NdFeB magnet, recycled, hand picking | Pulse magnetising and testing of magnet, recycled, hand picking | | kilogram | REM3_3",1.0,kilogram,"Magnetised NdFeB magnet, recycled, hand picking","Pulse magnetising and testing of magnet, recycled, hand picking",,REM3_3,0.01866360152918748,0.1564785522690689,0.006823608221243606,4.403304449689046,2.6726634736631974e-08,9.977734793980769,2.332795364978394e-07,11.254607412611064 +10,"Magnetised NdFeB magnet, recycled, shredded | Pulse magnetising and testing of magnet, recycling, shredded | | kilogram | REM3_3",1.0,kilogram,"Magnetised NdFeB magnet, recycled, shredded","Pulse magnetising and testing of magnet, recycling, shredded",,REM3_3,0.03419958672337554,0.19252279003934686,0.008497470104776906,10.428753243846858,6.301352265618049e-08,11.877527363658645,1.157068272975439e-06,28.808432193754197 +11,"Magnetised NdFeB magnet, primary, baseline | pulse magnetising and testing of magnet, primary, baseline | | kilogram | REM3_3",1.0,kilogram,"Magnetised NdFeB magnet, primary, baseline","pulse magnetising and testing of magnet, primary, baseline",,REM3_3,0.1822276118783914,0.346099180615969,0.014371135201332137,26.647713312542123,3.5855505014106174e-08,15.404163031349398,3.05783930549656e-06,150.25394748727535 +12,"Magnetised NdFeB magnet, recycled, hand picking | Pulse magnetising and testing of magnet, recycled, hand picking | | kilogram | REM3_4",1.0,kilogram,"Magnetised NdFeB magnet, recycled, hand picking","Pulse magnetising and testing of magnet, recycled, hand picking",,REM3_4,0.020748936032892098,0.1586123371315589,0.006902990320020241,5.199713089124579,7.13983442028665e-09,10.080764729738993,1.9127822324461598e-07,11.383761511956994 +13,"Magnetised NdFeB magnet, recycled, shredded | Pulse magnetising and testing of magnet, recycling, shredded | | kilogram | REM3_4",1.0,kilogram,"Magnetised NdFeB magnet, recycled, shredded","Pulse magnetising and testing of magnet, recycling, shredded",,REM3_4,0.039026297418559286,0.1974272908703614,0.008670398588476435,12.1413372080527,2.1017070044921752e-08,12.154477935888533,1.1022389772354288e-06,29.188529029364165 +14,"Magnetised NdFeB magnet, primary, baseline | pulse magnetising and testing of magnet, primary, baseline | | kilogram | REM3_4",1.0,kilogram,"Magnetised NdFeB magnet, primary, baseline","pulse magnetising and testing of magnet, primary, baseline",,REM3_4,0.18348838668819037,0.3439559346852783,0.014262992138162393,26.626614677505582,3.518182569206749e-08,14.777555918201351,3.1257629290416498e-06,150.30688360054543 +15,"Magnetised NdFeB magnet, recycled, hand picking | Pulse magnetising and testing of magnet, recycled, hand picking | | kilogram | REM3_5",1.0,kilogram,"Magnetised NdFeB magnet, recycled, hand picking","Pulse magnetising and testing of magnet, recycled, hand picking",,REM3_5,0.020288848738906337,0.15373268013682914,0.006656739362544942,3.956167209368185,2.9926807272571446e-08,10.049229099807908,2.7681361271736425e-07,11.466872122372955 +16,"Magnetised NdFeB magnet, recycled, shredded | Pulse magnetising and testing of magnet, recycling, shredded | | kilogram | REM3_5",1.0,kilogram,"Magnetised NdFeB magnet, recycled, shredded","Pulse magnetising and testing of magnet, recycling, shredded",,REM3_5,0.03822402638418232,0.18709350621261842,0.008144250177696866,9.435431512746423,7.00124921650395e-08,12.051449454574751,1.2829478885451367e-06,29.267032731947154 +17,"Magnetised NdFeB magnet, primary, baseline | pulse magnetising and testing of magnet, primary, baseline | | kilogram | REM3_5",1.0,kilogram,"Magnetised NdFeB magnet, primary, baseline","pulse magnetising and testing of magnet, primary, baseline",,REM3_5,0.1888198482846852,0.3316661347506759,0.013661714606275804,25.007996256344516,3.573913969309474e-08,15.003800825033105,3.1209616426166614e-06,156.07586797741646 +18,"Magnetised NdFeB magnet, recycled, hand picking | Pulse magnetising and testing of magnet, recycled, hand picking | | kilogram | REM3_6",1.0,kilogram,"Magnetised NdFeB magnet, recycled, hand picking","Pulse magnetising and testing of magnet, recycled, hand picking",,REM3_6,0.01953289148382947,0.17507957280335157,0.007523614720521707,3.4047240525603404,3.356958046340119e-08,37.42997122315958,3.1578656980382335e-07,18.73594475307199 +19,"Magnetised NdFeB magnet, recycled, shredded | Pulse magnetising and testing of magnet, recycling, shredded | | kilogram | REM3_6",1.0,kilogram,"Magnetised NdFeB magnet, recycled, shredded","Pulse magnetising and testing of magnet, recycling, shredded",,REM3_6,0.03309402211538928,0.20002426881039753,0.008656269621619282,7.948947868449656,7.702756027641697e-08,40.0178684624537,1.3182733449593533e-06,37.57777849640335 +20,"Magnetised NdFeB magnet, primary, baseline | pulse magnetising and testing of magnet, primary, baseline | | kilogram | REM3_6",1.0,kilogram,"Magnetised NdFeB magnet, primary, baseline","pulse magnetising and testing of magnet, primary, baseline",,REM3_6,0.18937123386241808,0.3638471751154113,0.01460759852649355,24.962832471138956,3.360473823587496e-08,45.517198688248016,2.9569158335353487e-06,167.76881988494338 +21,"NdO from solvent extraction, primary, Hi-tech | REO solvent extraction, Hi-tech_1 | | kilogram | REM2_2",0.395096026,kilogram,"NdO from solvent extraction, primary, Hi-tech","REO solvent extraction, Hi-tech_1",,REM2_2,0.1205799101632133,0.13876490519166593,0.0053437734628736504,12.367419057956303,3.924321594751124e-08,2.7046389969439266,2.4791444975981464e-06,35.018703505492105 +22,"NdO from solvent extraction, baseline | REO solvent extraction, baseline_1 | | kilogram | REM2_2",0.395096026,kilogram,"NdO from solvent extraction, baseline","REO solvent extraction, baseline_1",,REM2_2,0.1460770601826644,0.17111773081736198,0.006540802885591692,13.814162182804365,4.103406289024943e-08,2.998434791655309,2.6754387277405997e-06,140.24438443978954 +23,"NdO from solvent extraction, Low-tech | REO solvent extraction, Low-tech_1 | | kilogram | REM2_2",0.395096026,kilogram,"NdO from solvent extraction, Low-tech","REO solvent extraction, Low-tech_1",,REM2_2,0.1830323931179033,0.2225708273457156,0.00845237423000228,15.873009680136944,4.348898561972927e-08,3.4628183560671566,2.953855240214561e-06,322.7674827501527 +24,"NdO from solvent extraction, primary, Hi-tech | REO solvent extraction, Hi-tech_1 | | kilogram | REM3_6",0.395096026,kilogram,"NdO from solvent extraction, primary, Hi-tech","REO solvent extraction, Hi-tech_1",,REM3_6,0.12583064444139497,0.12649491753808179,0.004509000054604037,12.106192653181935,2.6536685583947267e-08,5.671727541425377,2.8386840197741743e-06,40.36399574883316 +25,"NdO from solvent extraction, baseline | REO solvent extraction, baseline_1 | | kilogram | REM3_6",0.395096026,kilogram,"NdO from solvent extraction, baseline","REO solvent extraction, baseline_1",,REM3_6,0.15163258962382206,0.1582576141445119,0.0056561841676095095,13.541565404159225,2.86088966918399e-08,6.1274248808406115,3.0782191700645133e-06,145.90533038729234 +26,"NdO from solvent extraction, Low-tech | REO solvent extraction, Low-tech_1 | | kilogram | REM3_6",0.395096026,kilogram,"NdO from solvent extraction, Low-tech","REO solvent extraction, Low-tech_1",,REM3_6,0.18900837469796372,0.20888603469191436,0.007495438147864733,15.585558913576754,3.1554904539615246e-08,6.811686449632202,3.4204318313037615e-06,328.85262795904896 +27,"NdO from solvent extraction, primary, Hi-tech | REO solvent extraction, Hi-tech_1 | | kilogram | REM3_5",0.395096026,kilogram,"NdO from solvent extraction, primary, Hi-tech","REO solvent extraction, Hi-tech_1",,REM3_5,0.1279000848473851,0.12305767413476293,0.004681380347696235,12.327018042184674,2.9155199100875595e-08,2.993351100807364,3.022852702628331e-06,36.4560826180262 +28,"NdO from solvent extraction, baseline | REO solvent extraction, baseline_1 | | kilogram | REM3_5",0.395096026,kilogram,"NdO from solvent extraction, baseline","REO solvent extraction, baseline_1",,REM3_5,0.15371455408718304,0.15473175536422953,0.00586040701927281,13.778250035826922,3.14131378058624e-08,3.3117526757847187,3.2750954137287757e-06,141.78128915666994 +29,"NdO from solvent extraction, Low-tech | REO solvent extraction, Low-tech_1 | | kilogram | REM3_5",0.395096026,kilogram,"NdO from solvent extraction, Low-tech","REO solvent extraction, Low-tech_1",,REM3_5,0.19110129534105708,0.20525516369911528,0.007746552718776362,15.84513423596156,3.462360513824102e-08,3.8095486443889626,3.635904226263942e-06,324.4329340595378 diff --git a/eiVersions.py b/eiVersions.py new file mode 100644 index 0000000..ca7ed38 --- /dev/null +++ b/eiVersions.py @@ -0,0 +1,172 @@ +# -*- coding: utf-8 -*- +""" +Versions dictionary indexed by the name of intermediate exchanges in +ecoinvent v2.2, in CMLCA format. + +Created on Wed Aug 26 10:59:11 2020 + +@author: xicotencatlbm +""" + +#%% +from pathlib import Path +import pandas as pd +import numpy as np + +cf3_0 = 'correspondence_file_intermediate-exchangesv2.2_to_v3.0_20130904.xlsx' + +ef3_1 = 'activity_overview_for_users_3.1_cut-off.xlsx' + +cf3_2 = 'ecoinvent_correspondence_file_eiv3_1_to_eiv3_2_updated20151214_2.xlsx' +cf3_3 = 'ecoinvent_correspondence_file_eiv3.2_to_eiv3.3_final.xlsx' +cf3_4 = 'correspondence_file_eiv3.3_to_eiv3.4_20170921_final.xlsx' +cf3_5 = 'correspondence_file_eiv3.4_to_eiv3.5_20181008.xlsx' +cf3_6 = 'correspondence_file_eiv3.5_to_eiv3.6_2.xlsx' + +columns = ['activityID', 'product name', 'activityName', 'geography', 'unit'] + +#%% Custom dictionary to overwrite the secondary Ni ei correspondence. +customNi = {('nickel, secondary, from electronic and electric scrap recycling' + ', at refinery[SE]', 'kg'): + ('nickel, 99.5%, at plant[GLO]','kg')} + +#%% Correspondence dictionary ei v2.2 CMLCA - v3.1 bw. + +file = Path.cwd()/'data/correspondenceFiles'/cf3_0 +df = pd.read_excel(file).replace('(missing)', value=np.nan).dropna( + subset=['PRODUCT NAME v2.2']).rename( + columns= {'ACTIVITY NAME v3':'activityName', + 'PRODUCT NAME v3':'product name', + 'Unit':'unit', + 'Location':'geography'}) +df['CMLCAstringV2.2'] = df['PRODUCT NAME v2.2'] + '[' + df['geography'] + ']' + + +file = Path.cwd()/'data/correspondenceFiles'/ef3_1 +df3_1 = pd.read_excel(file, sheet_name='activity overview').rename( + columns={'activity id': 'activityID'}) + +# Create a correspondence dicionary indexed by the name and location in eiv2.2 +# in CMLCA format, ignoring the intermediate exchanges with changes of unit or +# location. + +cd3_1 = df.loc[ + df['Geographical area changed to:'].isna() + & df['Unit changed to:'].isna() + ].merge(df3_1)[columns + ['CMLCAstringV2.2']].set_index( + ['CMLCAstringV2.2','unit']).T.to_dict() + +#%% Correspondence dictionary ei v3.1 - v3.2. +file = Path.cwd()/'data/correspondenceFiles'/cf3_2 +df = pd.read_excel(file, sheet_name='cut-off', header =[1,2]) + +# A dataframe with 10784 direct correspondences. +mask1 = df[(10784,'direct match')]==1 +direct = df.loc[mask1].set_index( + [('eiv3.1','activityID'), ('eiv3.1', 'product name')]).xs( + 'eiv3.2', level=0, axis=1)[columns] + +direct['Matching type'] = 'direct' + + +# A dataframe with 426 indirect correspondences recommended by ecoinvent. +mask2 = df[(827, 'no direct mach available')]==1 +mask3 = df[(767, 'replaced by how many activities')]==1 +indirect = df.loc[mask2 & mask3].set_index( + [('eiv3.1','activityID'), ('eiv3.1', 'product name')]).xs( + 'eiv3.2', level=0, axis=1)[columns] + +indirect['Matching type'] = 'indirect' + +cd3_2 = pd.concat([direct, indirect]).T.to_dict() + +#%% Correspondence dictionary ei v3.2 - v3.3. +file = Path.cwd()/'data/correspondenceFiles'/cf3_3 +df = pd.read_excel(file, sheet_name='cut-off', header =[1,2]) + +mask1 = df[(12490,'direct match')]==1 +direct = df.loc[mask1].set_index( + [('eiv3.2','activityID'), ('eiv3.2', 'product name')]).xs( + 'eiv3.3', level=0, axis=1)[columns] + +direct['Matching type'] = 'direct' + +mask2 = df[(780, 'no direct mach available')]==1 +mask3 = df[(732, 'replaced by how many activities')]==1 + +indirect = df.loc[mask2 & mask3].set_index( + [('eiv3.2','activityID'), ('eiv3.2', 'product name')]).xs( + 'eiv3.3', level=0, axis=1)[columns] + +indirect['Matching type'] = 'indirect' + +cd3_3 = pd.concat([direct, indirect]).T.to_dict() + +#%% Correspondence dictionary ei v3.3 - v3.4. +file = Path.cwd()/'data/correspondenceFiles'/cf3_4 +df = pd.read_excel(file, sheet_name='cut-off', header =[1,2]) + +mask1 = df[(13739,'direct match')]==1 +direct = df.loc[mask1].set_index( + [('eiv3.3','activityID'), ('eiv3.3', 'product name')]).xs( + 'eiv3.4', level=0, axis=1)[columns] + +mask2 = df[(224, 'no direct mach available')]==1 +mask3 = df[(197, 'replaced by how many activities')]==1 + +direct['Matching type'] = 'direct' + +indirect = df.loc[mask2 & mask3].set_index( + [('eiv3.3','activityID'), ('eiv3.3', 'product name')]).xs( + 'eiv3.4', level=0, axis=1)[columns] + +indirect['Matching type'] = 'indirect' + +cd3_4 = pd.concat([direct, indirect]).T.to_dict() + +#%% Correspondence dictionary ei v3.4 - v3.5. +file = Path.cwd()/'data/correspondenceFiles'/cf3_5 +df = pd.read_excel(file, sheet_name='cut-off', header =[1,2]) + +mask1 = df[(14333,'direct match')]==1 +direct = df.loc[mask1].set_index( + [('eiv3.4','activityID'), ('eiv3.4', 'product name')]).xs( + 'eiv3.5', level=0, axis=1)[columns] + +direct['Matching type'] = 'direct' + +mask2 = df[(890, 'no direct mach available')]==1 +mask3 = df[(883, 'replaced by how many activities')]==1 + +indirect = df.loc[mask2 & mask3].set_index( + [('eiv3.4','activityID'), ('eiv3.4', 'product name')]).xs( + 'eiv3.5', level=0, axis=1)[columns] + +indirect['Matching type'] = 'indirect' + +cd3_5 = pd.concat([direct, indirect]).T.to_dict() + +#%% Correspondence dictionary ei v3.5 - v3.6. +# Checkcount = 15646 + +file = Path.cwd()/'data/correspondenceFiles'/cf3_6 +df = pd.read_excel(file, sheet_name='cut-off', header =[0,1]) + +mask1 = df[('eiv3.6','the mapped datasets represent the same dataset')]== 1 +mask2 = df[('eiv3.6','comment')].isna() + +direct = df.loc[mask1 & mask2].set_index( + [('eiv3.5','activityID'), ('eiv3.5', 'product name')]).xs( + 'eiv3.6', level=0, axis=1)[columns] + +direct['Matching type'] = 'direct' + +indirect = df.loc[mask1 & ~mask2].set_index( + [('eiv3.5','activityID'), ('eiv3.5', 'product name')]).xs( + 'eiv3.6', level=0, axis=1)[columns] + +indirect['Matching type'] = 'indirect' + + +cd3_6 = pd.concat([direct, indirect]).T.to_dict() + diff --git a/harmoniseConventions.ipynb b/harmoniseConventions.ipynb new file mode 100644 index 0000000..e224f1d --- /dev/null +++ b/harmoniseConventions.ipynb @@ -0,0 +1,135 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 2. Harmonise conventions between CMLCA and Brightway\n", + "**Choose a supported ecoinvent version and convert from the CMLCA export format to the Brightway import format.** \n", + "\n", + "The infile consists of an XLSX workbook which contains the unit process data with tags to group the rows by process and the allocation information. While CMLCA can automatically export the unit process data, the Excel formulas to group the rows and the allocation information were added manually.\n", + "\n", + "The outfile consists of an XLSX workbook containing the process data compatible with the target version of the ecoinvent database, in a format supported by brightway.\n", + "\n", + "The script assumes that the next XLSX files are already in the `/data/correspondenceFiles` folder:\n", + "\n", + "* Correspondence File for Elementary Exchanges | ecoinvent 2.2 to ecoinvent 3.01\n", + "* Correspondence File for Intermediate Exchanges | ecoinvent 2.2 to ecoinvent 3.01\n", + "* Activity Overview for ecoinvent v3.1, Cut-Off\n", + "* Correspondence File for Intermediate Exchanges | ecoinvent 3.1 to ecoinvent 3.2\n", + "* Correspondence File for Intermediate Exchanges | ecoinvent 3.2 to ecoinvent 3.3\n", + "* Correspondence File for Intermediate Exchanges | ecoinvent 3.3 to ecoinvent 3.4\n", + "* Correspondence File for Intermediate Exchanges | ecoinvent 3.4 to ecoinvent 3.5\n", + "* Correspondence File for Intermediate Exchanges | ecoinvent 3.5 to ecoinvent 3.6\n", + "* Correspondence File for Intermediate Exchanges | ecoinvent 3.6 to ecoinvent 3.7\n", + "\n", + "**These files are not included** in the repository. To the date of submission of the accompanying paper, these files could be retrieved from the ecoinvent website, for each ecoinvent version, navigating from '[Information on ecoinvent 3](https://ecoinvent.org/the-ecoinvent-database/data-releases/).'\n", + "\n", + "![Name and size of the correspondence files, as drawn from the ecoinvent website.](data/correspondenceFiles/00_correspondenceFilesNameAndSize.jpg)\n", + "\n", + "## Reproduce the system models from the original study in Brightway\n", + "**Convert the system model from CMLCA to brightway to reproduce the results by Sprecher et al.(2014)** \n", + "\n", + "In the output file, the `foreground` variable is a string that is combined with the `target` variable. In a later step, the resulting string is parsed from the file generated here as a database name in brightway." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from CMLCAtoBw import convertFromCMLCAeiV2_2\n", + "\n", + "foreground ='REM_replicated_'\n", + "target = '2_2'\n", + "\n", + "convertFromCMLCAeiV2_2(foreground, target, replace2ndNi=False, disconnect=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Generate a modified version that keeps the unintended disconnections for the software comparison\n", + "\n", + "Create a version of the system in which the secondary nickel is replaced by the primary nickel but with the unintended disconections from Sprecher et al. (2014) unfixed." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from CMLCAtoBw import convertFromCMLCAeiV2_2\n", + "\n", + "foreground ='REM_unlinked_'\n", + "target = '2_2'\n", + "\n", + "convertFromCMLCAeiV2_2(foreground, target, replace2ndNi=True, disconnect=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "\n", + "## Generate the modified and corrected version with ecoinvent v2.2 and migrate to the other supported ecoinvent versions \n", + "**Convert from CMLCA to Brightway with two changes compared to the study by Sprecher et al. (2014):**\n", + "* Replacement of the LCI dataset `nickel, secondary, from electronic and electric scrap recycling, at refinery[SE]` with `nickel, 99.5%, at plant[GLO]` in the electroplating process of the short-loop recycling alternative.\n", + "* Correction of the unintended disconnections from the study by Sprecher et al. (2014).\n", + "\n", + "In the output files, the `foreground` variable is a string that is combined with the elements in the `targets` list. In [a later step](BWimport.ipynb), the resulting strings are parsed from the files generated here as database names in Brightway." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "foreground = 'REM'\n", + "targets = ['2_2', '3_1', '3_2', '3_3', '3_4', '3_5', '3_6']\n", + "\n", + "for target in targets:\n", + " convertFromCMLCAeiV2_2(foreground, target, replace2ndNi=True, disconnect=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Expected output files\n", + "\n", + "The nine files generated from the steps above will be automatically stored at `/data/bw-harmonised`.\n", + "\n", + "**CAUTION**: These files are already included in the repository. When running the cells above, the files retrieved from the repository will be overwritten.\n", + "\n", + "![Name and size of the expected files.](data/bw-harmonised/ExpectedOutputfiles.jpg)\n", + "\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/idFunctions.py b/idFunctions.py new file mode 100644 index 0000000..cb9b602 --- /dev/null +++ b/idFunctions.py @@ -0,0 +1,136 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Feb 10 10:37:30 2020 + +Helper functions to identify certain things from the process data. + +@author: xicotencatlbm +""" +from technoMatcher import technoMatch, cd3_1, mcd_ge + +from bioMatcher import biomatcher as bioMatcher + +#%% Function to identify the type of flow + +def typer(label): + if label.startswith('[G'): + return 'technosphere' + elif label.startswith('[W'): + return 'technosphere' + elif label.startswith('[E'): + return 'biosphere' + +#%% Functions to identify the name of any flow and the code if it is a +# biosphere flow. + +def findName (ei22Key, unit, flowType, target_db, disconnect): + try: + if flowType == 'biosphere': + if disconnect==True: + if flowType == 'biosphere': + matchType = bioMatcher.get(ei22Key).get('Matching type') + if matchType == 'semiautomatic' or matchType == 'Manual by BMX': + print("Omitting "+ ei22Key) + else: + cmlcaString = bioMatcher.get(ei22Key).get('CMLCAstring') + return cmlcaString.split('[')[0] + else: + cmlcaString = bioMatcher.get(ei22Key).get('CMLCAstring') + return cmlcaString.split('[')[0] + + elif flowType == 'technosphere' or flowType == 'production': + return technoMatch(ei22Key, unit, target_db).get('activityName') + except AttributeError: + return ei22Key + +def findCode (current, ei22Key, flowType, productDict): + '''Return the flow code of a string marked as technosphere or production, + if it exists''' + if flowType != 'biosphere': + newID = productDict.get(ei22Key) + if newID is not None: + return str(productDict.get(ei22Key)) + else: + return None + else: + return current + +def findUUID (ei22Key, flowType): + '''Return the UUID of a string marked as biosphere type if it exists. If + it doesn't exist, print that no code was found''' + if flowType == 'biosphere': + try: + return bioMatcher.get(ei22Key).get('UUID') + except AttributeError: + print('No code for the environmental flow "' + ei22Key +'" was found.') + +#%% Function to identify the location of a technosphere flow. + +def findLocation (ei22Key, unit, flowType, target_db): + if flowType == 'technosphere': + try: + return technoMatch(ei22Key, unit, target_db).get('geography') + except AttributeError: + return None + +#%% Function to identify the reference product of a process. + +def findRP (ei22Key, unit, flowType, target_db): + if flowType == 'technosphere': + try: + return technoMatch(ei22Key, unit, target_db).get('product name') + except AttributeError: + return None + elif flowType == 'production': + return ei22Key + +#%% Helper function to strip the name of the process +def metaExtract (metadata): + if metadata.startswith('Process'): + return metadata.split(']')[1].strip() + if metadata.startswith(('Description','Author','Date')): + return metadata.split('=')[1].strip() + +def labelExtract (label): + if label.startswith(('Description','Author','Date')): + return label.split('=')[0].strip() + elif label.startswith('Process'): + return 'Activity' + +#%% Function to identify cutt-offs + +def findCut_offs(flowList, dictionaryList): + '''Search listed flows in the technoMatcher dictionary and in the listed + dictionaries. Return a list of flows that are in neither dictionary''' + cut_offs = [] + + for importedName, unit in flowList: + found = False + if importedName in dictionaryList[0]: + print('Flow "', importedName, '"(', unit, + ') was found in the foreground dictionary; process index: ', + dictionaryList[0][importedName] ) + continue + elif importedName in dictionaryList[1]: + print('Flow "', importedName, '"(', unit, + ') was found in the foreground dictionary; process index: ', + dictionaryList[1][importedName] ) + continue + elif(importedName, unit) in mcd_ge: + print('Flow "', importedName, '"(', unit, + '" was found in the background dictionary and ' + 'migrated to the target ecoinvent version using the general ' + 'manual correspondences.') + continue + elif (importedName, unit) in cd3_1: + found = True + print('Flow "', importedName, '"(', unit, + '" was found in the background dictionary and ' + 'migrated to the target ecoinvent version using the ' + 'ecoinvent correspondences') + continue + + # if not found: + if found == False: + cut_offs.append((importedName, unit)) + return cut_offs diff --git a/technoMatcher.py b/technoMatcher.py new file mode 100644 index 0000000..432c561 --- /dev/null +++ b/technoMatcher.py @@ -0,0 +1,178 @@ +# -*- coding: utf-8 -*- +""" +technoMatcher +Based on reformat_20191014, technoMatcher22 34 and 36, and bioMatcher +Created on Sun May 3 09:14:29 2020 + +@author: xicotencatlbm +""" + +#%%Import modules +from eiVersions import cd3_1, cd3_2, cd3_3, cd3_4, cd3_5, cd3_6 +from pathlib import Path +import pandas as pd + +#%% Fetch the customised dictionary with manual correspondences. + +sourceFile = 'processDataCMLCA.xlsx' + +file = Path.cwd()/'data'/sourceFile + +# Create general dictionary with manual correspondences from process data file. +mcd_ge = pd.read_excel(file, sheet_name='manualDict_general', + header=1, + index_col=[0,1]).T.to_dict() + +# cd3_1.update(mcd_ge) + +# note that the mcd_ge doesn't output geography. Then, how does it get matched? +# maybe geography isn't useful at all. Anyway, the output excel does provide that information, so maybe don't input it but read it at the output? +# There are no codes in the output, though. + +#%% Build the customised dictionary with special correspondences + +#I'm here +sp = pd.read_excel(file, sheet_name='customDict', + header = 1, + index_col=[0,1,2]).T.to_dict() + +#temp df +cf3_3 = 'ecoinvent_correspondence_file_eiv3.2_to_eiv3.3_final.xlsx' +file = Path.cwd()/'data/correspondenceFiles'/cf3_3 + +from eiVersions import df3_1 + +df3_1 = df3_1[['activityID', 'activityName', 'geography', 'product name'] + ].set_index(['activityID', 'product name']).T.to_dict() + + +df3_3 = pd.read_excel(file, sheet_name='cut-off', header = 2, + usecols = 'O,P,Q,X', + ).rename(columns={'activityID.1': 'activityID', + 'product name.1': 'product name', + 'activityName.1': 'activityName', + 'geography.1': 'geography'} + ).set_index(['activityID', 'product name']).T.to_dict() + +cf3_4 = 'correspondence_file_eiv3.3_to_eiv3.4_20170921_final.xlsx' +file = Path.cwd()/'data/correspondenceFiles'/cf3_4 + +df3_4 = pd.read_excel(file, sheet_name='cut-off', header = 2, + usecols = 'O,P,Q,X', + ).rename(columns={'activityID.1': 'activityID', + 'product name.1': 'product name', + 'activityName.1': 'activityName', + 'geography.1': 'geography'} + ).set_index(['activityID', 'product name']).T.to_dict() + +cf3_5 = 'correspondence_file_eiv3.4_to_eiv3.5_20181008.xlsx' +file = Path.cwd()/'data/correspondenceFiles'/cf3_5 +df3_5 = pd.read_excel(file, sheet_name='cut-off', header = 2, + usecols = 'O,P,Q,X', + ).rename(columns={'activityID.1': 'activityID', + 'product name.1': 'product name', + 'activityName.1': 'activityName', + 'geography.1': 'geography'} + ).set_index(['activityID', 'product name']).T.to_dict() + +# cd3_1 = {} +# cd3_3 = {} + +#%% Dictionary of correspondences according to database version. +version = {'2_2': 'The matching values will be deducted from the key.', + '3_1': cd3_1, + '3_2': cd3_2, + '3_3': cd3_3, + '3_4': cd3_4, + '3_5': cd3_5, + '3_6': cd3_6 + } + +for from_database, code, subid in sp: + if from_database == '3_2': + df = df3_3 + if from_database == '2_2': + df = df3_1 + if from_database == '3_3': + df = df3_4 + + if from_database == '3_4': + df = df3_5 + + entry = sp[from_database, code, subid] + activityID = sp[from_database, code, subid]['activityID'] + productName = sp[from_database, code, subid]['product name'] + to_database = sp[from_database, code, subid]['database'] + + activityName = df[activityID, productName]['activityName'] + geography = df[activityID, productName]['geography'] + + complement = {'activityName': activityName, + 'geography': geography} + entry.update(complement) + + version[to_database].update({(code,subid): entry}) + + +#%% Dictionary of correspondences according to database version. +# version = {'2_2': 'The matching values will be deducted from the key.', +# '3_1': cd3_1, +# '3_2': cd3_2, +# '3_3': cd3_3, +# '3_4': cd3_4, +# '3_5': cd3_5, +# '3_6': cd3_6} + +# #%% +def technoMatch(CMLCAstring, unit, target): + if target not in list(version): + print('The target ecoinvent version is invalid.') + return None + + subkeys= ['activityID', 'product name'] + key = (CMLCAstring, unit) + + if target == '2_2': + current = '2_2' + try: + product, geography = tuple(CMLCAstring.strip(']').rsplit('[',1)) + + match = {'activityName': product, + 'geography': geography, + 'product name': product, + 'unit': unit} + except ValueError: + match = None + else: + current = '3_1' + + while current != target: + try: + key = tuple(map(version[current][key].get, subkeys)) + except KeyError: + pass + i = list(version).index(current) + 1 + current = list(version)[i] + + if target != '2_2': + match = version[target].get(key) + + return match + +#%% + +test = [('corrugated board, mixed fibre, single wall, at plant[RER]','kg'), + ('transport, lorry >16t, fleet average[RER]','tkm'), + ('corrugated board, recycling fibre, double wall, at plant[RER]','kg'), + ('chlorine, liquid, production mix, at plant[RER]','kg'), + ('transport, lorry 16-32t, EURO3[RER]','tkm')] + +shortList = [] +for v in test: + try: + a = technoMatch(v[0], v[1], '3_4')['activityID'], technoMatch(v[0], v[1], '3_4')['product name'] + shortList.append(a) + except: + pass + +