changeset 7:b0ce669ce794 draft

planemo upload for repository https://github.com/HegemanLab/VKMZ commit 722cd42705f87f2dc11aa6984ae0836ad4ca41a6-dirty
author eslerm
date Thu, 20 Dec 2018 00:36:04 -0500
parents 35b984684450
children a6744d496f03
files README README.md d3.html databases/bmrb-heavy.tsv databases/bmrb-heavy_carbon.tsv databases/bmrb-heavy_nitrogen.tsv databases/bmrb-light.tsv foo.html foo.tsv test-data/d3-test-data.tsv test-data/tabular.tabular vkmz.py vkmz.xml
diffstat 13 files changed, 56 insertions(+), 32902 deletions(-) [+]
line wrap: on
line diff
--- a/README	Tue Jul 10 17:58:35 2018 -0400
+++ b/README	Thu Dec 20 00:36:04 2018 -0500
@@ -1,100 +1,3 @@
-# VKMZ version 1.2.0
-
-VKMZ is a metabolomics prediction and vizualization tool which creates van Krevelen diagrams from mass spectrometry data. A van Krevelen diagram (VKD) plots a molecule on a 2D scatterplot based on the molecule's oxygen to carbon ratio (O:C) against it's hydrogen to carbon ratio (H:C). Classes of metabolites cluster together on a VKD [0]. Plotting a complex mixture of metabolites on a VKD can be used to briefly convey untargeted metabolomics data.
-
-VKMZ attempts to predict a molecular formula for each feature in LC-MS data. Each feature's mass is compared to a database of known formula masses. A prediction is made when a known mass is within the mass error range of an feature's uncharged (neutral) mass. A binary search algorithm is used to quickly make matches. Heristically generated databases for labeled and unlabeled metabolites are included [1]. VKMZ finds all predictions for an observed mass within the mass error. The prediction with the lowest delta (absolute difference between an feature's neutral mass and the predicted mass) is plotted. Features without predictions are discarded. Outputed is saved as a tabular and html file.
-
-This software works best with, accurate, high resolution LC-MS data. A well calibrated LC-MS is essential for correct predictions. It is best to emperically derive mass error etiher from the data or from data using the same methods and spiked standards. Using low resolution data will result in false positive predictions, especially for large mass metabolites.
-
-VKMZ can be used as a command line tool or on the Galaxy web platform [2]. A Galaxy wrapper for VKMZ is maintatined in this repository. VKMZ was developed on the Workflow4Metabolomics version of Galaxy [3].
-
-## Using VKMZ command line
-
-### Input modes
-
-VKMZ has two input modes:
-  1. `xcms` mode reads features from XCMS data
-  2. `tsv` mode reads a specially formatted tabular file
-
-Select a mode by declaring it as the first argument to `vkmz.py`.
-
-> **Example:**
-> ```
-> python vkmz.py xcms [other parameters]
-> ```
-
-Different modes allow different parameters.
-
-### Required parameters
-
-#### xcms mode
-
-xcms mode requires three tabular files generated by XCMS:
-  * `--data-matrix [XCMS_DATA_MATRIX_FILE]`
-  * `--sample-metadata [XCMS_SAMPLE_METADATAFILE]`
-  * `--variable-metadata [XCMS_VARIABLE_METADATAFILE]`
-
-##### xcms mode example:
-```
-python vkmz.py xcms --data-matrix test-data/datamatrix.tabular --sample-metadata test-data/sampleMetadata.tabular --variable-metadata test-data/variableMetadata.tabular [other parameters]
-```
-
-#### tsv mode
-
-tsv mode requires a tabular file of a specific format as input:
-  * `--input [TSV_FILE]`
-
-The first five columns of the input tabular file must be:
->| sample_id | polarity | mz | rt | intensity |
->|-----------|----------|----|----|-----------|
+vkmz v1.4dev1
 
-
-#### All modes
-
-Mass error of LC-MS in parts-per-million:
-  * `--error [PPM_ERROR_NUMBER]`
-    * It is critical to set the mass error correctly
-
-Output name:
-  * `--output [FILENAME]`
-    * A `.tsv` and `.html` file will be generated by VKMZ with the given filename
-
-### Optional parameters
-
-Database:
-  * `--database [DATABASE_FILE_PATH]`
-    * Default is BMRB's monoisotopic heuristically generated database
-    * Path is relative to `--directory`
-
-Directory:
-  * `--directory [TOOL_PATH]`
-    * Explicitly define tool directory
-    * Paths are relative if unset
-    * Affects database and web page template paths
-
-Forced Polarity:
-  * `--polarity [positive|negative]`
-    * Set all features to have either a positive or negative polarity
-    * Overrides input files polarity information
-    * Do not use this parameter on data containing both polarities
-
-Neutral:
-  * `--neutral`
-    * Using this flag disables charged mass adjustment
-    * Without this flag VKMZ adjusts a feature mass by adding or removing that mass of a proton based on the features charged polarity
-
-Unique:
-  * `--unique`
-    * Remove features with multiple predictions from output
-
-## Special thanks to
-
-Adrian, Art, Eric, Jerry, Kevin, Renata, Stephen, Tim, and Yuan.
-
-## Citations
-
-0. Brockman et al. [doi:10.1007/s11306-018-1343-y](https://doi.org/10.1007/s11306-018-1343-y)
-1. Hegeman et al. [doi:10.1021/ac070346t](https://doi.org/10.1021/ac070346t)
-2. [Galaxy Project](https://galaxyproject.org/)
-3. [Workflow4Metabolomics](http://workflow4metabolomics.org/)
-4. Smith et al. [doi:10.1021/ac051437y](https://www.ncbi.nlm.nih.gov/pubmed/16448051)
+vkmz predicts molecular formulas by searching a known mass-formula dictionary for a feature observed by a mass spectrometer. Elemental ratios for predicted-features are calculated to create the carbon-to-oxygen and carbon-to-hydrogen axis of a van Krevelen Diagram (VKD). VKD's are a convenient visualization tool for briefly conveying the constituents of a complex MS mixture (e.g., untargeted plant metabolomics). As output predicted-feature are saved to a tabular file, an interactive VKD web page, and other optional formats.
--- a/README.md	Tue Jul 10 17:58:35 2018 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,100 +0,0 @@
-# VKMZ version 1.2.0
-
-VKMZ is a metabolomics prediction and vizualization tool which creates van Krevelen diagrams from mass spectrometry data. A van Krevelen diagram (VKD) plots a molecule on a 2D scatterplot based on the molecule's oxygen to carbon ratio (O:C) against it's hydrogen to carbon ratio (H:C). Classes of metabolites cluster together on a VKD [0]. Plotting a complex mixture of metabolites on a VKD can be used to briefly convey untargeted metabolomics data.
-
-VKMZ attempts to predict a molecular formula for each feature in LC-MS data. Each feature's mass is compared to a database of known formula masses. A prediction is made when a known mass is within the mass error range of an feature's uncharged (neutral) mass. A binary search algorithm is used to quickly make matches. Heristically generated databases for labeled and unlabeled metabolites are included [1]. VKMZ finds all predictions for an observed mass within the mass error. The prediction with the lowest delta (absolute difference between an feature's neutral mass and the predicted mass) is plotted. Features without predictions are discarded. Outputed is saved as a tabular and html file.
-
-This software works best with, accurate, high resolution LC-MS data. A well calibrated LC-MS is essential for correct predictions. It is best to emperically derive mass error etiher from the data or from data using the same methods and spiked standards. Using low resolution data will result in false positive predictions, especially for large mass metabolites.
-
-VKMZ can be used as a command line tool or on the Galaxy web platform [2]. A Galaxy wrapper for VKMZ is maintatined in this repository. VKMZ was developed on the Workflow4Metabolomics version of Galaxy [3].
-
-## Using VKMZ command line
-
-### Input modes
-
-VKMZ has two input modes:
-  1. `xcms` mode reads features from XCMS data
-  2. `tsv` mode reads a specially formatted tabular file
-
-Select a mode by declaring it as the first argument to `vkmz.py`.
-
-> **Example:**
-> ```
-> python vkmz.py xcms [other parameters]
-> ```
-
-Different modes allow different parameters.
-
-### Required parameters
-
-#### xcms mode
-
-xcms mode requires three tabular files generated by XCMS:
-  * `--data-matrix [XCMS_DATA_MATRIX_FILE]`
-  * `--sample-metadata [XCMS_SAMPLE_METADATAFILE]`
-  * `--variable-metadata [XCMS_VARIABLE_METADATAFILE]`
-
-##### xcms mode example:
-```
-python vkmz.py xcms --data-matrix test-data/datamatrix.tabular --sample-metadata test-data/sampleMetadata.tabular --variable-metadata test-data/variableMetadata.tabular [other parameters]
-```
-
-#### tsv mode
-
-tsv mode requires a tabular file of a specific format as input:
-  * `--input [TSV_FILE]`
-
-The first five columns of the input tabular file must be:
->| sample_id | polarity | mz | rt | intensity |
->|-----------|----------|----|----|-----------|
-
-
-#### All modes
-
-Mass error of LC-MS in parts-per-million:
-  * `--error [PPM_ERROR_NUMBER]`
-    * It is critical to set the mass error correctly
-
-Output name:
-  * `--output [FILENAME]`
-    * A `.tsv` and `.html` file will be generated by VKMZ with the given filename
-
-### Optional parameters
-
-Database:
-  * `--database [DATABASE_FILE_PATH]`
-    * Default is BMRB's monoisotopic heuristically generated database
-    * Path is relative to `--directory`
-
-Directory:
-  * `--directory [TOOL_PATH]`
-    * Explicitly define tool directory
-    * Paths are relative if unset
-    * Affects database and web page template paths
-
-Forced Polarity:
-  * `--polarity [positive|negative]`
-    * Set all features to have either a positive or negative polarity
-    * Overrides input files polarity information
-    * Do not use this parameter on data containing both polarities
-
-Neutral:
-  * `--neutral`
-    * Using this flag disables charged mass adjustment
-    * Without this flag VKMZ adjusts a feature mass by adding or removing that mass of a proton based on the features charged polarity
-
-Unique:
-  * `--unique`
-    * Remove features with multiple predictions from output
-
-## Special thanks to
-
-Adrian, Art, Eric, Jerry, Kevin, Renata, Stephen, Tim, and Yuan.
-
-## Citations
-
-0. Brockman et al. [doi:10.1007/s11306-018-1343-y](https://doi.org/10.1007/s11306-018-1343-y)
-1. Hegeman et al. [doi:10.1021/ac070346t](https://doi.org/10.1021/ac070346t)
-2. [Galaxy Project](https://galaxyproject.org/)
-3. [Workflow4Metabolomics](http://workflow4metabolomics.org/)
-4. Smith et al. [doi:10.1021/ac051437y](https://www.ncbi.nlm.nih.gov/pubmed/16448051)
--- a/d3.html	Tue Jul 10 17:58:35 2018 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,329 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-<meta charset="utf-8">
-<script>
-// https://d3js.org Version 5.4.0. Copyright 2018 Mike Bostock.
-(function(t,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n(t.d3=t.d3||{})})(this,function(t){"use strict";function n(t,n){return t<n?-1:t>n?1:t>=n?0:NaN}function e(t){return 1===t.length&&(t=function(t){return function(e,r){return n(t(e),r)}}(t)),{left:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r<i;){var o=r+i>>>1;t(n[o],e)<0?r=o+1:i=o}return r},right:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r<i;){var o=r+i>>>1;t(n[o],e)>0?i=o:r=o+1}return r}}}function r(t,n){return[t,n]}function i(t){return null===t?NaN:+t}function o(t,n){var e,r,o=t.length,a=0,u=-1,f=0,c=0;if(null==n)for(;++u<o;)isNaN(e=i(t[u]))||(c+=(r=e-f)*(e-(f+=r/++a)));else for(;++u<o;)isNaN(e=i(n(t[u],u,t)))||(c+=(r=e-f)*(e-(f+=r/++a)));if(a>1)return c/(a-1)}function a(t,n){var e=o(t,n);return e?Math.sqrt(e):e}function u(t,n){var e,r,i,o=t.length,a=-1;if(null==n){for(;++a<o;)if(null!=(e=t[a])&&e>=e)for(r=i=e;++a<o;)null!=(e=t[a])&&(r>e&&(r=e),i<e&&(i=e))}else for(;++a<o;)if(null!=(e=n(t[a],a,t))&&e>=e)for(r=i=e;++a<o;)null!=(e=n(t[a],a,t))&&(r>e&&(r=e),i<e&&(i=e));return[r,i]}function f(t){return function(){return t}}function c(t){return t}function s(t,n,e){t=+t,n=+n,e=(i=arguments.length)<2?(n=t,t=0,1):i<3?1:+e;for(var r=-1,i=0|Math.max(0,Math.ceil((n-t)/e)),o=new Array(i);++r<i;)o[r]=t+r*e;return o}function l(t,n,e){var r,i,o,a,u=-1;if(n=+n,t=+t,e=+e,t===n&&e>0)return[t];if((r=n<t)&&(i=t,t=n,n=i),0===(a=h(t,n,e))||!isFinite(a))return[];if(a>0)for(t=Math.ceil(t/a),n=Math.floor(n/a),o=new Array(i=Math.ceil(n-t+1));++u<i;)o[u]=(t+u)*a;else for(t=Math.floor(t*a),n=Math.ceil(n*a),o=new Array(i=Math.ceil(t-n+1));++u<i;)o[u]=(t-u)/a;return r&&o.reverse(),o}function h(t,n,e){var r=(n-t)/Math.max(0,e),i=Math.floor(Math.log(r)/Math.LN10),o=r/Math.pow(10,i);return i>=0?(o>=rs?10:o>=is?5:o>=os?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(o>=rs?10:o>=is?5:o>=os?2:1)}function d(t,n,e){var r=Math.abs(n-t)/Math.max(0,e),i=Math.pow(10,Math.floor(Math.log(r)/Math.LN10)),o=r/i;return o>=rs?i*=10:o>=is?i*=5:o>=os&&(i*=2),n<t?-i:i}function p(t){return Math.ceil(Math.log(t.length)/Math.LN2)+1}function v(t,n,e){if(null==e&&(e=i),r=t.length){if((n=+n)<=0||r<2)return+e(t[0],0,t);if(n>=1)return+e(t[r-1],r-1,t);var r,o=(r-1)*n,a=Math.floor(o),u=+e(t[a],a,t);return u+(+e(t[a+1],a+1,t)-u)*(o-a)}}function g(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o<i;)if(null!=(e=t[o])&&e>=e)for(r=e;++o<i;)null!=(e=t[o])&&e>r&&(r=e)}else for(;++o<i;)if(null!=(e=n(t[o],o,t))&&e>=e)for(r=e;++o<i;)null!=(e=n(t[o],o,t))&&e>r&&(r=e);return r}function y(t){for(var n,e,r,i=t.length,o=-1,a=0;++o<i;)a+=t[o].length;for(e=new Array(a);--i>=0;)for(n=(r=t[i]).length;--n>=0;)e[--a]=r[n];return e}function _(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o<i;)if(null!=(e=t[o])&&e>=e)for(r=e;++o<i;)null!=(e=t[o])&&r>e&&(r=e)}else for(;++o<i;)if(null!=(e=n(t[o],o,t))&&e>=e)for(r=e;++o<i;)null!=(e=n(t[o],o,t))&&r>e&&(r=e);return r}function b(t){if(!(i=t.length))return[];for(var n=-1,e=_(t,m),r=new Array(e);++n<e;)for(var i,o=-1,a=r[n]=new Array(i);++o<i;)a[o]=t[o][n];return r}function m(t){return t.length}function x(t){return t}function w(t){return"translate("+(t+.5)+",0)"}function M(t){return"translate(0,"+(t+.5)+")"}function A(){return!this.__axis}function T(t,n){function e(e){var h=null==i?n.ticks?n.ticks.apply(n,r):n.domain():i,d=null==o?n.tickFormat?n.tickFormat.apply(n,r):x:o,p=Math.max(a,0)+f,v=n.range(),g=+v[0]+.5,y=+v[v.length-1]+.5,_=(n.bandwidth?function(t){var n=Math.max(0,t.bandwidth()-1)/2;return t.round()&&(n=Math.round(n)),function(e){return+t(e)+n}}:function(t){return function(n){return+t(n)}})(n.copy()),b=e.selection?e.selection():e,m=b.selectAll(".domain").data([null]),w=b.selectAll(".tick").data(h,n).order(),M=w.exit(),T=w.enter().append("g").attr("class","tick"),N=w.select("line"),S=w.select("text");m=m.merge(m.enter().insert("path",".tick").attr("class","domain").attr("stroke","#000")),w=w.merge(T),N=N.merge(T.append("line").attr("stroke","#000").attr(s+"2",c*a)),S=S.merge(T.append("text").attr("fill","#000").attr(s,c*p).attr("dy",t===us?"0em":t===cs?"0.71em":"0.32em")),e!==b&&(m=m.transition(e),w=w.transition(e),N=N.transition(e),S=S.transition(e),M=M.transition(e).attr("opacity",ls).attr("transform",function(t){return isFinite(t=_(t))?l(t):this.getAttribute("transform")}),T.attr("opacity",ls).attr("transform",function(t){var n=this.parentNode.__axis;return l(n&&isFinite(n=n(t))?n:_(t))})),M.remove(),m.attr("d",t===ss||t==fs?"M"+c*u+","+g+"H0.5V"+y+"H"+c*u:"M"+g+","+c*u+"V0.5H"+y+"V"+c*u),w.attr("opacity",1).attr("transform",function(t){return l(_(t))}),N.attr(s+"2",c*a),S.attr(s,c*p).text(d),b.filter(A).attr("fill","none").attr("font-size",10).attr("font-family","sans-serif").attr("text-anchor",t===fs?"start":t===ss?"end":"middle"),b.each(function(){this.__axis=_})}var r=[],i=null,o=null,a=6,u=6,f=3,c=t===us||t===ss?-1:1,s=t===ss||t===fs?"x":"y",l=t===us||t===cs?w:M;return e.scale=function(t){return arguments.length?(n=t,e):n},e.ticks=function(){return r=as.call(arguments),e},e.tickArguments=function(t){return arguments.length?(r=null==t?[]:as.call(t),e):r.slice()},e.tickValues=function(t){return arguments.length?(i=null==t?null:as.call(t),e):i&&i.slice()},e.tickFormat=function(t){return arguments.length?(o=t,e):o},e.tickSize=function(t){return arguments.length?(a=u=+t,e):a},e.tickSizeInner=function(t){return arguments.length?(a=+t,e):a},e.tickSizeOuter=function(t){return arguments.length?(u=+t,e):u},e.tickPadding=function(t){return arguments.length?(f=+t,e):f},e}function N(){for(var t,n=0,e=arguments.length,r={};n<e;++n){if(!(t=arguments[n]+"")||t in r)throw new Error("illegal type: "+t);r[t]=[]}return new S(r)}function S(t){this._=t}function E(t,n,e){for(var r=0,i=t.length;r<i;++r)if(t[r].name===n){t[r]=hs,t=t.slice(0,r).concat(t.slice(r+1));break}return null!=e&&t.push({name:n,value:e}),t}function k(t){var n=t+="",e=n.indexOf(":");return e>=0&&"xmlns"!==(n=t.slice(0,e))&&(t=t.slice(e+1)),ps.hasOwnProperty(n)?{space:ps[n],local:t}:t}function C(t){var n=k(t);return(n.local?function(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}:function(t){return function(){var n=this.ownerDocument,e=this.namespaceURI;return e===ds&&n.documentElement.namespaceURI===ds?n.createElement(t):n.createElementNS(e,t)}})(n)}function P(){}function z(t){return null==t?P:function(){return this.querySelector(t)}}function R(){return[]}function L(t){return null==t?R:function(){return this.querySelectorAll(t)}}function D(t){return new Array(t.length)}function U(t,n){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=n}function q(t,n,e,r,i,o){for(var a,u=0,f=n.length,c=o.length;u<c;++u)(a=n[u])?(a.__data__=o[u],r[u]=a):e[u]=new U(t,o[u]);for(;u<f;++u)(a=n[u])&&(i[u]=a)}function O(t,n,e,r,i,o,a){var u,f,c,s={},l=n.length,h=o.length,d=new Array(l);for(u=0;u<l;++u)(f=n[u])&&(d[u]=c=bs+a.call(f,f.__data__,u,n),c in s?i[u]=f:s[c]=f);for(u=0;u<h;++u)(f=s[c=bs+a.call(t,o[u],u,o)])?(r[u]=f,f.__data__=o[u],s[c]=null):e[u]=new U(t,o[u]);for(u=0;u<l;++u)(f=n[u])&&s[d[u]]===f&&(i[u]=f)}function Y(t,n){return t<n?-1:t>n?1:t>=n?0:NaN}function B(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView}function F(t,n){return t.style.getPropertyValue(n)||B(t).getComputedStyle(t,null).getPropertyValue(n)}function I(t){return t.trim().split(/^|\s+/)}function j(t){return t.classList||new H(t)}function H(t){this._node=t,this._names=I(t.getAttribute("class")||"")}function X(t,n){for(var e=j(t),r=-1,i=n.length;++r<i;)e.add(n[r])}function G(t,n){for(var e=j(t),r=-1,i=n.length;++r<i;)e.remove(n[r])}function V(){this.textContent=""}function $(){this.innerHTML=""}function W(){this.nextSibling&&this.parentNode.appendChild(this)}function Z(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function Q(){return null}function J(){var t=this.parentNode;t&&t.removeChild(this)}function K(){return this.parentNode.insertBefore(this.cloneNode(!1),this.nextSibling)}function tt(){return this.parentNode.insertBefore(this.cloneNode(!0),this.nextSibling)}function nt(t,n,e){return t=et(t,n,e),function(n){var e=n.relatedTarget;e&&(e===this||8&e.compareDocumentPosition(this))||t.call(this,n)}}function et(n,e,r){return function(i){var o=t.event;t.event=i;try{n.call(this,this.__data__,e,r)}finally{t.event=o}}}function rt(t){return function(){var n=this.__on;if(n){for(var e,r=0,i=-1,o=n.length;r<o;++r)e=n[r],t.type&&e.type!==t.type||e.name!==t.name?n[++i]=e:this.removeEventListener(e.type,e.listener,e.capture);++i?n.length=i:delete this.__on}}}function it(t,n,e){var r=ms.hasOwnProperty(t.type)?nt:et;return function(i,o,a){var u,f=this.__on,c=r(n,o,a);if(f)for(var s=0,l=f.length;s<l;++s)if((u=f[s]).type===t.type&&u.name===t.name)return this.removeEventListener(u.type,u.listener,u.capture),this.addEventListener(u.type,u.listener=c,u.capture=e),void(u.value=n);this.addEventListener(t.type,c,e),u={type:t.type,name:t.name,value:n,listener:c,capture:e},f?f.push(u):this.__on=[u]}}function ot(n,e,r,i){var o=t.event;n.sourceEvent=t.event,t.event=n;try{return e.apply(r,i)}finally{t.event=o}}function at(t,n,e){var r=B(t),i=r.CustomEvent;"function"==typeof i?i=new i(n,e):(i=r.document.createEvent("Event"),e?(i.initEvent(n,e.bubbles,e.cancelable),i.detail=e.detail):i.initEvent(n,!1,!1)),t.dispatchEvent(i)}function ut(t,n){this._groups=t,this._parents=n}function ft(){return new ut([[document.documentElement]],xs)}function ct(t){return"string"==typeof t?new ut([[document.querySelector(t)]],[document.documentElement]):new ut([[t]],xs)}function st(){return new lt}function lt(){this._="@"+(++ws).toString(36)}function ht(){for(var n,e=t.event;n=e.sourceEvent;)e=n;return e}function dt(t,n){var e=t.ownerSVGElement||t;if(e.createSVGPoint){var r=e.createSVGPoint();return r.x=n.clientX,r.y=n.clientY,r=r.matrixTransform(t.getScreenCTM().inverse()),[r.x,r.y]}var i=t.getBoundingClientRect();return[n.clientX-i.left-t.clientLeft,n.clientY-i.top-t.clientTop]}function pt(t){var n=ht();return n.changedTouches&&(n=n.changedTouches[0]),dt(t,n)}function vt(t,n,e){arguments.length<3&&(e=n,n=ht().changedTouches);for(var r,i=0,o=n?n.length:0;i<o;++i)if((r=n[i]).identifier===e)return dt(t,r);return null}function gt(){t.event.stopImmediatePropagation()}function yt(){t.event.preventDefault(),t.event.stopImmediatePropagation()}function _t(t){var n=t.document.documentElement,e=ct(t).on("dragstart.drag",yt,!0);"onselectstart"in n?e.on("selectstart.drag",yt,!0):(n.__noselect=n.style.MozUserSelect,n.style.MozUserSelect="none")}function bt(t,n){var e=t.document.documentElement,r=ct(t).on("dragstart.drag",null);n&&(r.on("click.drag",yt,!0),setTimeout(function(){r.on("click.drag",null)},0)),"onselectstart"in e?r.on("selectstart.drag",null):(e.style.MozUserSelect=e.__noselect,delete e.__noselect)}function mt(t){return function(){return t}}function xt(t,n,e,r,i,o,a,u,f,c){this.target=t,this.type=n,this.subject=e,this.identifier=r,this.active=i,this.x=o,this.y=a,this.dx=u,this.dy=f,this._=c}function wt(){return!t.event.button}function Mt(){return this.parentNode}function At(n){return null==n?{x:t.event.x,y:t.event.y}:n}function Tt(){return"ontouchstart"in this}function Nt(t,n,e){t.prototype=n.prototype=e,e.constructor=t}function St(t,n){var e=Object.create(t.prototype);for(var r in n)e[r]=n[r];return e}function Et(){}function kt(t){var n;return t=(t+"").trim().toLowerCase(),(n=Ns.exec(t))?(n=parseInt(n[1],16),new Lt(n>>8&15|n>>4&240,n>>4&15|240&n,(15&n)<<4|15&n,1)):(n=Ss.exec(t))?Ct(parseInt(n[1],16)):(n=Es.exec(t))?new Lt(n[1],n[2],n[3],1):(n=ks.exec(t))?new Lt(255*n[1]/100,255*n[2]/100,255*n[3]/100,1):(n=Cs.exec(t))?Pt(n[1],n[2],n[3],n[4]):(n=Ps.exec(t))?Pt(255*n[1]/100,255*n[2]/100,255*n[3]/100,n[4]):(n=zs.exec(t))?Ut(n[1],n[2]/100,n[3]/100,1):(n=Rs.exec(t))?Ut(n[1],n[2]/100,n[3]/100,n[4]):Ls.hasOwnProperty(t)?Ct(Ls[t]):"transparent"===t?new Lt(NaN,NaN,NaN,0):null}function Ct(t){return new Lt(t>>16&255,t>>8&255,255&t,1)}function Pt(t,n,e,r){return r<=0&&(t=n=e=NaN),new Lt(t,n,e,r)}function zt(t){return t instanceof Et||(t=kt(t)),t?(t=t.rgb(),new Lt(t.r,t.g,t.b,t.opacity)):new Lt}function Rt(t,n,e,r){return 1===arguments.length?zt(t):new Lt(t,n,e,null==r?1:r)}function Lt(t,n,e,r){this.r=+t,this.g=+n,this.b=+e,this.opacity=+r}function Dt(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function Ut(t,n,e,r){return r<=0?t=n=e=NaN:e<=0||e>=1?t=n=NaN:n<=0&&(t=NaN),new Ot(t,n,e,r)}function qt(t,n,e,r){return 1===arguments.length?function(t){if(t instanceof Ot)return new Ot(t.h,t.s,t.l,t.opacity);if(t instanceof Et||(t=kt(t)),!t)return new Ot;if(t instanceof Ot)return t;var n=(t=t.rgb()).r/255,e=t.g/255,r=t.b/255,i=Math.min(n,e,r),o=Math.max(n,e,r),a=NaN,u=o-i,f=(o+i)/2;return u?(a=n===o?(e-r)/u+6*(e<r):e===o?(r-n)/u+2:(n-e)/u+4,u/=f<.5?o+i:2-o-i,a*=60):u=f>0&&f<1?0:a,new Ot(a,u,f,t.opacity)}(t):new Ot(t,n,e,null==r?1:r)}function Ot(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Yt(t,n,e){return 255*(t<60?n+(e-n)*t/60:t<180?e:t<240?n+(e-n)*(240-t)/60:n)}function Bt(t){if(t instanceof It)return new It(t.l,t.a,t.b,t.opacity);if(t instanceof Wt){if(isNaN(t.h))return new It(t.l,0,0,t.opacity);var n=t.h*Ds;return new It(t.l,Math.cos(n)*t.c,Math.sin(n)*t.c,t.opacity)}t instanceof Lt||(t=zt(t));var e,r,i=Gt(t.r),o=Gt(t.g),a=Gt(t.b),u=jt((.2225045*i+.7168786*o+.0606169*a)/Os);return i===o&&o===a?e=r=u:(e=jt((.4360747*i+.3850649*o+.1430804*a)/qs),r=jt((.0139322*i+.0971045*o+.7141733*a)/Ys)),new It(116*u-16,500*(e-u),200*(u-r),t.opacity)}function Ft(t,n,e,r){return 1===arguments.length?Bt(t):new It(t,n,e,null==r?1:r)}function It(t,n,e,r){this.l=+t,this.a=+n,this.b=+e,this.opacity=+r}function jt(t){return t>js?Math.pow(t,1/3):t/Is+Bs}function Ht(t){return t>Fs?t*t*t:Is*(t-Bs)}function Xt(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Gt(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function Vt(t){if(t instanceof Wt)return new Wt(t.h,t.c,t.l,t.opacity);if(t instanceof It||(t=Bt(t)),0===t.a&&0===t.b)return new Wt(NaN,0,t.l,t.opacity);var n=Math.atan2(t.b,t.a)*Us;return new Wt(n<0?n+360:n,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}function $t(t,n,e,r){return 1===arguments.length?Vt(t):new Wt(t,n,e,null==r?1:r)}function Wt(t,n,e,r){this.h=+t,this.c=+n,this.l=+e,this.opacity=+r}function Zt(t,n,e,r){return 1===arguments.length?function(t){if(t instanceof Qt)return new Qt(t.h,t.s,t.l,t.opacity);t instanceof Lt||(t=zt(t));var n=t.r/255,e=t.g/255,r=t.b/255,i=(Ws*r+Vs*n-$s*e)/(Ws+Vs-$s),o=r-i,a=(Gs*(e-i)-Hs*o)/Xs,u=Math.sqrt(a*a+o*o)/(Gs*i*(1-i)),f=u?Math.atan2(a,o)*Us-120:NaN;return new Qt(f<0?f+360:f,u,i,t.opacity)}(t):new Qt(t,n,e,null==r?1:r)}function Qt(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Jt(t,n,e,r,i){var o=t*t,a=o*t;return((1-3*t+3*o-a)*n+(4-6*o+3*a)*e+(1+3*t+3*o-3*a)*r+a*i)/6}function Kt(t){var n=t.length-1;return function(e){var r=e<=0?e=0:e>=1?(e=1,n-1):Math.floor(e*n),i=t[r],o=t[r+1],a=r>0?t[r-1]:2*i-o,u=r<n-1?t[r+2]:2*o-i;return Jt((e-r/n)*n,a,i,o,u)}}function tn(t){var n=t.length;return function(e){var r=Math.floor(((e%=1)<0?++e:e)*n),i=t[(r+n-1)%n],o=t[r%n],a=t[(r+1)%n],u=t[(r+2)%n];return Jt((e-r/n)*n,i,o,a,u)}}function nn(t){return function(){return t}}function en(t,n){return function(e){return t+e*n}}function rn(t,n){var e=n-t;return e?en(t,e>180||e<-180?e-360*Math.round(e/360):e):nn(isNaN(t)?n:t)}function on(t){return 1==(t=+t)?an:function(n,e){return e-n?function(t,n,e){return t=Math.pow(t,e),n=Math.pow(n,e)-t,e=1/e,function(r){return Math.pow(t+r*n,e)}}(n,e,t):nn(isNaN(n)?e:n)}}function an(t,n){var e=n-t;return e?en(t,e):nn(isNaN(t)?n:t)}function un(t){return function(n){var e,r,i=n.length,o=new Array(i),a=new Array(i),u=new Array(i);for(e=0;e<i;++e)r=Rt(n[e]),o[e]=r.r||0,a[e]=r.g||0,u[e]=r.b||0;return o=t(o),a=t(a),u=t(u),r.opacity=1,function(t){return r.r=o(t),r.g=a(t),r.b=u(t),r+""}}}function fn(t,n){var e,r=n?n.length:0,i=t?Math.min(r,t.length):0,o=new Array(i),a=new Array(r);for(e=0;e<i;++e)o[e]=dn(t[e],n[e]);for(;e<r;++e)a[e]=n[e];return function(t){for(e=0;e<i;++e)a[e]=o[e](t);return a}}function cn(t,n){var e=new Date;return t=+t,n-=t,function(r){return e.setTime(t+n*r),e}}function sn(t,n){return t=+t,n-=t,function(e){return t+n*e}}function ln(t,n){var e,r={},i={};null!==t&&"object"==typeof t||(t={}),null!==n&&"object"==typeof n||(n={});for(e in n)e in t?r[e]=dn(t[e],n[e]):i[e]=n[e];return function(t){for(e in r)i[e]=r[e](t);return i}}function hn(t,n){var e,r,i,o=ol.lastIndex=al.lastIndex=0,a=-1,u=[],f=[];for(t+="",n+="";(e=ol.exec(t))&&(r=al.exec(n));)(i=r.index)>o&&(i=n.slice(o,i),u[a]?u[a]+=i:u[++a]=i),(e=e[0])===(r=r[0])?u[a]?u[a]+=r:u[++a]=r:(u[++a]=null,f.push({i:a,x:sn(e,r)})),o=al.lastIndex;return o<n.length&&(i=n.slice(o),u[a]?u[a]+=i:u[++a]=i),u.length<2?f[0]?function(t){return function(n){return t(n)+""}}(f[0].x):function(t){return function(){return t}}(n):(n=f.length,function(t){for(var e,r=0;r<n;++r)u[(e=f[r]).i]=e.x(t);return u.join("")})}function dn(t,n){var e,r=typeof n;return null==n||"boolean"===r?nn(n):("number"===r?sn:"string"===r?(e=kt(n))?(n=e,el):hn:n instanceof kt?el:n instanceof Date?cn:Array.isArray(n)?fn:"function"!=typeof n.valueOf&&"function"!=typeof n.toString||isNaN(n)?ln:sn)(t,n)}function pn(t,n){return t=+t,n-=t,function(e){return Math.round(t+n*e)}}function vn(t,n,e,r,i,o){var a,u,f;return(a=Math.sqrt(t*t+n*n))&&(t/=a,n/=a),(f=t*e+n*r)&&(e-=t*f,r-=n*f),(u=Math.sqrt(e*e+r*r))&&(e/=u,r/=u,f/=u),t*r<n*e&&(t=-t,n=-n,f=-f,a=-a),{translateX:i,translateY:o,rotate:Math.atan2(n,t)*ul,skewX:Math.atan(f)*ul,scaleX:a,scaleY:u}}function gn(t,n,e,r){function i(t){return t.length?t.pop()+" ":""}return function(o,a){var u=[],f=[];return o=t(o),a=t(a),function(t,r,i,o,a,u){if(t!==i||r!==o){var f=a.push("translate(",null,n,null,e);u.push({i:f-4,x:sn(t,i)},{i:f-2,x:sn(r,o)})}else(i||o)&&a.push("translate("+i+n+o+e)}(o.translateX,o.translateY,a.translateX,a.translateY,u,f),function(t,n,e,o){t!==n?(t-n>180?n+=360:n-t>180&&(t+=360),o.push({i:e.push(i(e)+"rotate(",null,r)-2,x:sn(t,n)})):n&&e.push(i(e)+"rotate("+n+r)}(o.rotate,a.rotate,u,f),function(t,n,e,o){t!==n?o.push({i:e.push(i(e)+"skewX(",null,r)-2,x:sn(t,n)}):n&&e.push(i(e)+"skewX("+n+r)}(o.skewX,a.skewX,u,f),function(t,n,e,r,o,a){if(t!==e||n!==r){var u=o.push(i(o)+"scale(",null,",",null,")");a.push({i:u-4,x:sn(t,e)},{i:u-2,x:sn(n,r)})}else 1===e&&1===r||o.push(i(o)+"scale("+e+","+r+")")}(o.scaleX,o.scaleY,a.scaleX,a.scaleY,u,f),o=a=null,function(t){for(var n,e=-1,r=f.length;++e<r;)u[(n=f[e]).i]=n.x(t);return u.join("")}}}function yn(t){return((t=Math.exp(t))+1/t)/2}function _n(t,n){var e,r,i=t[0],o=t[1],a=t[2],u=n[0],f=n[1],c=n[2],s=u-i,l=f-o,h=s*s+l*l;if(h<pl)r=Math.log(c/a)/ll,e=function(t){return[i+t*s,o+t*l,a*Math.exp(ll*t*r)]};else{var d=Math.sqrt(h),p=(c*c-a*a+dl*h)/(2*a*hl*d),v=(c*c-a*a-dl*h)/(2*c*hl*d),g=Math.log(Math.sqrt(p*p+1)-p),y=Math.log(Math.sqrt(v*v+1)-v);r=(y-g)/ll,e=function(t){var n=t*r,e=yn(g),u=a/(hl*d)*(e*function(t){return((t=Math.exp(2*t))-1)/(t+1)}(ll*n+g)-function(t){return((t=Math.exp(t))-1/t)/2}(g));return[i+u*s,o+u*l,a*e/yn(ll*n+g)]}}return e.duration=1e3*r,e}function bn(t){return function(n,e){var r=t((n=qt(n)).h,(e=qt(e)).h),i=an(n.s,e.s),o=an(n.l,e.l),a=an(n.opacity,e.opacity);return function(t){return n.h=r(t),n.s=i(t),n.l=o(t),n.opacity=a(t),n+""}}}function mn(t){return function(n,e){var r=t((n=$t(n)).h,(e=$t(e)).h),i=an(n.c,e.c),o=an(n.l,e.l),a=an(n.opacity,e.opacity);return function(t){return n.h=r(t),n.c=i(t),n.l=o(t),n.opacity=a(t),n+""}}}function xn(t){return function n(e){function r(n,r){var i=t((n=Zt(n)).h,(r=Zt(r)).h),o=an(n.s,r.s),a=an(n.l,r.l),u=an(n.opacity,r.opacity);return function(t){return n.h=i(t),n.s=o(t),n.l=a(Math.pow(t,e)),n.opacity=u(t),n+""}}return e=+e,r.gamma=n,r}(1)}function wn(){return Nl||(kl(Mn),Nl=El.now()+Sl)}function Mn(){Nl=0}function An(){this._call=this._time=this._next=null}function Tn(t,n,e){var r=new An;return r.restart(t,n,e),r}function Nn(){wn(),++xl;for(var t,n=tl;n;)(t=Nl-n._time)>=0&&n._call.call(null,t),n=n._next;--xl}function Sn(){Nl=(Tl=El.now())+Sl,xl=wl=0;try{Nn()}finally{xl=0,function(){var t,n,e=tl,r=1/0;for(;e;)e._call?(r>e._time&&(r=e._time),t=e,e=e._next):(n=e._next,e._next=null,e=t?t._next=n:tl=n);nl=t,kn(r)}(),Nl=0}}function En(){var t=El.now(),n=t-Tl;n>Al&&(Sl-=n,Tl=t)}function kn(t){if(!xl){wl&&(wl=clearTimeout(wl));t-Nl>24?(t<1/0&&(wl=setTimeout(Sn,t-El.now()-Sl)),Ml&&(Ml=clearInterval(Ml))):(Ml||(Tl=El.now(),Ml=setInterval(En,Al)),xl=1,kl(Sn))}}function Cn(t,n,e){var r=new An;return n=null==n?0:+n,r.restart(function(e){r.stop(),t(e+n)},n,e),r}function Pn(t,n,e,r,i,o){var a=t.__transition;if(a){if(e in a)return}else t.__transition={};(function(t,n,e){function r(f){var c,s,l,h;if(e.state!==Rl)return o();for(c in u)if((h=u[c]).name===e.name){if(h.state===Dl)return Cn(r);h.state===Ul?(h.state=Ol,h.timer.stop(),h.on.call("interrupt",t,t.__data__,h.index,h.group),delete u[c]):+c<n&&(h.state=Ol,h.timer.stop(),delete u[c])}if(Cn(function(){e.state===Dl&&(e.state=Ul,e.timer.restart(i,e.delay,e.time),i(f))}),e.state=Ll,e.on.call("start",t,t.__data__,e.index,e.group),e.state===Ll){for(e.state=Dl,a=new Array(l=e.tween.length),c=0,s=-1;c<l;++c)(h=e.tween[c].value.call(t,t.__data__,e.index,e.group))&&(a[++s]=h);a.length=s+1}}function i(n){for(var r=n<e.duration?e.ease.call(null,n/e.duration):(e.timer.restart(o),e.state=ql,1),i=-1,u=a.length;++i<u;)a[i].call(null,r);e.state===ql&&(e.on.call("end",t,t.__data__,e.index,e.group),o())}function o(){e.state=Ol,e.timer.stop(),delete u[n];for(var r in u)return;delete t.__transition}var a,u=t.__transition;u[n]=e,e.timer=Tn(function(t){e.state=Rl,e.timer.restart(r,e.delay,e.time),e.delay<=t&&r(t-e.delay)},0,e.time)})(t,e,{name:n,index:r,group:i,on:Cl,tween:Pl,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:zl})}function zn(t,n){var e=Ln(t,n);if(e.state>zl)throw new Error("too late; already scheduled");return e}function Rn(t,n){var e=Ln(t,n);if(e.state>Ll)throw new Error("too late; already started");return e}function Ln(t,n){var e=t.__transition;if(!e||!(e=e[n]))throw new Error("transition not found");return e}function Dn(t,n){var e,r,i,o=t.__transition,a=!0;if(o){n=null==n?null:n+"";for(i in o)(e=o[i]).name===n?(r=e.state>Ll&&e.state<ql,e.state=Ol,e.timer.stop(),r&&e.on.call("interrupt",t,t.__data__,e.index,e.group),delete o[i]):a=!1;a&&delete t.__transition}}function Un(t,n,e){var r=t._id;return t.each(function(){var t=Rn(this,r);(t.value||(t.value={}))[n]=e.apply(this,arguments)}),function(t){return Ln(t,r).value[n]}}function qn(t,n){var e;return("number"==typeof n?sn:n instanceof kt?el:(e=kt(n))?(n=e,el):hn)(t,n)}function On(t,n,e,r){this._groups=t,this._parents=n,this._name=e,this._id=r}function Yn(t){return ft().transition(t)}function Bn(){return++Bl}function Fn(t){return((t*=2)<=1?t*t:--t*(2-t)+1)/2}function In(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}function jn(t){return(1-Math.cos(Xl*t))/2}function Hn(t){return((t*=2)<=1?Math.pow(2,10*t-10):2-Math.pow(2,10-10*t))/2}function Xn(t){return((t*=2)<=1?1-Math.sqrt(1-t*t):Math.sqrt(1-(t-=2)*t)+1)/2}function Gn(t){return(t=+t)<Vl?eh*t*t:t<Wl?eh*(t-=$l)*t+Zl:t<Jl?eh*(t-=Ql)*t+Kl:eh*(t-=th)*t+nh}function Vn(t,n){for(var e;!(e=t.__transition)||!(e=e[n]);)if(!(t=t.parentNode))return sh.time=wn(),sh;return e}function $n(t){return function(){return t}}function Wn(){t.event.stopImmediatePropagation()}function Zn(){t.event.preventDefault(),t.event.stopImmediatePropagation()}function Qn(t){return{type:t}}function Jn(){return!t.event.button}function Kn(){var t=this.ownerSVGElement||this;return[[0,0],[t.width.baseVal.value,t.height.baseVal.value]]}function te(t){for(;!t.__brush;)if(!(t=t.parentNode))return;return t.__brush}function ne(t){return t[0][0]===t[1][0]||t[0][1]===t[1][1]}function ee(n){function e(t){var e=t.property("__brush",u).selectAll(".overlay").data([Qn("overlay")]);e.enter().append("rect").attr("class","overlay").attr("pointer-events","all").attr("cursor",bh.overlay).merge(e).each(function(){var t=te(this).extent;ct(this).attr("x",t[0][0]).attr("y",t[0][1]).attr("width",t[1][0]-t[0][0]).attr("height",t[1][1]-t[0][1])}),t.selectAll(".selection").data([Qn("selection")]).enter().append("rect").attr("class","selection").attr("cursor",bh.selection).attr("fill","#777").attr("fill-opacity",.3).attr("stroke","#fff").attr("shape-rendering","crispEdges");var i=t.selectAll(".handle").data(n.handles,function(t){return t.type});i.exit().remove(),i.enter().append("rect").attr("class",function(t){return"handle handle--"+t.type}).attr("cursor",function(t){return bh[t.type]}),t.each(r).attr("fill","none").attr("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush touchstart.brush",a)}function r(){var t=ct(this),n=te(this).selection;n?(t.selectAll(".selection").style("display",null).attr("x",n[0][0]).attr("y",n[0][1]).attr("width",n[1][0]-n[0][0]).attr("height",n[1][1]-n[0][1]),t.selectAll(".handle").style("display",null).attr("x",function(t){return"e"===t.type[t.type.length-1]?n[1][0]-h/2:n[0][0]-h/2}).attr("y",function(t){return"s"===t.type[0]?n[1][1]-h/2:n[0][1]-h/2}).attr("width",function(t){return"n"===t.type||"s"===t.type?n[1][0]-n[0][0]+h:h}).attr("height",function(t){return"e"===t.type||"w"===t.type?n[1][1]-n[0][1]+h:h})):t.selectAll(".selection,.handle").style("display","none").attr("x",null).attr("y",null).attr("width",null).attr("height",null)}function i(t,n){return t.__brush.emitter||new o(t,n)}function o(t,n){this.that=t,this.args=n,this.state=t.__brush,this.active=0}function a(){function e(){var t=pt(w);!L||m||x||(Math.abs(t[0]-U[0])>Math.abs(t[1]-U[1])?x=!0:m=!0),U=t,b=!0,Zn(),o()}function o(){var t;switch(y=U[0]-D[0],_=U[1]-D[1],A){case dh:case hh:T&&(y=Math.max(C-u,Math.min(z-d,y)),c=u+y,p=d+y),N&&(_=Math.max(P-l,Math.min(R-v,_)),h=l+_,g=v+_);break;case ph:T<0?(y=Math.max(C-u,Math.min(z-u,y)),c=u+y,p=d):T>0&&(y=Math.max(C-d,Math.min(z-d,y)),c=u,p=d+y),N<0?(_=Math.max(P-l,Math.min(R-l,_)),h=l+_,g=v):N>0&&(_=Math.max(P-v,Math.min(R-v,_)),h=l,g=v+_);break;case vh:T&&(c=Math.max(C,Math.min(z,u-y*T)),p=Math.max(C,Math.min(z,d+y*T))),N&&(h=Math.max(P,Math.min(R,l-_*N)),g=Math.max(P,Math.min(R,v+_*N)))}p<c&&(T*=-1,t=u,u=d,d=t,t=c,c=p,p=t,M in mh&&Y.attr("cursor",bh[M=mh[M]])),g<h&&(N*=-1,t=l,l=v,v=t,t=h,h=g,g=t,M in xh&&Y.attr("cursor",bh[M=xh[M]])),S.selection&&(k=S.selection),m&&(c=k[0][0],p=k[1][0]),x&&(h=k[0][1],g=k[1][1]),k[0][0]===c&&k[0][1]===h&&k[1][0]===p&&k[1][1]===g||(S.selection=[[c,h],[p,g]],r.call(w),q.brush())}function a(){if(Wn(),t.event.touches){if(t.event.touches.length)return;f&&clearTimeout(f),f=setTimeout(function(){f=null},500),O.on("touchmove.brush touchend.brush touchcancel.brush",null)}else bt(t.event.view,b),B.on("keydown.brush keyup.brush mousemove.brush mouseup.brush",null);O.attr("pointer-events","all"),Y.attr("cursor",bh.overlay),S.selection&&(k=S.selection),ne(k)&&(S.selection=null,r.call(w)),q.end()}if(t.event.touches){if(t.event.changedTouches.length<t.event.touches.length)return Zn()}else if(f)return;if(s.apply(this,arguments)){var u,c,l,h,d,p,v,g,y,_,b,m,x,w=this,M=t.event.target.__data__.type,A="selection"===(t.event.metaKey?M="overlay":M)?hh:t.event.altKey?vh:ph,T=n===yh?null:wh[M],N=n===gh?null:Mh[M],S=te(w),E=S.extent,k=S.selection,C=E[0][0],P=E[0][1],z=E[1][0],R=E[1][1],L=T&&N&&t.event.shiftKey,D=pt(w),U=D,q=i(w,arguments).beforestart();"overlay"===M?S.selection=k=[[u=n===yh?C:D[0],l=n===gh?P:D[1]],[d=n===yh?z:u,v=n===gh?R:l]]:(u=k[0][0],l=k[0][1],d=k[1][0],v=k[1][1]),c=u,h=l,p=d,g=v;var O=ct(w).attr("pointer-events","none"),Y=O.selectAll(".overlay").attr("cursor",bh[M]);if(t.event.touches)O.on("touchmove.brush",e,!0).on("touchend.brush touchcancel.brush",a,!0);else{var B=ct(t.event.view).on("keydown.brush",function(){switch(t.event.keyCode){case 16:L=T&&N;break;case 18:A===ph&&(T&&(d=p-y*T,u=c+y*T),N&&(v=g-_*N,l=h+_*N),A=vh,o());break;case 32:A!==ph&&A!==vh||(T<0?d=p-y:T>0&&(u=c-y),N<0?v=g-_:N>0&&(l=h-_),A=dh,Y.attr("cursor",bh.selection),o());break;default:return}Zn()},!0).on("keyup.brush",function(){switch(t.event.keyCode){case 16:L&&(m=x=L=!1,o());break;case 18:A===vh&&(T<0?d=p:T>0&&(u=c),N<0?v=g:N>0&&(l=h),A=ph,o());break;case 32:A===dh&&(t.event.altKey?(T&&(d=p-y*T,u=c+y*T),N&&(v=g-_*N,l=h+_*N),A=vh):(T<0?d=p:T>0&&(u=c),N<0?v=g:N>0&&(l=h),A=ph),Y.attr("cursor",bh[M]),o());break;default:return}Zn()},!0).on("mousemove.brush",e,!0).on("mouseup.brush",a,!0);_t(t.event.view)}Wn(),Dn(w),r.call(w),q.start()}}function u(){var t=this.__brush||{selection:null};return t.extent=c.apply(this,arguments),t.dim=n,t}var f,c=Kn,s=Jn,l=N(e,"start","brush","end"),h=6;return e.move=function(t,e){t.selection?t.on("start.brush",function(){i(this,arguments).beforestart().start()}).on("interrupt.brush end.brush",function(){i(this,arguments).end()}).tween("brush",function(){function t(t){a.selection=1===t&&ne(c)?null:s(t),r.call(o),u.brush()}var o=this,a=o.__brush,u=i(o,arguments),f=a.selection,c=n.input("function"==typeof e?e.apply(this,arguments):e,a.extent),s=dn(f,c);return f&&c?t:t(1)}):t.each(function(){var t=arguments,o=this.__brush,a=n.input("function"==typeof e?e.apply(this,t):e,o.extent),u=i(this,t).beforestart();Dn(this),o.selection=null==a||ne(a)?null:a,r.call(this),u.start().brush().end()})},o.prototype={beforestart:function(){return 1==++this.active&&(this.state.emitter=this,this.starting=!0),this},start:function(){return this.starting&&(this.starting=!1,this.emit("start")),this},brush:function(){return this.emit("brush"),this},end:function(){return 0==--this.active&&(delete this.state.emitter,this.emit("end")),this},emit:function(t){ot(new function(t,n,e){this.target=t,this.type=n,this.selection=e}(e,t,n.output(this.state.selection)),l.apply,l,[t,this.that,this.args])}},e.extent=function(t){return arguments.length?(c="function"==typeof t?t:$n([[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]]),e):c},e.filter=function(t){return arguments.length?(s="function"==typeof t?t:$n(!!t),e):s},e.handleSize=function(t){return arguments.length?(h=+t,e):h},e.on=function(){var t=l.on.apply(l,arguments);return t===l?e:t},e}function re(t){return function(){return t}}function ie(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function oe(){return new ie}function ae(t){return t.source}function ue(t){return t.target}function fe(t){return t.radius}function ce(t){return t.startAngle}function se(t){return t.endAngle}function le(){}function he(t,n){var e=new le;if(t instanceof le)t.each(function(t,n){e.set(n,t)});else if(Array.isArray(t)){var r,i=-1,o=t.length;if(null==n)for(;++i<o;)e.set(i,t[i]);else for(;++i<o;)e.set(n(r=t[i],i,t),r)}else if(t)for(var a in t)e.set(a,t[a]);return e}function de(){return{}}function pe(t,n,e){t[n]=e}function ve(){return he()}function ge(t,n,e){t.set(n,e)}function ye(){}function _e(t,n){var e=new ye;if(t instanceof ye)t.each(function(t){e.add(t)});else if(t){var r=-1,i=t.length;if(null==n)for(;++r<i;)e.add(t[r]);else for(;++r<i;)e.add(n(t[r],r,t))}return e}function be(t,n){return t-n}function me(t){return function(){return t}}function xe(t,n){for(var e,r=-1,i=n.length;++r<i;)if(e=function(t,n){for(var e=n[0],r=n[1],i=-1,o=0,a=t.length,u=a-1;o<a;u=o++){var f=t[o],c=f[0],s=f[1],l=t[u],h=l[0],d=l[1];if(function(t,n,e){var r;return function(t,n,e){return(n[0]-t[0])*(e[1]-t[1])==(e[0]-t[0])*(n[1]-t[1])}(t,n,e)&&function(t,n,e){return t<=n&&n<=e||e<=n&&n<=t}(t[r=+(t[0]===n[0])],e[r],n[r])}(f,l,n))return 0;s>r!=d>r&&e<(h-c)*(r-s)/(d-s)+c&&(i=-i)}return i}(t,n[r]))return e;return 0}function we(){}function Me(){function t(t){var e=a(t);if(Array.isArray(e))e=e.slice().sort(be);else{var r=u(t),i=r[0],o=r[1];e=d(i,o,e),e=s(Math.floor(i/e)*e,Math.floor(o/e)*e,e)}return e.map(function(e){return n(t,e)})}function n(t,n){var r=[],a=[];return function(t,n,r){function a(t){var n,i,o=[t[0][0]+u,t[0][1]+f],a=[t[1][0]+u,t[1][1]+f],c=e(o),s=e(a);(n=p[c])?(i=d[s])?(delete p[n.end],delete d[i.start],n===i?(n.ring.push(a),r(n.ring)):d[n.start]=p[i.end]={start:n.start,end:i.end,ring:n.ring.concat(i.ring)}):(delete p[n.end],n.ring.push(a),p[n.end=s]=n):(n=d[s])?(i=p[c])?(delete d[n.start],delete p[i.end],n===i?(n.ring.push(a),r(n.ring)):d[i.start]=p[n.end]={start:i.start,end:n.end,ring:i.ring.concat(n.ring)}):(delete d[n.start],n.ring.unshift(o),d[n.start=c]=n):d[c]=p[s]={start:c,end:s,ring:[o,a]}}var u,f,c,s,l,h,d=new Array,p=new Array;u=f=-1,s=t[0]>=n,Uh[s<<1].forEach(a);for(;++u<i-1;)c=s,s=t[u+1]>=n,Uh[c|s<<1].forEach(a);Uh[s<<0].forEach(a);for(;++f<o-1;){for(u=-1,s=t[f*i+i]>=n,l=t[f*i]>=n,Uh[s<<1|l<<2].forEach(a);++u<i-1;)c=s,s=t[f*i+i+u+1]>=n,h=l,l=t[f*i+u+1]>=n,Uh[c|s<<1|l<<2|h<<3].forEach(a);Uh[s|l<<3].forEach(a)}u=-1,l=t[f*i]>=n,Uh[l<<2].forEach(a);for(;++u<i-1;)h=l,l=t[f*i+u+1]>=n,Uh[l<<2|h<<3].forEach(a);Uh[l<<3].forEach(a)}(t,n,function(e){f(e,t,n),function(t){for(var n=0,e=t.length,r=t[e-1][1]*t[0][0]-t[e-1][0]*t[0][1];++n<e;)r+=t[n-1][1]*t[n][0]-t[n-1][0]*t[n][1];return r}(e)>0?r.push([e]):a.push(e)}),a.forEach(function(t){for(var n,e=0,i=r.length;e<i;++e)if(-1!==xe((n=r[e])[0],t))return void n.push(t)}),{type:"MultiPolygon",value:n,coordinates:r}}function e(t){return 2*t[0]+t[1]*(i+1)*4}function r(t,n,e){t.forEach(function(t){var r,a=t[0],u=t[1],f=0|a,c=0|u,s=n[c*i+f];a>0&&a<i&&f===a&&(r=n[c*i+f-1],t[0]=a+(e-r)/(s-r)-.5),u>0&&u<o&&c===u&&(r=n[(c-1)*i+f],t[1]=u+(e-r)/(s-r)-.5)})}var i=1,o=1,a=p,f=r;return t.contour=n,t.size=function(n){if(!arguments.length)return[i,o];var e=Math.ceil(n[0]),r=Math.ceil(n[1]);if(!(e>0&&r>0))throw new Error("invalid size");return i=e,o=r,t},t.thresholds=function(n){return arguments.length?(a="function"==typeof n?n:Array.isArray(n)?me(Dh.call(n)):me(n),t):a},t.smooth=function(n){return arguments.length?(f=n?r:we,t):f===r},t}function Ae(t,n,e){for(var r=t.width,i=t.height,o=1+(e<<1),a=0;a<i;++a)for(var u=0,f=0;u<r+e;++u)u<r&&(f+=t.data[u+a*r]),u>=e&&(u>=o&&(f-=t.data[u-o+a*r]),n.data[u-e+a*r]=f/Math.min(u+1,r-1+o-u,o))}function Te(t,n,e){for(var r=t.width,i=t.height,o=1+(e<<1),a=0;a<r;++a)for(var u=0,f=0;u<i+e;++u)u<i&&(f+=t.data[a+u*r]),u>=e&&(u>=o&&(f-=t.data[a+(u-o)*r]),n.data[a+(u-e)*r]=f/Math.min(u+1,i-1+o-u,o))}function Ne(t){return t[0]}function Se(t){return t[1]}function Ee(t){return new Function("d","return {"+t.map(function(t,n){return JSON.stringify(t)+": d["+n+"]"}).join(",")+"}")}function ke(t){function n(t,n){function e(){if(c)return Oh;if(s)return s=!1,qh;var n,e,r=u;if(t.charCodeAt(r)===Yh){for(;u++<a&&t.charCodeAt(u)!==Yh||t.charCodeAt(++u)===Yh;);return(n=u)>=a?c=!0:(e=t.charCodeAt(u++))===Bh?s=!0:e===Fh&&(s=!0,t.charCodeAt(u)===Bh&&++u),t.slice(r+1,n-1).replace(/""/g,'"')}for(;u<a;){if((e=t.charCodeAt(n=u++))===Bh)s=!0;else if(e===Fh)s=!0,t.charCodeAt(u)===Bh&&++u;else if(e!==o)continue;return t.slice(r,n)}return c=!0,t.slice(r,a)}var r,i=[],a=t.length,u=0,f=0,c=a<=0,s=!1;for(t.charCodeAt(a-1)===Bh&&--a,t.charCodeAt(a-1)===Fh&&--a;(r=e())!==Oh;){for(var l=[];r!==qh&&r!==Oh;)l.push(r),r=e();n&&null==(l=n(l,f++))||i.push(l)}return i}function e(n){return n.map(r).join(t)}function r(t){return null==t?"":i.test(t+="")?'"'+t.replace(/"/g,'""')+'"':t}var i=new RegExp('["'+t+"\n\r]"),o=t.charCodeAt(0);return{parse:function(t,e){var r,i,o=n(t,function(t,n){if(r)return r(t,n-1);i=t,r=e?function(t,n){var e=Ee(t);return function(r,i){return n(e(r),i,t)}}(t,e):Ee(t)});return o.columns=i||[],o},parseRows:n,format:function(n,e){return null==e&&(e=function(t){var n=Object.create(null),e=[];return t.forEach(function(t){for(var r in t)r in n||e.push(n[r]=r)}),e}(n)),[e.map(r).join(t)].concat(n.map(function(n){return e.map(function(t){return r(n[t])}).join(t)})).join("\n")},formatRows:function(t){return t.map(e).join("\n")}}}function Ce(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.blob()}function Pe(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.arrayBuffer()}function ze(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.text()}function Re(t,n){return fetch(t,n).then(ze)}function Le(t){return function(n,e,r){return 2===arguments.length&&"function"==typeof e&&(r=e,e=void 0),Re(n,e).then(function(n){return t(n,r)})}}function De(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.json()}function Ue(t){return function(n,e){return Re(n,e).then(function(n){return(new DOMParser).parseFromString(n,t)})}}function qe(t){return function(){return t}}function Oe(){return 1e-6*(Math.random()-.5)}function Ye(t,n,e,r){if(isNaN(n)||isNaN(e))return t;var i,o,a,u,f,c,s,l,h,d=t._root,p={data:r},v=t._x0,g=t._y0,y=t._x1,_=t._y1;if(!d)return t._root=p,t;for(;d.length;)if((c=n>=(o=(v+y)/2))?v=o:y=o,(s=e>=(a=(g+_)/2))?g=a:_=a,i=d,!(d=d[l=s<<1|c]))return i[l]=p,t;if(u=+t._x.call(null,d.data),f=+t._y.call(null,d.data),n===u&&e===f)return p.next=d,i?i[l]=p:t._root=p,t;do{i=i?i[l]=new Array(4):t._root=new Array(4),(c=n>=(o=(v+y)/2))?v=o:y=o,(s=e>=(a=(g+_)/2))?g=a:_=a}while((l=s<<1|c)==(h=(f>=a)<<1|u>=o));return i[h]=d,i[l]=p,t}function Be(t,n,e,r,i){this.node=t,this.x0=n,this.y0=e,this.x1=r,this.y1=i}function Fe(t){return t[0]}function Ie(t){return t[1]}function je(t,n,e){var r=new He(null==n?Fe:n,null==e?Ie:e,NaN,NaN,NaN,NaN);return null==t?r:r.addAll(t)}function He(t,n,e,r,i,o){this._x=t,this._y=n,this._x0=e,this._y0=r,this._x1=i,this._y1=o,this._root=void 0}function Xe(t){for(var n={data:t.data},e=n;t=t.next;)e=e.next={data:t.data};return n}function Ge(t){return t.x+t.vx}function Ve(t){return t.y+t.vy}function $e(t){return t.index}function We(t,n){var e=t.get(n);if(!e)throw new Error("missing: "+n);return e}function Ze(t){return t.x}function Qe(t){return t.y}function Je(t,n){if((e=(t=n?t.toExponential(n-1):t.toExponential()).indexOf("e"))<0)return null;var e,r=t.slice(0,e);return[r.length>1?r[0]+r.slice(2):r,+t.slice(e+1)]}function Ke(t){return(t=Je(Math.abs(t)))?t[1]:NaN}function tr(t){return new nr(t)}function nr(t){if(!(n=ad.exec(t)))throw new Error("invalid format: "+t);var n;this.fill=n[1]||" ",this.align=n[2]||">",this.sign=n[3]||"-",this.symbol=n[4]||"",this.zero=!!n[5],this.width=n[6]&&+n[6],this.comma=!!n[7],this.precision=n[8]&&+n[8].slice(1),this.trim=!!n[9],this.type=n[10]||""}function er(t,n){var e=Je(t,n);if(!e)return t+"";var r=e[0],i=e[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")}function rr(t){return t}function ir(t){function n(t){function n(t){var n,r,a,s=y,x=_;if("c"===g)x=b(t)+x,t="";else{var w=(t=+t)<0;if(t=b(Math.abs(t),p),v&&(t=function(t){t:for(var n,e=t.length,r=1,i=-1;r<e;++r)switch(t[r]){case".":i=n=r;break;case"0":0===i&&(i=r),n=r;break;default:if(i>0){if(!+t[r])break t;i=0}}return i>0?t.slice(0,i)+t.slice(n+1):t}(t)),w&&0==+t&&(w=!1),s=(w?"("===c?c:"-":"-"===c||"("===c?"":c)+s,x=("s"===g?sd[8+ud/3]:"")+x+(w&&"("===c?")":""),m)for(n=-1,r=t.length;++n<r;)if(48>(a=t.charCodeAt(n))||a>57){x=(46===a?i+t.slice(n+1):t.slice(n))+x,t=t.slice(0,n);break}}d&&!l&&(t=e(t,1/0));var M=s.length+t.length+x.length,A=M<h?new Array(h-M+1).join(u):"";switch(d&&l&&(t=e(A+t,A.length?h-x.length:1/0),A=""),f){case"<":t=s+t+x+A;break;case"=":t=s+A+t+x;break;case"^":t=A.slice(0,M=A.length>>1)+s+t+x+A.slice(M);break;default:t=A+s+t+x}return o(t)}var u=(t=tr(t)).fill,f=t.align,c=t.sign,s=t.symbol,l=t.zero,h=t.width,d=t.comma,p=t.precision,v=t.trim,g=t.type;"n"===g?(d=!0,g="g"):cd[g]||(null==p&&(p=12),v=!0,g="g"),(l||"0"===u&&"="===f)&&(l=!0,u="0",f="=");var y="$"===s?r[0]:"#"===s&&/[boxX]/.test(g)?"0"+g.toLowerCase():"",_="$"===s?r[1]:/[%p]/.test(g)?a:"",b=cd[g],m=/[defgprs%]/.test(g);return p=null==p?6:/[gprs]/.test(g)?Math.max(1,Math.min(21,p)):Math.max(0,Math.min(20,p)),n.toString=function(){return t+""},n}var e=t.grouping&&t.thousands?function(t,n){return function(e,r){for(var i=e.length,o=[],a=0,u=t[0],f=0;i>0&&u>0&&(f+u+1>r&&(u=Math.max(1,r-f)),o.push(e.substring(i-=u,i+u)),!((f+=u+1)>r));)u=t[a=(a+1)%t.length];return o.reverse().join(n)}}(t.grouping,t.thousands):rr,r=t.currency,i=t.decimal,o=t.numerals?function(t){return function(n){return n.replace(/[0-9]/g,function(n){return t[+n]})}}(t.numerals):rr,a=t.percent||"%";return{format:n,formatPrefix:function(t,e){var r=n((t=tr(t),t.type="f",t)),i=3*Math.max(-8,Math.min(8,Math.floor(Ke(e)/3))),o=Math.pow(10,-i),a=sd[8+i/3];return function(t){return r(o*t)+a}}}}function or(n){return fd=ir(n),t.format=fd.format,t.formatPrefix=fd.formatPrefix,fd}function ar(t){return Math.max(0,-Ke(Math.abs(t)))}function ur(t,n){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(Ke(n)/3)))-Ke(Math.abs(t)))}function fr(t,n){return t=Math.abs(t),n=Math.abs(n)-t,Math.max(0,Ke(n)-Ke(t))+1}function cr(){return new sr}function sr(){this.reset()}function lr(t,n,e){var r=t.s=n+e,i=r-n,o=r-i;t.t=n-o+(e-i)}function hr(t){return t>1?0:t<-1?Xd:Math.acos(t)}function dr(t){return t>1?Gd:t<-1?-Gd:Math.asin(t)}function pr(t){return(t=op(t/2))*t}function vr(){}function gr(t,n){t&&sp.hasOwnProperty(t.type)&&sp[t.type](t,n)}function yr(t,n,e){var r,i=-1,o=t.length-e;for(n.lineStart();++i<o;)r=t[i],n.point(r[0],r[1],r[2]);n.lineEnd()}function _r(t,n){var e=-1,r=t.length;for(n.polygonStart();++e<r;)yr(t[e],n,1);n.polygonEnd()}function br(t,n){t&&cp.hasOwnProperty(t.type)?cp[t.type](t,n):gr(t,n)}function mr(){dp.point=wr}function xr(){Mr(ld,hd)}function wr(t,n){dp.point=Mr,ld=t,hd=n,dd=t*=Zd,pd=tp(n=(n*=Zd)/2+Vd),vd=op(n)}function Mr(t,n){n=(n*=Zd)/2+Vd;var e=(t*=Zd)-dd,r=e>=0?1:-1,i=r*e,o=tp(n),a=op(n),u=vd*a,f=pd*o+u*tp(i),c=u*r*op(i);lp.add(Kd(c,f)),dd=t,pd=o,vd=a}function Ar(t){return[Kd(t[1],t[0]),dr(t[2])]}function Tr(t){var n=t[0],e=t[1],r=tp(e);return[r*tp(n),r*op(n),op(e)]}function Nr(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]}function Sr(t,n){return[t[1]*n[2]-t[2]*n[1],t[2]*n[0]-t[0]*n[2],t[0]*n[1]-t[1]*n[0]]}function Er(t,n){t[0]+=n[0],t[1]+=n[1],t[2]+=n[2]}function kr(t,n){return[t[0]*n,t[1]*n,t[2]*n]}function Cr(t){var n=up(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=n,t[1]/=n,t[2]/=n}function Pr(t,n){Ad.push(Td=[gd=t,_d=t]),n<yd&&(yd=n),n>bd&&(bd=n)}function zr(t,n){var e=Tr([t*Zd,n*Zd]);if(Md){var r=Sr(Md,e),i=Sr([r[1],-r[0],0],r);Cr(i),i=Ar(i);var o,a=t-md,u=a>0?1:-1,f=i[0]*Wd*u,c=Qd(a)>180;c^(u*md<f&&f<u*t)?(o=i[1]*Wd)>bd&&(bd=o):(f=(f+360)%360-180,c^(u*md<f&&f<u*t)?(o=-i[1]*Wd)<yd&&(yd=o):(n<yd&&(yd=n),n>bd&&(bd=n))),c?t<md?Or(gd,t)>Or(gd,_d)&&(_d=t):Or(t,_d)>Or(gd,_d)&&(gd=t):_d>=gd?(t<gd&&(gd=t),t>_d&&(_d=t)):t>md?Or(gd,t)>Or(gd,_d)&&(_d=t):Or(t,_d)>Or(gd,_d)&&(gd=t)}else Ad.push(Td=[gd=t,_d=t]);n<yd&&(yd=n),n>bd&&(bd=n),Md=e,md=t}function Rr(){vp.point=zr}function Lr(){Td[0]=gd,Td[1]=_d,vp.point=Pr,Md=null}function Dr(t,n){if(Md){var e=t-md;pp.add(Qd(e)>180?e+(e>0?360:-360):e)}else xd=t,wd=n;dp.point(t,n),zr(t,n)}function Ur(){dp.lineStart()}function qr(){Dr(xd,wd),dp.lineEnd(),Qd(pp)>jd&&(gd=-(_d=180)),Td[0]=gd,Td[1]=_d,Md=null}function Or(t,n){return(n-=t)<0?n+360:n}function Yr(t,n){return t[0]-n[0]}function Br(t,n){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:n<t[0]||t[1]<n}function Fr(t,n){t*=Zd;var e=tp(n*=Zd);Ir(e*tp(t),e*op(t),op(n))}function Ir(t,n,e){Ed+=(t-Ed)/++Nd,kd+=(n-kd)/Nd,Cd+=(e-Cd)/Nd}function jr(){gp.point=Hr}function Hr(t,n){t*=Zd;var e=tp(n*=Zd);Yd=e*tp(t),Bd=e*op(t),Fd=op(n),gp.point=Xr,Ir(Yd,Bd,Fd)}function Xr(t,n){t*=Zd;var e=tp(n*=Zd),r=e*tp(t),i=e*op(t),o=op(n),a=Kd(up((a=Bd*o-Fd*i)*a+(a=Fd*r-Yd*o)*a+(a=Yd*i-Bd*r)*a),Yd*r+Bd*i+Fd*o);Sd+=a,Pd+=a*(Yd+(Yd=r)),zd+=a*(Bd+(Bd=i)),Rd+=a*(Fd+(Fd=o)),Ir(Yd,Bd,Fd)}function Gr(){gp.point=Fr}function Vr(){gp.point=Wr}function $r(){Zr(qd,Od),gp.point=Fr}function Wr(t,n){qd=t,Od=n,t*=Zd,n*=Zd,gp.point=Zr;var e=tp(n);Yd=e*tp(t),Bd=e*op(t),Fd=op(n),Ir(Yd,Bd,Fd)}function Zr(t,n){t*=Zd;var e=tp(n*=Zd),r=e*tp(t),i=e*op(t),o=op(n),a=Bd*o-Fd*i,u=Fd*r-Yd*o,f=Yd*i-Bd*r,c=up(a*a+u*u+f*f),s=dr(c),l=c&&-s/c;Ld+=l*a,Dd+=l*u,Ud+=l*f,Sd+=s,Pd+=s*(Yd+(Yd=r)),zd+=s*(Bd+(Bd=i)),Rd+=s*(Fd+(Fd=o)),Ir(Yd,Bd,Fd)}function Qr(t){return function(){return t}}function Jr(t,n){function e(e,r){return e=t(e,r),n(e[0],e[1])}return t.invert&&n.invert&&(e.invert=function(e,r){return(e=n.invert(e,r))&&t.invert(e[0],e[1])}),e}function Kr(t,n){return[t>Xd?t-$d:t<-Xd?t+$d:t,n]}function ti(t,n,e){return(t%=$d)?n||e?Jr(ei(t),ri(n,e)):ei(t):n||e?ri(n,e):Kr}function ni(t){return function(n,e){return n+=t,[n>Xd?n-$d:n<-Xd?n+$d:n,e]}}function ei(t){var n=ni(t);return n.invert=ni(-t),n}function ri(t,n){function e(t,n){var e=tp(n),u=tp(t)*e,f=op(t)*e,c=op(n),s=c*r+u*i;return[Kd(f*o-s*a,u*r-c*i),dr(s*o+f*a)]}var r=tp(t),i=op(t),o=tp(n),a=op(n);return e.invert=function(t,n){var e=tp(n),u=tp(t)*e,f=op(t)*e,c=op(n),s=c*o-f*a;return[Kd(f*o+c*a,u*r+s*i),dr(s*r-u*i)]},e}function ii(t){function n(n){return n=t(n[0]*Zd,n[1]*Zd),n[0]*=Wd,n[1]*=Wd,n}return t=ti(t[0]*Zd,t[1]*Zd,t.length>2?t[2]*Zd:0),n.invert=function(n){return n=t.invert(n[0]*Zd,n[1]*Zd),n[0]*=Wd,n[1]*=Wd,n},n}function oi(t,n,e,r,i,o){if(e){var a=tp(n),u=op(n),f=r*e;null==i?(i=n+r*$d,o=n-f/2):(i=ai(a,i),o=ai(a,o),(r>0?i<o:i>o)&&(i+=r*$d));for(var c,s=i;r>0?s>o:s<o;s-=f)c=Ar([a,-u*tp(s),-u*op(s)]),t.point(c[0],c[1])}}function ai(t,n){(n=Tr(n))[0]-=t,Cr(n);var e=hr(-n[1]);return((-n[2]<0?-e:e)+$d-jd)%$d}function ui(){var t,n=[];return{point:function(n,e){t.push([n,e])},lineStart:function(){n.push(t=[])},lineEnd:vr,rejoin:function(){n.length>1&&n.push(n.pop().concat(n.shift()))},result:function(){var e=n;return n=[],t=null,e}}}function fi(t,n){return Qd(t[0]-n[0])<jd&&Qd(t[1]-n[1])<jd}function ci(t,n,e,r){this.x=t,this.z=n,this.o=e,this.e=r,this.v=!1,this.n=this.p=null}function si(t,n,e,r,i){var o,a,u=[],f=[];if(t.forEach(function(t){if(!((n=t.length-1)<=0)){var n,e,r=t[0],a=t[n];if(fi(r,a)){for(i.lineStart(),o=0;o<n;++o)i.point((r=t[o])[0],r[1]);i.lineEnd()}else u.push(e=new ci(r,t,null,!0)),f.push(e.o=new ci(r,null,e,!1)),u.push(e=new ci(a,t,null,!1)),f.push(e.o=new ci(a,null,e,!0))}}),u.length){for(f.sort(n),li(u),li(f),o=0,a=f.length;o<a;++o)f[o].e=e=!e;for(var c,s,l=u[0];;){for(var h=l,d=!0;h.v;)if((h=h.n)===l)return;c=h.z,i.lineStart();do{if(h.v=h.o.v=!0,h.e){if(d)for(o=0,a=c.length;o<a;++o)i.point((s=c[o])[0],s[1]);else r(h.x,h.n.x,1,i);h=h.n}else{if(d)for(c=h.p.z,o=c.length-1;o>=0;--o)i.point((s=c[o])[0],s[1]);else r(h.x,h.p.x,-1,i);h=h.p}c=(h=h.o).z,d=!d}while(!h.v);i.lineEnd()}}}function li(t){if(n=t.length){for(var n,e,r=0,i=t[0];++r<n;)i.n=e=t[r],e.p=i,i=e;i.n=e=t[0],e.p=i}}function hi(t,n){var e=n[0],r=n[1],i=op(r),o=[op(e),-tp(e),0],a=0,u=0;Ep.reset(),1===i?r=Gd+jd:-1===i&&(r=-Gd-jd);for(var f=0,c=t.length;f<c;++f)if(l=(s=t[f]).length)for(var s,l,h=s[l-1],d=h[0],p=h[1]/2+Vd,v=op(p),g=tp(p),y=0;y<l;++y,d=b,v=x,g=w,h=_){var _=s[y],b=_[0],m=_[1]/2+Vd,x=op(m),w=tp(m),M=b-d,A=M>=0?1:-1,T=A*M,N=T>Xd,S=v*x;if(Ep.add(Kd(S*A*op(T),g*w+S*tp(T))),a+=N?M+A*$d:M,N^d>=e^b>=e){var E=Sr(Tr(h),Tr(_));Cr(E);var k=Sr(o,E);Cr(k);var C=(N^M>=0?-1:1)*dr(k[2]);(r>C||r===C&&(E[0]||E[1]))&&(u+=N^M>=0?1:-1)}}return(a<-jd||a<jd&&Ep<-jd)^1&u}function di(t,n,e,r){return function(i){function o(n,e){t(n,e)&&i.point(n,e)}function a(t,n){v.point(t,n)}function u(){m.point=a,v.lineStart()}function f(){m.point=o,v.lineEnd()}function c(t,n){p.push([t,n]),_.point(t,n)}function s(){_.lineStart(),p=[]}function l(){c(p[0][0],p[0][1]),_.lineEnd();var t,n,e,r,o=_.clean(),a=g.result(),u=a.length;if(p.pop(),h.push(p),p=null,u)if(1&o){if(e=a[0],(n=e.length-1)>0){for(b||(i.polygonStart(),b=!0),i.lineStart(),t=0;t<n;++t)i.point((r=e[t])[0],r[1]);i.lineEnd()}}else u>1&&2&o&&a.push(a.pop().concat(a.shift())),d.push(a.filter(pi))}var h,d,p,v=n(i),g=ui(),_=n(g),b=!1,m={point:o,lineStart:u,lineEnd:f,polygonStart:function(){m.point=c,m.lineStart=s,m.lineEnd=l,d=[],h=[]},polygonEnd:function(){m.point=o,m.lineStart=u,m.lineEnd=f,d=y(d);var t=hi(h,r);d.length?(b||(i.polygonStart(),b=!0),si(d,vi,t,e,i)):t&&(b||(i.polygonStart(),b=!0),i.lineStart(),e(null,null,1,i),i.lineEnd()),b&&(i.polygonEnd(),b=!1),d=h=null},sphere:function(){i.polygonStart(),i.lineStart(),e(null,null,1,i),i.lineEnd(),i.polygonEnd()}};return m}}function pi(t){return t.length>1}function vi(t,n){return((t=t.x)[0]<0?t[1]-Gd-jd:Gd-t[1])-((n=n.x)[0]<0?n[1]-Gd-jd:Gd-n[1])}function gi(t){function n(t,n){return tp(t)*tp(n)>i}function e(t,n,e){var r=[1,0,0],o=Sr(Tr(t),Tr(n)),a=Nr(o,o),u=o[0],f=a-u*u;if(!f)return!e&&t;var c=i*a/f,s=-i*u/f,l=Sr(r,o),h=kr(r,c);Er(h,kr(o,s));var d=l,p=Nr(h,d),v=Nr(d,d),g=p*p-v*(Nr(h,h)-1);if(!(g<0)){var y=up(g),_=kr(d,(-p-y)/v);if(Er(_,h),_=Ar(_),!e)return _;var b,m=t[0],x=n[0],w=t[1],M=n[1];x<m&&(b=m,m=x,x=b);var A=x-m,T=Qd(A-Xd)<jd;if(!T&&M<w&&(b=w,w=M,M=b),T||A<jd?T?w+M>0^_[1]<(Qd(_[0]-m)<jd?w:M):w<=_[1]&&_[1]<=M:A>Xd^(m<=_[0]&&_[0]<=x)){var N=kr(d,(-p+y)/v);return Er(N,h),[_,Ar(N)]}}}function r(n,e){var r=a?t:Xd-t,i=0;return n<-r?i|=1:n>r&&(i|=2),e<-r?i|=4:e>r&&(i|=8),i}var i=tp(t),o=6*Zd,a=i>0,u=Qd(i)>jd;return di(n,function(t){var i,o,f,c,s;return{lineStart:function(){c=f=!1,s=1},point:function(l,h){var d,p=[l,h],v=n(l,h),g=a?v?0:r(l,h):v?r(l+(l<0?Xd:-Xd),h):0;if(!i&&(c=f=v)&&t.lineStart(),v!==f&&(!(d=e(i,p))||fi(i,d)||fi(p,d))&&(p[0]+=jd,p[1]+=jd,v=n(p[0],p[1])),v!==f)s=0,v?(t.lineStart(),d=e(p,i),t.point(d[0],d[1])):(d=e(i,p),t.point(d[0],d[1]),t.lineEnd()),i=d;else if(u&&i&&a^v){var y;g&o||!(y=e(p,i,!0))||(s=0,a?(t.lineStart(),t.point(y[0][0],y[0][1]),t.point(y[1][0],y[1][1]),t.lineEnd()):(t.point(y[1][0],y[1][1]),t.lineEnd(),t.lineStart(),t.point(y[0][0],y[0][1])))}!v||i&&fi(i,p)||t.point(p[0],p[1]),i=p,f=v,o=g},lineEnd:function(){f&&t.lineEnd(),i=null},clean:function(){return s|(c&&f)<<1}}},function(n,e,r,i){oi(i,t,o,r,n,e)},a?[0,-t]:[-Xd,t-Xd])}function yi(t,n,e,r){function i(i,o){return t<=i&&i<=e&&n<=o&&o<=r}function o(i,o,u,c){var s=0,l=0;if(null==i||(s=a(i,u))!==(l=a(o,u))||f(i,o)<0^u>0)do{c.point(0===s||3===s?t:e,s>1?r:n)}while((s=(s+u+4)%4)!==l);else c.point(o[0],o[1])}function a(r,i){return Qd(r[0]-t)<jd?i>0?0:3:Qd(r[0]-e)<jd?i>0?2:1:Qd(r[1]-n)<jd?i>0?1:0:i>0?3:2}function u(t,n){return f(t.x,n.x)}function f(t,n){var e=a(t,1),r=a(n,1);return e!==r?e-r:0===e?n[1]-t[1]:1===e?t[0]-n[0]:2===e?t[1]-n[1]:n[0]-t[0]}return function(a){function f(t,n){i(t,n)&&w.point(t,n)}function c(o,a){var u=i(o,a);if(l&&h.push([o,a]),m)d=o,p=a,v=u,m=!1,u&&(w.lineStart(),w.point(o,a));else if(u&&b)w.point(o,a);else{var f=[g=Math.max(Pp,Math.min(Cp,g)),_=Math.max(Pp,Math.min(Cp,_))],c=[o=Math.max(Pp,Math.min(Cp,o)),a=Math.max(Pp,Math.min(Cp,a))];!function(t,n,e,r,i,o){var a,u=t[0],f=t[1],c=0,s=1,l=n[0]-u,h=n[1]-f;if(a=e-u,l||!(a>0)){if(a/=l,l<0){if(a<c)return;a<s&&(s=a)}else if(l>0){if(a>s)return;a>c&&(c=a)}if(a=i-u,l||!(a<0)){if(a/=l,l<0){if(a>s)return;a>c&&(c=a)}else if(l>0){if(a<c)return;a<s&&(s=a)}if(a=r-f,h||!(a>0)){if(a/=h,h<0){if(a<c)return;a<s&&(s=a)}else if(h>0){if(a>s)return;a>c&&(c=a)}if(a=o-f,h||!(a<0)){if(a/=h,h<0){if(a>s)return;a>c&&(c=a)}else if(h>0){if(a<c)return;a<s&&(s=a)}return c>0&&(t[0]=u+c*l,t[1]=f+c*h),s<1&&(n[0]=u+s*l,n[1]=f+s*h),!0}}}}}(f,c,t,n,e,r)?u&&(w.lineStart(),w.point(o,a),x=!1):(b||(w.lineStart(),w.point(f[0],f[1])),w.point(c[0],c[1]),u||w.lineEnd(),x=!1)}g=o,_=a,b=u}var s,l,h,d,p,v,g,_,b,m,x,w=a,M=ui(),A={point:f,lineStart:function(){A.point=c,l&&l.push(h=[]),m=!0,b=!1,g=_=NaN},lineEnd:function(){s&&(c(d,p),v&&b&&M.rejoin(),s.push(M.result())),A.point=f,b&&w.lineEnd()},polygonStart:function(){w=M,s=[],l=[],x=!0},polygonEnd:function(){var n=function(){for(var n=0,e=0,i=l.length;e<i;++e)for(var o,a,u=l[e],f=1,c=u.length,s=u[0],h=s[0],d=s[1];f<c;++f)o=h,a=d,h=(s=u[f])[0],d=s[1],a<=r?d>r&&(h-o)*(r-a)>(d-a)*(t-o)&&++n:d<=r&&(h-o)*(r-a)<(d-a)*(t-o)&&--n;return n}(),e=x&&n,i=(s=y(s)).length;(e||i)&&(a.polygonStart(),e&&(a.lineStart(),o(null,null,1,a),a.lineEnd()),i&&si(s,u,n,o,a),a.polygonEnd()),w=a,s=l=h=null}};return A}}function _i(){Rp.point=Rp.lineEnd=vr}function bi(t,n){yp=t*=Zd,_p=op(n*=Zd),bp=tp(n),Rp.point=mi}function mi(t,n){t*=Zd;var e=op(n*=Zd),r=tp(n),i=Qd(t-yp),o=tp(i),a=r*op(i),u=bp*e-_p*r*o,f=_p*e+bp*r*o;zp.add(Kd(up(a*a+u*u),f)),yp=t,_p=e,bp=r}function xi(t){return zp.reset(),br(t,Rp),+zp}function wi(t,n){return Lp[0]=t,Lp[1]=n,xi(Dp)}function Mi(t,n){return!(!t||!qp.hasOwnProperty(t.type))&&qp[t.type](t,n)}function Ai(t,n){return 0===wi(t,n)}function Ti(t,n){var e=wi(t[0],t[1]);return wi(t[0],n)+wi(n,t[1])<=e+jd}function Ni(t,n){return!!hi(t.map(Si),Ei(n))}function Si(t){return(t=t.map(Ei)).pop(),t}function Ei(t){return[t[0]*Zd,t[1]*Zd]}function ki(t,n,e){var r=s(t,n-jd,e).concat(n);return function(t){return r.map(function(n){return[t,n]})}}function Ci(t,n,e){var r=s(t,n-jd,e).concat(n);return function(t){return r.map(function(n){return[n,t]})}}function Pi(){function t(){return{type:"MultiLineString",coordinates:n()}}function n(){return s(np(o/y)*y,i,y).map(d).concat(s(np(c/_)*_,f,_).map(p)).concat(s(np(r/v)*v,e,v).filter(function(t){return Qd(t%y)>jd}).map(l)).concat(s(np(u/g)*g,a,g).filter(function(t){return Qd(t%_)>jd}).map(h))}var e,r,i,o,a,u,f,c,l,h,d,p,v=10,g=v,y=90,_=360,b=2.5;return t.lines=function(){return n().map(function(t){return{type:"LineString",coordinates:t}})},t.outline=function(){return{type:"Polygon",coordinates:[d(o).concat(p(f).slice(1),d(i).reverse().slice(1),p(c).reverse().slice(1))]}},t.extent=function(n){return arguments.length?t.extentMajor(n).extentMinor(n):t.extentMinor()},t.extentMajor=function(n){return arguments.length?(o=+n[0][0],i=+n[1][0],c=+n[0][1],f=+n[1][1],o>i&&(n=o,o=i,i=n),c>f&&(n=c,c=f,f=n),t.precision(b)):[[o,c],[i,f]]},t.extentMinor=function(n){return arguments.length?(r=+n[0][0],e=+n[1][0],u=+n[0][1],a=+n[1][1],r>e&&(n=r,r=e,e=n),u>a&&(n=u,u=a,a=n),t.precision(b)):[[r,u],[e,a]]},t.step=function(n){return arguments.length?t.stepMajor(n).stepMinor(n):t.stepMinor()},t.stepMajor=function(n){return arguments.length?(y=+n[0],_=+n[1],t):[y,_]},t.stepMinor=function(n){return arguments.length?(v=+n[0],g=+n[1],t):[v,g]},t.precision=function(n){return arguments.length?(b=+n,l=ki(u,a,90),h=Ci(r,e,b),d=ki(c,f,90),p=Ci(o,i,b),t):b},t.extentMajor([[-180,-90+jd],[180,90-jd]]).extentMinor([[-180,-80-jd],[180,80+jd]])}function zi(t){return t}function Ri(){Bp.point=Li}function Li(t,n){Bp.point=Di,mp=wp=t,xp=Mp=n}function Di(t,n){Yp.add(Mp*t-wp*n),wp=t,Mp=n}function Ui(){Di(mp,xp)}function qi(t,n){Gp+=t,Vp+=n,++$p}function Oi(){nv.point=Yi}function Yi(t,n){nv.point=Bi,qi(Np=t,Sp=n)}function Bi(t,n){var e=t-Np,r=n-Sp,i=up(e*e+r*r);Wp+=i*(Np+t)/2,Zp+=i*(Sp+n)/2,Qp+=i,qi(Np=t,Sp=n)}function Fi(){nv.point=qi}function Ii(){nv.point=Hi}function ji(){Xi(Ap,Tp)}function Hi(t,n){nv.point=Xi,qi(Ap=Np=t,Tp=Sp=n)}function Xi(t,n){var e=t-Np,r=n-Sp,i=up(e*e+r*r);Wp+=i*(Np+t)/2,Zp+=i*(Sp+n)/2,Qp+=i,Jp+=(i=Sp*t-Np*n)*(Np+t),Kp+=i*(Sp+n),tv+=3*i,qi(Np=t,Sp=n)}function Gi(t){this._context=t}function Vi(t,n){fv.point=$i,rv=ov=t,iv=av=n}function $i(t,n){ov-=t,av-=n,uv.add(up(ov*ov+av*av)),ov=t,av=n}function Wi(){this._string=[]}function Zi(t){return"m0,"+t+"a"+t+","+t+" 0 1,1 0,"+-2*t+"a"+t+","+t+" 0 1,1 0,"+2*t+"z"}function Qi(t){return function(n){var e=new Ji;for(var r in t)e[r]=t[r];return e.stream=n,e}}function Ji(){}function Ki(t,n,e){var r=t.clipExtent&&t.clipExtent();return t.scale(150).translate([0,0]),null!=r&&t.clipExtent(null),br(e,t.stream(Xp)),n(Xp.result()),null!=r&&t.clipExtent(r),t}function to(t,n,e){return Ki(t,function(e){var r=n[1][0]-n[0][0],i=n[1][1]-n[0][1],o=Math.min(r/(e[1][0]-e[0][0]),i/(e[1][1]-e[0][1])),a=+n[0][0]+(r-o*(e[1][0]+e[0][0]))/2,u=+n[0][1]+(i-o*(e[1][1]+e[0][1]))/2;t.scale(150*o).translate([a,u])},e)}function no(t,n,e){return to(t,[[0,0],n],e)}function eo(t,n,e){return Ki(t,function(e){var r=+n,i=r/(e[1][0]-e[0][0]),o=(r-i*(e[1][0]+e[0][0]))/2,a=-i*e[0][1];t.scale(150*i).translate([o,a])},e)}function ro(t,n,e){return Ki(t,function(e){var r=+n,i=r/(e[1][1]-e[0][1]),o=-i*e[0][0],a=(r-i*(e[1][1]+e[0][1]))/2;t.scale(150*i).translate([o,a])},e)}function io(t,n){return+n?function(t,n){function e(r,i,o,a,u,f,c,s,l,h,d,p,v,g){var y=c-r,_=s-i,b=y*y+_*_;if(b>4*n&&v--){var m=a+h,x=u+d,w=f+p,M=up(m*m+x*x+w*w),A=dr(w/=M),T=Qd(Qd(w)-1)<jd||Qd(o-l)<jd?(o+l)/2:Kd(x,m),N=t(T,A),S=N[0],E=N[1],k=S-r,C=E-i,P=_*k-y*C;(P*P/b>n||Qd((y*k+_*C)/b-.5)>.3||a*h+u*d+f*p<sv)&&(e(r,i,o,a,u,f,S,E,T,m/=M,x/=M,w,v,g),g.point(S,E),e(S,E,T,m,x,w,c,s,l,h,d,p,v,g))}}return function(n){function r(e,r){e=t(e,r),n.point(e[0],e[1])}function i(){y=NaN,w.point=o,n.lineStart()}function o(r,i){var o=Tr([r,i]),a=t(r,i);e(y,_,g,b,m,x,y=a[0],_=a[1],g=r,b=o[0],m=o[1],x=o[2],cv,n),n.point(y,_)}function a(){w.point=r,n.lineEnd()}function u(){i(),w.point=f,w.lineEnd=c}function f(t,n){o(s=t,n),l=y,h=_,d=b,p=m,v=x,w.point=o}function c(){e(y,_,g,b,m,x,l,h,s,d,p,v,cv,n),w.lineEnd=a,a()}var s,l,h,d,p,v,g,y,_,b,m,x,w={point:r,lineStart:i,lineEnd:a,polygonStart:function(){n.polygonStart(),w.lineStart=u},polygonEnd:function(){n.polygonEnd(),w.lineStart=i}};return w}}(t,n):function(t){return Qi({point:function(n,e){n=t(n,e),this.stream.point(n[0],n[1])}})}(t)}function oo(t,n,e,r){function i(t,r){return[u*t-f*r+n,e-f*t-u*r]}var o=tp(r),a=op(r),u=o*t,f=a*t,c=o/t,s=a/t,l=(a*e-o*n)/t,h=(a*n+o*e)/t;return i.invert=function(t,n){return[c*t-s*n+l,h-s*t-c*n]},i}function ao(t){return uo(function(){return t})()}function uo(t){function n(t){return l(t[0]*Zd,t[1]*Zd)}function e(){var t=oo(p,0,0,w).apply(null,i(y,_)),n=(w?oo:function(t,n,e){function r(r,i){return[n+t*r,e-t*i]}return r.invert=function(r,i){return[(r-n)/t,(e-i)/t]},r})(p,v-t[0],g-t[1],w);return o=ti(b,m,x),s=Jr(i,n),l=Jr(o,s),c=io(s,S),r()}function r(){return h=d=null,n}var i,o,a,u,f,c,s,l,h,d,p=150,v=480,g=250,y=0,_=0,b=0,m=0,x=0,w=0,M=null,A=kp,T=null,N=zi,S=.5;return n.stream=function(t){return h&&d===t?h:h=lv(function(t){return Qi({point:function(n,e){var r=t(n,e);return this.stream.point(r[0],r[1])}})}(o)(A(c(N(d=t)))))},n.preclip=function(t){return arguments.length?(A=t,M=void 0,r()):A},n.postclip=function(t){return arguments.length?(N=t,T=a=u=f=null,r()):N},n.clipAngle=function(t){return arguments.length?(A=+t?gi(M=t*Zd):(M=null,kp),r()):M*Wd},n.clipExtent=function(t){return arguments.length?(N=null==t?(T=a=u=f=null,zi):yi(T=+t[0][0],a=+t[0][1],u=+t[1][0],f=+t[1][1]),r()):null==T?null:[[T,a],[u,f]]},n.scale=function(t){return arguments.length?(p=+t,e()):p},n.translate=function(t){return arguments.length?(v=+t[0],g=+t[1],e()):[v,g]},n.center=function(t){return arguments.length?(y=t[0]%360*Zd,_=t[1]%360*Zd,e()):[y*Wd,_*Wd]},n.rotate=function(t){return arguments.length?(b=t[0]%360*Zd,m=t[1]%360*Zd,x=t.length>2?t[2]%360*Zd:0,e()):[b*Wd,m*Wd,x*Wd]},n.angle=function(t){return arguments.length?(w=t%360*Zd,e()):w*Wd},n.precision=function(t){return arguments.length?(c=io(s,S=t*t),r()):up(S)},n.fitExtent=function(t,e){return to(n,t,e)},n.fitSize=function(t,e){return no(n,t,e)},n.fitWidth=function(t,e){return eo(n,t,e)},n.fitHeight=function(t,e){return ro(n,t,e)},function(){return i=t.apply(this,arguments),n.invert=i.invert&&function(t){return(t=l.invert(t[0],t[1]))&&[t[0]*Wd,t[1]*Wd]},e()}}function fo(t){var n=0,e=Xd/3,r=uo(t),i=r(n,e);return i.parallels=function(t){return arguments.length?r(n=t[0]*Zd,e=t[1]*Zd):[n*Wd,e*Wd]},i}function co(t,n){function e(t,n){var e=up(o-2*i*op(n))/i;return[e*op(t*=i),a-e*tp(t)]}var r=op(t),i=(r+op(n))/2;if(Qd(i)<jd)return function(t){function n(t,n){return[t*e,op(n)/e]}var e=tp(t);return n.invert=function(t,n){return[t/e,dr(n*e)]},n}(t);var o=1+r*(2*i-r),a=up(o)/i;return e.invert=function(t,n){var e=a-n;return[Kd(t,Qd(e))/i*ap(e),dr((o-(t*t+e*e)*i*i)/(2*i))]},e}function so(){return fo(co).scale(155.424).center([0,33.6442])}function lo(){return so().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])}function ho(t){return function(n,e){var r=tp(n),i=tp(e),o=t(r*i);return[o*i*op(n),o*op(e)]}}function po(t){return function(n,e){var r=up(n*n+e*e),i=t(r),o=op(i),a=tp(i);return[Kd(n*o,r*a),dr(r&&e*o/r)]}}function vo(t,n){return[t,rp(fp((Gd+n)/2))]}function go(t){function n(){var n=Xd*u(),a=o(ii(o.rotate()).invert([0,0]));return c(null==s?[[a[0]-n,a[1]-n],[a[0]+n,a[1]+n]]:t===vo?[[Math.max(a[0]-n,s),e],[Math.min(a[0]+n,r),i]]:[[s,Math.max(a[1]-n,e)],[r,Math.min(a[1]+n,i)]])}var e,r,i,o=ao(t),a=o.center,u=o.scale,f=o.translate,c=o.clipExtent,s=null;return o.scale=function(t){return arguments.length?(u(t),n()):u()},o.translate=function(t){return arguments.length?(f(t),n()):f()},o.center=function(t){return arguments.length?(a(t),n()):a()},o.clipExtent=function(t){return arguments.length?(null==t?s=e=r=i=null:(s=+t[0][0],e=+t[0][1],r=+t[1][0],i=+t[1][1]),n()):null==s?null:[[s,e],[r,i]]},n()}function yo(t){return fp((Gd+t)/2)}function _o(t,n){function e(t,n){o>0?n<-Gd+jd&&(n=-Gd+jd):n>Gd-jd&&(n=Gd-jd);var e=o/ip(yo(n),i);return[e*op(i*t),o-e*tp(i*t)]}var r=tp(t),i=t===n?op(t):rp(r/tp(n))/rp(yo(n)/yo(t)),o=r*ip(yo(t),i)/i;return i?(e.invert=function(t,n){var e=o-n,r=ap(i)*up(t*t+e*e);return[Kd(t,Qd(e))/i*ap(e),2*Jd(ip(o/r,1/i))-Gd]},e):vo}function bo(t,n){return[t,n]}function mo(t,n){function e(t,n){var e=o-n,r=i*t;return[e*op(r),o-e*tp(r)]}var r=tp(t),i=t===n?op(t):(r-tp(n))/(n-t),o=r/i+t;return Qd(i)<jd?bo:(e.invert=function(t,n){var e=o-n;return[Kd(t,Qd(e))/i*ap(e),o-ap(i)*up(t*t+e*e)]},e)}function xo(t,n){var e=tp(n),r=tp(t)*e;return[e*op(t)/r,op(n)/r]}function wo(t,n,e,r){return 1===t&&1===n&&0===e&&0===r?zi:Qi({point:function(i,o){this.stream.point(i*t+e,o*n+r)}})}function Mo(t,n){var e=n*n,r=e*e;return[t*(.8707-.131979*e+r*(r*(.003971*e-.001529*r)-.013791)),n*(1.007226+e*(.015085+r*(.028874*e-.044475-.005916*r)))]}function Ao(t,n){return[tp(n)*op(t),op(n)]}function To(t,n){var e=tp(n),r=1+tp(t)*e;return[e*op(t)/r,op(n)/r]}function No(t,n){return[rp(fp((Gd+n)/2)),-t]}function So(t,n){return t.parent===n.parent?1:2}function Eo(t,n){return t+n.x}function ko(t,n){return Math.max(t,n.y)}function Co(t){var n=0,e=t.children,r=e&&e.length;if(r)for(;--r>=0;)n+=e[r].value;else n=1;t.value=n}function Po(t,n){var e,r,i,o,a,u=new Do(t),f=+t.value&&(u.value=t.value),c=[u];for(null==n&&(n=zo);e=c.pop();)if(f&&(e.value=+e.data.value),(i=n(e.data))&&(a=i.length))for(e.children=new Array(a),o=a-1;o>=0;--o)c.push(r=e.children[o]=new Do(i[o])),r.parent=e,r.depth=e.depth+1;return u.eachBefore(Lo)}function zo(t){return t.children}function Ro(t){t.data=t.data.data}function Lo(t){var n=0;do{t.height=n}while((t=t.parent)&&t.height<++n)}function Do(t){this.data=t,this.depth=this.height=0,this.parent=null}function Uo(t){for(var n,e,r=0,i=(t=function(t){for(var n,e,r=t.length;r;)e=Math.random()*r--|0,n=t[r],t[r]=t[e],t[e]=n;return t}(pv.call(t))).length,o=[];r<i;)n=t[r],e&&Oo(e,n)?++r:(e=function(t){switch(t.length){case 1:return function(t){return{x:t.x,y:t.y,r:t.r}}(t[0]);case 2:return Bo(t[0],t[1]);case 3:return Fo(t[0],t[1],t[2])}}(o=function(t,n){var e,r;if(Yo(n,t))return[n];for(e=0;e<t.length;++e)if(qo(n,t[e])&&Yo(Bo(t[e],n),t))return[t[e],n];for(e=0;e<t.length-1;++e)for(r=e+1;r<t.length;++r)if(qo(Bo(t[e],t[r]),n)&&qo(Bo(t[e],n),t[r])&&qo(Bo(t[r],n),t[e])&&Yo(Fo(t[e],t[r],n),t))return[t[e],t[r],n];throw new Error}(o,n)),r=0);return e}function qo(t,n){var e=t.r-n.r,r=n.x-t.x,i=n.y-t.y;return e<0||e*e<r*r+i*i}function Oo(t,n){var e=t.r-n.r+1e-6,r=n.x-t.x,i=n.y-t.y;return e>0&&e*e>r*r+i*i}function Yo(t,n){for(var e=0;e<n.length;++e)if(!Oo(t,n[e]))return!1;return!0}function Bo(t,n){var e=t.x,r=t.y,i=t.r,o=n.x,a=n.y,u=n.r,f=o-e,c=a-r,s=u-i,l=Math.sqrt(f*f+c*c);return{x:(e+o+f/l*s)/2,y:(r+a+c/l*s)/2,r:(l+i+u)/2}}function Fo(t,n,e){var r=t.x,i=t.y,o=t.r,a=n.x,u=n.y,f=n.r,c=e.x,s=e.y,l=e.r,h=r-a,d=r-c,p=i-u,v=i-s,g=f-o,y=l-o,_=r*r+i*i-o*o,b=_-a*a-u*u+f*f,m=_-c*c-s*s+l*l,x=d*p-h*v,w=(p*m-v*b)/(2*x)-r,M=(v*g-p*y)/x,A=(d*b-h*m)/(2*x)-i,T=(h*y-d*g)/x,N=M*M+T*T-1,S=2*(o+w*M+A*T),E=w*w+A*A-o*o,k=-(N?(S+Math.sqrt(S*S-4*N*E))/(2*N):E/S);return{x:r+w+M*k,y:i+A+T*k,r:k}}function Io(t,n,e){var r,i,o,a,u=t.x-n.x,f=t.y-n.y,c=u*u+f*f;c?(i=n.r+e.r,i*=i,a=t.r+e.r,i>(a*=a)?(r=(c+a-i)/(2*c),o=Math.sqrt(Math.max(0,a/c-r*r)),e.x=t.x-r*u-o*f,e.y=t.y-r*f+o*u):(r=(c+i-a)/(2*c),o=Math.sqrt(Math.max(0,i/c-r*r)),e.x=n.x+r*u-o*f,e.y=n.y+r*f+o*u)):(e.x=n.x+e.r,e.y=n.y)}function jo(t,n){var e=t.r+n.r-1e-6,r=n.x-t.x,i=n.y-t.y;return e>0&&e*e>r*r+i*i}function Ho(t){var n=t._,e=t.next._,r=n.r+e.r,i=(n.x*e.r+e.x*n.r)/r,o=(n.y*e.r+e.y*n.r)/r;return i*i+o*o}function Xo(t){this._=t,this.next=null,this.previous=null}function Go(t){if(!(i=t.length))return 0;var n,e,r,i,o,a,u,f,c,s,l;if(n=t[0],n.x=0,n.y=0,!(i>1))return n.r;if(e=t[1],n.x=-e.r,e.x=n.r,e.y=0,!(i>2))return n.r+e.r;Io(e,n,r=t[2]),n=new Xo(n),e=new Xo(e),r=new Xo(r),n.next=r.previous=e,e.next=n.previous=r,r.next=e.previous=n;t:for(u=3;u<i;++u){Io(n._,e._,r=t[u]),r=new Xo(r),f=e.next,c=n.previous,s=e._.r,l=n._.r;do{if(s<=l){if(jo(f._,r._)){e=f,n.next=e,e.previous=n,--u;continue t}s+=f._.r,f=f.next}else{if(jo(c._,r._)){(n=c).next=e,e.previous=n,--u;continue t}l+=c._.r,c=c.previous}}while(f!==c.next);for(r.previous=n,r.next=e,n.next=e.previous=e=r,o=Ho(n);(r=r.next)!==e;)(a=Ho(r))<o&&(n=r,o=a);e=n.next}for(n=[e._],r=e;(r=r.next)!==e;)n.push(r._);for(r=Uo(n),u=0;u<i;++u)n=t[u],n.x-=r.x,n.y-=r.y;return r.r}function Vo(t){if("function"!=typeof t)throw new Error;return t}function $o(){return 0}function Wo(t){return function(){return t}}function Zo(t){return Math.sqrt(t.value)}function Qo(t){return function(n){n.children||(n.r=Math.max(0,+t(n)||0))}}function Jo(t,n){return function(e){if(r=e.children){var r,i,o,a=r.length,u=t(e)*n||0;if(u)for(i=0;i<a;++i)r[i].r+=u;if(o=Go(r),u)for(i=0;i<a;++i)r[i].r-=u;e.r=o+u}}}function Ko(t){return function(n){var e=n.parent;n.r*=t,e&&(n.x=e.x+t*n.x,n.y=e.y+t*n.y)}}function ta(t){t.x0=Math.round(t.x0),t.y0=Math.round(t.y0),t.x1=Math.round(t.x1),t.y1=Math.round(t.y1)}function na(t,n,e,r,i){for(var o,a=t.children,u=-1,f=a.length,c=t.value&&(r-n)/t.value;++u<f;)(o=a[u]).y0=e,o.y1=i,o.x0=n,o.x1=n+=o.value*c}function ea(t){return t.id}function ra(t){return t.parentId}function ia(t,n){return t.parent===n.parent?1:2}function oa(t){var n=t.children;return n?n[0]:t.t}function aa(t){var n=t.children;return n?n[n.length-1]:t.t}function ua(t,n,e){var r=e/(n.i-t.i);n.c-=r,n.s+=e,t.c+=r,n.z+=e,n.m+=e}function fa(t,n,e){return t.a.parent===n.parent?t.a:e}function ca(t,n){this._=t,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=n}function sa(t,n,e,r,i){for(var o,a=t.children,u=-1,f=a.length,c=t.value&&(i-e)/t.value;++u<f;)(o=a[u]).x0=n,o.x1=r,o.y0=e,o.y1=e+=o.value*c}function la(t,n,e,r,i,o){for(var a,u,f,c,s,l,h,d,p,v,g,y=[],_=n.children,b=0,m=0,x=_.length,w=n.value;b<x;){f=i-e,c=o-r;do{s=_[m++].value}while(!s&&m<x);for(l=h=s,g=s*s*(v=Math.max(c/f,f/c)/(w*t)),p=Math.max(h/g,g/l);m<x;++m){if(s+=u=_[m].value,u<l&&(l=u),u>h&&(h=u),g=s*s*v,(d=Math.max(h/g,g/l))>p){s-=u;break}p=d}y.push(a={value:s,dice:f<c,children:_.slice(b,m)}),a.dice?na(a,e,r,i,w?r+=c*s/w:o):sa(a,e,r,w?e+=f*s/w:i,o),w-=s,b=m}return y}function ha(t,n,e){return(n[0]-t[0])*(e[1]-t[1])-(n[1]-t[1])*(e[0]-t[0])}function da(t,n){return t[0]-n[0]||t[1]-n[1]}function pa(t){for(var n=t.length,e=[0,1],r=2,i=2;i<n;++i){for(;r>1&&ha(t[e[r-2]],t[e[r-1]],t[i])<=0;)--r;e[r++]=i}return e.slice(0,r)}function va(){return Math.random()}function ga(t){function n(n){var o=n+"",a=e.get(o);if(!a){if(i!==Cv)return i;e.set(o,a=r.push(n))}return t[(a-1)%t.length]}var e=he(),r=[],i=Cv;return t=null==t?[]:kv.call(t),n.domain=function(t){if(!arguments.length)return r.slice();r=[],e=he();for(var i,o,a=-1,u=t.length;++a<u;)e.has(o=(i=t[a])+"")||e.set(o,r.push(i));return n},n.range=function(e){return arguments.length?(t=kv.call(e),n):t.slice()},n.unknown=function(t){return arguments.length?(i=t,n):i},n.copy=function(){return ga().domain(r).range(t).unknown(i)},n}function ya(){function t(){var t=i().length,r=a[1]<a[0],h=a[r-0],d=a[1-r];n=(d-h)/Math.max(1,t-f+2*c),u&&(n=Math.floor(n)),h+=(d-h-n*(t-f))*l,e=n*(1-f),u&&(h=Math.round(h),e=Math.round(e));var p=s(t).map(function(t){return h+n*t});return o(r?p.reverse():p)}var n,e,r=ga().unknown(void 0),i=r.domain,o=r.range,a=[0,1],u=!1,f=0,c=0,l=.5;return delete r.unknown,r.domain=function(n){return arguments.length?(i(n),t()):i()},r.range=function(n){return arguments.length?(a=[+n[0],+n[1]],t()):a.slice()},r.rangeRound=function(n){return a=[+n[0],+n[1]],u=!0,t()},r.bandwidth=function(){return e},r.step=function(){return n},r.round=function(n){return arguments.length?(u=!!n,t()):u},r.padding=function(n){return arguments.length?(f=c=Math.max(0,Math.min(1,n)),t()):f},r.paddingInner=function(n){return arguments.length?(f=Math.max(0,Math.min(1,n)),t()):f},r.paddingOuter=function(n){return arguments.length?(c=Math.max(0,Math.min(1,n)),t()):c},r.align=function(n){return arguments.length?(l=Math.max(0,Math.min(1,n)),t()):l},r.copy=function(){return ya().domain(i()).range(a).round(u).paddingInner(f).paddingOuter(c).align(l)},t()}function _a(t){var n=t.copy;return t.padding=t.paddingOuter,delete t.paddingInner,delete t.paddingOuter,t.copy=function(){return _a(n())},t}function ba(t){return function(){return t}}function ma(t){return+t}function xa(t,n){return(n-=t=+t)?function(e){return(e-t)/n}:ba(n)}function wa(t,n,e,r){var i=t[0],o=t[1],a=n[0],u=n[1];return o<i?(i=e(o,i),a=r(u,a)):(i=e(i,o),a=r(a,u)),function(t){return a(i(t))}}function Ma(t,n,e,r){var i=Math.min(t.length,n.length)-1,o=new Array(i),a=new Array(i),u=-1;for(t[i]<t[0]&&(t=t.slice().reverse(),n=n.slice().reverse());++u<i;)o[u]=e(t[u],t[u+1]),a[u]=r(n[u],n[u+1]);return function(n){var e=Jc(t,n,1,i)-1;return a[e](o[e](n))}}function Aa(t,n){return n.domain(t.domain()).range(t.range()).interpolate(t.interpolate()).clamp(t.clamp())}function Ta(t,n){function e(){return i=Math.min(u.length,f.length)>2?Ma:wa,o=a=null,r}function r(n){return(o||(o=i(u,f,s?function(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=n?0:t>=e?1:r(t)}}}(t):t,c)))(+n)}var i,o,a,u=Pv,f=Pv,c=dn,s=!1;return r.invert=function(t){return(a||(a=i(f,u,xa,s?function(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=0?n:t>=1?e:r(t)}}}(n):n)))(+t)},r.domain=function(t){return arguments.length?(u=Ev.call(t,ma),e()):u.slice()},r.range=function(t){return arguments.length?(f=kv.call(t),e()):f.slice()},r.rangeRound=function(t){return f=kv.call(t),c=pn,e()},r.clamp=function(t){return arguments.length?(s=!!t,e()):s},r.interpolate=function(t){return arguments.length?(c=t,e()):c},e()}function Na(n){var e=n.domain;return n.ticks=function(t){var n=e();return l(n[0],n[n.length-1],null==t?10:t)},n.tickFormat=function(n,r){return function(n,e,r){var i,o=n[0],a=n[n.length-1],u=d(o,a,null==e?10:e);switch((r=tr(null==r?",f":r)).type){case"s":var f=Math.max(Math.abs(o),Math.abs(a));return null!=r.precision||isNaN(i=ur(u,f))||(r.precision=i),t.formatPrefix(r,f);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(i=fr(u,Math.max(Math.abs(o),Math.abs(a))))||(r.precision=i-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(i=ar(u))||(r.precision=i-2*("%"===r.type))}return t.format(r)}(e(),n,r)},n.nice=function(t){null==t&&(t=10);var r,i=e(),o=0,a=i.length-1,u=i[o],f=i[a];return f<u&&(r=u,u=f,f=r,r=o,o=a,a=r),(r=h(u,f,t))>0?r=h(u=Math.floor(u/r)*r,f=Math.ceil(f/r)*r,t):r<0&&(r=h(u=Math.ceil(u*r)/r,f=Math.floor(f*r)/r,t)),r>0?(i[o]=Math.floor(u/r)*r,i[a]=Math.ceil(f/r)*r,e(i)):r<0&&(i[o]=Math.ceil(u*r)/r,i[a]=Math.floor(f*r)/r,e(i)),n},n}function Sa(){var t=Ta(xa,sn);return t.copy=function(){return Aa(t,Sa())},Na(t)}function Ea(){function t(t){return+t}var n=[0,1];return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=Ev.call(e,ma),t):n.slice()},t.copy=function(){return Ea().domain(n)},Na(t)}function ka(t,n){var e,r=0,i=(t=t.slice()).length-1,o=t[r],a=t[i];return a<o&&(e=r,r=i,i=e,e=o,o=a,a=e),t[r]=n.floor(o),t[i]=n.ceil(a),t}function Ca(t,n){return(n=Math.log(n/t))?function(e){return Math.log(e/t)/n}:ba(n)}function Pa(t,n){return t<0?function(e){return-Math.pow(-n,e)*Math.pow(-t,1-e)}:function(e){return Math.pow(n,e)*Math.pow(t,1-e)}}function za(t){return isFinite(t)?+("1e"+t):t<0?0:t}function Ra(t){return 10===t?za:t===Math.E?Math.exp:function(n){return Math.pow(t,n)}}function La(t){return t===Math.E?Math.log:10===t&&Math.log10||2===t&&Math.log2||(t=Math.log(t),function(n){return Math.log(n)/t})}function Da(t){return function(n){return-t(-n)}}function Ua(){function n(){return o=La(i),a=Ra(i),r()[0]<0&&(o=Da(o),a=Da(a)),e}var e=Ta(Ca,Pa).domain([1,10]),r=e.domain,i=10,o=La(10),a=Ra(10);return e.base=function(t){return arguments.length?(i=+t,n()):i},e.domain=function(t){return arguments.length?(r(t),n()):r()},e.ticks=function(t){var n,e=r(),u=e[0],f=e[e.length-1];(n=f<u)&&(d=u,u=f,f=d);var c,s,h,d=o(u),p=o(f),v=null==t?10:+t,g=[];if(!(i%1)&&p-d<v){if(d=Math.round(d)-1,p=Math.round(p)+1,u>0){for(;d<p;++d)for(s=1,c=a(d);s<i;++s)if(!((h=c*s)<u)){if(h>f)break;g.push(h)}}else for(;d<p;++d)for(s=i-1,c=a(d);s>=1;--s)if(!((h=c*s)<u)){if(h>f)break;g.push(h)}}else g=l(d,p,Math.min(p-d,v)).map(a);return n?g.reverse():g},e.tickFormat=function(n,r){if(null==r&&(r=10===i?".0e":","),"function"!=typeof r&&(r=t.format(r)),n===1/0)return r;null==n&&(n=10);var u=Math.max(1,i*n/e.ticks().length);return function(t){var n=t/a(Math.round(o(t)));return n*i<i-.5&&(n*=i),n<=u?r(t):""}},e.nice=function(){return r(ka(r(),{floor:function(t){return a(Math.floor(o(t)))},ceil:function(t){return a(Math.ceil(o(t)))}}))},e.copy=function(){return Aa(e,Ua().base(i))},e}function qa(t,n){return t<0?-Math.pow(-t,n):Math.pow(t,n)}function Oa(){var t=1,n=Ta(function(n,e){return(e=qa(e,t)-(n=qa(n,t)))?function(r){return(qa(r,t)-n)/e}:ba(e)},function(n,e){return e=qa(e,t)-(n=qa(n,t)),function(r){return qa(n+e*r,1/t)}}),e=n.domain;return n.exponent=function(n){return arguments.length?(t=+n,e(e())):t},n.copy=function(){return Aa(n,Oa().exponent(t))},Na(n)}function Ya(){function t(){var t=0,n=Math.max(1,i.length);for(o=new Array(n-1);++t<n;)o[t-1]=v(r,t/n);return e}function e(t){if(!isNaN(t=+t))return i[Jc(o,t)]}var r=[],i=[],o=[];return e.invertExtent=function(t){var n=i.indexOf(t);return n<0?[NaN,NaN]:[n>0?o[n-1]:r[0],n<o.length?o[n]:r[r.length-1]]},e.domain=function(e){if(!arguments.length)return r.slice();r=[];for(var i,o=0,a=e.length;o<a;++o)null==(i=e[o])||isNaN(i=+i)||r.push(i);return r.sort(n),t()},e.range=function(n){return arguments.length?(i=kv.call(n),t()):i.slice()},e.quantiles=function(){return o.slice()},e.copy=function(){return Ya().domain(r).range(i)},e}function Ba(){function t(t){if(t<=t)return a[Jc(o,t,0,i)]}function n(){var n=-1;for(o=new Array(i);++n<i;)o[n]=((n+1)*r-(n-i)*e)/(i+1);return t}var e=0,r=1,i=1,o=[.5],a=[0,1];return t.domain=function(t){return arguments.length?(e=+t[0],r=+t[1],n()):[e,r]},t.range=function(t){return arguments.length?(i=(a=kv.call(t)).length-1,n()):a.slice()},t.invertExtent=function(t){var n=a.indexOf(t);return n<0?[NaN,NaN]:n<1?[e,o[0]]:n>=i?[o[i-1],r]:[o[n-1],o[n]]},t.copy=function(){return Ba().domain([e,r]).range(a)},Na(t)}function Fa(){function t(t){if(t<=t)return e[Jc(n,t,0,r)]}var n=[.5],e=[0,1],r=1;return t.domain=function(i){return arguments.length?(n=kv.call(i),r=Math.min(n.length,e.length-1),t):n.slice()},t.range=function(i){return arguments.length?(e=kv.call(i),r=Math.min(n.length,e.length-1),t):e.slice()},t.invertExtent=function(t){var r=e.indexOf(t);return[n[r-1],n[r]]},t.copy=function(){return Fa().domain(n).range(e)},t}function Ia(t,n,e,r){function i(n){return t(n=new Date(+n)),n}return i.floor=i,i.ceil=function(e){return t(e=new Date(e-1)),n(e,1),t(e),e},i.round=function(t){var n=i(t),e=i.ceil(t);return t-n<e-t?n:e},i.offset=function(t,e){return n(t=new Date(+t),null==e?1:Math.floor(e)),t},i.range=function(e,r,o){var a,u=[];if(e=i.ceil(e),o=null==o?1:Math.floor(o),!(e<r&&o>0))return u;do{u.push(a=new Date(+e)),n(e,o),t(e)}while(a<e&&e<r);return u},i.filter=function(e){return Ia(function(n){if(n>=n)for(;t(n),!e(n);)n.setTime(n-1)},function(t,r){if(t>=t)if(r<0)for(;++r<=0;)for(;n(t,-1),!e(t););else for(;--r>=0;)for(;n(t,1),!e(t););})},e&&(i.count=function(n,r){return zv.setTime(+n),Rv.setTime(+r),t(zv),t(Rv),Math.floor(e(zv,Rv))},i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?i.filter(r?function(n){return r(n)%t==0}:function(n){return i.count(0,n)%t==0}):i:null}),i}function ja(t){return Ia(function(n){n.setDate(n.getDate()-(n.getDay()+7-t)%7),n.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+7*n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*Uv)/qv})}function Ha(t){return Ia(function(n){n.setUTCDate(n.getUTCDate()-(n.getUTCDay()+7-t)%7),n.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+7*n)},function(t,n){return(n-t)/qv})}function Xa(t){if(0<=t.y&&t.y<100){var n=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return n.setFullYear(t.y),n}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function Ga(t){if(0<=t.y&&t.y<100){var n=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return n.setUTCFullYear(t.y),n}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function Va(t){return{y:t,m:0,d:1,H:0,M:0,S:0,L:0}}function $a(t){function n(t,n){return function(e){var r,i,o,a=[],u=-1,f=0,c=t.length;for(e instanceof Date||(e=new Date(+e));++u<c;)37===t.charCodeAt(u)&&(a.push(t.slice(f,u)),null!=(i=Dg[r=t.charAt(++u)])?r=t.charAt(++u):i="e"===r?" ":"0",(o=n[r])&&(r=o(e,i)),a.push(r),f=u+1);return a.push(t.slice(f,u)),a.join("")}}function e(t,n){return function(e){var i,o,a=Va(1900);if(r(a,t,e+="",0)!=e.length)return null;if("Q"in a)return new Date(a.Q);if("p"in a&&(a.H=a.H%12+12*a.p),"V"in a){if(a.V<1||a.V>53)return null;"w"in a||(a.w=1),"Z"in a?(i=(o=(i=Ga(Va(a.y))).getUTCDay())>4||0===o?yg.ceil(i):yg(i),i=pg.offset(i,7*(a.V-1)),a.y=i.getUTCFullYear(),a.m=i.getUTCMonth(),a.d=i.getUTCDate()+(a.w+6)%7):(i=(o=(i=n(Va(a.y))).getDay())>4||0===o?Vv.ceil(i):Vv(i),i=Hv.offset(i,7*(a.V-1)),a.y=i.getFullYear(),a.m=i.getMonth(),a.d=i.getDate()+(a.w+6)%7)}else("W"in a||"U"in a)&&("w"in a||(a.w="u"in a?a.u%7:"W"in a?1:0),o="Z"in a?Ga(Va(a.y)).getUTCDay():n(Va(a.y)).getDay(),a.m=0,a.d="W"in a?(a.w+6)%7+7*a.W-(o+5)%7:a.w+7*a.U-(o+6)%7);return"Z"in a?(a.H+=a.Z/100|0,a.M+=a.Z%100,Ga(a)):n(a)}}function r(t,n,e,r){for(var i,o,a=0,u=n.length,f=e.length;a<u;){if(r>=f)return-1;if(37===(i=n.charCodeAt(a++))){if(i=n.charAt(a++),!(o=A[i in Dg?n.charAt(a++):i])||(r=o(t,e,r))<0)return-1}else if(i!=e.charCodeAt(r++))return-1}return r}var i=t.dateTime,o=t.date,a=t.time,u=t.periods,f=t.days,c=t.shortDays,s=t.months,l=t.shortMonths,h=Qa(u),d=Ja(u),p=Qa(f),v=Ja(f),g=Qa(c),y=Ja(c),_=Qa(s),b=Ja(s),m=Qa(l),x=Ja(l),w={a:function(t){return c[t.getDay()]},A:function(t){return f[t.getDay()]},b:function(t){return l[t.getMonth()]},B:function(t){return s[t.getMonth()]},c:null,d:_u,e:_u,f:Mu,H:bu,I:mu,j:xu,L:wu,m:Au,M:Tu,p:function(t){return u[+(t.getHours()>=12)]},Q:Ku,s:tf,S:Nu,u:Su,U:Eu,V:ku,w:Cu,W:Pu,x:null,X:null,y:zu,Y:Ru,Z:Lu,"%":Ju},M={a:function(t){return c[t.getUTCDay()]},A:function(t){return f[t.getUTCDay()]},b:function(t){return l[t.getUTCMonth()]},B:function(t){return s[t.getUTCMonth()]},c:null,d:Du,e:Du,f:Bu,H:Uu,I:qu,j:Ou,L:Yu,m:Fu,M:Iu,p:function(t){return u[+(t.getUTCHours()>=12)]},Q:Ku,s:tf,S:ju,u:Hu,U:Xu,V:Gu,w:Vu,W:$u,x:null,X:null,y:Wu,Y:Zu,Z:Qu,"%":Ju},A={a:function(t,n,e){var r=g.exec(n.slice(e));return r?(t.w=y[r[0].toLowerCase()],e+r[0].length):-1},A:function(t,n,e){var r=p.exec(n.slice(e));return r?(t.w=v[r[0].toLowerCase()],e+r[0].length):-1},b:function(t,n,e){var r=m.exec(n.slice(e));return r?(t.m=x[r[0].toLowerCase()],e+r[0].length):-1},B:function(t,n,e){var r=_.exec(n.slice(e));return r?(t.m=b[r[0].toLowerCase()],e+r[0].length):-1},c:function(t,n,e){return r(t,i,n,e)},d:fu,e:fu,f:pu,H:su,I:su,j:cu,L:du,m:uu,M:lu,p:function(t,n,e){var r=h.exec(n.slice(e));return r?(t.p=d[r[0].toLowerCase()],e+r[0].length):-1},Q:gu,s:yu,S:hu,u:tu,U:nu,V:eu,w:Ka,W:ru,x:function(t,n,e){return r(t,o,n,e)},X:function(t,n,e){return r(t,a,n,e)},y:ou,Y:iu,Z:au,"%":vu};return w.x=n(o,w),w.X=n(a,w),w.c=n(i,w),M.x=n(o,M),M.X=n(a,M),M.c=n(i,M),{format:function(t){var e=n(t+="",w);return e.toString=function(){return t},e},parse:function(t){var n=e(t+="",Xa);return n.toString=function(){return t},n},utcFormat:function(t){var e=n(t+="",M);return e.toString=function(){return t},e},utcParse:function(t){var n=e(t,Ga);return n.toString=function(){return t},n}}}function Wa(t,n,e){var r=t<0?"-":"",i=(r?-t:t)+"",o=i.length;return r+(o<e?new Array(e-o+1).join(n)+i:i)}function Za(t){return t.replace(Og,"\\$&")}function Qa(t){return new RegExp("^(?:"+t.map(Za).join("|")+")","i")}function Ja(t){for(var n={},e=-1,r=t.length;++e<r;)n[t[e].toLowerCase()]=e;return n}function Ka(t,n,e){var r=Ug.exec(n.slice(e,e+1));return r?(t.w=+r[0],e+r[0].length):-1}function tu(t,n,e){var r=Ug.exec(n.slice(e,e+1));return r?(t.u=+r[0],e+r[0].length):-1}function nu(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.U=+r[0],e+r[0].length):-1}function eu(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.V=+r[0],e+r[0].length):-1}function ru(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.W=+r[0],e+r[0].length):-1}function iu(t,n,e){var r=Ug.exec(n.slice(e,e+4));return r?(t.y=+r[0],e+r[0].length):-1}function ou(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.y=+r[0]+(+r[0]>68?1900:2e3),e+r[0].length):-1}function au(t,n,e){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(n.slice(e,e+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),e+r[0].length):-1}function uu(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.m=r[0]-1,e+r[0].length):-1}function fu(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.d=+r[0],e+r[0].length):-1}function cu(t,n,e){var r=Ug.exec(n.slice(e,e+3));return r?(t.m=0,t.d=+r[0],e+r[0].length):-1}function su(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.H=+r[0],e+r[0].length):-1}function lu(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.M=+r[0],e+r[0].length):-1}function hu(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.S=+r[0],e+r[0].length):-1}function du(t,n,e){var r=Ug.exec(n.slice(e,e+3));return r?(t.L=+r[0],e+r[0].length):-1}function pu(t,n,e){var r=Ug.exec(n.slice(e,e+6));return r?(t.L=Math.floor(r[0]/1e3),e+r[0].length):-1}function vu(t,n,e){var r=qg.exec(n.slice(e,e+1));return r?e+r[0].length:-1}function gu(t,n,e){var r=Ug.exec(n.slice(e));return r?(t.Q=+r[0],e+r[0].length):-1}function yu(t,n,e){var r=Ug.exec(n.slice(e));return r?(t.Q=1e3*+r[0],e+r[0].length):-1}function _u(t,n){return Wa(t.getDate(),n,2)}function bu(t,n){return Wa(t.getHours(),n,2)}function mu(t,n){return Wa(t.getHours()%12||12,n,2)}function xu(t,n){return Wa(1+Hv.count(fg(t),t),n,3)}function wu(t,n){return Wa(t.getMilliseconds(),n,3)}function Mu(t,n){return wu(t,n)+"000"}function Au(t,n){return Wa(t.getMonth()+1,n,2)}function Tu(t,n){return Wa(t.getMinutes(),n,2)}function Nu(t,n){return Wa(t.getSeconds(),n,2)}function Su(t){var n=t.getDay();return 0===n?7:n}function Eu(t,n){return Wa(Gv.count(fg(t),t),n,2)}function ku(t,n){var e=t.getDay();return t=e>=4||0===e?Zv(t):Zv.ceil(t),Wa(Zv.count(fg(t),t)+(4===fg(t).getDay()),n,2)}function Cu(t){return t.getDay()}function Pu(t,n){return Wa(Vv.count(fg(t),t),n,2)}function zu(t,n){return Wa(t.getFullYear()%100,n,2)}function Ru(t,n){return Wa(t.getFullYear()%1e4,n,4)}function Lu(t){var n=t.getTimezoneOffset();return(n>0?"-":(n*=-1,"+"))+Wa(n/60|0,"0",2)+Wa(n%60,"0",2)}function Du(t,n){return Wa(t.getUTCDate(),n,2)}function Uu(t,n){return Wa(t.getUTCHours(),n,2)}function qu(t,n){return Wa(t.getUTCHours()%12||12,n,2)}function Ou(t,n){return Wa(1+pg.count(zg(t),t),n,3)}function Yu(t,n){return Wa(t.getUTCMilliseconds(),n,3)}function Bu(t,n){return Yu(t,n)+"000"}function Fu(t,n){return Wa(t.getUTCMonth()+1,n,2)}function Iu(t,n){return Wa(t.getUTCMinutes(),n,2)}function ju(t,n){return Wa(t.getUTCSeconds(),n,2)}function Hu(t){var n=t.getUTCDay();return 0===n?7:n}function Xu(t,n){return Wa(gg.count(zg(t),t),n,2)}function Gu(t,n){var e=t.getUTCDay();return t=e>=4||0===e?mg(t):mg.ceil(t),Wa(mg.count(zg(t),t)+(4===zg(t).getUTCDay()),n,2)}function Vu(t){return t.getUTCDay()}function $u(t,n){return Wa(yg.count(zg(t),t),n,2)}function Wu(t,n){return Wa(t.getUTCFullYear()%100,n,2)}function Zu(t,n){return Wa(t.getUTCFullYear()%1e4,n,4)}function Qu(){return"+0000"}function Ju(){return"%"}function Ku(t){return+t}function tf(t){return Math.floor(+t/1e3)}function nf(n){return Rg=$a(n),t.timeFormat=Rg.format,t.timeParse=Rg.parse,t.utcFormat=Rg.utcFormat,t.utcParse=Rg.utcParse,Rg}function ef(t){return new Date(t)}function rf(t){return t instanceof Date?+t:+new Date(+t)}function of(t,n,r,i,o,a,u,f,c){function s(e){return(u(e)<e?g:a(e)<e?y:o(e)<e?_:i(e)<e?b:n(e)<e?r(e)<e?m:x:t(e)<e?w:M)(e)}function l(n,r,i,o){if(null==n&&(n=10),"number"==typeof n){var a=Math.abs(i-r)/n,u=e(function(t){return t[2]}).right(A,a);u===A.length?(o=d(r/$g,i/$g,n),n=t):u?(o=(u=A[a/A[u-1][2]<A[u][2]/a?u-1:u])[1],n=u[0]):(o=Math.max(d(r,i,n),1),n=f)}return null==o?n:n.every(o)}var h=Ta(xa,sn),p=h.invert,v=h.domain,g=c(".%L"),y=c(":%S"),_=c("%I:%M"),b=c("%I %p"),m=c("%a %d"),x=c("%b %d"),w=c("%B"),M=c("%Y"),A=[[u,1,Ig],[u,5,5*Ig],[u,15,15*Ig],[u,30,30*Ig],[a,1,jg],[a,5,5*jg],[a,15,15*jg],[a,30,30*jg],[o,1,Hg],[o,3,3*Hg],[o,6,6*Hg],[o,12,12*Hg],[i,1,Xg],[i,2,2*Xg],[r,1,Gg],[n,1,Vg],[n,3,3*Vg],[t,1,$g]];return h.invert=function(t){return new Date(p(t))},h.domain=function(t){return arguments.length?v(Ev.call(t,rf)):v().map(ef)},h.ticks=function(t,n){var e,r=v(),i=r[0],o=r[r.length-1],a=o<i;return a&&(e=i,i=o,o=e),e=l(t,i,o,n),e=e?e.range(i,o+1):[],a?e.reverse():e},h.tickFormat=function(t,n){return null==n?s:c(n)},h.nice=function(t,n){var e=v();return(t=l(t,e[0],e[e.length-1],n))?v(ka(e,t)):h},h.copy=function(){return Aa(h,of(t,n,r,i,o,a,u,f,c))},h}function af(t){function n(n){var o=(n-e)/(r-e);return t(i?Math.max(0,Math.min(1,o)):o)}var e=0,r=1,i=!1;return n.domain=function(t){return arguments.length?(e=+t[0],r=+t[1],n):[e,r]},n.clamp=function(t){return arguments.length?(i=!!t,n):i},n.interpolator=function(e){return arguments.length?(t=e,n):t},n.copy=function(){return af(t).domain([e,r]).clamp(i)},Na(n)}function uf(t){for(var n=t.length/6|0,e=new Array(n),r=0;r<n;)e[r]="#"+t.slice(6*r,6*++r);return e}function ff(t){return rl(t[t.length-1])}function cf(t){var n=t.length;return function(e){return t[Math.max(0,Math.min(n-1,Math.floor(e*n)))]}}function sf(t){return function(){return t}}function lf(t){return t>=1?A_:t<=-1?-A_:Math.asin(t)}function hf(t){return t.innerRadius}function df(t){return t.outerRadius}function pf(t){return t.startAngle}function vf(t){return t.endAngle}function gf(t){return t&&t.padAngle}function yf(t,n,e,r,i,o,a){var u=t-e,f=n-r,c=(a?o:-o)/x_(u*u+f*f),s=c*f,l=-c*u,h=t+s,d=n+l,p=e+s,v=r+l,g=(h+p)/2,y=(d+v)/2,_=p-h,b=v-d,m=_*_+b*b,x=i-o,w=h*v-p*d,M=(b<0?-1:1)*x_(__(0,x*x*m-w*w)),A=(w*b-_*M)/m,T=(-w*_-b*M)/m,N=(w*b+_*M)/m,S=(-w*_+b*M)/m,E=A-g,k=T-y,C=N-g,P=S-y;return E*E+k*k>C*C+P*P&&(A=N,T=S),{cx:A,cy:T,x01:-s,y01:-l,x11:A*(i/x-1),y11:T*(i/x-1)}}function _f(t){this._context=t}function bf(t){return new _f(t)}function mf(t){return t[0]}function xf(t){return t[1]}function wf(){function t(t){var u,f,c,s=t.length,l=!1;for(null==i&&(a=o(c=oe())),u=0;u<=s;++u)!(u<s&&r(f=t[u],u,t))===l&&((l=!l)?a.lineStart():a.lineEnd()),l&&a.point(+n(f,u,t),+e(f,u,t));if(c)return a=null,c+""||null}var n=mf,e=xf,r=sf(!0),i=null,o=bf,a=null;return t.x=function(e){return arguments.length?(n="function"==typeof e?e:sf(+e),t):n},t.y=function(n){return arguments.length?(e="function"==typeof n?n:sf(+n),t):e},t.defined=function(n){return arguments.length?(r="function"==typeof n?n:sf(!!n),t):r},t.curve=function(n){return arguments.length?(o=n,null!=i&&(a=o(i)),t):o},t.context=function(n){return arguments.length?(null==n?i=a=null:a=o(i=n),t):i},t}function Mf(){function t(t){var n,s,l,h,d,p=t.length,v=!1,g=new Array(p),y=new Array(p);for(null==u&&(c=f(d=oe())),n=0;n<=p;++n){if(!(n<p&&a(h=t[n],n,t))===v)if(v=!v)s=n,c.areaStart(),c.lineStart();else{for(c.lineEnd(),c.lineStart(),l=n-1;l>=s;--l)c.point(g[l],y[l]);c.lineEnd(),c.areaEnd()}v&&(g[n]=+e(h,n,t),y[n]=+i(h,n,t),c.point(r?+r(h,n,t):g[n],o?+o(h,n,t):y[n]))}if(d)return c=null,d+""||null}function n(){return wf().defined(a).curve(f).context(u)}var e=mf,r=null,i=sf(0),o=xf,a=sf(!0),u=null,f=bf,c=null;return t.x=function(n){return arguments.length?(e="function"==typeof n?n:sf(+n),r=null,t):e},t.x0=function(n){return arguments.length?(e="function"==typeof n?n:sf(+n),t):e},t.x1=function(n){return arguments.length?(r=null==n?null:"function"==typeof n?n:sf(+n),t):r},t.y=function(n){return arguments.length?(i="function"==typeof n?n:sf(+n),o=null,t):i},t.y0=function(n){return arguments.length?(i="function"==typeof n?n:sf(+n),t):i},t.y1=function(n){return arguments.length?(o=null==n?null:"function"==typeof n?n:sf(+n),t):o},t.lineX0=t.lineY0=function(){return n().x(e).y(i)},t.lineY1=function(){return n().x(e).y(o)},t.lineX1=function(){return n().x(r).y(i)},t.defined=function(n){return arguments.length?(a="function"==typeof n?n:sf(!!n),t):a},t.curve=function(n){return arguments.length?(f=n,null!=u&&(c=f(u)),t):f},t.context=function(n){return arguments.length?(null==n?u=c=null:c=f(u=n),t):u},t}function Af(t,n){return n<t?-1:n>t?1:n>=t?0:NaN}function Tf(t){return t}function Nf(t){this._curve=t}function Sf(t){function n(n){return new Nf(t(n))}return n._curve=t,n}function Ef(t){var n=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?n(Sf(t)):n()._curve},t}function kf(){return Ef(wf().curve(N_))}function Cf(){var t=Mf().curve(N_),n=t.curve,e=t.lineX0,r=t.lineX1,i=t.lineY0,o=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return Ef(e())},delete t.lineX0,t.lineEndAngle=function(){return Ef(r())},delete t.lineX1,t.lineInnerRadius=function(){return Ef(i())},delete t.lineY0,t.lineOuterRadius=function(){return Ef(o())},delete t.lineY1,t.curve=function(t){return arguments.length?n(Sf(t)):n()._curve},t}function Pf(t,n){return[(n=+n)*Math.cos(t-=Math.PI/2),n*Math.sin(t)]}function zf(t){return t.source}function Rf(t){return t.target}function Lf(t){function n(){var n,u=S_.call(arguments),f=e.apply(this,u),c=r.apply(this,u);if(a||(a=n=oe()),t(a,+i.apply(this,(u[0]=f,u)),+o.apply(this,u),+i.apply(this,(u[0]=c,u)),+o.apply(this,u)),n)return a=null,n+""||null}var e=zf,r=Rf,i=mf,o=xf,a=null;return n.source=function(t){return arguments.length?(e=t,n):e},n.target=function(t){return arguments.length?(r=t,n):r},n.x=function(t){return arguments.length?(i="function"==typeof t?t:sf(+t),n):i},n.y=function(t){return arguments.length?(o="function"==typeof t?t:sf(+t),n):o},n.context=function(t){return arguments.length?(a=null==t?null:t,n):a},n}function Df(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n=(n+r)/2,e,n,i,r,i)}function Uf(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n,e=(e+i)/2,r,e,r,i)}function qf(t,n,e,r,i){var o=Pf(n,e),a=Pf(n,e=(e+i)/2),u=Pf(r,e),f=Pf(r,i);t.moveTo(o[0],o[1]),t.bezierCurveTo(a[0],a[1],u[0],u[1],f[0],f[1])}function Of(){}function Yf(t,n,e){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+n)/6,(t._y0+4*t._y1+e)/6)}function Bf(t){this._context=t}function Ff(t){this._context=t}function If(t){this._context=t}function jf(t,n){this._basis=new Bf(t),this._beta=n}function Hf(t,n,e){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-n),t._y2+t._k*(t._y1-e),t._x2,t._y2)}function Xf(t,n){this._context=t,this._k=(1-n)/6}function Gf(t,n){this._context=t,this._k=(1-n)/6}function Vf(t,n){this._context=t,this._k=(1-n)/6}function $f(t,n,e){var r=t._x1,i=t._y1,o=t._x2,a=t._y2;if(t._l01_a>w_){var u=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,f=3*t._l01_a*(t._l01_a+t._l12_a);r=(r*u-t._x0*t._l12_2a+t._x2*t._l01_2a)/f,i=(i*u-t._y0*t._l12_2a+t._y2*t._l01_2a)/f}if(t._l23_a>w_){var c=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,s=3*t._l23_a*(t._l23_a+t._l12_a);o=(o*c+t._x1*t._l23_2a-n*t._l12_2a)/s,a=(a*c+t._y1*t._l23_2a-e*t._l12_2a)/s}t._context.bezierCurveTo(r,i,o,a,t._x2,t._y2)}function Wf(t,n){this._context=t,this._alpha=n}function Zf(t,n){this._context=t,this._alpha=n}function Qf(t,n){this._context=t,this._alpha=n}function Jf(t){this._context=t}function Kf(t){return t<0?-1:1}function tc(t,n,e){var r=t._x1-t._x0,i=n-t._x1,o=(t._y1-t._y0)/(r||i<0&&-0),a=(e-t._y1)/(i||r<0&&-0),u=(o*i+a*r)/(r+i);return(Kf(o)+Kf(a))*Math.min(Math.abs(o),Math.abs(a),.5*Math.abs(u))||0}function nc(t,n){var e=t._x1-t._x0;return e?(3*(t._y1-t._y0)/e-n)/2:n}function ec(t,n,e){var r=t._x0,i=t._y0,o=t._x1,a=t._y1,u=(o-r)/3;t._context.bezierCurveTo(r+u,i+u*n,o-u,a-u*e,o,a)}function rc(t){this._context=t}function ic(t){this._context=new oc(t)}function oc(t){this._context=t}function ac(t){this._context=t}function uc(t){var n,e,r=t.length-1,i=new Array(r),o=new Array(r),a=new Array(r);for(i[0]=0,o[0]=2,a[0]=t[0]+2*t[1],n=1;n<r-1;++n)i[n]=1,o[n]=4,a[n]=4*t[n]+2*t[n+1];for(i[r-1]=2,o[r-1]=7,a[r-1]=8*t[r-1]+t[r],n=1;n<r;++n)e=i[n]/o[n-1],o[n]-=e,a[n]-=e*a[n-1];for(i[r-1]=a[r-1]/o[r-1],n=r-2;n>=0;--n)i[n]=(a[n]-i[n+1])/o[n];for(o[r-1]=(t[r]+i[r-1])/2,n=0;n<r-1;++n)o[n]=2*t[n+1]-i[n+1];return[i,o]}function fc(t,n){this._context=t,this._t=n}function cc(t,n){if((i=t.length)>1)for(var e,r,i,o=1,a=t[n[0]],u=a.length;o<i;++o)for(r=a,a=t[n[o]],e=0;e<u;++e)a[e][1]+=a[e][0]=isNaN(r[e][1])?r[e][0]:r[e][1]}function sc(t){for(var n=t.length,e=new Array(n);--n>=0;)e[n]=n;return e}function lc(t,n){return t[n]}function hc(t){var n=t.map(dc);return sc(t).sort(function(t,e){return n[t]-n[e]})}function dc(t){for(var n,e=0,r=-1,i=t.length;++r<i;)(n=+t[r][1])&&(e+=n);return e}function pc(t){return function(){return t}}function vc(t){return t[0]}function gc(t){return t[1]}function yc(){this._=null}function _c(t){t.U=t.C=t.L=t.R=t.P=t.N=null}function bc(t,n){var e=n,r=n.R,i=e.U;i?i.L===e?i.L=r:i.R=r:t._=r,r.U=i,e.U=r,e.R=r.L,e.R&&(e.R.U=e),r.L=e}function mc(t,n){var e=n,r=n.L,i=e.U;i?i.L===e?i.L=r:i.R=r:t._=r,r.U=i,e.U=r,e.L=r.R,e.L&&(e.L.U=e),r.R=e}function xc(t){for(;t.L;)t=t.L;return t}function wc(t,n,e,r){var i=[null,null],o=eb.push(i)-1;return i.left=t,i.right=n,e&&Ac(i,t,n,e),r&&Ac(i,n,t,r),tb[t.index].halfedges.push(o),tb[n.index].halfedges.push(o),i}function Mc(t,n,e){var r=[n,e];return r.left=t,r}function Ac(t,n,e,r){t[0]||t[1]?t.left===e?t[1]=r:t[0]=r:(t[0]=r,t.left=n,t.right=e)}function Tc(t,n,e,r,i){var o,a=t[0],u=t[1],f=a[0],c=a[1],s=0,l=1,h=u[0]-f,d=u[1]-c;if(o=n-f,h||!(o>0)){if(o/=h,h<0){if(o<s)return;o<l&&(l=o)}else if(h>0){if(o>l)return;o>s&&(s=o)}if(o=r-f,h||!(o<0)){if(o/=h,h<0){if(o>l)return;o>s&&(s=o)}else if(h>0){if(o<s)return;o<l&&(l=o)}if(o=e-c,d||!(o>0)){if(o/=d,d<0){if(o<s)return;o<l&&(l=o)}else if(d>0){if(o>l)return;o>s&&(s=o)}if(o=i-c,d||!(o<0)){if(o/=d,d<0){if(o>l)return;o>s&&(s=o)}else if(d>0){if(o<s)return;o<l&&(l=o)}return!(s>0||l<1)||(s>0&&(t[0]=[f+s*h,c+s*d]),l<1&&(t[1]=[f+l*h,c+l*d]),!0)}}}}}function Nc(t,n,e,r,i){var o=t[1];if(o)return!0;var a,u,f=t[0],c=t.left,s=t.right,l=c[0],h=c[1],d=s[0],p=s[1],v=(l+d)/2,g=(h+p)/2;if(p===h){if(v<n||v>=r)return;if(l>d){if(f){if(f[1]>=i)return}else f=[v,e];o=[v,i]}else{if(f){if(f[1]<e)return}else f=[v,i];o=[v,e]}}else if(a=(l-d)/(p-h),u=g-a*v,a<-1||a>1)if(l>d){if(f){if(f[1]>=i)return}else f=[(e-u)/a,e];o=[(i-u)/a,i]}else{if(f){if(f[1]<e)return}else f=[(i-u)/a,i];o=[(e-u)/a,e]}else if(h<p){if(f){if(f[0]>=r)return}else f=[n,a*n+u];o=[r,a*r+u]}else{if(f){if(f[0]<n)return}else f=[r,a*r+u];o=[n,a*n+u]}return t[0]=f,t[1]=o,!0}function Sc(t,n){var e=t.site,r=n.left,i=n.right;return e===i&&(i=r,r=e),i?Math.atan2(i[1]-r[1],i[0]-r[0]):(e===r?(r=n[1],i=n[0]):(r=n[0],i=n[1]),Math.atan2(r[0]-i[0],i[1]-r[1]))}function Ec(t,n){return n[+(n.left!==t.site)]}function kc(t,n){return n[+(n.left===t.site)]}function Cc(t){var n=t.P,e=t.N;if(n&&e){var r=n.site,i=t.site,o=e.site;if(r!==o){var a=i[0],u=i[1],f=r[0]-a,c=r[1]-u,s=o[0]-a,l=o[1]-u,h=2*(f*l-c*s);if(!(h>=-ab)){var d=f*f+c*c,p=s*s+l*l,v=(l*d-c*p)/h,g=(f*p-s*d)/h,y=rb.pop()||new function(){_c(this),this.x=this.y=this.arc=this.site=this.cy=null};y.arc=t,y.site=i,y.x=v+a,y.y=(y.cy=g+u)+Math.sqrt(v*v+g*g),t.circle=y;for(var _=null,b=nb._;b;)if(y.y<b.y||y.y===b.y&&y.x<=b.x){if(!b.L){_=b.P;break}b=b.L}else{if(!b.R){_=b;break}b=b.R}nb.insert(_,y),_||(J_=y)}}}}function Pc(t){var n=t.circle;n&&(n.P||(J_=n.N),nb.remove(n),rb.push(n),_c(n),t.circle=null)}function zc(t){var n=ib.pop()||new function(){_c(this),this.edge=this.site=this.circle=null};return n.site=t,n}function Rc(t){Pc(t),K_.remove(t),ib.push(t),_c(t)}function Lc(t){var n=t.circle,e=n.x,r=n.cy,i=[e,r],o=t.P,a=t.N,u=[t];Rc(t);for(var f=o;f.circle&&Math.abs(e-f.circle.x)<ob&&Math.abs(r-f.circle.cy)<ob;)o=f.P,u.unshift(f),Rc(f),f=o;u.unshift(f),Pc(f);for(var c=a;c.circle&&Math.abs(e-c.circle.x)<ob&&Math.abs(r-c.circle.cy)<ob;)a=c.N,u.push(c),Rc(c),c=a;u.push(c),Pc(c);var s,l=u.length;for(s=1;s<l;++s)c=u[s],f=u[s-1],Ac(c.edge,f.site,c.site,i);f=u[0],(c=u[l-1]).edge=wc(f.site,c.site,null,i),Cc(f),Cc(c)}function Dc(t){for(var n,e,r,i,o=t[0],a=t[1],u=K_._;u;)if((r=Uc(u,a)-o)>ob)u=u.L;else{if(!((i=o-function(t,n){var e=t.N;if(e)return Uc(e,n);var r=t.site;return r[1]===n?r[0]:1/0}(u,a))>ob)){r>-ob?(n=u.P,e=u):i>-ob?(n=u,e=u.N):n=e=u;break}if(!u.R){n=u;break}u=u.R}(function(t){tb[t.index]={site:t,halfedges:[]}})(t);var f=zc(t);if(K_.insert(n,f),n||e){if(n===e)return Pc(n),e=zc(n.site),K_.insert(f,e),f.edge=e.edge=wc(n.site,f.site),Cc(n),void Cc(e);if(e){Pc(n),Pc(e);var c=n.site,s=c[0],l=c[1],h=t[0]-s,d=t[1]-l,p=e.site,v=p[0]-s,g=p[1]-l,y=2*(h*g-d*v),_=h*h+d*d,b=v*v+g*g,m=[(g*_-d*b)/y+s,(h*b-v*_)/y+l];Ac(e.edge,c,p,m),f.edge=wc(c,t,null,m),e.edge=wc(t,p,null,m),Cc(n),Cc(e)}else f.edge=wc(n.site,f.site)}}function Uc(t,n){var e=t.site,r=e[0],i=e[1],o=i-n;if(!o)return r;var a=t.P;if(!a)return-1/0;var u=(e=a.site)[0],f=e[1],c=f-n;if(!c)return u;var s=u-r,l=1/o-1/c,h=s/c;return l?(-h+Math.sqrt(h*h-2*l*(s*s/(-2*c)-f+c/2+i-o/2)))/l+r:(r+u)/2}function qc(t,n,e){return(t[0]-e[0])*(n[1]-t[1])-(t[0]-n[0])*(e[1]-t[1])}function Oc(t,n){return n[1]-t[1]||n[0]-t[0]}function Yc(t,n){var e,r,i,o=t.sort(Oc).pop();for(eb=[],tb=new Array(t.length),K_=new yc,nb=new yc;;)if(i=J_,o&&(!i||o[1]<i.y||o[1]===i.y&&o[0]<i.x))o[0]===e&&o[1]===r||(Dc(o),e=o[0],r=o[1]),o=t.pop();else{if(!i)break;Lc(i.arc)}if(function(){for(var t,n,e,r,i=0,o=tb.length;i<o;++i)if((t=tb[i])&&(r=(n=t.halfedges).length)){var a=new Array(r),u=new Array(r);for(e=0;e<r;++e)a[e]=e,u[e]=Sc(t,eb[n[e]]);for(a.sort(function(t,n){return u[n]-u[t]}),e=0;e<r;++e)u[e]=n[a[e]];for(e=0;e<r;++e)n[e]=u[e]}}(),n){var a=+n[0][0],u=+n[0][1],f=+n[1][0],c=+n[1][1];(function(t,n,e,r){for(var i,o=eb.length;o--;)Nc(i=eb[o],t,n,e,r)&&Tc(i,t,n,e,r)&&(Math.abs(i[0][0]-i[1][0])>ob||Math.abs(i[0][1]-i[1][1])>ob)||delete eb[o]})(a,u,f,c),function(t,n,e,r){var i,o,a,u,f,c,s,l,h,d,p,v,g=tb.length,y=!0;for(i=0;i<g;++i)if(o=tb[i]){for(a=o.site,u=(f=o.halfedges).length;u--;)eb[f[u]]||f.splice(u,1);for(u=0,c=f.length;u<c;)p=(d=kc(o,eb[f[u]]))[0],v=d[1],l=(s=Ec(o,eb[f[++u%c]]))[0],h=s[1],(Math.abs(p-l)>ob||Math.abs(v-h)>ob)&&(f.splice(u,0,eb.push(Mc(a,d,Math.abs(p-t)<ob&&r-v>ob?[t,Math.abs(l-t)<ob?h:r]:Math.abs(v-r)<ob&&e-p>ob?[Math.abs(h-r)<ob?l:e,r]:Math.abs(p-e)<ob&&v-n>ob?[e,Math.abs(l-e)<ob?h:n]:Math.abs(v-n)<ob&&p-t>ob?[Math.abs(h-n)<ob?l:t,n]:null))-1),++c);c&&(y=!1)}if(y){var _,b,m,x=1/0;for(i=0,y=null;i<g;++i)(o=tb[i])&&(m=(_=(a=o.site)[0]-t)*_+(b=a[1]-n)*b)<x&&(x=m,y=o);if(y){var w=[t,n],M=[t,r],A=[e,r],T=[e,n];y.halfedges.push(eb.push(Mc(a=y.site,w,M))-1,eb.push(Mc(a,M,A))-1,eb.push(Mc(a,A,T))-1,eb.push(Mc(a,T,w))-1)}}for(i=0;i<g;++i)(o=tb[i])&&(o.halfedges.length||delete tb[i])}(a,u,f,c)}this.edges=eb,this.cells=tb,K_=nb=eb=tb=null}function Bc(t){return function(){return t}}function Fc(t,n,e){this.k=t,this.x=n,this.y=e}function Ic(t){return t.__zoom||ub}function jc(){t.event.stopImmediatePropagation()}function Hc(){t.event.preventDefault(),t.event.stopImmediatePropagation()}function Xc(){return!t.event.button}function Gc(){var t,n,e=this;return e instanceof SVGElement?(t=(e=e.ownerSVGElement||e).width.baseVal.value,n=e.height.baseVal.value):(t=e.clientWidth,n=e.clientHeight),[[0,0],[t,n]]}function Vc(){return this.__zoom||ub}function $c(){return-t.event.deltaY*(t.event.deltaMode?120:1)/500}function Wc(){return"ontouchstart"in this}function Zc(t,n,e){var r=t.invertX(n[0][0])-e[0][0],i=t.invertX(n[1][0])-e[1][0],o=t.invertY(n[0][1])-e[0][1],a=t.invertY(n[1][1])-e[1][1];return t.translate(i>r?(r+i)/2:Math.min(0,r)||Math.max(0,i),a>o?(o+a)/2:Math.min(0,o)||Math.max(0,a))}var Qc=e(n),Jc=Qc.right,Kc=Qc.left,ts=Array.prototype,ns=ts.slice,es=ts.map,rs=Math.sqrt(50),is=Math.sqrt(10),os=Math.sqrt(2),as=Array.prototype.slice,us=1,fs=2,cs=3,ss=4,ls=1e-6,hs={value:function(){}};S.prototype=N.prototype={constructor:S,on:function(t,n){var e,r=this._,i=function(t,n){return t.trim().split(/^|\s+/).map(function(t){var e="",r=t.indexOf(".");if(r>=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:e}})}(t+"",r),o=-1,a=i.length;{if(!(arguments.length<2)){if(null!=n&&"function"!=typeof n)throw new Error("invalid callback: "+n);for(;++o<a;)if(e=(t=i[o]).type)r[e]=E(r[e],t.name,n);else if(null==n)for(e in r)r[e]=E(r[e],t.name,null);return this}for(;++o<a;)if((e=(t=i[o]).type)&&(e=function(t,n){for(var e,r=0,i=t.length;r<i;++r)if((e=t[r]).name===n)return e.value}(r[e],t.name)))return e}},copy:function(){var t={},n=this._;for(var e in n)t[e]=n[e].slice();return new S(t)},call:function(t,n){if((e=arguments.length-2)>0)for(var e,r,i=new Array(e),o=0;o<e;++o)i[o]=arguments[o+2];if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(o=0,e=(r=this._[t]).length;o<e;++o)r[o].value.apply(n,i)},apply:function(t,n,e){if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(var r=this._[t],i=0,o=r.length;i<o;++i)r[i].value.apply(n,e)}};var ds="http://www.w3.org/1999/xhtml",ps={svg:"http://www.w3.org/2000/svg",xhtml:ds,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"},vs=function(t){return function(){return this.matches(t)}};if("undefined"!=typeof document){var gs=document.documentElement;if(!gs.matches){var ys=gs.webkitMatchesSelector||gs.msMatchesSelector||gs.mozMatchesSelector||gs.oMatchesSelector;vs=function(t){return function(){return ys.call(this,t)}}}}var _s=vs;U.prototype={constructor:U,appendChild:function(t){return this._parent.insertBefore(t,this._next)},insertBefore:function(t,n){return this._parent.insertBefore(t,n)},querySelector:function(t){return this._parent.querySelector(t)},querySelectorAll:function(t){return this._parent.querySelectorAll(t)}};var bs="$";H.prototype={add:function(t){this._names.indexOf(t)<0&&(this._names.push(t),this._node.setAttribute("class",this._names.join(" ")))},remove:function(t){var n=this._names.indexOf(t);n>=0&&(this._names.splice(n,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};var ms={};if(t.event=null,"undefined"!=typeof document){"onmouseenter"in document.documentElement||(ms={mouseenter:"mouseover",mouseleave:"mouseout"})}var xs=[null];ut.prototype=ft.prototype={constructor:ut,select:function(t){"function"!=typeof t&&(t=z(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,a,u=n[i],f=u.length,c=r[i]=new Array(f),s=0;s<f;++s)(o=u[s])&&(a=t.call(o,o.__data__,s,u))&&("__data__"in o&&(a.__data__=o.__data__),c[s]=a);return new ut(r,this._parents)},selectAll:function(t){"function"!=typeof t&&(t=L(t));for(var n=this._groups,e=n.length,r=[],i=[],o=0;o<e;++o)for(var a,u=n[o],f=u.length,c=0;c<f;++c)(a=u[c])&&(r.push(t.call(a,a.__data__,c,u)),i.push(a));return new ut(r,i)},filter:function(t){"function"!=typeof t&&(t=_s(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,a=n[i],u=a.length,f=r[i]=[],c=0;c<u;++c)(o=a[c])&&t.call(o,o.__data__,c,a)&&f.push(o);return new ut(r,this._parents)},data:function(t,n){if(!t)return d=new Array(this.size()),c=-1,this.each(function(t){d[++c]=t}),d;var e=n?O:q,r=this._parents,i=this._groups;"function"!=typeof t&&(t=function(t){return function(){return t}}(t));for(var o=i.length,a=new Array(o),u=new Array(o),f=new Array(o),c=0;c<o;++c){var s=r[c],l=i[c],h=l.length,d=t.call(s,s&&s.__data__,c,r),p=d.length,v=u[c]=new Array(p),g=a[c]=new Array(p);e(s,l,v,g,f[c]=new Array(h),d,n);for(var y,_,b=0,m=0;b<p;++b)if(y=v[b]){for(b>=m&&(m=b+1);!(_=g[m])&&++m<p;);y._next=_||null}}return a=new ut(a,r),a._enter=u,a._exit=f,a},enter:function(){return new ut(this._enter||this._groups.map(D),this._parents)},exit:function(){return new ut(this._exit||this._groups.map(D),this._parents)},merge:function(t){for(var n=this._groups,e=t._groups,r=n.length,i=e.length,o=Math.min(r,i),a=new Array(r),u=0;u<o;++u)for(var f,c=n[u],s=e[u],l=c.length,h=a[u]=new Array(l),d=0;d<l;++d)(f=c[d]||s[d])&&(h[d]=f);for(;u<r;++u)a[u]=n[u];return new ut(a,this._parents)},order:function(){for(var t=this._groups,n=-1,e=t.length;++n<e;)for(var r,i=t[n],o=i.length-1,a=i[o];--o>=0;)(r=i[o])&&(a&&a!==r.nextSibling&&a.parentNode.insertBefore(r,a),a=r);return this},sort:function(t){function n(n,e){return n&&e?t(n.__data__,e.__data__):!n-!e}t||(t=Y);for(var e=this._groups,r=e.length,i=new Array(r),o=0;o<r;++o){for(var a,u=e[o],f=u.length,c=i[o]=new Array(f),s=0;s<f;++s)(a=u[s])&&(c[s]=a);c.sort(n)}return new ut(i,this._parents).order()},call:function(){var t=arguments[0];return arguments[0]=this,t.apply(null,arguments),this},nodes:function(){var t=new Array(this.size()),n=-1;return this.each(function(){t[++n]=this}),t},node:function(){for(var t=this._groups,n=0,e=t.length;n<e;++n)for(var r=t[n],i=0,o=r.length;i<o;++i){var a=r[i];if(a)return a}return null},size:function(){var t=0;return this.each(function(){++t}),t},empty:function(){return!this.node()},each:function(t){for(var n=this._groups,e=0,r=n.length;e<r;++e)for(var i,o=n[e],a=0,u=o.length;a<u;++a)(i=o[a])&&t.call(i,i.__data__,a,o);return this},attr:function(t,n){var e=k(t);if(arguments.length<2){var r=this.node();return e.local?r.getAttributeNS(e.space,e.local):r.getAttribute(e)}return this.each((null==n?e.local?function(t){return function(){this.removeAttributeNS(t.space,t.local)}}:function(t){return function(){this.removeAttribute(t)}}:"function"==typeof n?e.local?function(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,e)}}:function(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttribute(t):this.setAttribute(t,e)}}:e.local?function(t,n){return function(){this.setAttributeNS(t.space,t.local,n)}}:function(t,n){return function(){this.setAttribute(t,n)}})(e,n))},style:function(t,n,e){return arguments.length>1?this.each((null==n?function(t){return function(){this.style.removeProperty(t)}}:"function"==typeof n?function(t,n,e){return function(){var r=n.apply(this,arguments);null==r?this.style.removeProperty(t):this.style.setProperty(t,r,e)}}:function(t,n,e){return function(){this.style.setProperty(t,n,e)}})(t,n,null==e?"":e)):F(this.node(),t)},property:function(t,n){return arguments.length>1?this.each((null==n?function(t){return function(){delete this[t]}}:"function"==typeof n?function(t,n){return function(){var e=n.apply(this,arguments);null==e?delete this[t]:this[t]=e}}:function(t,n){return function(){this[t]=n}})(t,n)):this.node()[t]},classed:function(t,n){var e=I(t+"");if(arguments.length<2){for(var r=j(this.node()),i=-1,o=e.length;++i<o;)if(!r.contains(e[i]))return!1;return!0}return this.each(("function"==typeof n?function(t,n){return function(){(n.apply(this,arguments)?X:G)(this,t)}}:n?function(t){return function(){X(this,t)}}:function(t){return function(){G(this,t)}})(e,n))},text:function(t){return arguments.length?this.each(null==t?V:("function"==typeof t?function(t){return function(){var n=t.apply(this,arguments);this.textContent=null==n?"":n}}:function(t){return function(){this.textContent=t}})(t)):this.node().textContent},html:function(t){return arguments.length?this.each(null==t?$:("function"==typeof t?function(t){return function(){var n=t.apply(this,arguments);this.innerHTML=null==n?"":n}}:function(t){return function(){this.innerHTML=t}})(t)):this.node().innerHTML},raise:function(){return this.each(W)},lower:function(){return this.each(Z)},append:function(t){var n="function"==typeof t?t:C(t);return this.select(function(){return this.appendChild(n.apply(this,arguments))})},insert:function(t,n){var e="function"==typeof t?t:C(t),r=null==n?Q:"function"==typeof n?n:z(n);return this.select(function(){return this.insertBefore(e.apply(this,arguments),r.apply(this,arguments)||null)})},remove:function(){return this.each(J)},clone:function(t){return this.select(t?tt:K)},datum:function(t){return arguments.length?this.property("__data__",t):this.node().__data__},on:function(t,n,e){var r,i,o=function(t){return t.trim().split(/^|\s+/).map(function(t){var n="",e=t.indexOf(".");return e>=0&&(n=t.slice(e+1),t=t.slice(0,e)),{type:t,name:n}})}(t+""),a=o.length;if(!(arguments.length<2)){for(u=n?it:rt,null==e&&(e=!1),r=0;r<a;++r)this.each(u(o[r],n,e));return this}var u=this.node().__on;if(u)for(var f,c=0,s=u.length;c<s;++c)for(r=0,f=u[c];r<a;++r)if((i=o[r]).type===f.type&&i.name===f.name)return f.value},dispatch:function(t,n){return this.each(("function"==typeof n?function(t,n){return function(){return at(this,t,n.apply(this,arguments))}}:function(t,n){return function(){return at(this,t,n)}})(t,n))}};var ws=0;lt.prototype=st.prototype={constructor:lt,get:function(t){for(var n=this._;!(n in t);)if(!(t=t.parentNode))return;return t[n]},set:function(t,n){return t[this._]=n},remove:function(t){return this._ in t&&delete t[this._]},toString:function(){return this._}},xt.prototype.on=function(){var t=this._.on.apply(this._,arguments);return t===this._?this:t};var Ms="\\s*([+-]?\\d+)\\s*",As="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",Ts="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",Ns=/^#([0-9a-f]{3})$/,Ss=/^#([0-9a-f]{6})$/,Es=new RegExp("^rgb\\("+[Ms,Ms,Ms]+"\\)$"),ks=new RegExp("^rgb\\("+[Ts,Ts,Ts]+"\\)$"),Cs=new RegExp("^rgba\\("+[Ms,Ms,Ms,As]+"\\)$"),Ps=new RegExp("^rgba\\("+[Ts,Ts,Ts,As]+"\\)$"),zs=new RegExp("^hsl\\("+[As,Ts,Ts]+"\\)$"),Rs=new RegExp("^hsla\\("+[As,Ts,Ts,As]+"\\)$"),Ls={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};Nt(Et,kt,{displayable:function(){return this.rgb().displayable()},hex:function(){return this.rgb().hex()},toString:function(){return this.rgb()+""}}),Nt(Lt,Rt,St(Et,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Lt(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Lt(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return 0<=this.r&&this.r<=255&&0<=this.g&&this.g<=255&&0<=this.b&&this.b<=255&&0<=this.opacity&&this.opacity<=1},hex:function(){return"#"+Dt(this.r)+Dt(this.g)+Dt(this.b)},toString:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}})),Nt(Ot,qt,St(Et,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Ot(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Ot(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),n=isNaN(t)||isNaN(this.s)?0:this.s,e=this.l,r=e+(e<.5?e:1-e)*n,i=2*e-r;return new Lt(Yt(t>=240?t-240:t+120,i,r),Yt(t,i,r),Yt(t<120?t+240:t-120,i,r),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1}}));var Ds=Math.PI/180,Us=180/Math.PI,qs=.96422,Os=1,Ys=.82521,Bs=4/29,Fs=6/29,Is=3*Fs*Fs,js=Fs*Fs*Fs;Nt(It,Ft,St(Et,{brighter:function(t){return new It(this.l+18*(null==t?1:t),this.a,this.b,this.opacity)},darker:function(t){return new It(this.l-18*(null==t?1:t),this.a,this.b,this.opacity)},rgb:function(){var t=(this.l+16)/116,n=isNaN(this.a)?t:t+this.a/500,e=isNaN(this.b)?t:t-this.b/200;return n=qs*Ht(n),t=Os*Ht(t),e=Ys*Ht(e),new Lt(Xt(3.1338561*n-1.6168667*t-.4906146*e),Xt(-.9787684*n+1.9161415*t+.033454*e),Xt(.0719453*n-.2289914*t+1.4052427*e),this.opacity)}})),Nt(Wt,$t,St(Et,{brighter:function(t){return new Wt(this.h,this.c,this.l+18*(null==t?1:t),this.opacity)},darker:function(t){return new Wt(this.h,this.c,this.l-18*(null==t?1:t),this.opacity)},rgb:function(){return Bt(this).rgb()}}));var Hs=-.29227,Xs=-.90649,Gs=1.97294,Vs=Gs*Xs,$s=1.78277*Gs,Ws=1.78277*Hs- -.14861*Xs;Nt(Qt,Zt,St(Et,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Qt(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Qt(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=isNaN(this.h)?0:(this.h+120)*Ds,n=+this.l,e=isNaN(this.s)?0:this.s*n*(1-n),r=Math.cos(t),i=Math.sin(t);return new Lt(255*(n+e*(-.14861*r+1.78277*i)),255*(n+e*(Hs*r+Xs*i)),255*(n+e*(Gs*r)),this.opacity)}}));var Zs,Qs,Js,Ks,tl,nl,el=function t(n){function e(t,n){var e=r((t=Rt(t)).r,(n=Rt(n)).r),i=r(t.g,n.g),o=r(t.b,n.b),a=an(t.opacity,n.opacity);return function(n){return t.r=e(n),t.g=i(n),t.b=o(n),t.opacity=a(n),t+""}}var r=on(n);return e.gamma=t,e}(1),rl=un(Kt),il=un(tn),ol=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,al=new RegExp(ol.source,"g"),ul=180/Math.PI,fl={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1},cl=gn(function(t){return"none"===t?fl:(Zs||(Zs=document.createElement("DIV"),Qs=document.documentElement,Js=document.defaultView),Zs.style.transform=t,t=Js.getComputedStyle(Qs.appendChild(Zs),null).getPropertyValue("transform"),Qs.removeChild(Zs),t=t.slice(7,-1).split(","),vn(+t[0],+t[1],+t[2],+t[3],+t[4],+t[5]))},"px, ","px)","deg)"),sl=gn(function(t){return null==t?fl:(Ks||(Ks=document.createElementNS("http://www.w3.org/2000/svg","g")),Ks.setAttribute("transform",t),(t=Ks.transform.baseVal.consolidate())?(t=t.matrix,vn(t.a,t.b,t.c,t.d,t.e,t.f)):fl)},", ",")",")"),ll=Math.SQRT2,hl=2,dl=4,pl=1e-12,vl=bn(rn),gl=bn(an),yl=mn(rn),_l=mn(an),bl=xn(rn),ml=xn(an),xl=0,wl=0,Ml=0,Al=1e3,Tl=0,Nl=0,Sl=0,El="object"==typeof performance&&performance.now?performance:Date,kl="object"==typeof window&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};An.prototype=Tn.prototype={constructor:An,restart:function(t,n,e){if("function"!=typeof t)throw new TypeError("callback is not a function");e=(null==e?wn():+e)+(null==n?0:+n),this._next||nl===this||(nl?nl._next=this:tl=this,nl=this),this._call=t,this._time=e,kn()},stop:function(){this._call&&(this._call=null,this._time=1/0,kn())}};var Cl=N("start","end","interrupt"),Pl=[],zl=0,Rl=1,Ll=2,Dl=3,Ul=4,ql=5,Ol=6,Yl=ft.prototype.constructor,Bl=0,Fl=ft.prototype;On.prototype=Yn.prototype={constructor:On,select:function(t){var n=this._name,e=this._id;"function"!=typeof t&&(t=z(t));for(var r=this._groups,i=r.length,o=new Array(i),a=0;a<i;++a)for(var u,f,c=r[a],s=c.length,l=o[a]=new Array(s),h=0;h<s;++h)(u=c[h])&&(f=t.call(u,u.__data__,h,c))&&("__data__"in u&&(f.__data__=u.__data__),l[h]=f,Pn(l[h],n,e,h,l,Ln(u,e)));return new On(o,this._parents,n,e)},selectAll:function(t){var n=this._name,e=this._id;"function"!=typeof t&&(t=L(t));for(var r=this._groups,i=r.length,o=[],a=[],u=0;u<i;++u)for(var f,c=r[u],s=c.length,l=0;l<s;++l)if(f=c[l]){for(var h,d=t.call(f,f.__data__,l,c),p=Ln(f,e),v=0,g=d.length;v<g;++v)(h=d[v])&&Pn(h,n,e,v,d,p);o.push(d),a.push(f)}return new On(o,a,n,e)},filter:function(t){"function"!=typeof t&&(t=_s(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,a=n[i],u=a.length,f=r[i]=[],c=0;c<u;++c)(o=a[c])&&t.call(o,o.__data__,c,a)&&f.push(o);return new On(r,this._parents,this._name,this._id)},merge:function(t){if(t._id!==this._id)throw new Error;for(var n=this._groups,e=t._groups,r=n.length,i=e.length,o=Math.min(r,i),a=new Array(r),u=0;u<o;++u)for(var f,c=n[u],s=e[u],l=c.length,h=a[u]=new Array(l),d=0;d<l;++d)(f=c[d]||s[d])&&(h[d]=f);for(;u<r;++u)a[u]=n[u];return new On(a,this._parents,this._name,this._id)},selection:function(){return new Yl(this._groups,this._parents)},transition:function(){for(var t=this._name,n=this._id,e=Bn(),r=this._groups,i=r.length,o=0;o<i;++o)for(var a,u=r[o],f=u.length,c=0;c<f;++c)if(a=u[c]){var s=Ln(a,n);Pn(a,t,e,c,u,{time:s.time+s.delay+s.duration,delay:0,duration:s.duration,ease:s.ease})}return new On(r,this._parents,t,e)},call:Fl.call,nodes:Fl.nodes,node:Fl.node,size:Fl.size,empty:Fl.empty,each:Fl.each,on:function(t,n){var e=this._id;return arguments.length<2?Ln(this.node(),e).on.on(t):this.each(function(t,n,e){var r,i,o=function(t){return(t+"").trim().split(/^|\s+/).every(function(t){var n=t.indexOf(".");return n>=0&&(t=t.slice(0,n)),!t||"start"===t})}(n)?zn:Rn;return function(){var a=o(this,t),u=a.on;u!==r&&(i=(r=u).copy()).on(n,e),a.on=i}}(e,t,n))},attr:function(t,n){var e=k(t),r="transform"===e?sl:qn;return this.attrTween(t,"function"==typeof n?(e.local?function(t,n,e){var r,i,o;return function(){var a,u=e(this);if(null!=u)return(a=this.getAttributeNS(t.space,t.local))===u?null:a===r&&u===i?o:o=n(r=a,i=u);this.removeAttributeNS(t.space,t.local)}}:function(t,n,e){var r,i,o;return function(){var a,u=e(this);if(null!=u)return(a=this.getAttribute(t))===u?null:a===r&&u===i?o:o=n(r=a,i=u);this.removeAttribute(t)}})(e,r,Un(this,"attr."+t,n)):null==n?(e.local?function(t){return function(){this.removeAttributeNS(t.space,t.local)}}:function(t){return function(){this.removeAttribute(t)}})(e):(e.local?function(t,n,e){var r,i;return function(){var o=this.getAttributeNS(t.space,t.local);return o===e?null:o===r?i:i=n(r=o,e)}}:function(t,n,e){var r,i;return function(){var o=this.getAttribute(t);return o===e?null:o===r?i:i=n(r=o,e)}})(e,r,n+""))},attrTween:function(t,n){var e="attr."+t;if(arguments.length<2)return(e=this.tween(e))&&e._value;if(null==n)return this.tween(e,null);if("function"!=typeof n)throw new Error;var r=k(t);return this.tween(e,(r.local?function(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttributeNS(t.space,t.local,r(n))}}return e._value=n,e}:function(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttribute(t,r(n))}}return e._value=n,e})(r,n))},style:function(t,n,e){var r="transform"==(t+="")?cl:qn;return null==n?this.styleTween(t,function(t,n){var e,r,i;return function(){var o=F(this,t),a=(this.style.removeProperty(t),F(this,t));return o===a?null:o===e&&a===r?i:i=n(e=o,r=a)}}(t,r)).on("end.style."+t,function(t){return function(){this.style.removeProperty(t)}}(t)):this.styleTween(t,"function"==typeof n?function(t,n,e){var r,i,o;return function(){var a=F(this,t),u=e(this);return null==u&&(this.style.removeProperty(t),u=F(this,t)),a===u?null:a===r&&u===i?o:o=n(r=a,i=u)}}(t,r,Un(this,"style."+t,n)):function(t,n,e){var r,i;return function(){var o=F(this,t);return o===e?null:o===r?i:i=n(r=o,e)}}(t,r,n+""),e)},styleTween:function(t,n,e){var r="style."+(t+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(null==n)return this.tween(r,null);if("function"!=typeof n)throw new Error;return this.tween(r,function(t,n,e){function r(){var r=this,i=n.apply(r,arguments);return i&&function(n){r.style.setProperty(t,i(n),e)}}return r._value=n,r}(t,n,null==e?"":e))},text:function(t){return this.tween("text","function"==typeof t?function(t){return function(){var n=t(this);this.textContent=null==n?"":n}}(Un(this,"text",t)):function(t){return function(){this.textContent=t}}(null==t?"":t+""))},remove:function(){return this.on("end.remove",function(t){return function(){var n=this.parentNode;for(var e in this.__transition)if(+e!==t)return;n&&n.removeChild(this)}}(this._id))},tween:function(t,n){var e=this._id;if(t+="",arguments.length<2){for(var r,i=Ln(this.node(),e).tween,o=0,a=i.length;o<a;++o)if((r=i[o]).name===t)return r.value;return null}return this.each((null==n?function(t,n){var e,r;return function(){var i=Rn(this,t),o=i.tween;if(o!==e)for(var a=0,u=(r=e=o).length;a<u;++a)if(r[a].name===n){(r=r.slice()).splice(a,1);break}i.tween=r}}:function(t,n,e){var r,i;if("function"!=typeof e)throw new Error;return function(){var o=Rn(this,t),a=o.tween;if(a!==r){i=(r=a).slice();for(var u={name:n,value:e},f=0,c=i.length;f<c;++f)if(i[f].name===n){i[f]=u;break}f===c&&i.push(u)}o.tween=i}})(e,t,n))},delay:function(t){var n=this._id;return arguments.length?this.each(("function"==typeof t?function(t,n){return function(){zn(this,t).delay=+n.apply(this,arguments)}}:function(t,n){return n=+n,function(){zn(this,t).delay=n}})(n,t)):Ln(this.node(),n).delay},duration:function(t){var n=this._id;return arguments.length?this.each(("function"==typeof t?function(t,n){return function(){Rn(this,t).duration=+n.apply(this,arguments)}}:function(t,n){return n=+n,function(){Rn(this,t).duration=n}})(n,t)):Ln(this.node(),n).duration},ease:function(t){var n=this._id;return arguments.length?this.each(function(t,n){if("function"!=typeof n)throw new Error;return function(){Rn(this,t).ease=n}}(n,t)):Ln(this.node(),n).ease}};var Il=function t(n){function e(t){return Math.pow(t,n)}return n=+n,e.exponent=t,e}(3),jl=function t(n){function e(t){return 1-Math.pow(1-t,n)}return n=+n,e.exponent=t,e}(3),Hl=function t(n){function e(t){return((t*=2)<=1?Math.pow(t,n):2-Math.pow(2-t,n))/2}return n=+n,e.exponent=t,e}(3),Xl=Math.PI,Gl=Xl/2,Vl=4/11,$l=6/11,Wl=8/11,Zl=.75,Ql=9/11,Jl=10/11,Kl=.9375,th=21/22,nh=63/64,eh=1/Vl/Vl,rh=function t(n){function e(t){return t*t*((n+1)*t-n)}return n=+n,e.overshoot=t,e}(1.70158),ih=function t(n){function e(t){return--t*t*((n+1)*t+n)+1}return n=+n,e.overshoot=t,e}(1.70158),oh=function t(n){function e(t){return((t*=2)<1?t*t*((n+1)*t-n):(t-=2)*t*((n+1)*t+n)+2)/2}return n=+n,e.overshoot=t,e}(1.70158),ah=2*Math.PI,uh=function t(n,e){function r(t){return n*Math.pow(2,10*--t)*Math.sin((i-t)/e)}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=ah);return r.amplitude=function(n){return t(n,e*ah)},r.period=function(e){return t(n,e)},r}(1,.3),fh=function t(n,e){function r(t){return 1-n*Math.pow(2,-10*(t=+t))*Math.sin((t+i)/e)}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=ah);return r.amplitude=function(n){return t(n,e*ah)},r.period=function(e){return t(n,e)},r}(1,.3),ch=function t(n,e){function r(t){return((t=2*t-1)<0?n*Math.pow(2,10*t)*Math.sin((i-t)/e):2-n*Math.pow(2,-10*t)*Math.sin((i+t)/e))/2}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=ah);return r.amplitude=function(n){return t(n,e*ah)},r.period=function(e){return t(n,e)},r}(1,.3),sh={time:null,delay:0,duration:250,ease:In};ft.prototype.interrupt=function(t){return this.each(function(){Dn(this,t)})},ft.prototype.transition=function(t){var n,e;t instanceof On?(n=t._id,t=t._name):(n=Bn(),(e=sh).time=wn(),t=null==t?null:t+"");for(var r=this._groups,i=r.length,o=0;o<i;++o)for(var a,u=r[o],f=u.length,c=0;c<f;++c)(a=u[c])&&Pn(a,t,n,c,u,e||Vn(a,n));return new On(r,this._parents,t,n)};var lh=[null],hh={name:"drag"},dh={name:"space"},ph={name:"handle"},vh={name:"center"},gh={name:"x",handles:["e","w"].map(Qn),input:function(t,n){return t&&[[t[0],n[0][1]],[t[1],n[1][1]]]},output:function(t){return t&&[t[0][0],t[1][0]]}},yh={name:"y",handles:["n","s"].map(Qn),input:function(t,n){return t&&[[n[0][0],t[0]],[n[1][0],t[1]]]},output:function(t){return t&&[t[0][1],t[1][1]]}},_h={name:"xy",handles:["n","e","s","w","nw","ne","se","sw"].map(Qn),input:function(t){return t},output:function(t){return t}},bh={overlay:"crosshair",selection:"move",n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},mh={e:"w",w:"e",nw:"ne",ne:"nw",se:"sw",sw:"se"},xh={n:"s",s:"n",nw:"sw",ne:"se",se:"ne",sw:"nw"},wh={overlay:1,selection:1,n:null,e:1,s:null,w:-1,nw:-1,ne:1,se:1,sw:-1},Mh={overlay:1,selection:1,n:-1,e:null,s:1,w:null,nw:-1,ne:-1,se:1,sw:1},Ah=Math.cos,Th=Math.sin,Nh=Math.PI,Sh=Nh/2,Eh=2*Nh,kh=Math.max,Ch=Array.prototype.slice,Ph=Math.PI,zh=2*Ph,Rh=zh-1e-6;ie.prototype=oe.prototype={constructor:ie,moveTo:function(t,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(t,n){this._+="L"+(this._x1=+t)+","+(this._y1=+n)},quadraticCurveTo:function(t,n,e,r){this._+="Q"+ +t+","+ +n+","+(this._x1=+e)+","+(this._y1=+r)},bezierCurveTo:function(t,n,e,r,i,o){this._+="C"+ +t+","+ +n+","+ +e+","+ +r+","+(this._x1=+i)+","+(this._y1=+o)},arcTo:function(t,n,e,r,i){t=+t,n=+n,e=+e,r=+r,i=+i;var o=this._x1,a=this._y1,u=e-t,f=r-n,c=o-t,s=a-n,l=c*c+s*s;if(i<0)throw new Error("negative radius: "+i);if(null===this._x1)this._+="M"+(this._x1=t)+","+(this._y1=n);else if(l>1e-6)if(Math.abs(s*u-f*c)>1e-6&&i){var h=e-o,d=r-a,p=u*u+f*f,v=h*h+d*d,g=Math.sqrt(p),y=Math.sqrt(l),_=i*Math.tan((Ph-Math.acos((p+l-v)/(2*g*y)))/2),b=_/y,m=_/g;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*c)+","+(n+b*s)),this._+="A"+i+","+i+",0,0,"+ +(s*h>c*d)+","+(this._x1=t+m*u)+","+(this._y1=n+m*f)}else this._+="L"+(this._x1=t)+","+(this._y1=n);else;},arc:function(t,n,e,r,i,o){t=+t,n=+n;var a=(e=+e)*Math.cos(r),u=e*Math.sin(r),f=t+a,c=n+u,s=1^o,l=o?r-i:i-r;if(e<0)throw new Error("negative radius: "+e);null===this._x1?this._+="M"+f+","+c:(Math.abs(this._x1-f)>1e-6||Math.abs(this._y1-c)>1e-6)&&(this._+="L"+f+","+c),e&&(l<0&&(l=l%zh+zh),l>Rh?this._+="A"+e+","+e+",0,1,"+s+","+(t-a)+","+(n-u)+"A"+e+","+e+",0,1,"+s+","+(this._x1=f)+","+(this._y1=c):l>1e-6&&(this._+="A"+e+","+e+",0,"+ +(l>=Ph)+","+s+","+(this._x1=t+e*Math.cos(i))+","+(this._y1=n+e*Math.sin(i))))},rect:function(t,n,e,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)+"h"+ +e+"v"+ +r+"h"+-e+"Z"},toString:function(){return this._}};le.prototype=he.prototype={constructor:le,has:function(t){return"$"+t in this},get:function(t){return this["$"+t]},set:function(t,n){return this["$"+t]=n,this},remove:function(t){var n="$"+t;return n in this&&delete this[n]},clear:function(){for(var t in this)"$"===t[0]&&delete this[t]},keys:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(n.slice(1));return t},values:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(this[n]);return t},entries:function(){var t=[];for(var n in this)"$"===n[0]&&t.push({key:n.slice(1),value:this[n]});return t},size:function(){var t=0;for(var n in this)"$"===n[0]&&++t;return t},empty:function(){for(var t in this)if("$"===t[0])return!1;return!0},each:function(t){for(var n in this)"$"===n[0]&&t(this[n],n.slice(1),this)}};var Lh=he.prototype;ye.prototype=_e.prototype={constructor:ye,has:Lh.has,add:function(t){return t+="",this["$"+t]=t,this},remove:Lh.remove,clear:Lh.clear,values:Lh.keys,size:Lh.size,empty:Lh.empty,each:Lh.each};var Dh=Array.prototype.slice,Uh=[[],[[[1,1.5],[.5,1]]],[[[1.5,1],[1,1.5]]],[[[1.5,1],[.5,1]]],[[[1,.5],[1.5,1]]],[[[1,1.5],[.5,1]],[[1,.5],[1.5,1]]],[[[1,.5],[1,1.5]]],[[[1,.5],[.5,1]]],[[[.5,1],[1,.5]]],[[[1,1.5],[1,.5]]],[[[.5,1],[1,.5]],[[1.5,1],[1,1.5]]],[[[1.5,1],[1,.5]]],[[[.5,1],[1.5,1]]],[[[1,1.5],[1.5,1]]],[[[.5,1],[1,1.5]]],[]],qh={},Oh={},Yh=34,Bh=10,Fh=13,Ih=ke(","),jh=Ih.parse,Hh=Ih.parseRows,Xh=Ih.format,Gh=Ih.formatRows,Vh=ke("\t"),$h=Vh.parse,Wh=Vh.parseRows,Zh=Vh.format,Qh=Vh.formatRows,Jh=Le(jh),Kh=Le($h),td=Ue("application/xml"),nd=Ue("text/html"),ed=Ue("image/svg+xml"),rd=je.prototype=He.prototype;rd.copy=function(){var t,n,e=new He(this._x,this._y,this._x0,this._y0,this._x1,this._y1),r=this._root;if(!r)return e;if(!r.length)return e._root=Xe(r),e;for(t=[{source:r,target:e._root=new Array(4)}];r=t.pop();)for(var i=0;i<4;++i)(n=r.source[i])&&(n.length?t.push({source:n,target:r.target[i]=new Array(4)}):r.target[i]=Xe(n));return e},rd.add=function(t){var n=+this._x.call(null,t),e=+this._y.call(null,t);return Ye(this.cover(n,e),n,e,t)},rd.addAll=function(t){var n,e,r,i,o=t.length,a=new Array(o),u=new Array(o),f=1/0,c=1/0,s=-1/0,l=-1/0;for(e=0;e<o;++e)isNaN(r=+this._x.call(null,n=t[e]))||isNaN(i=+this._y.call(null,n))||(a[e]=r,u[e]=i,r<f&&(f=r),r>s&&(s=r),i<c&&(c=i),i>l&&(l=i));for(s<f&&(f=this._x0,s=this._x1),l<c&&(c=this._y0,l=this._y1),this.cover(f,c).cover(s,l),e=0;e<o;++e)Ye(this,a[e],u[e],t[e]);return this},rd.cover=function(t,n){if(isNaN(t=+t)||isNaN(n=+n))return this;var e=this._x0,r=this._y0,i=this._x1,o=this._y1;if(isNaN(e))i=(e=Math.floor(t))+1,o=(r=Math.floor(n))+1;else{if(!(e>t||t>i||r>n||n>o))return this;var a,u,f=i-e,c=this._root;switch(u=(n<(r+o)/2)<<1|t<(e+i)/2){case 0:do{a=new Array(4),a[u]=c,c=a}while(f*=2,i=e+f,o=r+f,t>i||n>o);break;case 1:do{a=new Array(4),a[u]=c,c=a}while(f*=2,e=i-f,o=r+f,e>t||n>o);break;case 2:do{a=new Array(4),a[u]=c,c=a}while(f*=2,i=e+f,r=o-f,t>i||r>n);break;case 3:do{a=new Array(4),a[u]=c,c=a}while(f*=2,e=i-f,r=o-f,e>t||r>n)}this._root&&this._root.length&&(this._root=c)}return this._x0=e,this._y0=r,this._x1=i,this._y1=o,this},rd.data=function(){var t=[];return this.visit(function(n){if(!n.length)do{t.push(n.data)}while(n=n.next)}),t},rd.extent=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},rd.find=function(t,n,e){var r,i,o,a,u,f,c,s=this._x0,l=this._y0,h=this._x1,d=this._y1,p=[],v=this._root;for(v&&p.push(new Be(v,s,l,h,d)),null==e?e=1/0:(s=t-e,l=n-e,h=t+e,d=n+e,e*=e);f=p.pop();)if(!(!(v=f.node)||(i=f.x0)>h||(o=f.y0)>d||(a=f.x1)<s||(u=f.y1)<l))if(v.length){var g=(i+a)/2,y=(o+u)/2;p.push(new Be(v[3],g,y,a,u),new Be(v[2],i,y,g,u),new Be(v[1],g,o,a,y),new Be(v[0],i,o,g,y)),(c=(n>=y)<<1|t>=g)&&(f=p[p.length-1],p[p.length-1]=p[p.length-1-c],p[p.length-1-c]=f)}else{var _=t-+this._x.call(null,v.data),b=n-+this._y.call(null,v.data),m=_*_+b*b;if(m<e){var x=Math.sqrt(e=m);s=t-x,l=n-x,h=t+x,d=n+x,r=v.data}}return r},rd.remove=function(t){if(isNaN(o=+this._x.call(null,t))||isNaN(a=+this._y.call(null,t)))return this;var n,e,r,i,o,a,u,f,c,s,l,h,d=this._root,p=this._x0,v=this._y0,g=this._x1,y=this._y1;if(!d)return this;if(d.length)for(;;){if((c=o>=(u=(p+g)/2))?p=u:g=u,(s=a>=(f=(v+y)/2))?v=f:y=f,n=d,!(d=d[l=s<<1|c]))return this;if(!d.length)break;(n[l+1&3]||n[l+2&3]||n[l+3&3])&&(e=n,h=l)}for(;d.data!==t;)if(r=d,!(d=d.next))return this;return(i=d.next)&&delete d.next,r?(i?r.next=i:delete r.next,this):n?(i?n[l]=i:delete n[l],(d=n[0]||n[1]||n[2]||n[3])&&d===(n[3]||n[2]||n[1]||n[0])&&!d.length&&(e?e[h]=d:this._root=d),this):(this._root=i,this)},rd.removeAll=function(t){for(var n=0,e=t.length;n<e;++n)this.remove(t[n]);return this},rd.root=function(){return this._root},rd.size=function(){var t=0;return this.visit(function(n){if(!n.length)do{++t}while(n=n.next)}),t},rd.visit=function(t){var n,e,r,i,o,a,u=[],f=this._root;for(f&&u.push(new Be(f,this._x0,this._y0,this._x1,this._y1));n=u.pop();)if(!t(f=n.node,r=n.x0,i=n.y0,o=n.x1,a=n.y1)&&f.length){var c=(r+o)/2,s=(i+a)/2;(e=f[3])&&u.push(new Be(e,c,s,o,a)),(e=f[2])&&u.push(new Be(e,r,s,c,a)),(e=f[1])&&u.push(new Be(e,c,i,o,s)),(e=f[0])&&u.push(new Be(e,r,i,c,s))}return this},rd.visitAfter=function(t){var n,e=[],r=[];for(this._root&&e.push(new Be(this._root,this._x0,this._y0,this._x1,this._y1));n=e.pop();){var i=n.node;if(i.length){var o,a=n.x0,u=n.y0,f=n.x1,c=n.y1,s=(a+f)/2,l=(u+c)/2;(o=i[0])&&e.push(new Be(o,a,u,s,l)),(o=i[1])&&e.push(new Be(o,s,u,f,l)),(o=i[2])&&e.push(new Be(o,a,l,s,c)),(o=i[3])&&e.push(new Be(o,s,l,f,c))}r.push(n)}for(;n=r.pop();)t(n.node,n.x0,n.y0,n.x1,n.y1);return this},rd.x=function(t){return arguments.length?(this._x=t,this):this._x},rd.y=function(t){return arguments.length?(this._y=t,this):this._y};var id=10,od=Math.PI*(3-Math.sqrt(5)),ad=/^(?:(.)?([<>=^]))?([+\-\( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;tr.prototype=nr.prototype,nr.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(null==this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(null==this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var ud,fd,cd={"%":function(t,n){return(100*t).toFixed(n)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:function(t){return Math.round(t).toString(10)},e:function(t,n){return t.toExponential(n)},f:function(t,n){return t.toFixed(n)},g:function(t,n){return t.toPrecision(n)},o:function(t){return Math.round(t).toString(8)},p:function(t,n){return er(100*t,n)},r:er,s:function(t,n){var e=Je(t,n);if(!e)return t+"";var r=e[0],i=e[1],o=i-(ud=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,a=r.length;return o===a?r:o>a?r+new Array(o-a+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+Je(t,Math.max(0,n+o-1))[0]},X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}},sd=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];or({decimal:".",thousands:",",grouping:[3],currency:["$",""]}),sr.prototype={constructor:sr,reset:function(){this.s=this.t=0},add:function(t){lr(Id,t,this.t),lr(this,Id.s,this.s),this.s?this.t+=Id.t:this.s=Id.t},valueOf:function(){return this.s}};var ld,hd,dd,pd,vd,gd,yd,_d,bd,md,xd,wd,Md,Ad,Td,Nd,Sd,Ed,kd,Cd,Pd,zd,Rd,Ld,Dd,Ud,qd,Od,Yd,Bd,Fd,Id=new sr,jd=1e-6,Hd=1e-12,Xd=Math.PI,Gd=Xd/2,Vd=Xd/4,$d=2*Xd,Wd=180/Xd,Zd=Xd/180,Qd=Math.abs,Jd=Math.atan,Kd=Math.atan2,tp=Math.cos,np=Math.ceil,ep=Math.exp,rp=Math.log,ip=Math.pow,op=Math.sin,ap=Math.sign||function(t){return t>0?1:t<0?-1:0},up=Math.sqrt,fp=Math.tan,cp={Feature:function(t,n){gr(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r<i;)gr(e[r].geometry,n)}},sp={Sphere:function(t,n){n.sphere()},Point:function(t,n){t=t.coordinates,n.point(t[0],t[1],t[2])},MultiPoint:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)t=e[r],n.point(t[0],t[1],t[2])},LineString:function(t,n){yr(t.coordinates,n,0)},MultiLineString:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)yr(e[r],n,0)},Polygon:function(t,n){_r(t.coordinates,n)},MultiPolygon:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)_r(e[r],n)},GeometryCollection:function(t,n){for(var e=t.geometries,r=-1,i=e.length;++r<i;)gr(e[r],n)}},lp=cr(),hp=cr(),dp={point:vr,lineStart:vr,lineEnd:vr,polygonStart:function(){lp.reset(),dp.lineStart=mr,dp.lineEnd=xr},polygonEnd:function(){var t=+lp;hp.add(t<0?$d+t:t),this.lineStart=this.lineEnd=this.point=vr},sphere:function(){hp.add($d)}},pp=cr(),vp={point:Pr,lineStart:Rr,lineEnd:Lr,polygonStart:function(){vp.point=Dr,vp.lineStart=Ur,vp.lineEnd=qr,pp.reset(),dp.polygonStart()},polygonEnd:function(){dp.polygonEnd(),vp.point=Pr,vp.lineStart=Rr,vp.lineEnd=Lr,lp<0?(gd=-(_d=180),yd=-(bd=90)):pp>jd?bd=90:pp<-jd&&(yd=-90),Td[0]=gd,Td[1]=_d}},gp={sphere:vr,point:Fr,lineStart:jr,lineEnd:Gr,polygonStart:function(){gp.lineStart=Vr,gp.lineEnd=$r},polygonEnd:function(){gp.lineStart=jr,gp.lineEnd=Gr}};Kr.invert=Kr;var yp,_p,bp,mp,xp,wp,Mp,Ap,Tp,Np,Sp,Ep=cr(),kp=di(function(){return!0},function(t){var n,e=NaN,r=NaN,i=NaN;return{lineStart:function(){t.lineStart(),n=1},point:function(o,a){var u=o>0?Xd:-Xd,f=Qd(o-e);Qd(f-Xd)<jd?(t.point(e,r=(r+a)/2>0?Gd:-Gd),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(u,r),t.point(o,r),n=0):i!==u&&f>=Xd&&(Qd(e-i)<jd&&(e-=i*jd),Qd(o-u)<jd&&(o-=u*jd),r=function(t,n,e,r){var i,o,a=op(t-e);return Qd(a)>jd?Jd((op(n)*(o=tp(r))*op(e)-op(r)*(i=tp(n))*op(t))/(i*o*a)):(n+r)/2}(e,r,o,a),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(u,r),n=0),t.point(e=o,r=a),i=u},lineEnd:function(){t.lineEnd(),e=r=NaN},clean:function(){return 2-n}}},function(t,n,e,r){var i;if(null==t)i=e*Gd,r.point(-Xd,i),r.point(0,i),r.point(Xd,i),r.point(Xd,0),r.point(Xd,-i),r.point(0,-i),r.point(-Xd,-i),r.point(-Xd,0),r.point(-Xd,i);else if(Qd(t[0]-n[0])>jd){var o=t[0]<n[0]?Xd:-Xd;i=e*o/2,r.point(-o,i),r.point(0,i),r.point(o,i)}else r.point(n[0],n[1])},[-Xd,-Gd]),Cp=1e9,Pp=-Cp,zp=cr(),Rp={sphere:vr,point:vr,lineStart:function(){Rp.point=bi,Rp.lineEnd=_i},lineEnd:vr,polygonStart:vr,polygonEnd:vr},Lp=[null,null],Dp={type:"LineString",coordinates:Lp},Up={Feature:function(t,n){return Mi(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r<i;)if(Mi(e[r].geometry,n))return!0;return!1}},qp={Sphere:function(){return!0},Point:function(t,n){return Ai(t.coordinates,n)},MultiPoint:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(Ai(e[r],n))return!0;return!1},LineString:function(t,n){return Ti(t.coordinates,n)},MultiLineString:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(Ti(e[r],n))return!0;return!1},Polygon:function(t,n){return Ni(t.coordinates,n)},MultiPolygon:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(Ni(e[r],n))return!0;return!1},GeometryCollection:function(t,n){for(var e=t.geometries,r=-1,i=e.length;++r<i;)if(Mi(e[r],n))return!0;return!1}},Op=cr(),Yp=cr(),Bp={point:vr,lineStart:vr,lineEnd:vr,polygonStart:function(){Bp.lineStart=Ri,Bp.lineEnd=Ui},polygonEnd:function(){Bp.lineStart=Bp.lineEnd=Bp.point=vr,Op.add(Qd(Yp)),Yp.reset()},result:function(){var t=Op/2;return Op.reset(),t}},Fp=1/0,Ip=Fp,jp=-Fp,Hp=jp,Xp={point:function(t,n){t<Fp&&(Fp=t),t>jp&&(jp=t),n<Ip&&(Ip=n),n>Hp&&(Hp=n)},lineStart:vr,lineEnd:vr,polygonStart:vr,polygonEnd:vr,result:function(){var t=[[Fp,Ip],[jp,Hp]];return jp=Hp=-(Ip=Fp=1/0),t}},Gp=0,Vp=0,$p=0,Wp=0,Zp=0,Qp=0,Jp=0,Kp=0,tv=0,nv={point:qi,lineStart:Oi,lineEnd:Fi,polygonStart:function(){nv.lineStart=Ii,nv.lineEnd=ji},polygonEnd:function(){nv.point=qi,nv.lineStart=Oi,nv.lineEnd=Fi},result:function(){var t=tv?[Jp/tv,Kp/tv]:Qp?[Wp/Qp,Zp/Qp]:$p?[Gp/$p,Vp/$p]:[NaN,NaN];return Gp=Vp=$p=Wp=Zp=Qp=Jp=Kp=tv=0,t}};Gi.prototype={_radius:4.5,pointRadius:function(t){return this._radius=t,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._context.closePath(),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._context.moveTo(t,n),this._point=1;break;case 1:this._context.lineTo(t,n);break;default:this._context.moveTo(t+this._radius,n),this._context.arc(t,n,this._radius,0,$d)}},result:vr};var ev,rv,iv,ov,av,uv=cr(),fv={point:vr,lineStart:function(){fv.point=Vi},lineEnd:function(){ev&&$i(rv,iv),fv.point=vr},polygonStart:function(){ev=!0},polygonEnd:function(){ev=null},result:function(){var t=+uv;return uv.reset(),t}};Wi.prototype={_radius:4.5,_circle:Zi(4.5),pointRadius:function(t){return(t=+t)!==this._radius&&(this._radius=t,this._circle=null),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._string.push("Z"),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._string.push("M",t,",",n),this._point=1;break;case 1:this._string.push("L",t,",",n);break;default:null==this._circle&&(this._circle=Zi(this._radius)),this._string.push("M",t,",",n,this._circle)}},result:function(){if(this._string.length){var t=this._string.join("");return this._string=[],t}return null}},Ji.prototype={constructor:Ji,point:function(t,n){this.stream.point(t,n)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};var cv=16,sv=tp(30*Zd),lv=Qi({point:function(t,n){this.stream.point(t*Zd,n*Zd)}}),hv=ho(function(t){return up(2/(1+t))});hv.invert=po(function(t){return 2*dr(t/2)});var dv=ho(function(t){return(t=hr(t))&&t/op(t)});dv.invert=po(function(t){return t}),vo.invert=function(t,n){return[t,2*Jd(ep(n))-Gd]},bo.invert=bo,xo.invert=po(Jd),Mo.invert=function(t,n){var e,r=n,i=25;do{var o=r*r,a=o*o;r-=e=(r*(1.007226+o*(.015085+a*(.028874*o-.044475-.005916*a)))-n)/(1.007226+o*(.045255+a*(.259866*o-.311325-.005916*11*a)))}while(Qd(e)>jd&&--i>0);return[t/(.8707+(o=r*r)*(o*(o*o*o*(.003971-.001529*o)-.013791)-.131979)),r]},Ao.invert=po(dr),To.invert=po(function(t){return 2*Jd(t)}),No.invert=function(t,n){return[-n,2*Jd(ep(t))-Gd]},Do.prototype=Po.prototype={constructor:Do,count:function(){return this.eachAfter(Co)},each:function(t){var n,e,r,i,o=this,a=[o];do{for(n=a.reverse(),a=[];o=n.pop();)if(t(o),e=o.children)for(r=0,i=e.length;r<i;++r)a.push(e[r])}while(a.length);return this},eachAfter:function(t){for(var n,e,r,i=this,o=[i],a=[];i=o.pop();)if(a.push(i),n=i.children)for(e=0,r=n.length;e<r;++e)o.push(n[e]);for(;i=a.pop();)t(i);return this},eachBefore:function(t){for(var n,e,r=this,i=[r];r=i.pop();)if(t(r),n=r.children)for(e=n.length-1;e>=0;--e)i.push(n[e]);return this},sum:function(t){return this.eachAfter(function(n){for(var e=+t(n.data)||0,r=n.children,i=r&&r.length;--i>=0;)e+=r[i].value;n.value=e})},sort:function(t){return this.eachBefore(function(n){n.children&&n.children.sort(t)})},path:function(t){for(var n=this,e=function(t,n){if(t===n)return t;var e=t.ancestors(),r=n.ancestors(),i=null;for(t=e.pop(),n=r.pop();t===n;)i=t,t=e.pop(),n=r.pop();return i}(n,t),r=[n];n!==e;)n=n.parent,r.push(n);for(var i=r.length;t!==e;)r.splice(i,0,t),t=t.parent;return r},ancestors:function(){for(var t=this,n=[t];t=t.parent;)n.push(t);return n},descendants:function(){var t=[];return this.each(function(n){t.push(n)}),t},leaves:function(){var t=[];return this.eachBefore(function(n){n.children||t.push(n)}),t},links:function(){var t=this,n=[];return t.each(function(e){e!==t&&n.push({source:e.parent,target:e})}),n},copy:function(){return Po(this).eachBefore(Ro)}};var pv=Array.prototype.slice,vv="$",gv={depth:-1},yv={};ca.prototype=Object.create(Do.prototype);var _v=(1+Math.sqrt(5))/2,bv=function t(n){function e(t,e,r,i,o){la(n,t,e,r,i,o)}return e.ratio=function(n){return t((n=+n)>1?n:1)},e}(_v),mv=function t(n){function e(t,e,r,i,o){if((a=t._squarify)&&a.ratio===n)for(var a,u,f,c,s,l=-1,h=a.length,d=t.value;++l<h;){for(f=(u=a[l]).children,c=u.value=0,s=f.length;c<s;++c)u.value+=f[c].value;u.dice?na(u,e,r,i,r+=(o-r)*u.value/d):sa(u,e,r,e+=(i-e)*u.value/d,o),d-=u.value}else t._squarify=a=la(n,t,e,r,i,o),a.ratio=n}return e.ratio=function(n){return t((n=+n)>1?n:1)},e}(_v),xv=function t(n){function e(t,e){return t=null==t?0:+t,e=null==e?1:+e,1===arguments.length?(e=t,t=0):e-=t,function(){return n()*e+t}}return e.source=t,e}(va),wv=function t(n){function e(t,e){var r,i;return t=null==t?0:+t,e=null==e?1:+e,function(){var o;if(null!=r)o=r,r=null;else do{r=2*n()-1,o=2*n()-1,i=r*r+o*o}while(!i||i>1);return t+e*o*Math.sqrt(-2*Math.log(i)/i)}}return e.source=t,e}(va),Mv=function t(n){function e(){var t=wv.source(n).apply(this,arguments);return function(){return Math.exp(t())}}return e.source=t,e}(va),Av=function t(n){function e(t){return function(){for(var e=0,r=0;r<t;++r)e+=n();return e}}return e.source=t,e}(va),Tv=function t(n){function e(t){var e=Av.source(n)(t);return function(){return e()/t}}return e.source=t,e}(va),Nv=function t(n){function e(t){return function(){return-Math.log(1-n())/t}}return e.source=t,e}(va),Sv=Array.prototype,Ev=Sv.map,kv=Sv.slice,Cv={name:"implicit"},Pv=[0,1],zv=new Date,Rv=new Date,Lv=Ia(function(){},function(t,n){t.setTime(+t+n)},function(t,n){return n-t});Lv.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?Ia(function(n){n.setTime(Math.floor(n/t)*t)},function(n,e){n.setTime(+n+e*t)},function(n,e){return(e-n)/t}):Lv:null};var Dv=Lv.range,Uv=6e4,qv=6048e5,Ov=Ia(function(t){t.setTime(1e3*Math.floor(t/1e3))},function(t,n){t.setTime(+t+1e3*n)},function(t,n){return(n-t)/1e3},function(t){return t.getUTCSeconds()}),Yv=Ov.range,Bv=Ia(function(t){t.setTime(Math.floor(t/Uv)*Uv)},function(t,n){t.setTime(+t+n*Uv)},function(t,n){return(n-t)/Uv},function(t){return t.getMinutes()}),Fv=Bv.range,Iv=Ia(function(t){var n=t.getTimezoneOffset()*Uv%36e5;n<0&&(n+=36e5),t.setTime(36e5*Math.floor((+t-n)/36e5)+n)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getHours()}),jv=Iv.range,Hv=Ia(function(t){t.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*Uv)/864e5},function(t){return t.getDate()-1}),Xv=Hv.range,Gv=ja(0),Vv=ja(1),$v=ja(2),Wv=ja(3),Zv=ja(4),Qv=ja(5),Jv=ja(6),Kv=Gv.range,tg=Vv.range,ng=$v.range,eg=Wv.range,rg=Zv.range,ig=Qv.range,og=Jv.range,ag=Ia(function(t){t.setDate(1),t.setHours(0,0,0,0)},function(t,n){t.setMonth(t.getMonth()+n)},function(t,n){return n.getMonth()-t.getMonth()+12*(n.getFullYear()-t.getFullYear())},function(t){return t.getMonth()}),ug=ag.range,fg=Ia(function(t){t.setMonth(0,1),t.setHours(0,0,0,0)},function(t,n){t.setFullYear(t.getFullYear()+n)},function(t,n){return n.getFullYear()-t.getFullYear()},function(t){return t.getFullYear()});fg.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Ia(function(n){n.setFullYear(Math.floor(n.getFullYear()/t)*t),n.setMonth(0,1),n.setHours(0,0,0,0)},function(n,e){n.setFullYear(n.getFullYear()+e*t)}):null};var cg=fg.range,sg=Ia(function(t){t.setUTCSeconds(0,0)},function(t,n){t.setTime(+t+n*Uv)},function(t,n){return(n-t)/Uv},function(t){return t.getUTCMinutes()}),lg=sg.range,hg=Ia(function(t){t.setUTCMinutes(0,0,0)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getUTCHours()}),dg=hg.range,pg=Ia(function(t){t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+n)},function(t,n){return(n-t)/864e5},function(t){return t.getUTCDate()-1}),vg=pg.range,gg=Ha(0),yg=Ha(1),_g=Ha(2),bg=Ha(3),mg=Ha(4),xg=Ha(5),wg=Ha(6),Mg=gg.range,Ag=yg.range,Tg=_g.range,Ng=bg.range,Sg=mg.range,Eg=xg.range,kg=wg.range,Cg=Ia(function(t){t.setUTCDate(1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCMonth(t.getUTCMonth()+n)},function(t,n){return n.getUTCMonth()-t.getUTCMonth()+12*(n.getUTCFullYear()-t.getUTCFullYear())},function(t){return t.getUTCMonth()}),Pg=Cg.range,zg=Ia(function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCFullYear(t.getUTCFullYear()+n)},function(t,n){return n.getUTCFullYear()-t.getUTCFullYear()},function(t){return t.getUTCFullYear()});zg.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Ia(function(n){n.setUTCFullYear(Math.floor(n.getUTCFullYear()/t)*t),n.setUTCMonth(0,1),n.setUTCHours(0,0,0,0)},function(n,e){n.setUTCFullYear(n.getUTCFullYear()+e*t)}):null};var Rg,Lg=zg.range,Dg={"-":"",_:" ",0:"0"},Ug=/^\s*\d+/,qg=/^%/,Og=/[\\^$*+?|[\]().{}]/g;nf({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});var Yg="%Y-%m-%dT%H:%M:%S.%LZ",Bg=Date.prototype.toISOString?function(t){return t.toISOString()}:t.utcFormat(Yg),Fg=+new Date("2000-01-01T00:00:00.000Z")?function(t){var n=new Date(t);return isNaN(n)?null:n}:t.utcParse(Yg),Ig=1e3,jg=60*Ig,Hg=60*jg,Xg=24*Hg,Gg=7*Xg,Vg=30*Xg,$g=365*Xg,Wg=uf("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"),Zg=uf("7fc97fbeaed4fdc086ffff99386cb0f0027fbf5b17666666"),Qg=uf("1b9e77d95f027570b3e7298a66a61ee6ab02a6761d666666"),Jg=uf("a6cee31f78b4b2df8a33a02cfb9a99e31a1cfdbf6fff7f00cab2d66a3d9affff99b15928"),Kg=uf("fbb4aeb3cde3ccebc5decbe4fed9a6ffffcce5d8bdfddaecf2f2f2"),ty=uf("b3e2cdfdcdaccbd5e8f4cae4e6f5c9fff2aef1e2cccccccc"),ny=uf("e41a1c377eb84daf4a984ea3ff7f00ffff33a65628f781bf999999"),ey=uf("66c2a5fc8d628da0cbe78ac3a6d854ffd92fe5c494b3b3b3"),ry=uf("8dd3c7ffffb3bebadafb807280b1d3fdb462b3de69fccde5d9d9d9bc80bdccebc5ffed6f"),iy=new Array(3).concat("d8b365f5f5f55ab4ac","a6611adfc27d80cdc1018571","a6611adfc27df5f5f580cdc1018571","8c510ad8b365f6e8c3c7eae55ab4ac01665e","8c510ad8b365f6e8c3f5f5f5c7eae55ab4ac01665e","8c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e","8c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e","5430058c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e003c30","5430058c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e003c30").map(uf),oy=ff(iy),ay=new Array(3).concat("af8dc3f7f7f77fbf7b","7b3294c2a5cfa6dba0008837","7b3294c2a5cff7f7f7a6dba0008837","762a83af8dc3e7d4e8d9f0d37fbf7b1b7837","762a83af8dc3e7d4e8f7f7f7d9f0d37fbf7b1b7837","762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b7837","762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b7837","40004b762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b783700441b","40004b762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b783700441b").map(uf),uy=ff(ay),fy=new Array(3).concat("e9a3c9f7f7f7a1d76a","d01c8bf1b6dab8e1864dac26","d01c8bf1b6daf7f7f7b8e1864dac26","c51b7de9a3c9fde0efe6f5d0a1d76a4d9221","c51b7de9a3c9fde0eff7f7f7e6f5d0a1d76a4d9221","c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221","c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221","8e0152c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221276419","8e0152c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221276419").map(uf),cy=ff(fy),sy=new Array(3).concat("998ec3f7f7f7f1a340","5e3c99b2abd2fdb863e66101","5e3c99b2abd2f7f7f7fdb863e66101","542788998ec3d8daebfee0b6f1a340b35806","542788998ec3d8daebf7f7f7fee0b6f1a340b35806","5427888073acb2abd2d8daebfee0b6fdb863e08214b35806","5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b35806","2d004b5427888073acb2abd2d8daebfee0b6fdb863e08214b358067f3b08","2d004b5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b358067f3b08").map(uf),ly=ff(sy),hy=new Array(3).concat("ef8a62f7f7f767a9cf","ca0020f4a58292c5de0571b0","ca0020f4a582f7f7f792c5de0571b0","b2182bef8a62fddbc7d1e5f067a9cf2166ac","b2182bef8a62fddbc7f7f7f7d1e5f067a9cf2166ac","b2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac","b2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac","67001fb2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac053061","67001fb2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac053061").map(uf),dy=ff(hy),py=new Array(3).concat("ef8a62ffffff999999","ca0020f4a582bababa404040","ca0020f4a582ffffffbababa404040","b2182bef8a62fddbc7e0e0e09999994d4d4d","b2182bef8a62fddbc7ffffffe0e0e09999994d4d4d","b2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d","b2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d","67001fb2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d1a1a1a","67001fb2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d1a1a1a").map(uf),vy=ff(py),gy=new Array(3).concat("fc8d59ffffbf91bfdb","d7191cfdae61abd9e92c7bb6","d7191cfdae61ffffbfabd9e92c7bb6","d73027fc8d59fee090e0f3f891bfdb4575b4","d73027fc8d59fee090ffffbfe0f3f891bfdb4575b4","d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4","d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4","a50026d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4313695","a50026d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4313695").map(uf),yy=ff(gy),_y=new Array(3).concat("fc8d59ffffbf91cf60","d7191cfdae61a6d96a1a9641","d7191cfdae61ffffbfa6d96a1a9641","d73027fc8d59fee08bd9ef8b91cf601a9850","d73027fc8d59fee08bffffbfd9ef8b91cf601a9850","d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850","d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850","a50026d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850006837","a50026d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850006837").map(uf),by=ff(_y),my=new Array(3).concat("fc8d59ffffbf99d594","d7191cfdae61abdda42b83ba","d7191cfdae61ffffbfabdda42b83ba","d53e4ffc8d59fee08be6f59899d5943288bd","d53e4ffc8d59fee08bffffbfe6f59899d5943288bd","d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd","d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd","9e0142d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd5e4fa2","9e0142d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd5e4fa2").map(uf),xy=ff(my),wy=new Array(3).concat("e5f5f999d8c92ca25f","edf8fbb2e2e266c2a4238b45","edf8fbb2e2e266c2a42ca25f006d2c","edf8fbccece699d8c966c2a42ca25f006d2c","edf8fbccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45006d2c00441b").map(uf),My=ff(wy),Ay=new Array(3).concat("e0ecf49ebcda8856a7","edf8fbb3cde38c96c688419d","edf8fbb3cde38c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d810f7c4d004b").map(uf),Ty=ff(Ay),Ny=new Array(3).concat("e0f3dba8ddb543a2ca","f0f9e8bae4bc7bccc42b8cbe","f0f9e8bae4bc7bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe0868ac084081").map(uf),Sy=ff(Ny),Ey=new Array(3).concat("fee8c8fdbb84e34a33","fef0d9fdcc8afc8d59d7301f","fef0d9fdcc8afc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301fb300007f0000").map(uf),ky=ff(Ey),Cy=new Array(3).concat("ece2f0a6bddb1c9099","f6eff7bdc9e167a9cf02818a","f6eff7bdc9e167a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016c59014636").map(uf),Py=ff(Cy),zy=new Array(3).concat("ece7f2a6bddb2b8cbe","f1eef6bdc9e174a9cf0570b0","f1eef6bdc9e174a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0045a8d023858").map(uf),Ry=ff(zy),Ly=new Array(3).concat("e7e1efc994c7dd1c77","f1eef6d7b5d8df65b0ce1256","f1eef6d7b5d8df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125698004367001f").map(uf),Dy=ff(Ly),Uy=new Array(3).concat("fde0ddfa9fb5c51b8a","feebe2fbb4b9f768a1ae017e","feebe2fbb4b9f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a017749006a").map(uf),qy=ff(Uy),Oy=new Array(3).concat("edf8b17fcdbb2c7fb8","ffffcca1dab441b6c4225ea8","ffffcca1dab441b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea8253494081d58").map(uf),Yy=ff(Oy),By=new Array(3).concat("f7fcb9addd8e31a354","ffffccc2e69978c679238443","ffffccc2e69978c67931a354006837","ffffccd9f0a3addd8e78c67931a354006837","ffffccd9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443006837004529").map(uf),Fy=ff(By),Iy=new Array(3).concat("fff7bcfec44fd95f0e","ffffd4fed98efe9929cc4c02","ffffd4fed98efe9929d95f0e993404","ffffd4fee391fec44ffe9929d95f0e993404","ffffd4fee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c02993404662506").map(uf),jy=ff(Iy),Hy=new Array(3).concat("ffeda0feb24cf03b20","ffffb2fecc5cfd8d3ce31a1c","ffffb2fecc5cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cbd0026800026").map(uf),Xy=ff(Hy),Gy=new Array(3).concat("deebf79ecae13182bd","eff3ffbdd7e76baed62171b5","eff3ffbdd7e76baed63182bd08519c","eff3ffc6dbef9ecae16baed63182bd08519c","eff3ffc6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b508519c08306b").map(uf),Vy=ff(Gy),$y=new Array(3).concat("e5f5e0a1d99b31a354","edf8e9bae4b374c476238b45","edf8e9bae4b374c47631a354006d2c","edf8e9c7e9c0a1d99b74c47631a354006d2c","edf8e9c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45006d2c00441b").map(uf),Wy=ff($y),Zy=new Array(3).concat("f0f0f0bdbdbd636363","f7f7f7cccccc969696525252","f7f7f7cccccc969696636363252525","f7f7f7d9d9d9bdbdbd969696636363252525","f7f7f7d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525000000").map(uf),Qy=ff(Zy),Jy=new Array(3).concat("efedf5bcbddc756bb1","f2f0f7cbc9e29e9ac86a51a3","f2f0f7cbc9e29e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a354278f3f007d").map(uf),Ky=ff(Jy),t_=new Array(3).concat("fee0d2fc9272de2d26","fee5d9fcae91fb6a4acb181d","fee5d9fcae91fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d").map(uf),n_=ff(t_),e_=new Array(3).concat("fee6cefdae6be6550d","feeddefdbe85fd8d3cd94701","feeddefdbe85fd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d94801a636037f2704").map(uf),r_=ff(e_),i_=ml(Zt(300,.5,0),Zt(-240,.5,1)),o_=ml(Zt(-100,.75,.35),Zt(80,1.5,.8)),a_=ml(Zt(260,.75,.35),Zt(80,1.5,.8)),u_=Zt(),f_=Rt(),c_=Math.PI/3,s_=2*Math.PI/3,l_=cf(uf("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725")),h_=cf(uf("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),d_=cf(uf("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),p_=cf(uf("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921")),v_=Math.abs,g_=Math.atan2,y_=Math.cos,__=Math.max,b_=Math.min,m_=Math.sin,x_=Math.sqrt,w_=1e-12,M_=Math.PI,A_=M_/2,T_=2*M_;_f.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:this._context.lineTo(t,n)}}};var N_=Sf(bf);Nf.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,n){this._curve.point(n*Math.sin(t),n*-Math.cos(t))}};var S_=Array.prototype.slice,E_={draw:function(t,n){var e=Math.sqrt(n/M_);t.moveTo(e,0),t.arc(0,0,e,0,T_)}},k_={draw:function(t,n){var e=Math.sqrt(n/5)/2;t.moveTo(-3*e,-e),t.lineTo(-e,-e),t.lineTo(-e,-3*e),t.lineTo(e,-3*e),t.lineTo(e,-e),t.lineTo(3*e,-e),t.lineTo(3*e,e),t.lineTo(e,e),t.lineTo(e,3*e),t.lineTo(-e,3*e),t.lineTo(-e,e),t.lineTo(-3*e,e),t.closePath()}},C_=Math.sqrt(1/3),P_=2*C_,z_={draw:function(t,n){var e=Math.sqrt(n/P_),r=e*C_;t.moveTo(0,-e),t.lineTo(r,0),t.lineTo(0,e),t.lineTo(-r,0),t.closePath()}},R_=Math.sin(M_/10)/Math.sin(7*M_/10),L_=Math.sin(T_/10)*R_,D_=-Math.cos(T_/10)*R_,U_={draw:function(t,n){var e=Math.sqrt(.8908130915292852*n),r=L_*e,i=D_*e;t.moveTo(0,-e),t.lineTo(r,i);for(var o=1;o<5;++o){var a=T_*o/5,u=Math.cos(a),f=Math.sin(a);t.lineTo(f*e,-u*e),t.lineTo(u*r-f*i,f*r+u*i)}t.closePath()}},q_={draw:function(t,n){var e=Math.sqrt(n),r=-e/2;t.rect(r,r,e,e)}},O_=Math.sqrt(3),Y_={draw:function(t,n){var e=-Math.sqrt(n/(3*O_));t.moveTo(0,2*e),t.lineTo(-O_*e,-e),t.lineTo(O_*e,-e),t.closePath()}},B_=Math.sqrt(3)/2,F_=1/Math.sqrt(12),I_=3*(F_/2+1),j_={draw:function(t,n){var e=Math.sqrt(n/I_),r=e/2,i=e*F_,o=r,a=e*F_+e,u=-o,f=a;t.moveTo(r,i),t.lineTo(o,a),t.lineTo(u,f),t.lineTo(-.5*r-B_*i,B_*r+-.5*i),t.lineTo(-.5*o-B_*a,B_*o+-.5*a),t.lineTo(-.5*u-B_*f,B_*u+-.5*f),t.lineTo(-.5*r+B_*i,-.5*i-B_*r),t.lineTo(-.5*o+B_*a,-.5*a-B_*o),t.lineTo(-.5*u+B_*f,-.5*f-B_*u),t.closePath()}},H_=[E_,k_,z_,q_,U_,Y_,j_];Bf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:Yf(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:Yf(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},Ff.prototype={areaStart:Of,areaEnd:Of,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x2=t,this._y2=n;break;case 1:this._point=2,this._x3=t,this._y3=n;break;case 2:this._point=3,this._x4=t,this._y4=n,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+n)/6);break;default:Yf(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},If.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var e=(this._x0+4*this._x1+t)/6,r=(this._y0+4*this._y1+n)/6;this._line?this._context.lineTo(e,r):this._context.moveTo(e,r);break;case 3:this._point=4;default:Yf(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},jf.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,n=this._y,e=t.length-1;if(e>0)for(var r,i=t[0],o=n[0],a=t[e]-i,u=n[e]-o,f=-1;++f<=e;)r=f/e,this._basis.point(this._beta*t[f]+(1-this._beta)*(i+r*a),this._beta*n[f]+(1-this._beta)*(o+r*u));this._x=this._y=null,this._basis.lineEnd()},point:function(t,n){this._x.push(+t),this._y.push(+n)}};var X_=function t(n){function e(t){return 1===n?new Bf(t):new jf(t,n)}return e.beta=function(n){return t(+n)},e}(.85);Xf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:Hf(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2,this._x1=t,this._y1=n;break;case 2:this._point=3;default:Hf(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var G_=function t(n){function e(t){return new Xf(t,n)}return e.tension=function(n){return t(+n)},e}(0);Gf.prototype={areaStart:Of,areaEnd:Of,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:Hf(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var V_=function t(n){function e(t){return new Gf(t,n)}return e.tension=function(n){return t(+n)},e}(0);Vf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:Hf(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var $_=function t(n){function e(t){return new Vf(t,n)}return e.tension=function(n){return t(+n)},e}(0);Wf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3;default:$f(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var W_=function t(n){function e(t){return n?new Wf(t,n):new Xf(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Zf.prototype={areaStart:Of,areaEnd:Of,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:$f(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var Z_=function t(n){function e(t){return n?new Zf(t,n):new Gf(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Qf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:$f(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var Q_=function t(n){function e(t){return n?new Qf(t,n):new Vf(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Jf.prototype={areaStart:Of,areaEnd:Of,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,n){t=+t,n=+n,this._point?this._context.lineTo(t,n):(this._point=1,this._context.moveTo(t,n))}},rc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:ec(this,this._t0,nc(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){var e=NaN;if(t=+t,n=+n,t!==this._x1||n!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,ec(this,nc(this,e=tc(this,t,n)),e);break;default:ec(this,this._t0,e=tc(this,t,n))}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n,this._t0=e}}},(ic.prototype=Object.create(rc.prototype)).point=function(t,n){rc.prototype.point.call(this,n,t)},oc.prototype={moveTo:function(t,n){this._context.moveTo(n,t)},closePath:function(){this._context.closePath()},lineTo:function(t,n){this._context.lineTo(n,t)},bezierCurveTo:function(t,n,e,r,i,o){this._context.bezierCurveTo(n,t,r,e,o,i)}},ac.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var t=this._x,n=this._y,e=t.length;if(e)if(this._line?this._context.lineTo(t[0],n[0]):this._context.moveTo(t[0],n[0]),2===e)this._context.lineTo(t[1],n[1]);else for(var r=uc(t),i=uc(n),o=0,a=1;a<e;++o,++a)this._context.bezierCurveTo(r[0][o],i[0][o],r[1][o],i[1][o],t[a],n[a]);(this._line||0!==this._line&&1===e)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(t,n){this._x.push(+t),this._y.push(+n)}},fc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&2===this._point&&this._context.lineTo(this._x,this._y),(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,n),this._context.lineTo(t,n);else{var e=this._x*(1-this._t)+t*this._t;this._context.lineTo(e,this._y),this._context.lineTo(e,n)}}this._x=t,this._y=n}},yc.prototype={constructor:yc,insert:function(t,n){var e,r,i;if(t){if(n.P=t,n.N=t.N,t.N&&(t.N.P=n),t.N=n,t.R){for(t=t.R;t.L;)t=t.L;t.L=n}else t.R=n;e=t}else this._?(t=xc(this._),n.P=null,n.N=t,t.P=t.L=n,e=t):(n.P=n.N=null,this._=n,e=null);for(n.L=n.R=null,n.U=e,n.C=!0,t=n;e&&e.C;)e===(r=e.U).L?(i=r.R)&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.R&&(bc(this,e),e=(t=e).U),e.C=!1,r.C=!0,mc(this,r)):(i=r.L)&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.L&&(mc(this,e),e=(t=e).U),e.C=!1,r.C=!0,bc(this,r)),e=t.U;this._.C=!1},remove:function(t){t.N&&(t.N.P=t.P),t.P&&(t.P.N=t.N),t.N=t.P=null;var n,e,r,i=t.U,o=t.L,a=t.R;if(e=o?a?xc(a):o:a,i?i.L===t?i.L=e:i.R=e:this._=e,o&&a?(r=e.C,e.C=t.C,e.L=o,o.U=e,e!==a?(i=e.U,e.U=t.U,t=e.R,i.L=t,e.R=a,a.U=e):(e.U=i,i=e,t=e.R)):(r=t.C,t=e),t&&(t.U=i),!r)if(t&&t.C)t.C=!1;else{do{if(t===this._)break;if(t===i.L){if((n=i.R).C&&(n.C=!1,i.C=!0,bc(this,i),n=i.R),n.L&&n.L.C||n.R&&n.R.C){n.R&&n.R.C||(n.L.C=!1,n.C=!0,mc(this,n),n=i.R),n.C=i.C,i.C=n.R.C=!1,bc(this,i),t=this._;break}}else if((n=i.L).C&&(n.C=!1,i.C=!0,mc(this,i),n=i.L),n.L&&n.L.C||n.R&&n.R.C){n.L&&n.L.C||(n.R.C=!1,n.C=!0,bc(this,n),n=i.L),n.C=i.C,i.C=n.L.C=!1,mc(this,i),t=this._;break}n.C=!0,t=i,i=i.U}while(!t.C);t&&(t.C=!1)}}};var J_,K_,tb,nb,eb,rb=[],ib=[],ob=1e-6,ab=1e-12;Yc.prototype={constructor:Yc,polygons:function(){var t=this.edges;return this.cells.map(function(n){var e=n.halfedges.map(function(e){return Ec(n,t[e])});return e.data=n.site.data,e})},triangles:function(){var t=[],n=this.edges;return this.cells.forEach(function(e,r){if(o=(i=e.halfedges).length)for(var i,o,a,u=e.site,f=-1,c=n[i[o-1]],s=c.left===u?c.right:c.left;++f<o;)a=s,s=(c=n[i[f]]).left===u?c.right:c.left,a&&s&&r<a.index&&r<s.index&&qc(u,a,s)<0&&t.push([u.data,a.data,s.data])}),t},links:function(){return this.edges.filter(function(t){return t.right}).map(function(t){return{source:t.left.data,target:t.right.data}})},find:function(t,n,e){for(var r,i,o=this,a=o._found||0,u=o.cells.length;!(i=o.cells[a]);)if(++a>=u)return null;var f=t-i.site[0],c=n-i.site[1],s=f*f+c*c;do{i=o.cells[r=a],a=null,i.halfedges.forEach(function(e){var r=o.edges[e],u=r.left;if(u!==i.site&&u||(u=r.right)){var f=t-u[0],c=n-u[1],l=f*f+c*c;l<s&&(s=l,a=u.index)}})}while(null!==a);return o._found=r,null==e||s<=e*e?i.site:null}},Fc.prototype={constructor:Fc,scale:function(t){return 1===t?this:new Fc(this.k*t,this.x,this.y)},translate:function(t,n){return 0===t&0===n?this:new Fc(this.k,this.x+this.k*t,this.y+this.k*n)},apply:function(t){return[t[0]*this.k+this.x,t[1]*this.k+this.y]},applyX:function(t){return t*this.k+this.x},applyY:function(t){return t*this.k+this.y},invert:function(t){return[(t[0]-this.x)/this.k,(t[1]-this.y)/this.k]},invertX:function(t){return(t-this.x)/this.k},invertY:function(t){return(t-this.y)/this.k},rescaleX:function(t){return t.copy().domain(t.range().map(this.invertX,this).map(t.invert,t))},rescaleY:function(t){return t.copy().domain(t.range().map(this.invertY,this).map(t.invert,t))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var ub=new Fc(1,0,0);Ic.prototype=Fc.prototype,t.version="5.4.0",t.bisect=Jc,t.bisectRight=Jc,t.bisectLeft=Kc,t.ascending=n,t.bisector=e,t.cross=function(t,n,e){var i,o,a,u,f=t.length,c=n.length,s=new Array(f*c);for(null==e&&(e=r),i=a=0;i<f;++i)for(u=t[i],o=0;o<c;++o,++a)s[a]=e(u,n[o]);return s},t.descending=function(t,n){return n<t?-1:n>t?1:n>=t?0:NaN},t.deviation=a,t.extent=u,t.histogram=function(){function t(t){var i,o,a=t.length,u=new Array(a);for(i=0;i<a;++i)u[i]=n(t[i],i,t);var f=e(u),c=f[0],l=f[1],h=r(u,c,l);Array.isArray(h)||(h=d(c,l,h),h=s(Math.ceil(c/h)*h,Math.floor(l/h)*h,h));for(var p=h.length;h[0]<=c;)h.shift(),--p;for(;h[p-1]>l;)h.pop(),--p;var v,g=new Array(p+1);for(i=0;i<=p;++i)(v=g[i]=[]).x0=i>0?h[i-1]:c,v.x1=i<p?h[i]:l;for(i=0;i<a;++i)c<=(o=u[i])&&o<=l&&g[Jc(h,o,0,p)].push(t[i]);return g}var n=c,e=u,r=p;return t.value=function(e){return arguments.length?(n="function"==typeof e?e:f(e),t):n},t.domain=function(n){return arguments.length?(e="function"==typeof n?n:f([n[0],n[1]]),t):e},t.thresholds=function(n){return arguments.length?(r="function"==typeof n?n:Array.isArray(n)?f(ns.call(n)):f(n),t):r},t},t.thresholdFreedmanDiaconis=function(t,e,r){return t=es.call(t,i).sort(n),Math.ceil((r-e)/(2*(v(t,.75)-v(t,.25))*Math.pow(t.length,-1/3)))},t.thresholdScott=function(t,n,e){return Math.ceil((e-n)/(3.5*a(t)*Math.pow(t.length,-1/3)))},t.thresholdSturges=p,t.max=g,t.mean=function(t,n){var e,r=t.length,o=r,a=-1,u=0;if(null==n)for(;++a<r;)isNaN(e=i(t[a]))?--o:u+=e;else for(;++a<r;)isNaN(e=i(n(t[a],a,t)))?--o:u+=e;if(o)return u/o},t.median=function(t,e){var r,o=t.length,a=-1,u=[];if(null==e)for(;++a<o;)isNaN(r=i(t[a]))||u.push(r);else for(;++a<o;)isNaN(r=i(e(t[a],a,t)))||u.push(r);return v(u.sort(n),.5)},t.merge=y,t.min=_,t.pairs=function(t,n){null==n&&(n=r);for(var e=0,i=t.length-1,o=t[0],a=new Array(i<0?0:i);e<i;)a[e]=n(o,o=t[++e]);return a},t.permute=function(t,n){for(var e=n.length,r=new Array(e);e--;)r[e]=t[n[e]];return r},t.quantile=v,t.range=s,t.scan=function(t,e){if(r=t.length){var r,i,o=0,a=0,u=t[a];for(null==e&&(e=n);++o<r;)(e(i=t[o],u)<0||0!==e(u,u))&&(u=i,a=o);return 0===e(u,u)?a:void 0}},t.shuffle=function(t,n,e){for(var r,i,o=(null==e?t.length:e)-(n=null==n?0:+n);o;)i=Math.random()*o--|0,r=t[o+n],t[o+n]=t[i+n],t[i+n]=r;return t},t.sum=function(t,n){var e,r=t.length,i=-1,o=0;if(null==n)for(;++i<r;)(e=+t[i])&&(o+=e);else for(;++i<r;)(e=+n(t[i],i,t))&&(o+=e);return o},t.ticks=l,t.tickIncrement=h,t.tickStep=d,t.transpose=b,t.variance=o,t.zip=function(){return b(arguments)},t.axisTop=function(t){return T(us,t)},t.axisRight=function(t){return T(fs,t)},t.axisBottom=function(t){return T(cs,t)},t.axisLeft=function(t){return T(ss,t)},t.brush=function(){return ee(_h)},t.brushX=function(){return ee(gh)},t.brushY=function(){return ee(yh)},t.brushSelection=function(t){var n=t.__brush;return n?n.dim.output(n.selection):null},t.chord=function(){function t(t){var o,a,u,f,c,l,h=t.length,d=[],p=s(h),v=[],g=[],y=g.groups=new Array(h),_=new Array(h*h);for(o=0,c=-1;++c<h;){for(a=0,l=-1;++l<h;)a+=t[c][l];d.push(a),v.push(s(h)),o+=a}for(e&&p.sort(function(t,n){return e(d[t],d[n])}),r&&v.forEach(function(n,e){n.sort(function(n,i){return r(t[e][n],t[e][i])})}),f=(o=kh(0,Eh-n*h)/o)?n:Eh/h,a=0,c=-1;++c<h;){for(u=a,l=-1;++l<h;){var b=p[c],m=v[b][l],x=t[b][m],w=a,M=a+=x*o;_[m*h+b]={index:b,subindex:m,startAngle:w,endAngle:M,value:x}}y[b]={index:b,startAngle:u,endAngle:a,value:d[b]},a+=f}for(c=-1;++c<h;)for(l=c-1;++l<h;){var A=_[l*h+c],T=_[c*h+l];(A.value||T.value)&&g.push(A.value<T.value?{source:T,target:A}:{source:A,target:T})}return i?g.sort(i):g}var n=0,e=null,r=null,i=null;return t.padAngle=function(e){return arguments.length?(n=kh(0,e),t):n},t.sortGroups=function(n){return arguments.length?(e=n,t):e},t.sortSubgroups=function(n){return arguments.length?(r=n,t):r},t.sortChords=function(n){return arguments.length?(null==n?i=null:(i=function(t){return function(n,e){return t(n.source.value+n.target.value,e.source.value+e.target.value)}}(n))._=n,t):i&&i._},t},t.ribbon=function(){function t(){var t,u=Ch.call(arguments),f=n.apply(this,u),c=e.apply(this,u),s=+r.apply(this,(u[0]=f,u)),l=i.apply(this,u)-Sh,h=o.apply(this,u)-Sh,d=s*Ah(l),p=s*Th(l),v=+r.apply(this,(u[0]=c,u)),g=i.apply(this,u)-Sh,y=o.apply(this,u)-Sh;if(a||(a=t=oe()),a.moveTo(d,p),a.arc(0,0,s,l,h),l===g&&h===y||(a.quadraticCurveTo(0,0,v*Ah(g),v*Th(g)),a.arc(0,0,v,g,y)),a.quadraticCurveTo(0,0,d,p),a.closePath(),t)return a=null,t+""||null}var n=ae,e=ue,r=fe,i=ce,o=se,a=null;return t.radius=function(n){return arguments.length?(r="function"==typeof n?n:re(+n),t):r},t.startAngle=function(n){return arguments.length?(i="function"==typeof n?n:re(+n),t):i},t.endAngle=function(n){return arguments.length?(o="function"==typeof n?n:re(+n),t):o},t.source=function(e){return arguments.length?(n=e,t):n},t.target=function(n){return arguments.length?(e=n,t):e},t.context=function(n){return arguments.length?(a=null==n?null:n,t):a},t},t.nest=function(){function t(n,i,a,u){if(i>=o.length)return null!=e&&n.sort(e),null!=r?r(n):n;for(var f,c,s,l=-1,h=n.length,d=o[i++],p=he(),v=a();++l<h;)(s=p.get(f=d(c=n[l])+""))?s.push(c):p.set(f,[c]);return p.each(function(n,e){u(v,e,t(n,i,a,u))}),v}function n(t,e){if(++e>o.length)return t;var i,u=a[e-1];return null!=r&&e>=o.length?i=t.entries():(i=[],t.each(function(t,r){i.push({key:r,values:n(t,e)})})),null!=u?i.sort(function(t,n){return u(t.key,n.key)}):i}var e,r,i,o=[],a=[];return i={object:function(n){return t(n,0,de,pe)},map:function(n){return t(n,0,ve,ge)},entries:function(e){return n(t(e,0,ve,ge),0)},key:function(t){return o.push(t),i},sortKeys:function(t){return a[o.length-1]=t,i},sortValues:function(t){return e=t,i},rollup:function(t){return r=t,i}}},t.set=_e,t.map=he,t.keys=function(t){var n=[];for(var e in t)n.push(e);return n},t.values=function(t){var n=[];for(var e in t)n.push(t[e]);return n},t.entries=function(t){var n=[];for(var e in t)n.push({key:e,value:t[e]});return n},t.color=kt,t.rgb=Rt,t.hsl=qt,t.lab=Ft,t.hcl=$t,t.lch=function(t,n,e,r){return 1===arguments.length?Vt(t):new Wt(e,n,t,null==r?1:r)},t.gray=function(t,n){return new It(t,0,0,null==n?1:n)},t.cubehelix=Zt,t.contours=Me,t.contourDensity=function(){function t(t){var e=new Float32Array(v*y),r=new Float32Array(v*y);t.forEach(function(t,n,r){var i=a(t,n,r)+p>>h,o=u(t,n,r)+p>>h;i>=0&&i<v&&o>=0&&o<y&&++e[i+o*v]}),Ae({width:v,height:y,data:e},{width:v,height:y,data:r},l>>h),Te({width:v,height:y,data:r},{width:v,height:y,data:e},l>>h),Ae({width:v,height:y,data:e},{width:v,height:y,data:r},l>>h),Te({width:v,height:y,data:r},{width:v,height:y,data:e},l>>h),Ae({width:v,height:y,data:e},{width:v,height:y,data:r},l>>h),Te({width:v,height:y,data:r},{width:v,height:y,data:e},l>>h);var i=_(e);if(!Array.isArray(i)){var o=g(e);i=d(0,o,i),(i=s(0,Math.floor(o/i)*i,i)).shift()}return Me().thresholds(i).size([v,y])(e).map(n)}function n(t){return t.value*=Math.pow(2,-2*h),t.coordinates.forEach(e),t}function e(t){t.forEach(r)}function r(t){t.forEach(i)}function i(t){t[0]=t[0]*Math.pow(2,h)-p,t[1]=t[1]*Math.pow(2,h)-p}function o(){return p=3*l,v=f+2*p>>h,y=c+2*p>>h,t}var a=Ne,u=Se,f=960,c=500,l=20,h=2,p=3*l,v=f+2*p>>h,y=c+2*p>>h,_=me(20);return t.x=function(n){return arguments.length?(a="function"==typeof n?n:me(+n),t):a},t.y=function(n){return arguments.length?(u="function"==typeof n?n:me(+n),t):u},t.size=function(t){if(!arguments.length)return[f,c];var n=Math.ceil(t[0]),e=Math.ceil(t[1]);if(!(n>=0||n>=0))throw new Error("invalid size");return f=n,c=e,o()},t.cellSize=function(t){if(!arguments.length)return 1<<h;if(!((t=+t)>=1))throw new Error("invalid cell size");return h=Math.floor(Math.log(t)/Math.LN2),o()},t.thresholds=function(n){return arguments.length?(_="function"==typeof n?n:Array.isArray(n)?me(Dh.call(n)):me(n),t):_},t.bandwidth=function(t){if(!arguments.length)return Math.sqrt(l*(l+1));if(!((t=+t)>=0))throw new Error("invalid bandwidth");return l=Math.round((Math.sqrt(4*t*t+1)-1)/2),o()},t},t.dispatch=N,t.drag=function(){function n(t){t.on("mousedown.drag",e).filter(g).on("touchstart.drag",o).on("touchmove.drag",a).on("touchend.drag touchcancel.drag",u).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function e(){if(!h&&d.apply(this,arguments)){var n=f("mouse",p.apply(this,arguments),pt,this,arguments);n&&(ct(t.event.view).on("mousemove.drag",r,!0).on("mouseup.drag",i,!0),_t(t.event.view),gt(),l=!1,c=t.event.clientX,s=t.event.clientY,n("start"))}}function r(){if(yt(),!l){var n=t.event.clientX-c,e=t.event.clientY-s;l=n*n+e*e>m}y.mouse("drag")}function i(){ct(t.event.view).on("mousemove.drag mouseup.drag",null),bt(t.event.view,l),yt(),y.mouse("end")}function o(){if(d.apply(this,arguments)){var n,e,r=t.event.changedTouches,i=p.apply(this,arguments),o=r.length;for(n=0;n<o;++n)(e=f(r[n].identifier,i,vt,this,arguments))&&(gt(),e("start"))}}function a(){var n,e,r=t.event.changedTouches,i=r.length;for(n=0;n<i;++n)(e=y[r[n].identifier])&&(yt(),e("drag"))}function u(){var n,e,r=t.event.changedTouches,i=r.length;for(h&&clearTimeout(h),h=setTimeout(function(){h=null},500),n=0;n<i;++n)(e=y[r[n].identifier])&&(gt(),e("end"))}function f(e,r,i,o,a){var u,f,c,s=i(r,e),l=_.copy();if(ot(new xt(n,"beforestart",u,e,b,s[0],s[1],0,0,l),function(){return null!=(t.event.subject=u=v.apply(o,a))&&(f=u.x-s[0]||0,c=u.y-s[1]||0,!0)}))return function t(h){var d,p=s;switch(h){case"start":y[e]=t,d=b++;break;case"end":delete y[e],--b;case"drag":s=i(r,e),d=b}ot(new xt(n,h,u,e,d,s[0]+f,s[1]+c,s[0]-p[0],s[1]-p[1],l),l.apply,l,[h,o,a])}}var c,s,l,h,d=wt,p=Mt,v=At,g=Tt,y={},_=N("start","drag","end"),b=0,m=0;return n.filter=function(t){return arguments.length?(d="function"==typeof t?t:mt(!!t),n):d},n.container=function(t){return arguments.length?(p="function"==typeof t?t:mt(t),n):p},n.subject=function(t){return arguments.length?(v="function"==typeof t?t:mt(t),n):v},n.touchable=function(t){return arguments.length?(g="function"==typeof t?t:mt(!!t),n):g},n.on=function(){var t=_.on.apply(_,arguments);return t===_?n:t},n.clickDistance=function(t){return arguments.length?(m=(t=+t)*t,n):Math.sqrt(m)},n},t.dragDisable=_t,t.dragEnable=bt,t.dsvFormat=ke,t.csvParse=jh,t.csvParseRows=Hh,t.csvFormat=Xh,t.csvFormatRows=Gh,t.tsvParse=$h,t.tsvParseRows=Wh,t.tsvFormat=Zh,t.tsvFormatRows=Qh,t.easeLinear=function(t){return+t},t.easeQuad=Fn,t.easeQuadIn=function(t){return t*t},t.easeQuadOut=function(t){return t*(2-t)},t.easeQuadInOut=Fn,t.easeCubic=In,t.easeCubicIn=function(t){return t*t*t},t.easeCubicOut=function(t){return--t*t*t+1},t.easeCubicInOut=In,t.easePoly=Hl,t.easePolyIn=Il,t.easePolyOut=jl,t.easePolyInOut=Hl,t.easeSin=jn,t.easeSinIn=function(t){return 1-Math.cos(t*Gl)},t.easeSinOut=function(t){return Math.sin(t*Gl)},t.easeSinInOut=jn,t.easeExp=Hn,t.easeExpIn=function(t){return Math.pow(2,10*t-10)},t.easeExpOut=function(t){return 1-Math.pow(2,-10*t)},t.easeExpInOut=Hn,t.easeCircle=Xn,t.easeCircleIn=function(t){return 1-Math.sqrt(1-t*t)},t.easeCircleOut=function(t){return Math.sqrt(1- --t*t)},t.easeCircleInOut=Xn,t.easeBounce=Gn,t.easeBounceIn=function(t){return 1-Gn(1-t)},t.easeBounceOut=Gn,t.easeBounceInOut=function(t){return((t*=2)<=1?1-Gn(1-t):Gn(t-1)+1)/2},t.easeBack=oh,t.easeBackIn=rh,t.easeBackOut=ih,t.easeBackInOut=oh,t.easeElastic=fh,t.easeElasticIn=uh,t.easeElasticOut=fh,t.easeElasticInOut=ch,t.blob=function(t,n){return fetch(t,n).then(Ce)},t.buffer=function(t,n){return fetch(t,n).then(Pe)},t.dsv=function(t,n,e,r){3===arguments.length&&"function"==typeof e&&(r=e,e=void 0);var i=ke(t);return Re(n,e).then(function(t){return i.parse(t,r)})},t.csv=Jh,t.tsv=Kh,t.image=function(t,n){return new Promise(function(e,r){var i=new Image;for(var o in n)i[o]=n[o];i.onerror=r,i.onload=function(){e(i)},i.src=t})},t.json=function(t,n){return fetch(t,n).then(De)},t.text=Re,t.xml=td,t.html=nd,t.svg=ed,t.forceCenter=function(t,n){function e(){var e,i,o=r.length,a=0,u=0;for(e=0;e<o;++e)a+=(i=r[e]).x,u+=i.y;for(a=a/o-t,u=u/o-n,e=0;e<o;++e)(i=r[e]).x-=a,i.y-=u}var r;return null==t&&(t=0),null==n&&(n=0),e.initialize=function(t){r=t},e.x=function(n){return arguments.length?(t=+n,e):t},e.y=function(t){return arguments.length?(n=+t,e):n},e},t.forceCollide=function(t){function n(){for(var t,n,r,f,c,s,l,h=i.length,d=0;d<u;++d)for(n=je(i,Ge,Ve).visitAfter(e),t=0;t<h;++t)r=i[t],s=o[r.index],l=s*s,f=r.x+r.vx,c=r.y+r.vy,n.visit(function(t,n,e,i,o){var u=t.data,h=t.r,d=s+h;if(!u)return n>f+d||i<f-d||e>c+d||o<c-d;if(u.index>r.index){var p=f-u.x-u.vx,v=c-u.y-u.vy,g=p*p+v*v;g<d*d&&(0===p&&(p=Oe(),g+=p*p),0===v&&(v=Oe(),g+=v*v),g=(d-(g=Math.sqrt(g)))/g*a,r.vx+=(p*=g)*(d=(h*=h)/(l+h)),r.vy+=(v*=g)*d,u.vx-=p*(d=1-d),u.vy-=v*d)}})}function e(t){if(t.data)return t.r=o[t.data.index];for(var n=t.r=0;n<4;++n)t[n]&&t[n].r>t.r&&(t.r=t[n].r)}function r(){if(i){var n,e,r=i.length;for(o=new Array(r),n=0;n<r;++n)e=i[n],o[e.index]=+t(e,n,i)}}var i,o,a=1,u=1;return"function"!=typeof t&&(t=qe(null==t?1:+t)),n.initialize=function(t){i=t,r()},n.iterations=function(t){return arguments.length?(u=+t,n):u},n.strength=function(t){return arguments.length?(a=+t,n):a},n.radius=function(e){return arguments.length?(t="function"==typeof e?e:qe(+e),r(),n):t},n},t.forceLink=function(t){function n(n){for(var e=0,r=t.length;e<d;++e)for(var i,u,f,s,l,h,p,v=0;v<r;++v)u=(i=t[v]).source,s=(f=i.target).x+f.vx-u.x-u.vx||Oe(),l=f.y+f.vy-u.y-u.vy||Oe(),s*=h=((h=Math.sqrt(s*s+l*l))-a[v])/h*n*o[v],l*=h,f.vx-=s*(p=c[v]),f.vy-=l*p,u.vx+=s*(p=1-p),u.vy+=l*p}function e(){if(u){var n,e,l=u.length,h=t.length,d=he(u,s);for(n=0,f=new Array(l);n<h;++n)(e=t[n]).index=n,"object"!=typeof e.source&&(e.source=We(d,e.source)),"object"!=typeof e.target&&(e.target=We(d,e.target)),f[e.source.index]=(f[e.source.index]||0)+1,f[e.target.index]=(f[e.target.index]||0)+1;for(n=0,c=new Array(h);n<h;++n)e=t[n],c[n]=f[e.source.index]/(f[e.source.index]+f[e.target.index]);o=new Array(h),r(),a=new Array(h),i()}}function r(){if(u)for(var n=0,e=t.length;n<e;++n)o[n]=+l(t[n],n,t)}function i(){if(u)for(var n=0,e=t.length;n<e;++n)a[n]=+h(t[n],n,t)}var o,a,u,f,c,s=$e,l=function(t){return 1/Math.min(f[t.source.index],f[t.target.index])},h=qe(30),d=1;return null==t&&(t=[]),n.initialize=function(t){u=t,e()},n.links=function(r){return arguments.length?(t=r,e(),n):t},n.id=function(t){return arguments.length?(s=t,n):s},n.iterations=function(t){return arguments.length?(d=+t,n):d},n.strength=function(t){return arguments.length?(l="function"==typeof t?t:qe(+t),r(),n):l},n.distance=function(t){return arguments.length?(h="function"==typeof t?t:qe(+t),i(),n):h},n},t.forceManyBody=function(){function t(t){var n,u=i.length,f=je(i,Ze,Qe).visitAfter(e);for(a=t,n=0;n<u;++n)o=i[n],f.visit(r)}function n(){if(i){var t,n,e=i.length;for(u=new Array(e),t=0;t<e;++t)n=i[t],u[n.index]=+f(n,t,i)}}function e(t){var n,e,r,i,o,a=0,f=0;if(t.length){for(r=i=o=0;o<4;++o)(n=t[o])&&(e=Math.abs(n.value))&&(a+=n.value,f+=e,r+=e*n.x,i+=e*n.y);t.x=r/f,t.y=i/f}else{(n=t).x=n.data.x,n.y=n.data.y;do{a+=u[n.data.index]}while(n=n.next)}t.value=a}function r(t,n,e,r){if(!t.value)return!0;var i=t.x-o.x,f=t.y-o.y,h=r-n,d=i*i+f*f;if(h*h/l<d)return d<s&&(0===i&&(i=Oe(),d+=i*i),0===f&&(f=Oe(),d+=f*f),d<c&&(d=Math.sqrt(c*d)),o.vx+=i*t.value*a/d,o.vy+=f*t.value*a/d),!0;if(!(t.length||d>=s)){(t.data!==o||t.next)&&(0===i&&(i=Oe(),d+=i*i),0===f&&(f=Oe(),d+=f*f),d<c&&(d=Math.sqrt(c*d)));do{t.data!==o&&(h=u[t.data.index]*a/d,o.vx+=i*h,o.vy+=f*h)}while(t=t.next)}}var i,o,a,u,f=qe(-30),c=1,s=1/0,l=.81;return t.initialize=function(t){i=t,n()},t.strength=function(e){return arguments.length?(f="function"==typeof e?e:qe(+e),n(),t):f},t.distanceMin=function(n){return arguments.length?(c=n*n,t):Math.sqrt(c)},t.distanceMax=function(n){return arguments.length?(s=n*n,t):Math.sqrt(s)},t.theta=function(n){return arguments.length?(l=n*n,t):Math.sqrt(l)},t},t.forceRadial=function(t,n,e){function r(t){for(var r=0,i=o.length;r<i;++r){var f=o[r],c=f.x-n||1e-6,s=f.y-e||1e-6,l=Math.sqrt(c*c+s*s),h=(u[r]-l)*a[r]*t/l;f.vx+=c*h,f.vy+=s*h}}function i(){if(o){var n,e=o.length;for(a=new Array(e),u=new Array(e),n=0;n<e;++n)u[n]=+t(o[n],n,o),a[n]=isNaN(u[n])?0:+f(o[n],n,o)}}var o,a,u,f=qe(.1);return"function"!=typeof t&&(t=qe(+t)),null==n&&(n=0),null==e&&(e=0),r.initialize=function(t){o=t,i()},r.strength=function(t){return arguments.length?(f="function"==typeof t?t:qe(+t),i(),r):f},r.radius=function(n){return arguments.length?(t="function"==typeof n?n:qe(+n),i(),r):t},r.x=function(t){return arguments.length?(n=+t,r):n},r.y=function(t){return arguments.length?(e=+t,r):e},r},t.forceSimulation=function(t){function n(){e(),d.call("tick",o),a<u&&(h.stop(),d.call("end",o))}function e(){var n,e,r=t.length;for(a+=(c-a)*f,l.each(function(t){t(a)}),n=0;n<r;++n)null==(e=t[n]).fx?e.x+=e.vx*=s:(e.x=e.fx,e.vx=0),null==e.fy?e.y+=e.vy*=s:(e.y=e.fy,e.vy=0)}function r(){for(var n,e=0,r=t.length;e<r;++e){if(n=t[e],n.index=e,isNaN(n.x)||isNaN(n.y)){var i=id*Math.sqrt(e),o=e*od;n.x=i*Math.cos(o),n.y=i*Math.sin(o)}(isNaN(n.vx)||isNaN(n.vy))&&(n.vx=n.vy=0)}}function i(n){return n.initialize&&n.initialize(t),n}var o,a=1,u=.001,f=1-Math.pow(u,1/300),c=0,s=.6,l=he(),h=Tn(n),d=N("tick","end");return null==t&&(t=[]),r(),o={tick:e,restart:function(){return h.restart(n),o},stop:function(){return h.stop(),o},nodes:function(n){return arguments.length?(t=n,r(),l.each(i),o):t},alpha:function(t){return arguments.length?(a=+t,o):a},alphaMin:function(t){return arguments.length?(u=+t,o):u},alphaDecay:function(t){return arguments.length?(f=+t,o):+f},alphaTarget:function(t){return arguments.length?(c=+t,o):c},velocityDecay:function(t){return arguments.length?(s=1-t,o):1-s},force:function(t,n){return arguments.length>1?(null==n?l.remove(t):l.set(t,i(n)),o):l.get(t)},find:function(n,e,r){var i,o,a,u,f,c=0,s=t.length;for(null==r?r=1/0:r*=r,c=0;c<s;++c)(a=(i=n-(u=t[c]).x)*i+(o=e-u.y)*o)<r&&(f=u,r=a);return f},on:function(t,n){return arguments.length>1?(d.on(t,n),o):d.on(t)}}},t.forceX=function(t){function n(t){for(var n,e=0,a=r.length;e<a;++e)(n=r[e]).vx+=(o[e]-n.x)*i[e]*t}function e(){if(r){var n,e=r.length;for(i=new Array(e),o=new Array(e),n=0;n<e;++n)i[n]=isNaN(o[n]=+t(r[n],n,r))?0:+a(r[n],n,r)}}var r,i,o,a=qe(.1);return"function"!=typeof t&&(t=qe(null==t?0:+t)),n.initialize=function(t){r=t,e()},n.strength=function(t){return arguments.length?(a="function"==typeof t?t:qe(+t),e(),n):a},n.x=function(r){return arguments.length?(t="function"==typeof r?r:qe(+r),e(),n):t},n},t.forceY=function(t){function n(t){for(var n,e=0,a=r.length;e<a;++e)(n=r[e]).vy+=(o[e]-n.y)*i[e]*t}function e(){if(r){var n,e=r.length;for(i=new Array(e),o=new Array(e),n=0;n<e;++n)i[n]=isNaN(o[n]=+t(r[n],n,r))?0:+a(r[n],n,r)}}var r,i,o,a=qe(.1);return"function"!=typeof t&&(t=qe(null==t?0:+t)),n.initialize=function(t){r=t,e()},n.strength=function(t){return arguments.length?(a="function"==typeof t?t:qe(+t),e(),n):a},n.y=function(r){return arguments.length?(t="function"==typeof r?r:qe(+r),e(),n):t},n},t.formatDefaultLocale=or,t.formatLocale=ir,t.formatSpecifier=tr,t.precisionFixed=ar,t.precisionPrefix=ur,t.precisionRound=fr,t.geoArea=function(t){return hp.reset(),br(t,dp),2*hp},t.geoBounds=function(t){var n,e,r,i,o,a,u;if(bd=_d=-(gd=yd=1/0),Ad=[],br(t,vp),e=Ad.length){for(Ad.sort(Yr),n=1,o=[r=Ad[0]];n<e;++n)Br(r,(i=Ad[n])[0])||Br(r,i[1])?(Or(r[0],i[1])>Or(r[0],r[1])&&(r[1]=i[1]),Or(i[0],r[1])>Or(r[0],r[1])&&(r[0]=i[0])):o.push(r=i);for(a=-1/0,n=0,r=o[e=o.length-1];n<=e;r=i,++n)i=o[n],(u=Or(r[1],i[0]))>a&&(a=u,gd=i[0],_d=r[1])}return Ad=Td=null,gd===1/0||yd===1/0?[[NaN,NaN],[NaN,NaN]]:[[gd,yd],[_d,bd]]},t.geoCentroid=function(t){Nd=Sd=Ed=kd=Cd=Pd=zd=Rd=Ld=Dd=Ud=0,br(t,gp);var n=Ld,e=Dd,r=Ud,i=n*n+e*e+r*r;return i<Hd&&(n=Pd,e=zd,r=Rd,Sd<jd&&(n=Ed,e=kd,r=Cd),(i=n*n+e*e+r*r)<Hd)?[NaN,NaN]:[Kd(e,n)*Wd,dr(r/up(i))*Wd]},t.geoCircle=function(){function t(){var t=r.apply(this,arguments),u=i.apply(this,arguments)*Zd,f=o.apply(this,arguments)*Zd;return n=[],e=ti(-t[0]*Zd,-t[1]*Zd,0).invert,oi(a,u,f,1),t={type:"Polygon",coordinates:[n]},n=e=null,t}var n,e,r=Qr([0,0]),i=Qr(90),o=Qr(6),a={point:function(t,r){n.push(t=e(t,r)),t[0]*=Wd,t[1]*=Wd}};return t.center=function(n){return arguments.length?(r="function"==typeof n?n:Qr([+n[0],+n[1]]),t):r},t.radius=function(n){return arguments.length?(i="function"==typeof n?n:Qr(+n),t):i},t.precision=function(n){return arguments.length?(o="function"==typeof n?n:Qr(+n),t):o},t},t.geoClipAntimeridian=kp,t.geoClipCircle=gi,t.geoClipExtent=function(){var t,n,e,r=0,i=0,o=960,a=500;return e={stream:function(e){return t&&n===e?t:t=yi(r,i,o,a)(n=e)},extent:function(u){return arguments.length?(r=+u[0][0],i=+u[0][1],o=+u[1][0],a=+u[1][1],t=n=null,e):[[r,i],[o,a]]}}},t.geoClipRectangle=yi,t.geoContains=function(t,n){return(t&&Up.hasOwnProperty(t.type)?Up[t.type]:Mi)(t,n)},t.geoDistance=wi,t.geoGraticule=Pi,t.geoGraticule10=function(){return Pi()()},t.geoInterpolate=function(t,n){var e=t[0]*Zd,r=t[1]*Zd,i=n[0]*Zd,o=n[1]*Zd,a=tp(r),u=op(r),f=tp(o),c=op(o),s=a*tp(e),l=a*op(e),h=f*tp(i),d=f*op(i),p=2*dr(up(pr(o-r)+a*f*pr(i-e))),v=op(p),g=p?function(t){var n=op(t*=p)/v,e=op(p-t)/v,r=e*s+n*h,i=e*l+n*d,o=e*u+n*c;return[Kd(i,r)*Wd,Kd(o,up(r*r+i*i))*Wd]}:function(){return[e*Wd,r*Wd]};return g.distance=p,g},t.geoLength=xi,t.geoPath=function(t,n){function e(t){return t&&("function"==typeof o&&i.pointRadius(+o.apply(this,arguments)),br(t,r(i))),i.result()}var r,i,o=4.5;return e.area=function(t){return br(t,r(Bp)),Bp.result()},e.measure=function(t){return br(t,r(fv)),fv.result()},e.bounds=function(t){return br(t,r(Xp)),Xp.result()},e.centroid=function(t){return br(t,r(nv)),nv.result()},e.projection=function(n){return arguments.length?(r=null==n?(t=null,zi):(t=n).stream,e):t},e.context=function(t){return arguments.length?(i=null==t?(n=null,new Wi):new Gi(n=t),"function"!=typeof o&&i.pointRadius(o),e):n},e.pointRadius=function(t){return arguments.length?(o="function"==typeof t?t:(i.pointRadius(+t),+t),e):o},e.projection(t).context(n)},t.geoAlbers=lo,t.geoAlbersUsa=function(){function t(t){var n=t[0],e=t[1];return u=null,i.point(n,e),u||(o.point(n,e),u)||(a.point(n,e),u)}function n(){return e=r=null,t}var e,r,i,o,a,u,f=lo(),c=so().rotate([154,0]).center([-2,58.5]).parallels([55,65]),s=so().rotate([157,0]).center([-3,19.9]).parallels([8,18]),l={point:function(t,n){u=[t,n]}};return t.invert=function(t){var n=f.scale(),e=f.translate(),r=(t[0]-e[0])/n,i=(t[1]-e[1])/n;return(i>=.12&&i<.234&&r>=-.425&&r<-.214?c:i>=.166&&i<.234&&r>=-.214&&r<-.115?s:f).invert(t)},t.stream=function(t){return e&&r===t?e:e=function(t){var n=t.length;return{point:function(e,r){for(var i=-1;++i<n;)t[i].point(e,r)},sphere:function(){for(var e=-1;++e<n;)t[e].sphere()},lineStart:function(){for(var e=-1;++e<n;)t[e].lineStart()},lineEnd:function(){for(var e=-1;++e<n;)t[e].lineEnd()},polygonStart:function(){for(var e=-1;++e<n;)t[e].polygonStart()},polygonEnd:function(){for(var e=-1;++e<n;)t[e].polygonEnd()}}}([f.stream(r=t),c.stream(t),s.stream(t)])},t.precision=function(t){return arguments.length?(f.precision(t),c.precision(t),s.precision(t),n()):f.precision()},t.scale=function(n){return arguments.length?(f.scale(n),c.scale(.35*n),s.scale(n),t.translate(f.translate())):f.scale()},t.translate=function(t){if(!arguments.length)return f.translate();var e=f.scale(),r=+t[0],u=+t[1];return i=f.translate(t).clipExtent([[r-.455*e,u-.238*e],[r+.455*e,u+.238*e]]).stream(l),o=c.translate([r-.307*e,u+.201*e]).clipExtent([[r-.425*e+jd,u+.12*e+jd],[r-.214*e-jd,u+.234*e-jd]]).stream(l),a=s.translate([r-.205*e,u+.212*e]).clipExtent([[r-.214*e+jd,u+.166*e+jd],[r-.115*e-jd,u+.234*e-jd]]).stream(l),n()},t.fitExtent=function(n,e){return to(t,n,e)},t.fitSize=function(n,e){return no(t,n,e)},t.fitWidth=function(n,e){return eo(t,n,e)},t.fitHeight=function(n,e){return ro(t,n,e)},t.scale(1070)},t.geoAzimuthalEqualArea=function(){return ao(hv).scale(124.75).clipAngle(179.999)},t.geoAzimuthalEqualAreaRaw=hv,t.geoAzimuthalEquidistant=function(){return ao(dv).scale(79.4188).clipAngle(179.999)},t.geoAzimuthalEquidistantRaw=dv,t.geoConicConformal=function(){return fo(_o).scale(109.5).parallels([30,30])},t.geoConicConformalRaw=_o,t.geoConicEqualArea=so,t.geoConicEqualAreaRaw=co,t.geoConicEquidistant=function(){return fo(mo).scale(131.154).center([0,13.9389])},t.geoConicEquidistantRaw=mo,t.geoEquirectangular=function(){return ao(bo).scale(152.63)},t.geoEquirectangularRaw=bo,t.geoGnomonic=function(){return ao(xo).scale(144.049).clipAngle(60)},t.geoGnomonicRaw=xo,t.geoIdentity=function(){function t(){return i=o=null,a}var n,e,r,i,o,a,u=1,f=0,c=0,s=1,l=1,h=zi,d=null,p=zi;return a={stream:function(t){return i&&o===t?i:i=h(p(o=t))},postclip:function(i){return arguments.length?(p=i,d=n=e=r=null,t()):p},clipExtent:function(i){return arguments.length?(p=null==i?(d=n=e=r=null,zi):yi(d=+i[0][0],n=+i[0][1],e=+i[1][0],r=+i[1][1]),t()):null==d?null:[[d,n],[e,r]]},scale:function(n){return arguments.length?(h=wo((u=+n)*s,u*l,f,c),t()):u},translate:function(n){return arguments.length?(h=wo(u*s,u*l,f=+n[0],c=+n[1]),t()):[f,c]},reflectX:function(n){return arguments.length?(h=wo(u*(s=n?-1:1),u*l,f,c),t()):s<0},reflectY:function(n){return arguments.length?(h=wo(u*s,u*(l=n?-1:1),f,c),t()):l<0},fitExtent:function(t,n){return to(a,t,n)},fitSize:function(t,n){return no(a,t,n)},fitWidth:function(t,n){return eo(a,t,n)},fitHeight:function(t,n){return ro(a,t,n)}}},t.geoProjection=ao,t.geoProjectionMutator=uo,t.geoMercator=function(){return go(vo).scale(961/$d)},t.geoMercatorRaw=vo,t.geoNaturalEarth1=function(){return ao(Mo).scale(175.295)},t.geoNaturalEarth1Raw=Mo,t.geoOrthographic=function(){return ao(Ao).scale(249.5).clipAngle(90+jd)},t.geoOrthographicRaw=Ao,t.geoStereographic=function(){return ao(To).scale(250).clipAngle(142)},t.geoStereographicRaw=To,t.geoTransverseMercator=function(){var t=go(No),n=t.center,e=t.rotate;return t.center=function(t){return arguments.length?n([-t[1],t[0]]):(t=n(),[t[1],-t[0]])},t.rotate=function(t){return arguments.length?e([t[0],t[1],t.length>2?t[2]+90:90]):(t=e(),[t[0],t[1],t[2]-90])},e([0,0,90]).scale(159.155)},t.geoTransverseMercatorRaw=No,t.geoRotation=ii,t.geoStream=br,t.geoTransform=function(t){return{stream:Qi(t)}},t.cluster=function(){function t(t){var o,a=0;t.eachAfter(function(t){var e=t.children;e?(t.x=function(t){return t.reduce(Eo,0)/t.length}(e),t.y=function(t){return 1+t.reduce(ko,0)}(e)):(t.x=o?a+=n(t,o):0,t.y=0,o=t)});var u=function(t){for(var n;n=t.children;)t=n[0];return t}(t),f=function(t){for(var n;n=t.children;)t=n[n.length-1];return t}(t),c=u.x-n(u,f)/2,s=f.x+n(f,u)/2;return t.eachAfter(i?function(n){n.x=(n.x-t.x)*e,n.y=(t.y-n.y)*r}:function(n){n.x=(n.x-c)/(s-c)*e,n.y=(1-(t.y?n.y/t.y:1))*r})}var n=So,e=1,r=1,i=!1;return t.separation=function(e){return arguments.length?(n=e,t):n},t.size=function(n){return arguments.length?(i=!1,e=+n[0],r=+n[1],t):i?null:[e,r]},t.nodeSize=function(n){return arguments.length?(i=!0,e=+n[0],r=+n[1],t):i?[e,r]:null},t},t.hierarchy=Po,t.pack=function(){function t(t){return t.x=e/2,t.y=r/2,n?t.eachBefore(Qo(n)).eachAfter(Jo(i,.5)).eachBefore(Ko(1)):t.eachBefore(Qo(Zo)).eachAfter(Jo($o,1)).eachAfter(Jo(i,t.r/Math.min(e,r))).eachBefore(Ko(Math.min(e,r)/(2*t.r))),t}var n=null,e=1,r=1,i=$o;return t.radius=function(e){return arguments.length?(n=function(t){return null==t?null:Vo(t)}(e),t):n},t.size=function(n){return arguments.length?(e=+n[0],r=+n[1],t):[e,r]},t.padding=function(n){return arguments.length?(i="function"==typeof n?n:Wo(+n),t):i},t},t.packSiblings=function(t){return Go(t),t},t.packEnclose=Uo,t.partition=function(){function t(t){var o=t.height+1;return t.x0=t.y0=r,t.x1=n,t.y1=e/o,t.eachBefore(function(t,n){return function(e){e.children&&na(e,e.x0,t*(e.depth+1)/n,e.x1,t*(e.depth+2)/n);var i=e.x0,o=e.y0,a=e.x1-r,u=e.y1-r;a<i&&(i=a=(i+a)/2),u<o&&(o=u=(o+u)/2),e.x0=i,e.y0=o,e.x1=a,e.y1=u}}(e,o)),i&&t.eachBefore(ta),t}var n=1,e=1,r=0,i=!1;return t.round=function(n){return arguments.length?(i=!!n,t):i},t.size=function(r){return arguments.length?(n=+r[0],e=+r[1],t):[n,e]},t.padding=function(n){return arguments.length?(r=+n,t):r},t},t.stratify=function(){function t(t){var r,i,o,a,u,f,c,s=t.length,l=new Array(s),h={};for(i=0;i<s;++i)r=t[i],u=l[i]=new Do(r),null!=(f=n(r,i,t))&&(f+="")&&(h[c=vv+(u.id=f)]=c in h?yv:u);for(i=0;i<s;++i)if(u=l[i],null!=(f=e(t[i],i,t))&&(f+="")){if(!(a=h[vv+f]))throw new Error("missing: "+f);if(a===yv)throw new Error("ambiguous: "+f);a.children?a.children.push(u):a.children=[u],u.parent=a}else{if(o)throw new Error("multiple roots");o=u}if(!o)throw new Error("no root");if(o.parent=gv,o.eachBefore(function(t){t.depth=t.parent.depth+1,--s}).eachBefore(Lo),o.parent=null,s>0)throw new Error("cycle");return o}var n=ea,e=ra;return t.id=function(e){return arguments.length?(n=Vo(e),t):n},t.parentId=function(n){return arguments.length?(e=Vo(n),t):e},t},t.tree=function(){function t(t){var f=function(t){for(var n,e,r,i,o,a=new ca(t,0),u=[a];n=u.pop();)if(r=n._.children)for(n.children=new Array(o=r.length),i=o-1;i>=0;--i)u.push(e=n.children[i]=new ca(r[i],i)),e.parent=n;return(a.parent=new ca(null,0)).children=[a],a}(t);if(f.eachAfter(n),f.parent.m=-f.z,f.eachBefore(e),u)t.eachBefore(r);else{var c=t,s=t,l=t;t.eachBefore(function(t){t.x<c.x&&(c=t),t.x>s.x&&(s=t),t.depth>l.depth&&(l=t)});var h=c===s?1:i(c,s)/2,d=h-c.x,p=o/(s.x+h+d),v=a/(l.depth||1);t.eachBefore(function(t){t.x=(t.x+d)*p,t.y=t.depth*v})}return t}function n(t){var n=t.children,e=t.parent.children,r=t.i?e[t.i-1]:null;if(n){(function(t){for(var n,e=0,r=0,i=t.children,o=i.length;--o>=0;)(n=i[o]).z+=e,n.m+=e,e+=n.s+(r+=n.c)})(t);var o=(n[0].z+n[n.length-1].z)/2;r?(t.z=r.z+i(t._,r._),t.m=t.z-o):t.z=o}else r&&(t.z=r.z+i(t._,r._));t.parent.A=function(t,n,e){if(n){for(var r,o=t,a=t,u=n,f=o.parent.children[0],c=o.m,s=a.m,l=u.m,h=f.m;u=aa(u),o=oa(o),u&&o;)f=oa(f),(a=aa(a)).a=t,(r=u.z+l-o.z-c+i(u._,o._))>0&&(ua(fa(u,t,e),t,r),c+=r,s+=r),l+=u.m,c+=o.m,h+=f.m,s+=a.m;u&&!aa(a)&&(a.t=u,a.m+=l-s),o&&!oa(f)&&(f.t=o,f.m+=c-h,e=t)}return e}(t,r,t.parent.A||e[0])}function e(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function r(t){t.x*=o,t.y=t.depth*a}var i=ia,o=1,a=1,u=null;return t.separation=function(n){return arguments.length?(i=n,t):i},t.size=function(n){return arguments.length?(u=!1,o=+n[0],a=+n[1],t):u?null:[o,a]},t.nodeSize=function(n){return arguments.length?(u=!0,o=+n[0],a=+n[1],t):u?[o,a]:null},t},t.treemap=function(){function t(t){return t.x0=t.y0=0,t.x1=i,t.y1=o,t.eachBefore(n),a=[0],r&&t.eachBefore(ta),t}function n(t){var n=a[t.depth],r=t.x0+n,i=t.y0+n,o=t.x1-n,h=t.y1-n;o<r&&(r=o=(r+o)/2),h<i&&(i=h=(i+h)/2),t.x0=r,t.y0=i,t.x1=o,t.y1=h,t.children&&(n=a[t.depth+1]=u(t)/2,r+=l(t)-n,i+=f(t)-n,o-=c(t)-n,h-=s(t)-n,o<r&&(r=o=(r+o)/2),h<i&&(i=h=(i+h)/2),e(t,r,i,o,h))}var e=bv,r=!1,i=1,o=1,a=[0],u=$o,f=$o,c=$o,s=$o,l=$o;return t.round=function(n){return arguments.length?(r=!!n,t):r},t.size=function(n){return arguments.length?(i=+n[0],o=+n[1],t):[i,o]},t.tile=function(n){return arguments.length?(e=Vo(n),t):e},t.padding=function(n){return arguments.length?t.paddingInner(n).paddingOuter(n):t.paddingInner()},t.paddingInner=function(n){return arguments.length?(u="function"==typeof n?n:Wo(+n),t):u},t.paddingOuter=function(n){return arguments.length?t.paddingTop(n).paddingRight(n).paddingBottom(n).paddingLeft(n):t.paddingTop()},t.paddingTop=function(n){return arguments.length?(f="function"==typeof n?n:Wo(+n),t):f},t.paddingRight=function(n){return arguments.length?(c="function"==typeof n?n:Wo(+n),t):c},t.paddingBottom=function(n){return arguments.length?(s="function"==typeof n?n:Wo(+n),t):s},t.paddingLeft=function(n){return arguments.length?(l="function"==typeof n?n:Wo(+n),t):l},t},t.treemapBinary=function(t,n,e,r,i){function o(t,n,e,r,i,a,u){if(t>=n-1){var c=f[t];return c.x0=r,c.y0=i,c.x1=a,void(c.y1=u)}for(var l=s[t],h=e/2+l,d=t+1,p=n-1;d<p;){var v=d+p>>>1;s[v]<h?d=v+1:p=v}h-s[d-1]<s[d]-h&&t+1<d&&--d;var g=s[d]-l,y=e-g;if(a-r>u-i){var _=(r*y+a*g)/e;o(t,d,g,r,i,_,u),o(d,n,y,_,i,a,u)}else{var b=(i*y+u*g)/e;o(t,d,g,r,i,a,b),o(d,n,y,r,b,a,u)}}var a,u,f=t.children,c=f.length,s=new Array(c+1);for(s[0]=u=a=0;a<c;++a)s[a+1]=u+=f[a].value;o(0,c,t.value,n,e,r,i)},t.treemapDice=na,t.treemapSlice=sa,t.treemapSliceDice=function(t,n,e,r,i){(1&t.depth?sa:na)(t,n,e,r,i)},t.treemapSquarify=bv,t.treemapResquarify=mv,t.interpolate=dn,t.interpolateArray=fn,t.interpolateBasis=Kt,t.interpolateBasisClosed=tn,t.interpolateDate=cn,t.interpolateNumber=sn,t.interpolateObject=ln,t.interpolateRound=pn,t.interpolateString=hn,t.interpolateTransformCss=cl,t.interpolateTransformSvg=sl,t.interpolateZoom=_n,t.interpolateRgb=el,t.interpolateRgbBasis=rl,t.interpolateRgbBasisClosed=il,t.interpolateHsl=vl,t.interpolateHslLong=gl,t.interpolateLab=function(t,n){var e=an((t=Ft(t)).l,(n=Ft(n)).l),r=an(t.a,n.a),i=an(t.b,n.b),o=an(t.opacity,n.opacity);return function(n){return t.l=e(n),t.a=r(n),t.b=i(n),t.opacity=o(n),t+""}},t.interpolateHcl=yl,t.interpolateHclLong=_l,t.interpolateCubehelix=bl,t.interpolateCubehelixLong=ml,t.piecewise=function(t,n){for(var e=0,r=n.length-1,i=n[0],o=new Array(r<0?0:r);e<r;)o[e]=t(i,i=n[++e]);return function(t){var n=Math.max(0,Math.min(r-1,Math.floor(t*=r)));return o[n](t-n)}},t.quantize=function(t,n){for(var e=new Array(n),r=0;r<n;++r)e[r]=t(r/(n-1));return e},t.path=oe,t.polygonArea=function(t){for(var n,e=-1,r=t.length,i=t[r-1],o=0;++e<r;)n=i,i=t[e],o+=n[1]*i[0]-n[0]*i[1];return o/2},t.polygonCentroid=function(t){for(var n,e,r=-1,i=t.length,o=0,a=0,u=t[i-1],f=0;++r<i;)n=u,u=t[r],f+=e=n[0]*u[1]-u[0]*n[1],o+=(n[0]+u[0])*e,a+=(n[1]+u[1])*e;return f*=3,[o/f,a/f]},t.polygonHull=function(t){if((e=t.length)<3)return null;var n,e,r=new Array(e),i=new Array(e);for(n=0;n<e;++n)r[n]=[+t[n][0],+t[n][1],n];for(r.sort(da),n=0;n<e;++n)i[n]=[r[n][0],-r[n][1]];var o=pa(r),a=pa(i),u=a[0]===o[0],f=a[a.length-1]===o[o.length-1],c=[];for(n=o.length-1;n>=0;--n)c.push(t[r[o[n]][2]]);for(n=+u;n<a.length-f;++n)c.push(t[r[a[n]][2]]);return c},t.polygonContains=function(t,n){for(var e,r,i=t.length,o=t[i-1],a=n[0],u=n[1],f=o[0],c=o[1],s=!1,l=0;l<i;++l)e=(o=t[l])[0],(r=o[1])>u!=c>u&&a<(f-e)*(u-r)/(c-r)+e&&(s=!s),f=e,c=r;return s},t.polygonLength=function(t){for(var n,e,r=-1,i=t.length,o=t[i-1],a=o[0],u=o[1],f=0;++r<i;)n=a,e=u,n-=a=(o=t[r])[0],e-=u=o[1],f+=Math.sqrt(n*n+e*e);return f},t.quadtree=je,t.randomUniform=xv,t.randomNormal=wv,t.randomLogNormal=Mv,t.randomBates=Tv,t.randomIrwinHall=Av,t.randomExponential=Nv,t.scaleBand=ya,t.scalePoint=function(){return _a(ya().paddingInner(1))},t.scaleIdentity=Ea,t.scaleLinear=Sa,t.scaleLog=Ua,t.scaleOrdinal=ga,t.scaleImplicit=Cv,t.scalePow=Oa,t.scaleSqrt=function(){return Oa().exponent(.5)},t.scaleQuantile=Ya,t.scaleQuantize=Ba,t.scaleThreshold=Fa,t.scaleTime=function(){return of(fg,ag,Gv,Hv,Iv,Bv,Ov,Lv,t.timeFormat).domain([new Date(2e3,0,1),new Date(2e3,0,2)])},t.scaleUtc=function(){return of(zg,Cg,gg,pg,hg,sg,Ov,Lv,t.utcFormat).domain([Date.UTC(2e3,0,1),Date.UTC(2e3,0,2)])},t.scaleSequential=af,t.schemeCategory10=Wg,t.schemeAccent=Zg,t.schemeDark2=Qg,t.schemePaired=Jg,t.schemePastel1=Kg,t.schemePastel2=ty,t.schemeSet1=ny,t.schemeSet2=ey,t.schemeSet3=ry,t.interpolateBrBG=oy,t.schemeBrBG=iy,t.interpolatePRGn=uy,t.schemePRGn=ay,t.interpolatePiYG=cy,t.schemePiYG=fy,t.interpolatePuOr=ly,t.schemePuOr=sy,t.interpolateRdBu=dy,t.schemeRdBu=hy,t.interpolateRdGy=vy,t.schemeRdGy=py,t.interpolateRdYlBu=yy,t.schemeRdYlBu=gy,t.interpolateRdYlGn=by,t.schemeRdYlGn=_y,t.interpolateSpectral=xy,t.schemeSpectral=my,t.interpolateBuGn=My,t.schemeBuGn=wy,t.interpolateBuPu=Ty,t.schemeBuPu=Ay,t.interpolateGnBu=Sy,t.schemeGnBu=Ny,t.interpolateOrRd=ky,t.schemeOrRd=Ey,t.interpolatePuBuGn=Py,t.schemePuBuGn=Cy,t.interpolatePuBu=Ry,t.schemePuBu=zy,t.interpolatePuRd=Dy,t.schemePuRd=Ly,t.interpolateRdPu=qy,t.schemeRdPu=Uy,t.interpolateYlGnBu=Yy,t.schemeYlGnBu=Oy,t.interpolateYlGn=Fy,t.schemeYlGn=By,t.interpolateYlOrBr=jy,t.schemeYlOrBr=Iy,t.interpolateYlOrRd=Xy,t.schemeYlOrRd=Hy,t.interpolateBlues=Vy,t.schemeBlues=Gy,t.interpolateGreens=Wy,t.schemeGreens=$y,t.interpolateGreys=Qy,t.schemeGreys=Zy,t.interpolatePurples=Ky,t.schemePurples=Jy,t.interpolateReds=n_,t.schemeReds=t_,t.interpolateOranges=r_,t.schemeOranges=e_,t.interpolateCubehelixDefault=i_,t.interpolateRainbow=function(t){(t<0||t>1)&&(t-=Math.floor(t));var n=Math.abs(t-.5);return u_.h=360*t-100,u_.s=1.5-1.5*n,u_.l=.8-.9*n,u_+""},t.interpolateWarm=o_,t.interpolateCool=a_,t.interpolateSinebow=function(t){var n;return t=(.5-t)*Math.PI,f_.r=255*(n=Math.sin(t))*n,f_.g=255*(n=Math.sin(t+c_))*n,f_.b=255*(n=Math.sin(t+s_))*n,f_+""},t.interpolateViridis=l_,t.interpolateMagma=h_,t.interpolateInferno=d_,t.interpolatePlasma=p_,t.create=function(t){return ct(C(t).call(document.documentElement))},t.creator=C,t.local=st,t.matcher=_s,t.mouse=pt,t.namespace=k,t.namespaces=ps,t.clientPoint=dt,t.select=ct,t.selectAll=function(t){return"string"==typeof t?new ut([document.querySelectorAll(t)],[document.documentElement]):new ut([null==t?[]:t],xs)},t.selection=ft,t.selector=z,t.selectorAll=L,t.style=F,t.touch=vt,t.touches=function(t,n){null==n&&(n=ht().touches);for(var e=0,r=n?n.length:0,i=new Array(r);e<r;++e)i[e]=dt(t,n[e]);return i},t.window=B,t.customEvent=ot,t.arc=function(){function t(){var t,c,s=+n.apply(this,arguments),l=+e.apply(this,arguments),h=o.apply(this,arguments)-A_,d=a.apply(this,arguments)-A_,p=v_(d-h),v=d>h;if(f||(f=t=oe()),l<s&&(c=l,l=s,s=c),l>w_)if(p>T_-w_)f.moveTo(l*y_(h),l*m_(h)),f.arc(0,0,l,h,d,!v),s>w_&&(f.moveTo(s*y_(d),s*m_(d)),f.arc(0,0,s,d,h,v));else{var g,y,_=h,b=d,m=h,x=d,w=p,M=p,A=u.apply(this,arguments)/2,T=A>w_&&(i?+i.apply(this,arguments):x_(s*s+l*l)),N=b_(v_(l-s)/2,+r.apply(this,arguments)),S=N,E=N;if(T>w_){var k=lf(T/s*m_(A)),C=lf(T/l*m_(A));(w-=2*k)>w_?(k*=v?1:-1,m+=k,x-=k):(w=0,m=x=(h+d)/2),(M-=2*C)>w_?(C*=v?1:-1,_+=C,b-=C):(M=0,_=b=(h+d)/2)}var P=l*y_(_),z=l*m_(_),R=s*y_(x),L=s*m_(x);if(N>w_){var D=l*y_(b),U=l*m_(b),q=s*y_(m),O=s*m_(m);if(p<M_){var Y=w>w_?function(t,n,e,r,i,o,a,u){var f=e-t,c=r-n,s=a-i,l=u-o,h=(s*(n-o)-l*(t-i))/(l*f-s*c);return[t+h*f,n+h*c]}(P,z,q,O,D,U,R,L):[R,L],B=P-Y[0],F=z-Y[1],I=D-Y[0],j=U-Y[1],H=1/m_(function(t){return t>1?0:t<-1?M_:Math.acos(t)}((B*I+F*j)/(x_(B*B+F*F)*x_(I*I+j*j)))/2),X=x_(Y[0]*Y[0]+Y[1]*Y[1]);S=b_(N,(s-X)/(H-1)),E=b_(N,(l-X)/(H+1))}}M>w_?E>w_?(g=yf(q,O,P,z,l,E,v),y=yf(D,U,R,L,l,E,v),f.moveTo(g.cx+g.x01,g.cy+g.y01),E<N?f.arc(g.cx,g.cy,E,g_(g.y01,g.x01),g_(y.y01,y.x01),!v):(f.arc(g.cx,g.cy,E,g_(g.y01,g.x01),g_(g.y11,g.x11),!v),f.arc(0,0,l,g_(g.cy+g.y11,g.cx+g.x11),g_(y.cy+y.y11,y.cx+y.x11),!v),f.arc(y.cx,y.cy,E,g_(y.y11,y.x11),g_(y.y01,y.x01),!v))):(f.moveTo(P,z),f.arc(0,0,l,_,b,!v)):f.moveTo(P,z),s>w_&&w>w_?S>w_?(g=yf(R,L,D,U,s,-S,v),y=yf(P,z,q,O,s,-S,v),f.lineTo(g.cx+g.x01,g.cy+g.y01),S<N?f.arc(g.cx,g.cy,S,g_(g.y01,g.x01),g_(y.y01,y.x01),!v):(f.arc(g.cx,g.cy,S,g_(g.y01,g.x01),g_(g.y11,g.x11),!v),f.arc(0,0,s,g_(g.cy+g.y11,g.cx+g.x11),g_(y.cy+y.y11,y.cx+y.x11),v),f.arc(y.cx,y.cy,S,g_(y.y11,y.x11),g_(y.y01,y.x01),!v))):f.arc(0,0,s,x,m,v):f.lineTo(R,L)}else f.moveTo(0,0);if(f.closePath(),t)return f=null,t+""||null}var n=hf,e=df,r=sf(0),i=null,o=pf,a=vf,u=gf,f=null;return t.centroid=function(){var t=(+n.apply(this,arguments)+ +e.apply(this,arguments))/2,r=(+o.apply(this,arguments)+ +a.apply(this,arguments))/2-M_/2;return[y_(r)*t,m_(r)*t]},t.innerRadius=function(e){return arguments.length?(n="function"==typeof e?e:sf(+e),t):n},t.outerRadius=function(n){return arguments.length?(e="function"==typeof n?n:sf(+n),t):e},t.cornerRadius=function(n){return arguments.length?(r="function"==typeof n?n:sf(+n),t):r},t.padRadius=function(n){return arguments.length?(i=null==n?null:"function"==typeof n?n:sf(+n),t):i},t.startAngle=function(n){return arguments.length?(o="function"==typeof n?n:sf(+n),t):o},t.endAngle=function(n){return arguments.length?(a="function"==typeof n?n:sf(+n),t):a},t.padAngle=function(n){return arguments.length?(u="function"==typeof n?n:sf(+n),t):u},t.context=function(n){return arguments.length?(f=null==n?null:n,t):f},t},t.area=Mf,t.line=wf,t.pie=function(){function t(t){var u,f,c,s,l,h=t.length,d=0,p=new Array(h),v=new Array(h),g=+i.apply(this,arguments),y=Math.min(T_,Math.max(-T_,o.apply(this,arguments)-g)),_=Math.min(Math.abs(y)/h,a.apply(this,arguments)),b=_*(y<0?-1:1);for(u=0;u<h;++u)(l=v[p[u]=u]=+n(t[u],u,t))>0&&(d+=l);for(null!=e?p.sort(function(t,n){return e(v[t],v[n])}):null!=r&&p.sort(function(n,e){return r(t[n],t[e])}),u=0,c=d?(y-h*b)/d:0;u<h;++u,g=s)f=p[u],s=g+((l=v[f])>0?l*c:0)+b,v[f]={data:t[f],index:u,value:l,startAngle:g,endAngle:s,padAngle:_};return v}var n=Tf,e=Af,r=null,i=sf(0),o=sf(T_),a=sf(0);return t.value=function(e){return arguments.length?(n="function"==typeof e?e:sf(+e),t):n},t.sortValues=function(n){return arguments.length?(e=n,r=null,t):e},t.sort=function(n){return arguments.length?(r=n,e=null,t):r},t.startAngle=function(n){return arguments.length?(i="function"==typeof n?n:sf(+n),t):i},t.endAngle=function(n){return arguments.length?(o="function"==typeof n?n:sf(+n),t):o},t.padAngle=function(n){return arguments.length?(a="function"==typeof n?n:sf(+n),t):a},t},t.areaRadial=Cf,t.radialArea=Cf,t.lineRadial=kf,t.radialLine=kf,t.pointRadial=Pf,t.linkHorizontal=function(){return Lf(Df)},t.linkVertical=function(){return Lf(Uf)},t.linkRadial=function(){var t=Lf(qf);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.symbol=function(){function t(){var t;if(r||(r=t=oe()),n.apply(this,arguments).draw(r,+e.apply(this,arguments)),t)return r=null,t+""||null}var n=sf(E_),e=sf(64),r=null;return t.type=function(e){return arguments.length?(n="function"==typeof e?e:sf(e),t):n},t.size=function(n){return arguments.length?(e="function"==typeof n?n:sf(+n),t):e},t.context=function(n){return arguments.length?(r=null==n?null:n,t):r},t},t.symbols=H_,t.symbolCircle=E_,t.symbolCross=k_,t.symbolDiamond=z_,t.symbolSquare=q_,t.symbolStar=U_,t.symbolTriangle=Y_,t.symbolWye=j_,t.curveBasisClosed=function(t){return new Ff(t)},t.curveBasisOpen=function(t){return new If(t)},t.curveBasis=function(t){return new Bf(t)},t.curveBundle=X_,t.curveCardinalClosed=V_,t.curveCardinalOpen=$_,t.curveCardinal=G_,t.curveCatmullRomClosed=Z_,t.curveCatmullRomOpen=Q_,t.curveCatmullRom=W_,t.curveLinearClosed=function(t){return new Jf(t)},t.curveLinear=bf,t.curveMonotoneX=function(t){return new rc(t)},t.curveMonotoneY=function(t){return new ic(t)},t.curveNatural=function(t){return new ac(t)},t.curveStep=function(t){return new fc(t,.5)},t.curveStepAfter=function(t){return new fc(t,1)},t.curveStepBefore=function(t){return new fc(t,0)},t.stack=function(){function t(t){var o,a,u=n.apply(this,arguments),f=t.length,c=u.length,s=new Array(c);for(o=0;o<c;++o){for(var l,h=u[o],d=s[o]=new Array(f),p=0;p<f;++p)d[p]=l=[0,+i(t[p],h,p,t)],l.data=t[p];d.key=h}for(o=0,a=e(s);o<c;++o)s[a[o]].index=o;return r(s,a),s}var n=sf([]),e=sc,r=cc,i=lc;return t.keys=function(e){return arguments.length?(n="function"==typeof e?e:sf(S_.call(e)),t):n},t.value=function(n){return arguments.length?(i="function"==typeof n?n:sf(+n),t):i},t.order=function(n){return arguments.length?(e=null==n?sc:"function"==typeof n?n:sf(S_.call(n)),t):e},t.offset=function(n){return arguments.length?(r=null==n?cc:n,t):r},t},t.stackOffsetExpand=function(t,n){if((r=t.length)>0){for(var e,r,i,o=0,a=t[0].length;o<a;++o){for(i=e=0;e<r;++e)i+=t[e][o][1]||0;if(i)for(e=0;e<r;++e)t[e][o][1]/=i}cc(t,n)}},t.stackOffsetDiverging=function(t,n){if((u=t.length)>1)for(var e,r,i,o,a,u,f=0,c=t[n[0]].length;f<c;++f)for(o=a=0,e=0;e<u;++e)(i=(r=t[n[e]][f])[1]-r[0])>=0?(r[0]=o,r[1]=o+=i):i<0?(r[1]=a,r[0]=a+=i):r[0]=o},t.stackOffsetNone=cc,t.stackOffsetSilhouette=function(t,n){if((e=t.length)>0){for(var e,r=0,i=t[n[0]],o=i.length;r<o;++r){for(var a=0,u=0;a<e;++a)u+=t[a][r][1]||0;i[r][1]+=i[r][0]=-u/2}cc(t,n)}},t.stackOffsetWiggle=function(t,n){if((i=t.length)>0&&(r=(e=t[n[0]]).length)>0){for(var e,r,i,o=0,a=1;a<r;++a){for(var u=0,f=0,c=0;u<i;++u){for(var s=t[n[u]],l=s[a][1]||0,h=(l-(s[a-1][1]||0))/2,d=0;d<u;++d){var p=t[n[d]];h+=(p[a][1]||0)-(p[a-1][1]||0)}f+=l,c+=h*l}e[a-1][1]+=e[a-1][0]=o,f&&(o-=c/f)}e[a-1][1]+=e[a-1][0]=o,cc(t,n)}},t.stackOrderAscending=hc,t.stackOrderDescending=function(t){return hc(t).reverse()},t.stackOrderInsideOut=function(t){var n,e,r=t.length,i=t.map(dc),o=sc(t).sort(function(t,n){return i[n]-i[t]}),a=0,u=0,f=[],c=[];for(n=0;n<r;++n)e=o[n],a<u?(a+=i[e],f.push(e)):(u+=i[e],c.push(e));return c.reverse().concat(f)},t.stackOrderNone=sc,t.stackOrderReverse=function(t){return sc(t).reverse()},t.timeInterval=Ia,t.timeMillisecond=Lv,t.timeMilliseconds=Dv,t.utcMillisecond=Lv,t.utcMilliseconds=Dv,t.timeSecond=Ov,t.timeSeconds=Yv,t.utcSecond=Ov,t.utcSeconds=Yv,t.timeMinute=Bv,t.timeMinutes=Fv,t.timeHour=Iv,t.timeHours=jv,t.timeDay=Hv,t.timeDays=Xv,t.timeWeek=Gv,t.timeWeeks=Kv,t.timeSunday=Gv,t.timeSundays=Kv,t.timeMonday=Vv,t.timeMondays=tg,t.timeTuesday=$v,t.timeTuesdays=ng,t.timeWednesday=Wv,t.timeWednesdays=eg,t.timeThursday=Zv,t.timeThursdays=rg,t.timeFriday=Qv,t.timeFridays=ig,t.timeSaturday=Jv,t.timeSaturdays=og,t.timeMonth=ag,t.timeMonths=ug,t.timeYear=fg,t.timeYears=cg,t.utcMinute=sg,t.utcMinutes=lg,t.utcHour=hg,t.utcHours=dg,t.utcDay=pg,t.utcDays=vg,t.utcWeek=gg,t.utcWeeks=Mg,t.utcSunday=gg,t.utcSundays=Mg,t.utcMonday=yg,t.utcMondays=Ag,t.utcTuesday=_g,t.utcTuesdays=Tg,t.utcWednesday=bg,t.utcWednesdays=Ng,t.utcThursday=mg,t.utcThursdays=Sg,t.utcFriday=xg,t.utcFridays=Eg,t.utcSaturday=wg,t.utcSaturdays=kg,t.utcMonth=Cg,t.utcMonths=Pg,t.utcYear=zg,t.utcYears=Lg,t.timeFormatDefaultLocale=nf,t.timeFormatLocale=$a,t.isoFormat=Bg,t.isoParse=Fg,t.now=wn,t.timer=Tn,t.timerFlush=Nn,t.timeout=Cn,t.interval=function(t,n,e){var r=new An,i=n;return null==n?(r.restart(t,n,e),r):(n=+n,e=null==e?wn():+e,r.restart(function o(a){a+=i,r.restart(o,i+=n,e),t(a)},n,e),r)},t.transition=Yn,t.active=function(t,n){var e,r,i=t.__transition;if(i){n=null==n?null:n+"";for(r in i)if((e=i[r]).state>Rl&&e.name===n)return new On([[t]],lh,n,+r)}return null},t.interrupt=Dn,t.voronoi=function(){function t(t){return new Yc(t.map(function(r,i){var o=[Math.round(n(r,i,t)/ob)*ob,Math.round(e(r,i,t)/ob)*ob];return o.index=i,o.data=r,o}),r)}var n=vc,e=gc,r=null;return t.polygons=function(n){return t(n).polygons()},t.links=function(n){return t(n).links()},t.triangles=function(n){return t(n).triangles()},t.x=function(e){return arguments.length?(n="function"==typeof e?e:pc(+e),t):n},t.y=function(n){return arguments.length?(e="function"==typeof n?n:pc(+n),t):e},t.extent=function(n){return arguments.length?(r=null==n?null:[[+n[0][0],+n[0][1]],[+n[1][0],+n[1][1]]],t):r&&[[r[0][0],r[0][1]],[r[1][0],r[1][1]]]},t.size=function(n){return arguments.length?(r=null==n?null:[[0,0],[+n[0],+n[1]]],t):r&&[r[1][0]-r[0][0],r[1][1]-r[0][1]]},t},t.zoom=function(){function n(t){t.property("__zoom",Vc).on("wheel.zoom",f).on("mousedown.zoom",c).on("dblclick.zoom",s).filter(m).on("touchstart.zoom",l).on("touchmove.zoom",h).on("touchend.zoom touchcancel.zoom",d).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function e(t,n){return(n=Math.max(x[0],Math.min(x[1],n)))===t.k?t:new Fc(n,t.x,t.y)}function r(t,n,e){var r=n[0]-e[0]*t.k,i=n[1]-e[1]*t.k;return r===t.x&&i===t.y?t:new Fc(t.k,r,i)}function i(t){return[(+t[0][0]+ +t[1][0])/2,(+t[0][1]+ +t[1][1])/2]}function o(t,n,e){t.on("start.zoom",function(){a(this,arguments).start()}).on("interrupt.zoom end.zoom",function(){a(this,arguments).end()}).tween("zoom",function(){var t=arguments,r=a(this,t),o=y.apply(this,t),u=e||i(o),f=Math.max(o[1][0]-o[0][0],o[1][1]-o[0][1]),c=this.__zoom,s="function"==typeof n?n.apply(this,t):n,l=A(c.invert(u).concat(f/c.k),s.invert(u).concat(f/s.k));return function(t){if(1===t)t=s;else{var n=l(t),e=f/n[2];t=new Fc(e,u[0]-n[0]*e,u[1]-n[1]*e)}r.zoom(null,t)}})}function a(t,n){for(var e,r=0,i=T.length;r<i;++r)if((e=T[r]).that===t)return e;return new u(t,n)}function u(t,n){this.that=t,this.args=n,this.index=-1,this.active=0,this.extent=y.apply(t,n)}function f(){if(g.apply(this,arguments)){var t=a(this,arguments),n=this.__zoom,i=Math.max(x[0],Math.min(x[1],n.k*Math.pow(2,b.apply(this,arguments)))),o=pt(this);if(t.wheel)t.mouse[0][0]===o[0]&&t.mouse[0][1]===o[1]||(t.mouse[1]=n.invert(t.mouse[0]=o)),clearTimeout(t.wheel);else{if(n.k===i)return;t.mouse=[o,n.invert(o)],Dn(this),t.start()}Hc(),t.wheel=setTimeout(function(){t.wheel=null,t.end()},k),t.zoom("mouse",_(r(e(n,i),t.mouse[0],t.mouse[1]),t.extent,w))}}function c(){if(!v&&g.apply(this,arguments)){var n=a(this,arguments),e=ct(t.event.view).on("mousemove.zoom",function(){if(Hc(),!n.moved){var e=t.event.clientX-o,i=t.event.clientY-u;n.moved=e*e+i*i>C}n.zoom("mouse",_(r(n.that.__zoom,n.mouse[0]=pt(n.that),n.mouse[1]),n.extent,w))},!0).on("mouseup.zoom",function(){e.on("mousemove.zoom mouseup.zoom",null),bt(t.event.view,n.moved),Hc(),n.end()},!0),i=pt(this),o=t.event.clientX,u=t.event.clientY;_t(t.event.view),jc(),n.mouse=[i,this.__zoom.invert(i)],Dn(this),n.start()}}function s(){if(g.apply(this,arguments)){var i=this.__zoom,a=pt(this),u=i.invert(a),f=i.k*(t.event.shiftKey?.5:2),c=_(r(e(i,f),a,u),y.apply(this,arguments),w);Hc(),M>0?ct(this).transition().duration(M).call(o,c,a):ct(this).call(n.transform,c)}}function l(){if(g.apply(this,arguments)){var n,e,r,i,o=a(this,arguments),u=t.event.changedTouches,f=u.length;for(jc(),e=0;e<f;++e)i=[i=vt(this,u,(r=u[e]).identifier),this.__zoom.invert(i),r.identifier],o.touch0?o.touch1||(o.touch1=i):(o.touch0=i,n=!0);if(p&&(p=clearTimeout(p),!o.touch1))return o.end(),void((i=ct(this).on("dblclick.zoom"))&&i.apply(this,arguments));n&&(p=setTimeout(function(){p=null},E),Dn(this),o.start())}}function h(){var n,i,o,u,f=a(this,arguments),c=t.event.changedTouches,s=c.length;for(Hc(),p&&(p=clearTimeout(p)),n=0;n<s;++n)o=vt(this,c,(i=c[n]).identifier),f.touch0&&f.touch0[2]===i.identifier?f.touch0[0]=o:f.touch1&&f.touch1[2]===i.identifier&&(f.touch1[0]=o);if(i=f.that.__zoom,f.touch1){var l=f.touch0[0],h=f.touch0[1],d=f.touch1[0],v=f.touch1[1],g=(g=d[0]-l[0])*g+(g=d[1]-l[1])*g,y=(y=v[0]-h[0])*y+(y=v[1]-h[1])*y;i=e(i,Math.sqrt(g/y)),o=[(l[0]+d[0])/2,(l[1]+d[1])/2],u=[(h[0]+v[0])/2,(h[1]+v[1])/2]}else{if(!f.touch0)return;o=f.touch0[0],u=f.touch0[1]}f.zoom("touch",_(r(i,o,u),f.extent,w))}function d(){var n,e,r=a(this,arguments),i=t.event.changedTouches,o=i.length;for(jc(),v&&clearTimeout(v),v=setTimeout(function(){v=null},E),n=0;n<o;++n)e=i[n],r.touch0&&r.touch0[2]===e.identifier?delete r.touch0:r.touch1&&r.touch1[2]===e.identifier&&delete r.touch1;r.touch1&&!r.touch0&&(r.touch0=r.touch1,delete r.touch1),r.touch0?r.touch0[1]=this.__zoom.invert(r.touch0[0]):r.end()}var p,v,g=Xc,y=Gc,_=Zc,b=$c,m=Wc,x=[0,1/0],w=[[-1/0,-1/0],[1/0,1/0]],M=250,A=_n,T=[],S=N("start","zoom","end"),E=500,k=150,C=0;return n.transform=function(t,n){var e=t.selection?t.selection():t;e.property("__zoom",Vc),t!==e?o(t,n):e.interrupt().each(function(){a(this,arguments).start().zoom(null,"function"==typeof n?n.apply(this,arguments):n).end()})},n.scaleBy=function(t,e){n.scaleTo(t,function(){return this.__zoom.k*("function"==typeof e?e.apply(this,arguments):e)})},n.scaleTo=function(t,o){n.transform(t,function(){var t=y.apply(this,arguments),n=this.__zoom,a=i(t),u=n.invert(a),f="function"==typeof o?o.apply(this,arguments):o;return _(r(e(n,f),a,u),t,w)})},n.translateBy=function(t,e,r){n.transform(t,function(){return _(this.__zoom.translate("function"==typeof e?e.apply(this,arguments):e,"function"==typeof r?r.apply(this,arguments):r),y.apply(this,arguments),w)})},n.translateTo=function(t,e,r){n.transform(t,function(){var t=y.apply(this,arguments),n=this.__zoom,o=i(t);return _(ub.translate(o[0],o[1]).scale(n.k).translate("function"==typeof e?-e.apply(this,arguments):-e,"function"==typeof r?-r.apply(this,arguments):-r),t,w)})},u.prototype={start:function(){return 1==++this.active&&(this.index=T.push(this)-1,this.emit("start")),this},zoom:function(t,n){return this.mouse&&"mouse"!==t&&(this.mouse[1]=n.invert(this.mouse[0])),this.touch0&&"touch"!==t&&(this.touch0[1]=n.invert(this.touch0[0])),this.touch1&&"touch"!==t&&(this.touch1[1]=n.invert(this.touch1[0])),this.that.__zoom=n,this.emit("zoom"),this},end:function(){return 0==--this.active&&(T.splice(this.index,1),this.index=-1,this.emit("end")),this},emit:function(t){ot(new function(t,n,e){this.target=t,this.type=n,this.transform=e}(n,t,this.that.__zoom),S.apply,S,[t,this.that,this.args])}},n.wheelDelta=function(t){return arguments.length?(b="function"==typeof t?t:Bc(+t),n):b},n.filter=function(t){return arguments.length?(g="function"==typeof t?t:Bc(!!t),n):g},n.touchable=function(t){return arguments.length?(m="function"==typeof t?t:Bc(!!t),n):m},n.extent=function(t){return arguments.length?(y="function"==typeof t?t:Bc([[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]]),n):y},n.scaleExtent=function(t){return arguments.length?(x[0]=+t[0],x[1]=+t[1],n):[x[0],x[1]]},n.translateExtent=function(t){return arguments.length?(w[0][0]=+t[0][0],w[1][0]=+t[1][0],w[0][1]=+t[0][1],w[1][1]=+t[1][1],n):[[w[0][0],w[0][1]],[w[1][0],w[1][1]]]},n.constrain=function(t){return arguments.length?(_=t,n):_},n.duration=function(t){return arguments.length?(M=+t,n):M},n.interpolate=function(t){return arguments.length?(A=t,n):A},n.on=function(){var t=S.on.apply(S,arguments);return t===S?n:t},n.clickDistance=function(t){return arguments.length?(C=(t=+t)*t,n):Math.sqrt(C)},n},t.zoomTransform=Ic,t.zoomIdentity=ub,Object.defineProperty(t,"__esModule",{value:!0})});
-</script>
-<style>
-/*! Basscss | http://basscss.com | MIT License */.h1{font-size:2rem}.h2{font-size:1.5rem}.h3{font-size:1.25rem}.h4{font-size:1rem}.h5{font-size:.875rem}.h6{font-size:.75rem}.font-family-inherit{font-family:inherit}.font-size-inherit{font-size:inherit}.text-decoration-none{text-decoration:none}.bold{font-weight:700}.regular{font-weight:400}.italic{font-style:italic}.caps{text-transform:uppercase;letter-spacing:.2em}.left-align{text-align:left}.center{text-align:center}.right-align{text-align:right}.justify{text-align:justify}.nowrap{white-space:nowrap}.break-word{word-wrap:break-word}.line-height-1{line-height:1}.line-height-2{line-height:1.125}.line-height-3{line-height:1.25}.line-height-4{line-height:1.5}.list-style-none{list-style:none}.underline{text-decoration:underline}.truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.list-reset{list-style:none;padding-left:0}.inline{display:inline}.block{display:block}.inline-block{display:inline-block}.table{display:table}.table-cell{display:table-cell}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-auto{overflow:auto}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}.left{float:left}.right{float:right}.fit{max-width:100%}.max-width-1{max-width:24rem}.max-width-2{max-width:32rem}.max-width-3{max-width:48rem}.max-width-4{max-width:64rem}.border-box{box-sizing:border-box}.align-baseline{vertical-align:baseline}.align-top{vertical-align:top}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.m0{margin:0}.mt0{margin-top:0}.mr0{margin-right:0}.mb0{margin-bottom:0}.ml0,.mx0{margin-left:0}.mx0{margin-right:0}.my0{margin-top:0;margin-bottom:0}.m1{margin:.5rem}.mt1{margin-top:.5rem}.mr1{margin-right:.5rem}.mb1{margin-bottom:.5rem}.ml1,.mx1{margin-left:.5rem}.mx1{margin-right:.5rem}.my1{margin-top:.5rem;margin-bottom:.5rem}.m2{margin:1rem}.mt2{margin-top:1rem}.mr2{margin-right:1rem}.mb2{margin-bottom:1rem}.ml2,.mx2{margin-left:1rem}.mx2{margin-right:1rem}.my2{margin-top:1rem;margin-bottom:1rem}.m3{margin:2rem}.mt3{margin-top:2rem}.mr3{margin-right:2rem}.mb3{margin-bottom:2rem}.ml3,.mx3{margin-left:2rem}.mx3{margin-right:2rem}.my3{margin-top:2rem;margin-bottom:2rem}.m4{margin:4rem}.mt4{margin-top:4rem}.mr4{margin-right:4rem}.mb4{margin-bottom:4rem}.ml4,.mx4{margin-left:4rem}.mx4{margin-right:4rem}.my4{margin-top:4rem;margin-bottom:4rem}.mxn1{margin-left:-.5rem;margin-right:-.5rem}.mxn2{margin-left:-1rem;margin-right:-1rem}.mxn3{margin-left:-2rem;margin-right:-2rem}.mxn4{margin-left:-4rem;margin-right:-4rem}.ml-auto{margin-left:auto}.mr-auto,.mx-auto{margin-right:auto}.mx-auto{margin-left:auto}.p0{padding:0}.pt0{padding-top:0}.pr0{padding-right:0}.pb0{padding-bottom:0}.pl0,.px0{padding-left:0}.px0{padding-right:0}.py0{padding-top:0;padding-bottom:0}.p1{padding:.5rem}.pt1{padding-top:.5rem}.pr1{padding-right:.5rem}.pb1{padding-bottom:.5rem}.pl1{padding-left:.5rem}.py1{padding-top:.5rem;padding-bottom:.5rem}.px1{padding-left:.5rem;padding-right:.5rem}.p2{padding:1rem}.pt2{padding-top:1rem}.pr2{padding-right:1rem}.pb2{padding-bottom:1rem}.pl2{padding-left:1rem}.py2{padding-top:1rem;padding-bottom:1rem}.px2{padding-left:1rem;padding-right:1rem}.p3{padding:2rem}.pt3{padding-top:2rem}.pr3{padding-right:2rem}.pb3{padding-bottom:2rem}.pl3{padding-left:2rem}.py3{padding-top:2rem;padding-bottom:2rem}.px3{padding-left:2rem;padding-right:2rem}.p4{padding:4rem}.pt4{padding-top:4rem}.pr4{padding-right:4rem}.pb4{padding-bottom:4rem}.pl4{padding-left:4rem}.py4{padding-top:4rem;padding-bottom:4rem}.px4{padding-left:4rem;padding-right:4rem}.col{float:left}.col,.col-right{box-sizing:border-box}.col-right{float:right}.col-1{width:8.33333%}.col-2{width:16.66667%}.col-3{width:25%}.col-4{width:33.33333%}.col-5{width:41.66667%}.col-6{width:50%}.col-7{width:58.33333%}.col-8{width:66.66667%}.col-9{width:75%}.col-10{width:83.33333%}.col-11{width:91.66667%}.col-12{width:100%}@media (min-width:40em){.sm-col{float:left;box-sizing:border-box}.sm-col-right{float:right;box-sizing:border-box}.sm-col-1{width:8.33333%}.sm-col-2{width:16.66667%}.sm-col-3{width:25%}.sm-col-4{width:33.33333%}.sm-col-5{width:41.66667%}.sm-col-6{width:50%}.sm-col-7{width:58.33333%}.sm-col-8{width:66.66667%}.sm-col-9{width:75%}.sm-col-10{width:83.33333%}.sm-col-11{width:91.66667%}.sm-col-12{width:100%}}@media (min-width:52em){.md-col{float:left;box-sizing:border-box}.md-col-right{float:right;box-sizing:border-box}.md-col-1{width:8.33333%}.md-col-2{width:16.66667%}.md-col-3{width:25%}.md-col-4{width:33.33333%}.md-col-5{width:41.66667%}.md-col-6{width:50%}.md-col-7{width:58.33333%}.md-col-8{width:66.66667%}.md-col-9{width:75%}.md-col-10{width:83.33333%}.md-col-11{width:91.66667%}.md-col-12{width:100%}}@media (min-width:64em){.lg-col{float:left;box-sizing:border-box}.lg-col-right{float:right;box-sizing:border-box}.lg-col-1{width:8.33333%}.lg-col-2{width:16.66667%}.lg-col-3{width:25%}.lg-col-4{width:33.33333%}.lg-col-5{width:41.66667%}.lg-col-6{width:50%}.lg-col-7{width:58.33333%}.lg-col-8{width:66.66667%}.lg-col-9{width:75%}.lg-col-10{width:83.33333%}.lg-col-11{width:91.66667%}.lg-col-12{width:100%}}.flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}@media (min-width:40em){.sm-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}}@media (min-width:52em){.md-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}}@media (min-width:64em){.lg-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}}.flex-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.flex-wrap{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.items-start{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;-ms-grid-row-align:flex-start;align-items:flex-start}.items-end{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;-ms-grid-row-align:flex-end;align-items:flex-end}.items-center{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;-ms-grid-row-align:center;align-items:center}.items-baseline{-webkit-box-align:baseline;-webkit-align-items:baseline;-ms-flex-align:baseline;-ms-grid-row-align:baseline;align-items:baseline}.items-stretch{-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;-ms-grid-row-align:stretch;align-items:stretch}.self-start{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start}.self-end{-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end}.self-center{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.self-baseline{-webkit-align-self:baseline;-ms-flex-item-align:baseline;align-self:baseline}.self-stretch{-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch}.justify-start{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.justify-end{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.justify-center{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.justify-around{-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.content-start{-webkit-align-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start}.content-end{-webkit-align-content:flex-end;-ms-flex-line-pack:end;align-content:flex-end}.content-center{-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center}.content-between{-webkit-align-content:space-between;-ms-flex-line-pack:justify;align-content:space-between}.content-around{-webkit-align-content:space-around;-ms-flex-line-pack:distribute;align-content:space-around}.content-stretch{-webkit-align-content:stretch;-ms-flex-line-pack:stretch;align-content:stretch}.flex-auto{-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;min-height:0}.flex-none{-webkit-box-flex:0;-webkit-flex:none;-ms-flex:none;flex:none}.order-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.order-last{-webkit-box-ordinal-group:100000;-webkit-order:99999;-ms-flex-order:99999;order:99999}.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.z1{z-index:1}.z2{z-index:2}.z3{z-index:3}.z4{z-index:4}.border{border-style:solid;border-width:1px}.border-top{border-top-style:solid;border-top-width:1px}.border-right{border-right-style:solid;border-right-width:1px}.border-bottom{border-bottom-style:solid;border-bottom-width:1px}.border-left{border-left-style:solid;border-left-width:1px}.border-none{border:0}.rounded{border-radius:3px}.circle{border-radius:50%}.rounded-top{border-radius:3px 3px 0 0}.rounded-right{border-radius:0 3px 3px 0}.rounded-bottom{border-radius:0 0 3px 3px}.rounded-left{border-radius:3px 0 0 3px}.not-rounded{border-radius:0}.hide{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}@media (max-width:40em){.xs-hide{display:none!important}}@media (min-width:40em) and (max-width:52em){.sm-hide{display:none!important}}@media (min-width:52em) and (max-width:64em){.md-hide{display:none!important}}@media (min-width:64em){.lg-hide{display:none!important}}.display-none{display:none!important}
-</style>
-<style>
-body { background-color: #7a0019; margin: 0; padding: 0; font: 12px sans-serif; }
-path, line { shape-rendering: crispEdges; }
-svg { pointer-events: none; }
-.axis path, .axis line { fill: none; stroke: #000; stroke-width: 1px; }
-circle { stroke-width: 4px; stroke: #000; fill: none; }
-.hidden { display: none; }
-.multiselect { width: 200px; } 
-.selectBox { position: relative; }
-.overSelect { position: absolute; left: 0; right: 0; top: 0; bottom: 0; }
-#checkboxes { display: none; border: 1px #dadada solid; position:absolute; z-index:1; background-color: #FFF; }
-#title { background-color: #7a0019; color: #ffcc33; text-align: center;}
-h1, h3 { margin: 0.25em 0em; }
-#controls { min-height: 58px; background-color: #ffcc33; color: #7a0019; vertical-align:middle; }
-.mainControl { opacity: 0.9; width: 100%; background-color: #7a0019; border: 1px solid transparent; display:inline-block; border-radius: 3px; color: #ffcc33;}
-.mainControl:hover { opacity: 1; color: #FFF;}
-#update { height: 46px; font-size: 2em; }
-#checkboxes label { display: block; height: 2em; line-height: 1.5em; }
-#checkboxes label:hover { background-color: #1e90ff; } 
-#sidebar {word-wrap: break-word;}
-#chart { margin-right: 50px; margin-bottom: 50px; }
-.clearfix { background-color: #FFF; border-bottom: 0.5em solid #ffcc33; }
-.slider { -webkit-appearance: none; margin: 2px 0px 0px 0px; height: 12px; -webkit-transition: .2s; transition: opacity .2s; }
-.slider::-webkit-slider-thumb:hover { background: #FFF; }
-.slider::-moz-range-thumb:hover { background: #FFF; }
-.slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 10px; height: 10px; background: #ffcc33; cursor: pointer; }
-.slider::-moz-range-thumb { width: 10px; height: 10px; background: #ffcc33; cursor: pointer; }
-</style>
-</head>
-<body>
-<div class="clearfix">
-  <div id="title" class="col col-12"><h1>VKMZ</h1></div>
-  <div id="controls" class="col col-12">
-    <div id="sample_ids" class="col-right col-12 sm-col-6 md-col-3 lg-col-2 p1">
-      <h3>Visible Samples</h3>
-      <form>
-        <div class="selectBox" onclick="showCheckboxes()">
-          <select class="mainControl">
-            <option>Select Visible Samples</option>
-          </select>
-          <div class="overSelect"></div>
-        </div>
-        <div id="checkboxes">
-        </div>
-      </form>
-    </div>
-    <div class="col-right col-12 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>Opacity</h3>
-      <input id="opacity" class="mainControl slider" type="range" min="1" max="100" value="25">
-    </div>
-    <div class="col-right col-12 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>y-axis</h3>
-      <select id="y-axis" class="mainControl">
-        <option value="hc" selected="selected">H:C</option>
-        <option value="nc">N:C</option>
-        <option value="oc">O:C</option>
-      </select>
-    </div>
-    <div class="col-right col-12 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>x-axis</h3>
-      <select id="x-axis" class="mainControl">
-        <option value="hc">H:C</option>
-        <option value="nc">N:C</option>
-        <option value="oc" selected="selected">O:C</option>
-      </select>
-    </div>
-    <div class="col-right col-12 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>Threshold</h3>
-      <input id="intensity-threshold" class="mainControl slider" type="range" min="0" max="500" value="0">
-    </div>
-    <div class="col-right col-6 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>Max Size</h3>
-      <input id="size-max" class="mainControl" type="number" min="1" value="500" />
-    </div>
-    <div class="col-right col-6 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>Min Size</h3>
-      <input id="size-min" class="mainControl" type="number" min="0" value="1" />
-    </div>
-    <div class="col-right col-12 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>Sizer</h3>
-      <select id="size-algorithm" class="mainControl">
-        <option value="uniform">Uniform</option>
-        <option value="relative-intensity" selected="selected">Relative Intensity</option>
-        <option value="relative-log-intensity">Relative Log Intensity</option>
-      </select>
-    </div>
-    <div class="col col-12 sm-col-12 md-col-12 lg-col-3 p1";>
-      <input type="button" id="update" class="mainControl" onclick="redraw()" value="Update Diagram"/>
-    </div>
-  </div>
-  <div id="chart" class="col-right col-11 md-col-9" style="height: 500px;"></div>
-  <div id="sidebar" class="col col-12 md-col-2 p1">
-    <h3>Feature Info:</h3>
-    <p><strong>sample:</strong> <span id="sample_id">NA</span></p>
-    <p><strong>polarity:</strong> <span id="polarity">NA</span></p>
-    <p><strong>mz:</strong> <span id="mz">NA</span></p>
-    <p><strong>intensity:</strong> <span id="intensity">NA</span></p>
-    <p><strong>retention time:</strong> <span id="rt">NA</span></p>
-    <p><strong>predictions: </strong><span id="predictions">NA</span></p>
-  </div>
-</div>
-
-<script>
-var data = [{sample_id:'example sample id', polarity:'negative', mz:32, rt:500, intensity:2000, predictions:[[32.03, 'CH3OH', 0.03]], hc:4, oc:1, nc:0.0, size:200, color:0.5},{sample_id:'foo sample id', polarity:'negative', mz:44, rt:1000, intensity:1000, predictions:[[43.99, 'CO2', -0.01]], hc:0, oc:2, nc:0.0, size:100, color:1.0},{sample_id:'example sample id', polarity:'negative', mz:46, rt:250, intensity:3000, predictions:[[46.04, 'CH3CH2OH', 0.04]], hc:2.5, oc:0.5, nc:0.0, size:300, color:0.25}]
-
-d3.select("#checkboxes").selectAll("option")
-  .data(d3.map(data, d => d.sample_id).keys())
-    .enter()
-      .append("label")
-        .attr("id", d => d)
-        .attr("value",d => d)
-        .text(d=>d)
-        .append("input")
-        .attr("value", d => d)
-        .attr("class", "sample-checkbox")
-        .attr("type", "checkbox")
-        .property("checked", true)
-	.style("float", "left");
-
-var chartDiv = document.getElementById("chart");
-
-var margin = {top: 20, right: 10, bottom: 30, left: 40};
-
-function draw() {
-  var width = chartDiv.clientWidth;
-  var height = chartDiv.clientHeight;
-
-  var svg = d3.select("#chart").append("svg")
-    .attr("width", width + margin.left + margin.right)
-    .attr("height", height + margin.top + margin.bottom)
-    .style("float", "left")
-    .attr("position", "absolute")
-    .append("g")
-      .attr("transform", "translate(" + margin.left + " " + margin.top + ")");
-
-  var x = d3.scaleLinear()
-    .range([0, width]);
-
-  var y = d3.scaleLinear()
-    .range([height, 0]);
-
-  var xg = svg.append("g")
-    .attr("class", "x axis")
-    .attr("transform", "translate(0," + height + ")");
-
-  var yg = svg.append("g")
-    .attr("class", "y axis");
-
-  var chartArea = d3.select("#chart").append("div")
-    .style("margin-left", margin.left + "px")
-    .style("margin-top", margin.top + "px")
-    .style("float", "left")
-    .style("position", "absolute");
-
-  var canvas = chartArea.append("canvas")
-    .attr("width", width)
-    .attr("height", height)
-    .style("position", "absolute");
-
-  var offscreen = d3.select(document.createElement("canvas"))
-    .attr("width", width)
-    .attr("height", height)
-
-  var context = canvas.node().getContext("2d"),
-      picker = offscreen.node().getContext("2d");
-
-  context.fillStyle = "#f0f";
-
-  // Layer on top of canvas, example of selection details
-  var highlight = chartArea.append("svg")
-    .attr("width", width)
-    .attr("height", height)
-      .append("circle")
-        .classed("hidden", true);
-
-  var samples_active = [];
-
-  d3.selectAll("input.sample-checkbox:checked").each(function() {
-    samples_active.push(this.value)
-  });
-
-  var intensity_max = d3.max(data, d=> d.intensity);
-  var intensity_threshold = document.getElementById("intensity-threshold").value;
-  var data_visible = data.filter(d => samples_active.indexOf(d.sample_id) >= 0).filter(d => d.intensity/intensity_max >= Math.pow(intensity_threshold,2)/Math.pow(500,2));
-
-  var size_max = document.getElementById("size-max").value;
-  var size_min = document.getElementById("size-min").value;
-
-  var opacity = document.getElementById("opacity").value;
-
-  var size_algorithm = document.getElementById("size-algorithm").selectedIndex;
-
-  var x_axis = document.getElementById("x-axis").selectedIndex;
-  var y_axis = document.getElementById("y-axis").selectedIndex;
-
-  data_visible.forEach(function(d) {
-    if(size_algorithm == 0) {
-      temp = size_max*(1/Math.PI);
-    } else if (size_algorithm == 1) {
-      temp = size_max*((d.intensity/intensity_max)/Math.PI);
-    } else {
-      temp = size_max*((Math.log(d.intensity+1)/Math.log(intensity_max+1))/Math.PI);
-    }
-    if(temp > size_min) {
-      d.size = temp;
-    } else {
-      d.size = size_min;
-    }
-
-    if(x_axis == 0) {
-      d.x = d.hc;
-    } else if (x_axis == 1) {
-      d.x = d.nc;
-    } else {
-      d.x = d.oc; 
-    }
-    if(y_axis == 0) {
-      d.y = d.hc;
-    } else if (y_axis == 1) {
-      d.y = d.nc;
-    } else {
-      d.y = d.oc; 
-    }
-  });
-  // Redraw axes
-  x.domain([0, d3.max(data, d => d.x)]);
-  y.domain([0, d3.max(data, d => d.y)]);
-  xg.call(d3.axisBottom(x));
-  yg.call(d3.axisLeft(y)); 
-
-  var colors = {};
-
-  // Update canvas
-  context.clearRect(0, 0, width, height);
-  picker.clearRect(0, 0, width, height);
-
-  var rt_max = d3.max(data, d=> d.rt);
-
-  data_visible.forEach(function(p,i){
-    // Space out the colors a bit
-    var color = getColor(i * 1000 + 1);
-    colors[color] = p;
-    picker.fillStyle = "rgb(" + color + ")";
-
-    context.fillStyle = d3.interpolateViridis(p.rt/rt_max);
-    context.globalAlpha = opacity/100;
-
-    context.beginPath();
-    picker.beginPath();
-
-    context.arc(x(p.x), y(p.y), p.size, 0, 2 * Math.PI);
-    picker.arc(x(p.x), y(p.y), p.size, 0, 2 * Math.PI);
-
-    context.fill();
-    picker.fill();
-  });
-
-  canvas.on("mousemove",function(){
-    var xy = d3.mouse(this);
-
-    // Get pixel from offscreen canvas
-    var color = picker.getImageData(xy[0], xy[1], 1, 1).data;
-        selected = colors[color.slice(0,3).toString()];
-
-    highlight.classed("hidden", !selected);
-
-    // If it matches a point, highlight it
-    if (selected) {
-      highlight.attr("cx", x(selected.x))
-        .attr("cy", y(selected.y))
-        .attr("r", selected.size);
-    }
-  });
-
-  canvas.on("click",function(){
-    if (selected) {
-      console.log(selected);
-      document.getElementById("sample_id").innerHTML = selected.sample_id;
-      document.getElementById("polarity").innerHTML = selected.polarity;
-      document.getElementById("mz").innerHTML = selected.mz;
-      document.getElementById("intensity").innerHTML = selected.intensity;
-      document.getElementById("rt").innerHTML = selected.rt;
-      document.getElementById("predictions").innerHTML = selected.predictions;
-    }
-  });
-};
-
-function getColor(i) {
-  return (i % 256) + "," + (Math.floor(i / 256) % 256) + "," + (Math.floor(i / 65536) % 256);
-}
-
-// inital draw
-draw(); 
-
-function redraw() {
-  d3.select("#chart svg").remove();
-  d3.select("#chart div").remove();
-  draw();
-}
-
-// redraw on browser window resize
-window.addEventListener("resize", redraw);
-
-var samples_expanded = false;
-
-function showCheckboxes() {
-  var checkboxes = document.getElementById("checkboxes");
-  if (!samples_expanded) {
-    checkboxes.style.display = "block";
-    samples_expanded = true;
-  } else {
-    checkboxes.style.display = "none";
-    samples_expanded = false;
-  }
-}
-</script>
-</body>
-</html>
--- a/databases/bmrb-heavy.tsv	Tue Jul 10 17:58:35 2018 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6060 +0,0 @@
-17.03465497	CH4
-28.02235974	C2H2
-29.01128877	CHN
-30.0380098	C2H4
-31.01391952	CH2O
-33.02956959	CH4O
-33.0425889	CH5N
-35.02523313	CH3F
-45.00620339	CHNO
-45.0192227	CH2N2
-45.05701471	C3H6
-46.03292443	C2H4O
-46.04594373	C2H5N
-47.00883415	CH2O2
-47.02185345	CH3NO
-48.04857449	C2H6O
-48.0615938	C2H7N
-49.00672566	CH4S
-57.0206292	C3H2O
-57.03364851	C3H3N
-59.03627926	C3H4O
-60.01218898	C2H2O2
-60.98335946	CHNS
-61.02001402	C2H3O2
-61.05192933	C3H6O
-61.06494864	C3H7N
-62.02783905	C2H4O2
-62.04085836	C2H5NO
-63.00374877	CH2O3
-63.01676808	CH3NO2
-63.02978739	CH4N2O
-63.06757939	C3H8O
-63.0805987	C3H9N
-63.99903748	C2H3Cl
-64.02573056	C2H6S
-64.04348911	C2H6O2
-64.05650842	C2H7NO
-64.06952773	C2H8N2
-72.0396341	C4H4O
-73.01554382	C3H2O2
-73.04158244	C3H4N2
-74.05528417	C4H6O
-74.06830347	C4H7N
-75.03119389	C3H4O2
-75.04421319	C3H5NO
-75.0572325	C3H6N2
-76.00710361	C2H2O3
-76.07093423	C4H8O
-76.08395354	C4H9N
-77.04684395	C3H6O2
-77.05986326	C3H7NO
-78.00499512	C2H4OS
-78.02275367	C2H4O3
-78.03577298	C2H5NO2
-78.04879229	C2H6N2O
-78.0618116	C2H7N3
-78.08658429	C4H10O
-78.0996036	C4H11N
-79.00694345	CH4N2S
-79.02470201	CH4N2O2
-79.03772132	CH5N3O
-79.04473546	C3H8S
-79.06249401	C3H8O2
-79.07551332	C3H9NO
-79.08853263	C3H10N2
-79.9939521	C2H3ClO
-80.01841722	C2H3FO2
-80.02064518	C2H6OS
-80.03366449	C2H7NS
-80.03577909	C6H2
-82.00960217	C2H5ClO
-83.05925419	C6H5
-84.06707922	C6H6
-84.95671032	CH2Cl2
-84.98569341	CHNaO3
-85.05600825	C5H5N
-86.04493728	C4H4N2
-88.03454872	C4H4O2
-88.06058734	C4H6N2
-89.03649706	C3H4N2O
-89.04951637	C3H5N3
-89.07428907	C5H8O
-89.08730838	C5H9N
-90.0384454	C2H4N4
-90.05019879	C4H6O2
-90.0632181	C4H7NO
-90.11402941	C6H12
-91.02610851	C3H4O3
-91.03912782	C3H5NO2
-91.08993913	C5H10O
-91.10295844	C5H11N
-92.00201823	C2H2O4
-92.01503754	C2H3NO3
-92.06584885	C4H8O2
-92.07886816	C4H9NO
-92.09188747	C4H10N2
-92.12967948	C6H14
-92.99730694	C3H3ClO
-93.02400002	C3H6OS
-93.04175857	C3H6O3
-93.05477788	C3H7NO2
-93.06779719	C3H8N2O
-93.1055892	C5H12O
-93.1186085	C5H13N
-93.99990974	C2H4O2S
-94.04370691	C2H6N2O2
-94.05672622	C2H7N3O
-94.06374036	C4H10S
-94.08149892	C4H10O2
-94.10753753	C4H12N2
-95.01295701	C3H5ClO
-95.05740864	C3H8O3
-95.07042794	C3H9NO2
-95.9444151	C2Cl2
-95.98886673	C2H3ClO2
-95.99780125	C2H6S2
-96.0155598	C2H6O2S
-96.95117677	CH4Se
-96.99146952	CH4O3S
-97.96006516	C2H2Cl2
-99.08608412	C7H8
-99.97571522	C2H4Cl2
-99.98372092	C2H3KO2
-100.0619938	C6H6O
-100.0750132	C6H7N
-101.0379036	C5H4O2
-101.0509229	C5H5NO
-101.0639422	C5H6N2
-102.0268326	C4H3NO2
-102.0576574	C6H5F
-102.0776439	C6H8O
-104.0424827	C4H5NO2
-104.055502	C4H6N2O
-104.0685213	C4H7N3
-104.093294	C6H10O
-105.0314117	C3H4N2O2
-105.0692037	C5H8O2
-105.082223	C5H9NO
-106.0451134	C4H6O3
-106.0581327	C4H7NO2
-106.071152	C4H8N2O
-106.108944	C6H12O
-106.1219633	C6H13N
-107.0210231	C3H4O4
-107.0293032	C3H6N2S
-107.0340424	C3H5NO3
-107.0470617	C3H6N2O2
-107.0848538	C5H10O2
-107.0978731	C5H11NO
-108.0229715	C2H4N2O3
-108.0359908	C2H5N3O2
-108.0607635	C4H8O3
-108.0620294	C2H7N5
-108.0737828	C4H9NO2
-108.0868021	C4H10N2O
-108.1376134	C6H15N
-108.9922216	C3H3ClO2
-109.0189146	C3H6O2S
-109.0366732	C3H6O4
-109.0496925	C3H7NO3
-109.0627118	C3H8N2O2
-109.1265424	C5H14N2
-110.0716743	C4H11NS
-110.0894328	C4H11NO2
-111.0228113	CH6N4S
-111.045356	C3H6FNO2
-111.0627179	C7H5N
-111.9418696	C2FeN2
-111.9701817	C2H6Se
-112.0234937	C2H7NO2S
-112.051647	C6H4N2
-112.089439	C8H8
-112.9790701	C3H4Cl2
-112.9863841	CH4O4S
-112.9959	CH5O4P
-113.0089193	CH6NO3P
-113.040576	C5H3N3
-113.0653487	C7H6O
-114.0412584	C6H4O2
-114.0542777	C6H5NO
-114.0762813	C4H12ClN
-114.105089	C8H10
-115.0809987	C7H8O
-115.0940181	C7H9N
-116.0569085	C6H6O2
-116.0699278	C6H7NO
-116.0829471	C6H8N2
-117.0328182	C5H4O3
-117.0458375	C5H5NO2
-117.0588568	C5H6N2O
-117.0718761	C5H7N3
-117.1096681	C7H11N
-118.0087279	C4H2O4
-118.0281069	C6H5Cl
-118.0347665	C4H4N2O2
-118.0477858	C4H5N3O
-118.0655913	C6H6FN
-118.0725585	C6H8O2
-118.917738	CHCl3
-119.0484682	C5H6O3
-119.0614876	C5H7NO2
-119.0875262	C5H9N3
-120.024378	C4H4O4
-120.0373973	C4H5NO3
-120.0504166	C4H6N2O2
-120.0634359	C4H7N3O
-120.07045	C6H10S
-120.0882086	C6H10O2
-120.1012279	C6H11NO
-121.0002877	C3H2O5
-121.013307	C3H3NO4
-121.0641183	C5H8O3
-121.0771376	C5H9NO2
-121.0901569	C5H10N2O
-121.1279489	C7H14O
-122.021132	C3H4NO4
-122.040028	C4H6O4
-122.0530473	C4H7NO3
-122.1038587	C6H12O2
-122.1676893	C8H18
-122.9981792	C3H4O3S
-123.0159378	C3H4O5
-123.0242178	C3H6N2OS
-123.0289571	C3H5NO4
-123.0419764	C3H6N2O3
-123.0549957	C3H7N3O2
-123.0797684	C5H10O3
-123.0927877	C5H11NO2
-123.105807	C5H12N2O
-124.020161	C4H8S2
-124.0379195	C4H8O2S
-124.0509389	C4H9NOS
-124.0556781	C4H8O4
-124.0686974	C4H9NO3
-124.0817167	C4H10N2O2
-124.9539056	CH5AsO2
-125.0268486	C3H7NO2S
-125.989739	C2H4O4S
-125.9992548	C2H5O4P
-126.0713282	C4H10O4
-126.0817228	C8H7N
-126.0843475	C4H11NO3
-126.9751646	CH3O5P
-127.0117208	C3H8OS2
-127.0158056	C3H6ClNO2
-127.0706519	C7H6N2
-127.1084439	C9H10
-127.9698719	C2H6S3
-128.005389	C2H6O4S
-128.0149049	C2H7O4P
-128.0184084	C2H7NO3S
-128.0279242	C2H8NO3P
-128.0843536	C8H8O
-128.9061952	CH2BrCl
-129.0485099	C5H4N4
-129.0602633	C7H6O2
-129.0732826	C7H7NO
-129.0863019	C7H8N2
-129.1240939	C9H12
-130.0314338	C6H5NS
-130.036173	C6H4O3
-130.0491923	C6H5NO2
-130.0622116	C6H6N2O
-130.1000036	C8H10O
-130.113023	C8H11N
-130.9896347	C3H6Cl2O
-131.0511407	C5H5N3O
-131.0759134	C7H8O2
-131.101952	C7H10N2
-131.9210928	C2HCl3
-132.0518231	C6H6O3
-132.0648424	C6H7NO2
-132.0778617	C6H8N2O
-133.0407521	C5H5NO3
-133.0471118	C7H7Cl
-133.0537714	C5H6N2O2
-133.0667907	C5H7N3O
-133.0915634	C7H10O2
-134.0230215	C6H5ClO
-134.0296811	C4H4N2O3
-134.0360408	C6H6ClN
-134.0427005	C4H5N3O2
-134.0557198	C4H6N4O
-134.0674732	C6H8O3
-134.0804925	C6H9NO2
-134.1065311	C6H11N3
-134.1313038	C8H14O
-134.1443231	C8H15N
-135.0186102	C3H3N3O3
-135.0316295	C3H4N4O2
-135.0433829	C5H6O4
-135.0446488	C3H5N5O
-135.0564022	C5H7NO3
-135.0576681	C3H6N6
-135.0694215	C5H8N2O2
-135.0824408	C5H9N3O
-135.1072135	C7H12O2
-135.1202328	C7H13NO
-136.0192926	C4H4O5
-136.0253447	C4H3FN2O2
-136.0323119	C4H5NO4
-136.040592	C4H7N3S
-136.0831232	C6H10O3
-136.0961425	C6H11NO2
-136.1091618	C6H12N2O
-136.1221811	C6H13N3
-136.1469538	C8H16O
-136.1599731	C8H17N
-136.9727045	C3H3NOS2
-137.0212409	C3H4N2O4
-137.0412744	C5H8O2S
-137.0590329	C5H8O4
-137.0720522	C5H9NO3
-137.0850716	C5H10N2O2
-137.0980909	C5H11N3O
-137.1228636	C7H14O2
-137.1358829	C7H15NO
-138.0349427	C4H6O5
-138.047962	C4H7NO4
-138.0609813	C4H8N2O3
-138.0740006	C4H9N3O2
-138.0961486	C10H8
-138.0987733	C6H12O3
-138.1000392	C4H11N5
-138.1117926	C6H13NO2
-138.1248119	C6H14N2O
-138.1626039	C8H18O
-138.1756232	C8H19N
-139.036891	C3H6N2O4
-139.0499103	C3H7N3O3
-139.0569244	C5H10O2S
-139.0629296	C3H8N4O2
-139.0699438	C5H11NOS
-139.074683	C5H10O4
-139.0850777	C9H7N
-139.1007216	C5H12N2O2
-139.1137409	C5H13N3O
-139.1267602	C5H14N4
-139.9453333	C3FeN3
-140.0328342	C4H8O3S
-140.0458535	C4H9NO2S
-140.0505927	C4H8O5
-140.063612	C4H9NO4
-140.0766313	C4H10N2O3
-140.1534813	C6H17N3
-140.9488203	CH5AsO3
-141.0182597	C3H7O4P
-141.0877084	C9H8O
-141.0903331	C5H12O4
-141.0986131	C5H14N2S
-141.1007277	C9H9N
-141.9846536	C2H4O5S
-141.9941695	C2H5O5P
-142.0518647	C6H4N4
-142.0766374	C8H7NO
-142.0896568	C8H8N2
-142.1274488	C10H12
-142.9830985	CH4NO5P
-143.0339098	C3H9O4P
-143.0374133	C3H9NO3S
-143.0469291	C3H10NO3P
-143.0785858	C7H7N3
-143.1033585	C9H10O
-143.1163778	C9H11N
-143.9825451	C2H6O3S2
-144.0228388	C2H8NO4P
-144.0536636	C4H10FO2P
-144.0675148	C6H6N4
-144.0792682	C8H8O2
-144.0922875	C8H9NO
-144.1430988	C10H14
-145.0434245	C5H4N4O
-145.0551779	C7H6O3
-145.0564438	C5H5N5
-145.0681972	C7H7NO2
-145.1190085	C9H12O
-145.1320279	C9H13N
-146.0193343	C4H2N4O2
-146.0310876	C6H4O4
-146.044107	C6H5NO3
-146.0571263	C6H6N2O2
-146.0701456	C6H7N3O
-146.0831649	C6H8N4
-146.0949183	C8H10O2
-146.1079376	C8H11NO
-146.1209569	C8H12N2
-146.1587489	C10H16
-147.0200167	C5H3NO4
-147.0263764	C7H5ClO
-147.0508415	C7H5FO2
-147.070828	C7H8O3
-147.0838473	C7H9NO2
-147.0968666	C7H10N2O
-147.1346586	C9H14O
-147.9160075	C2HCl3O
-148.0289792	C6H6O2S
-148.0467377	C6H6O4
-148.059757	C6H7NO3
-148.0727763	C6H8N2O2
-148.0857956	C6H9N3O
-148.0988149	C6H10N4
-148.1105683	C8H12O2
-148.1235876	C8H13NO
-148.9557478	C3H5Cl3
-149.0420264	C7H7ClO
-149.048686	C5H6N2O3
-149.0864781	C7H10O3
-149.0994974	C7H11NO2
-149.163328	C9H17N
-149.9316575	C2H3Cl3O
-150.0179361	C6H5ClO2
-150.0576485	C6H9NOS
-150.0623878	C6H8O4
-150.0754071	C6H9NO3
-150.0884264	C6H10N2O2
-150.1014457	C6H11N3O
-150.1262184	C8H14O2
-150.1392377	C8H15NO
-151.0068652	C5H4ClNO2
-151.0335582	C5H7NO2S
-151.0382975	C5H6O5
-151.0395634	C3H5N5O2
-151.0513168	C5H7NO4
-151.0576765	C7H9ClO
-151.0843696	C7H12OS
-151.1021281	C7H12O3
-151.1151474	C7H13NO2
-151.178978	C9H19N
-151.9891346	C6H4Cl2
-152.0142072	C4H4O6
-152.0224873	C4H6N2O2S
-152.0335862	C6H7ClO2
-152.0402458	C4H6N2O4
-152.0425207	C6H10S2
-152.0602793	C6H10O2S
-152.0780378	C6H10O4
-152.0910571	C6H11NO3
-152.1040765	C6H12N2O2
-152.1418685	C8H16O2
-152.1548878	C8H17NO
-152.9847232	C3H2ClN3O2
-152.9977425	C3H3ClN4O
-153.0094959	C5H5ClO3
-153.0107618	C3H4ClN5
-153.036189	C5H8O3S
-153.0492083	C5H9NO2S
-153.0539476	C5H8O5
-153.0669669	C5H9NO4
-153.0799862	C5H10N2O3
-153.0930055	C5H11N3O2
-153.1060248	C5H12N4O
-153.1151535	C11H10
-153.9943402	C4H6O2S2
-154.0047846	C6H6Cl2
-154.0298573	C4H6O6
-154.0428766	C4H7NO5
-154.0558959	C4H8N2O4
-154.0689152	C4H9N3O3
-154.0910633	C10H8O
-154.0936879	C6H12O4
-154.1040826	C10H9N
-154.1067072	C6H13NO3
-154.1197265	C6H14N2O2
-154.1327458	C6H15N3O
-154.1575185	C8H18O2
-154.9880084	C3H4O5S
-154.9975243	C3H5O5P
-155.0381653	C5H8ClNO2
-155.0470998	C5H11NS2
-155.0648584	C5H11NO2S
-155.066973	C9H6O2
-155.0695976	C5H10O5
-155.0799923	C9H7NO
-155.1724862	C7H19N3
-156.0099902	C4H8O2S2
-156.055902	C8H5NO2
-156.0689213	C8H6N2O
-156.0738209	C6H14S2
-156.1223573	C6H15NO3
-156.1614152	C6H18N4
-156.9989193	C3H7NO2S2
-157.0131744	C3H7O5P
-157.0166778	C3H7NO4S
-157.082623	C9H8O2
-157.0852477	C5H12O5
-157.0956424	C9H9NO
-157.1086617	C9H10N2
-157.9890841	C2H5O6P
-158.0256403	C4H10O2S2
-158.0529147	C4H11O4P
-158.0537935	C8H7NS
-158.0585328	C8H6O3
-158.0650679	C6H9NaO3
-158.065934	C4H12NO3P
-158.0715521	C8H7NO2
-158.1223634	C10H12O
-158.1353827	C10H13N
-159.00155	C3H8O3S2
-159.0288244	C3H9O5P
-159.0418437	C3H10NO4P
-159.0474618	C7H5NO3
-159.0982731	C9H10O2
-159.1112924	C9H11NO
-159.1243117	C9H12N2
-160.0427505	C8H6ClN
-160.0741828	C8H8O3
-160.0754487	C6H7N5
-160.0872021	C8H9NO2
-160.1380134	C10H14O
-160.1510328	C10H15N
-161.0205806	C5H4N4S
-161.0383392	C5H4N4O2
-161.0406639	C5H11Cl2N
-161.0500925	C7H6O4
-161.0513585	C5H5N5O
-161.0631119	C7H7NO3
-161.0761312	C7H8N2O2
-161.1139232	C9H12O2
-161.1269425	C9H13NO
-161.9598827	C2H6Te
-161.9775918	C6H5Br
-162.0260023	C6H4O5
-162.0390216	C6H5NO4
-162.0453813	C8H7ClO
-162.0520409	C6H6N2O3
-162.0898329	C8H10O3
-162.0910988	C6H9N5
-162.1028522	C8H11NO2
-162.1536635	C10H16O
-162.1666828	C10H17N
-163.021291	C7H5ClO2
-163.0279506	C5H4N2O4
-163.0343103	C7H6ClNO
-163.0657426	C7H8O4
-163.1048005	C7H11N3O
-163.1295732	C9H14O2
-163.1425925	C9H15NO
-163.9109221	C2HCl3O2
-164.01022	C6H4ClNO2
-164.0416523	C6H6O5
-164.0499324	C6H8N2OS
-164.0546716	C6H7NO4
-164.0676909	C6H8N2O3
-164.0807103	C6H9N3O2
-164.1185023	C8H13NO2
-164.1693136	C10H18O
-165.036941	C7H7ClO2
-165.0436007	C5H6N2O4
-165.0696393	C5H8N4O2
-165.0813927	C7H10O4
-165.0826586	C5H9N5O
-165.094412	C7H11NO3
-165.1452233	C9H16O2
-165.1582426	C9H17NO
-165.8821205	C2Cl4
-165.9265721	C2H3Cl3O2
-166.0128508	C6H5ClO3
-166.045549	C4H6N4O3
-166.0573024	C6H8O5
-166.0703217	C6H9NO4
-166.083341	C6H10N2O3
-166.1185084	C12H10
-166.121133	C8H14O3
-166.1341523	C8H15NO2
-166.1849636	C10H20O
-166.9707911	C3H4Cl2F2O
-167.0332121	C5H6O6
-167.0462314	C5H7NO5
-167.0501419	C7H6NNaO2
-167.0592507	C5H8N2O4
-167.0944181	C11H8O
-167.0970427	C7H12O4
-167.110062	C7H13NO3
-167.1608734	C9H18O2
-167.9840492	C6H4Cl2O
-167.9970685	C6H5Cl2N
-168.0374354	C6H10OS2
-168.0551939	C6H10O3S
-168.0703278	C10H6O2
-168.0729525	C6H10O5
-168.0859718	C6H11NO4
-168.0963664	C10H8N2
-168.0989911	C6H12N2O3
-168.1120104	C6H13N3O2
-168.1341584	C12H12
-168.1367831	C8H16O3
-168.138049	C6H15N5
-168.1498024	C8H17NO2
-168.2006137	C10H22O
-169.0441229	C5H9NO3S
-169.0488622	C5H8O6
-169.0571422	C5H10N2O2S
-169.0618815	C5H9NO5
-169.1100682	C11H10O
-169.1126928	C7H14O4
-169.1257121	C7H15NO3
-169.1387314	C7H16N2O2
-170.0838633	C6H13NO2S
-170.0859779	C10H8O2
-170.0886025	C6H12O5
-170.0989972	C10H9NO
-170.1016218	C6H13NO4
-170.1120165	C10H10N2
-170.1146411	C6H14N2O3
-170.1914911	C8H21N3
-170.9829231	C3H4O6S
-170.9924389	C3H5O6P
-171.0110484	C3H2F6O
-171.0420144	C5H11NOS2
-171.059773	C5H11NO3S
-171.0618876	C9H6O3
-171.0645122	C5H10O6
-171.0749069	C9H7NO2
-171.1387375	C11H13N
-171.9757591	C2H8AsNO3
-172.0321793	C4H9O5P
-172.0898746	C8H8N4
-172.0913134	C8H9BO3
-172.1016279	C10H10O2
-172.1146473	C10H11NO
-172.1276666	C10H12N2
-172.9712997	C3H7NO2Se
-172.9985731	C3H6O6S
-173.008089	C3H7O6P
-173.0115924	C3H7NO5S
-173.0211083	C3H8NO5P
-173.0376311	C3H9N3O3S
-173.0775377	C9H8O3
-173.090557	C9H9NO2
-173.1035763	C9H10N2O
-174.0300708	C4H11O3PS
-174.041694	C6H4N4O2
-174.0534474	C8H6O4
-174.0547133	C6H5N5O
-174.0608486	C4H12NO4P
-174.0664667	C8H7NO3
-174.079486	C8H8N2O2
-174.117278	C10H12O2
-174.1302973	C10H13NO
-174.1433166	C10H14N2
-175.0068593	C7H5NS2
-175.023739	C3H9O6P
-175.0423764	C7H5NO4
-175.0553957	C7H6N2O3
-175.0773994	C5H13ClN2O2
-175.0905631	C13H6
-175.0931877	C9H10O3
-175.0944536	C7H9N5
-175.106207	C9H11NO2
-175.1192263	C9H12N2O
-175.1570184	C11H16O
-175.1700377	C11H17N
-175.9593201	C4H4FeO4
-175.9949031	C4H5CaNO4
-176.0395855	C6H6N4S
-176.0643582	C8H9NOS
-176.0690974	C8H8O4
-176.0703634	C6H7N5O
-176.0773775	C8H10N2S
-176.0821168	C8H9NO3
-176.1329281	C10H14O2
-176.1459474	C10H15NO
-177.0135748	C7H4ClNO2
-177.0265942	C7H5ClN2O
-177.0285145	C5H5N5S
-177.0332538	C5H4N4O3
-177.0450072	C7H6O5
-177.0462731	C5H5N5O2
-177.0580265	C7H7NO4
-177.1062131	C13H8
-177.1088378	C9H12O3
-177.1218571	C9H13NO2
-177.9725064	C6H5BrO
-178.029197	C6H6N2O2S
-178.0402959	C8H7ClO2
-178.0533152	C8H8ClNO
-178.0729941	C6H8N4O2
-178.0847475	C8H10O4
-178.0860134	C6H9N5O
-178.0977668	C8H11NO3
-178.0990327	C6H10N6
-178.1107861	C8H12N2O2
-178.1238054	C8H13N3O
-178.1485781	C10H16O2
-178.9847733	C7H3Cl2N
-179.0311453	C5H6N4OS
-179.0428987	C7H8O3S
-179.0489038	C5H6N4O3
-179.055918	C7H9NO2S
-179.0606572	C7H8O5
-179.0689373	C7H10N2OS
-179.0736765	C7H9NO4
-179.0997152	C7H11N3O2
-179.1218632	C13H10
-179.1244879	C9H14O3
-179.2013378	C11H21N
-179.9696673	C4H7Cl3O
-179.9921153	C6H3ClO4
-180.0188084	C6H6O4S
-180.0283243	C6H7O4P
-180.0318277	C6H7NO3S
-180.036567	C6H6O6
-180.044847	C6H8N2O2S
-180.0626056	C6H8N2O4
-180.0886442	C6H10N4O2
-180.0977729	C12H8O
-180.1003976	C8H12O4
-180.1107922	C12H9N
-180.1134169	C8H13NO3
-180.1264362	C8H14N2O2
-180.1642282	C10H18O2
-180.1772475	C10H19NO
-181.0385622	C7H7FO2S
-181.044392	C6H7O6
-181.0763073	C7H10O5
-181.0893266	C7H11NO4
-181.1023459	C7H12N2O3
-181.2039685	C11H22O
-182.0077654	C6H5ClO4
-182.052217	C6H8O6
-182.0652363	C6H9NO5
-182.0782556	C6H10N2O4
-182.0912749	C6H11N3O3
-182.113423	C12H10O
-182.1160476	C8H14O4
-182.1264423	C12H11N
-182.1290669	C8H15NO3
-182.1798783	C10H20O2
-182.2437089	C12H26
-183.0142786	C7H5NaO2S
-183.0450565	C7H6NNaO3
-183.0487716	C5H8ClN5
-183.0541654	C5H8N2O5
-183.0671847	C5H9N3O4
-183.0893327	C11H8O2
-183.0919574	C7H12O5
-183.1049767	C7H13NO4
-183.117996	C7H14N2O3
-183.1310153	C7H15N3O2
-183.1440346	C7H16N4O
-183.1531633	C13H14
-183.9789638	C6H4Cl2O2
-183.9992972	C4H5NO5S
-184.0561137	C4H8N4O4
-184.0631278	C6H11NO3S
-184.0652424	C10H6O3
-184.0678671	C6H10O6
-184.0782617	C10H7NO2
-184.0808864	C6H11NO5
-184.106925	C6H13N3O3
-184.1199443	C6H14N4O2
-184.1316977	C8H16O4
-184.1459829	C6H16N6
-185.0390376	C5H9NO4S
-185.0520569	C5H10N2O3S
-185.095854	C5H12N4O3
-185.1049828	C11H10O2
-185.1076074	C7H14O5
-185.1180021	C11H11NO
-185.1310214	C11H12N2
-185.9420043	C2H5AsO5
-185.9501623	C6H3Cl3
-185.9841694	C4H6O4S2
-185.9946139	C6H6Cl2O2
-186.0206525	C6H8Cl2N2
-186.0657586	C6H12O4S
-186.0787779	C6H13NO3S
-186.0808925	C10H8O3
-186.0835171	C6H12O6
-186.0939118	C10H9NO2
-186.0965365	C6H13NO5
-186.1069311	C10H10N2O
-186.1095558	C6H14N2O4
-186.1577424	C12H15N
-186.9814979	C3H2ClF5O
-186.9873535	C3H5O7P
-187.0191705	C5H11NS3
-187.0511842	C5H11O5P
-187.0568022	C9H6O4
-187.0642035	C5H12NO4P
-187.0677069	C5H12N2O3S
-187.0828408	C9H8N2O2
-187.1206328	C11H12O2
-187.1466715	C11H14N2
-187.874685	C2H4Br2
-187.9903046	C4H9NO2Se
-188.0223546	C4H10NO3PS
-188.0270939	C4H9O6P
-188.0776466	C9H8NO3
-188.0791807	C6H11FO5
-188.0909245	C6H15O4P
-188.0965426	C10H10O3
-188.0978085	C8H9N5
-188.0991672	C6H14O6
-188.1225812	C10H12N2O
-188.1356005	C10H13N3
-188.1733925	C12H17N
-189.0030036	C3H7O7P
-189.0065071	C3H7NO6S
-189.0160229	C3H8NO6P
-189.0703377	C5H13NO4S
-189.0724523	C9H8O4
-189.0798535	C5H14NO4P
-189.0854716	C9H9NO3
-189.0984909	C9H10N2O2
-189.1074752	C7H16ClNO2
-189.1106783	C7H16FO2P
-189.1362829	C11H14O2
-189.1493022	C11H15NO
-189.8983633	C2H4S5
-190.0258642	C8H7NS2
-190.048362	C8H6O5
-190.0496279	C6H5N5O2
-190.0613813	C8H7NO4
-190.0744006	C8H8N2O3
-190.0865881	C6H14FO3P
-190.0874199	C8H9N3O2
-190.1008829	C6H12F2N2O2
-190.1121926	C10H12O3
-190.1252119	C10H13NO2
-190.1382312	C10H14N2O
-190.1760233	C12H18O
-190.9736207	C3H8O3S3
-190.9972901	C3F8
-191.0195325	C7H5NO3S
-191.0242717	C7H4O6
-191.0503103	C7H6N2O4
-191.076349	C7H8N4O2
-191.0881024	C9H10O4
-191.0963824	C9H12N2S
-191.1011217	C9H11NO3
-191.114141	C9H12N2O2
-191.1271603	C9H13N3O
-191.151933	C11H16O2
-191.1649523	C11H17NO
-192.0262201	C6H4N2O5
-192.0640121	C8H8O5
-192.0770314	C8H9NO4
-192.1252181	C14H10
-192.1278427	C10H14O3
-192.1538813	C10H16N2O
-192.1916733	C12H20O
-192.2046926	C12H21N
-193.0221632	C7H6O4S
-193.0281684	C5H4N4O4
-193.0399218	C7H6O6
-193.0529411	C7H7NO5
-193.091999	C7H10N4O2
-193.0967852	C9H10FNO2
-193.1011278	C13H8O
-193.1037524	C9H12O4
-193.1167717	C9H13NO3
-193.167583	C11H18O2
-194.0352105	C8H7ClO3
-194.0612491	C8H9ClN2O
-194.0770375	C12H6O2
-194.0809281	C6H9N5O2
-194.0939474	C6H10N6O
-194.1030761	C12H8N2
-194.1057008	C8H12N2O3
-194.1120604	C10H14ClN
-194.1187201	C8H13N3O2
-194.1434928	C10H16O3
-194.1565121	C10H17NO2
-195.0378133	C7H8O4S
-195.0555719	C7H8O6
-195.0603485	C7H10NO3P
-195.0638519	C7H10N2O2S
-195.0685912	C7H9NO5
-195.0816105	C7H10N2O4
-195.1167778	C13H10O
-195.1194025	C9H14O4
-195.1324218	C9H15NO3
-195.1832331	C11H20O2
-195.1962524	C11H21NO
-196.013723	C6H6O5S
-196.0267423	C6H7NO4S
-196.0314816	C6H6O7
-196.0926876	C12H8O2
-196.0953122	C8H12O5
-196.1083315	C8H13NO4
-196.1187262	C12H10N2
-196.1591428	C10H18O3
-196.2229734	C12H24O
-196.9823187	C7H4Cl2O2
-196.995338	C7H5Cl2NO
-197.0464492	C5H7N3O5
-197.0685973	C11H6O3
-197.0712219	C7H10O6
-197.0842412	C7H11NO5
-197.0972605	C7H12N2O4
-197.1036202	C9H14ClNO
-197.1303133	C9H17NOS
-197.1350525	C9H16O4
-197.1480719	C9H17NO3
-197.1988832	C11H22O2
-197.2627138	C13H28
-197.8969346	C2HBrClF3
-198.00268	C6H5ClO5
-198.0471316	C6H8O7
-198.0601509	C6H9NO6
-198.0601883	C6H12N3PS
-198.0677766	C6H10ClN5
-198.0731703	C6H10N2O5
-198.0861896	C6H11N3O4
-198.106223	C8H15NO2S
-198.1083376	C12H10O2
-198.1109623	C8H14O5
-198.1213569	C12H11NO
-198.1239816	C8H15NO4
-198.1343762	C12H12N2
-198.1370009	C8H16N2O3
-198.1433606	C10H18ClN
-198.1630395	C8H18N4O
-198.1721682	C14H16
-198.1747929	C10H20O3
-198.1878122	C10H21NO2
-198.2386235	C12H26O
-199.0821327	C7H13NO3S
-199.0842473	C11H8O3
-199.086872	C7H12O6
-199.095152	C7H14N2O2S
-199.110286	C11H10N2O
-199.1129106	C7H14N2O4
-199.1259299	C7H15N3O3
-199.1389492	C7H16N4O2
-199.1459634	C9H19NOS
-199.1767412	C9H20N2O2
-199.1897605	C9H21N3O
-199.9907084	C4H5O7P
-200.0183301	C6H7ClO5
-200.0601571	C10H6O4
-200.0627817	C6H10O7
-200.0731764	C10H7NO3
-200.075801	C6H11NO6
-200.0795361	C12H9Cl
-200.099215	C10H9N3O
-200.1148589	C6H14N4O3
-200.1239877	C12H12O2
-200.1266123	C8H16O5
-200.1500263	C12H14N2
-201.0621054	C9H6N2O3
-201.0998974	C11H10O3
-201.102522	C7H14O6
-201.1129167	C11H11NO2
-201.125936	C11H12N2O
-201.1767473	C13H17N
-201.9450769	C6H3Cl3O
-202.0063584	C4H7O7P
-202.0313555	C10H5ClO2
-202.0710679	C10H9NOS
-202.0758071	C10H8O4
-202.0784318	C6H12O7
-202.0888264	C10H9NO3
-202.0914511	C6H13NO6
-202.1396377	C12H14O2
-202.1526571	C12H15NO
-202.1656764	C12H16N2
-202.9551197	C3H6BrNO4
-203.0093095	C5H11NO2Se
-203.0188244	C5H10O4S2
-203.0213261	C3H8N3O5P
-203.0496022	C5H11NO5S
-203.0591181	C5H12NO5P
-203.0647362	C9H7NO4
-203.0907748	C9H9N3O2
-203.1155475	C11H12O3
-203.1311914	C7H17NO5
-203.1415861	C11H14N2O
-203.9607269	C6H5Cl3O
-204.0206315	C4H3F7O
-204.0220085	C4H9O7P
-204.0350278	C4H10NO6P
-204.0610664	C4H12N3O4P
-204.0914572	C10H10O4
-204.1044765	C10H11NO3
-204.1174958	C10H12N2O2
-204.1494111	C11H15N2O
-204.1552878	C12H16O2
-204.1683071	C12H17NO
-204.9611289	C3H7NO4Se
-204.9836631	C3H7NO5S2
-205.0344744	C5H12O4S2
-205.0673669	C9H8O5
-205.0803862	C9H9NO4
-205.1311975	C11H14O3
-205.1442168	C11H15NO2
-205.1572361	C11H16N2O
-205.1950282	C13H20O
-206.0315232	C6H4N4O4
-206.0376586	C4H11O7P
-206.0432766	C8H6O6
-206.0562959	C8H7NO5
-206.060541	C6H14ClNO2S
-206.0953539	C8H10N4O2
-206.1071073	C10H12O4
-206.1201266	C10H13NO3
-206.1331459	C10H14N2O2
-206.1709379	C12H18O2
-207.083017	C9H10O5
-207.0842829	C7H9N5O2
-207.0960363	C9H11NO4
-207.1154153	C11H14ClN
-207.9812353	C2H8O7P2
-208.0471733	C6H6N4O4
-208.0589267	C8H8O6
-208.071946	C8H9NO5
-208.0849653	C8H10N2O4
-208.0979846	C8H11N3O3
-208.1043443	C10H13ClN2
-208.1201327	C14H10O
-208.1227573	C10H14O4
-208.133152	C14H11N
-208.1357766	C10H15NO3
-208.1487959	C10H16N2O2
-208.1865879	C12H20O2
-209.0170779	C7H6O5S
-209.0265937	C7H7O5P
-209.0348364	C7H6O7
-209.0542154	C9H9ClO3
-209.0738943	C7H9N3O4
-209.0960424	C13H8O2
-209.1247057	C9H14N2O3
-209.9923331	C6H3ClN2O4
-210.0806289	C8H9FN2O3
-210.1006154	C8H12N2O4
-210.1088954	C8H14N4S
-210.1136347	C8H13N3O3
-210.1396733	C8H15N5O
-210.1514267	C10H17NO3
-210.202238	C12H22O2
-211.0387331	C5H6N4O5
-211.0504865	C7H8O7
-211.0698655	C9H11ClO3
-211.1116925	C13H10O2
-211.1143171	C9H14O5
-212.0263962	C6H6O8
-212.1006215	C12H9NO2
-212.1032461	C8H13NO5
-212.1136408	C12H10N2O
-212.1162654	C8H14N2O4
-212.1266601	C12H11N3
-212.1514328	C14H14O
-212.1540574	C10H18O4
-212.1670768	C10H19NO3
-212.1931154	C10H21N3O
-212.2061347	C10H22N4
-212.2178881	C12H24O2
-212.2309074	C12H25NO
-212.972494	C7H5Cl2NS
-213.0014771	C7H4NNaO3S
-213.0177261	C7H11BrO2
-213.0635119	C11H6O4
-213.0661365	C7H10O7
-213.071792	C11H8N2S
-213.0867815	C7H12ClN5
-213.1273425	C13H12O2
-213.1299672	C9H16O5
-213.1429865	C9H17NO4
-213.1533811	C13H14N2
-213.1911731	C15H18
-213.953143	C6H2Cl2O4
-213.9791816	C6H4Cl2N2O2
-214.0169736	C8H8Cl2O2
-214.0703598	C8H14O2S2
-214.0833791	C8H15NOS2
-214.1032522	C12H10O3
-214.1162715	C12H11NO2
-214.1319155	C8H16N2O4
-214.1423102	C12H13N3
-214.1579541	C8H18N4O2
-215.0640281	C7H12O5S
-215.079162	C11H8O4
-215.0921813	C11H9NO3
-215.0960718	C5H12N6O3
-215.1052006	C11H10N2O2
-215.1338638	C7H16N4O3
-215.1429926	C13H14O2
-215.1586365	C9H19NO4
-215.1690312	C13H16N2
-215.9687931	C6H4Cl2O4
-216.0576963	C6H10O8
-216.068091	C10H7NO4
-216.0744507	C12H9ClO
-216.0860098	C8H16O2S2
-216.0990291	C8H17NOS2
-216.1071489	C10H10N4O
-216.1130256	C11H11N2O2
-216.1189023	C12H12O3
-216.1319216	C12H13NO2
-216.1345463	C8H17NO5
-216.1827329	C14H18O
-216.2113962	C10H24N2O2
-216.2374348	C10H26N4
-216.9640818	C7H5Cl3O
-217.0309814	C9H4O6
-217.038607	C9H5ClN4
-217.0475913	C7H11Cl2N3
-217.094812	C11H10O4
-217.0974367	C7H14O7
-217.1030921	C11H12N2S
-217.1078313	C11H11NO3
-217.1208506	C11H12N2O2
-217.13387	C11H13N3O
-217.1586426	C13H16O2
-217.171662	C13H17NO
-217.2224733	C15H22
-217.9399915	C6H3Cl3O2
-218.0012731	C4H7O8P
-218.0142924	C4H8NO7P
-218.040331	C4H10N3O5P
-218.0707217	C10H8O5
-218.0790018	C10H10N2OS
-218.0837411	C10H9NO4
-218.1319277	C16H10
-218.1345524	C12H14O3
-218.1358183	C10H13N5
-218.1475717	C12H15NO2
-218.160591	C12H16N2O
-219.0042241	C5H11NO3Se
-219.0410134	C5H11O7P
-219.0856894	C9H9N3O3
-219.0930906	C5H15N4O3P
-219.1104621	C11H12O4
-219.1130867	C7H16O7
-219.1187422	C11H14N2S
-219.1234814	C11H13NO3
-219.1247473	C9H12N6
-219.1365007	C11H14N2O2
-219.1742927	C13H18O2
-219.187312	C13H19NO
-219.2381233	C15H24
-219.9556416	C6H5Cl3O2
-219.9870241	C8H4O3S2
-219.9991646	C4H9O6PS
-220.0169231	C4H9O8P
-220.0299424	C4H10NO7P
-220.0863718	C10H10O5
-220.0993911	C10H11NO4
-220.1124104	C10H12N2O3
-220.1502024	C12H16O3
-220.1514684	C10H15N5
-220.1632217	C12H17NO2
-220.1762411	C12H18N2O
-220.2140331	C14H22O
-221.0150608	C5H9Cl2N3O2
-221.0566635	C5H13O7P
-221.0622815	C9H8O6
-221.0649435	C5H15N2O3PS
-221.0696828	C5H14NO6P
-221.0753008	C9H9NO5
-221.1076991	C11H13ClN2
-221.1083536	C11H14O2S
-221.1143588	C9H12N4O2
-221.1261122	C11H14O4
-221.1391315	C11H15NO3
-221.1521508	C11H16N2O2
-221.1651701	C11H17N3O
-221.1899428	C13H20O2
-221.2029621	C13H21NO
-221.92684	C6H4Cl4
-221.9881315	C4H6N4O3S2
-221.9897808	C8H7BrO2
-222.0447263	C6H9NaO7
-222.0464713	C8H8N2O3S
-222.0705896	C10H10ClNO2
-222.0772492	C8H9N3O4
-222.0993972	C14H8O2
-222.1020219	C10H12O5
-222.1150412	C10H13NO4
-222.1280605	C10H14N2O3
-222.1632279	C16H14
-222.1658525	C12H18O3
-222.1918911	C12H20N2O
-223.0046225	C7H6N2O2S2
-223.0779316	C9H10O6
-223.0909509	C9H11NO5
-223.1169895	C9H13N3O3
-223.1391376	C15H12O
-223.1547815	C11H17NO3
-223.9424901	C6H6Cl4
-223.95932	C4H7Cl2O4P
-224.0538413	C8H8O7
-224.0732203	C10H11ClO3
-224.0744862	C8H10ClN5
-224.0798799	C8H10N2O5
-224.0862396	C10H12ClNO2
-224.1150473	C14H10O2
-224.1306912	C10H15NO4
-224.1437106	C10H16N2O3
-224.1788779	C16H16
-224.1815026	C12H20O3
-224.1945219	C12H21NO2
-225.1039763	C13H9NO2
-225.106601	C9H13NO5
-225.1169956	C13H10N2O
-225.1196203	C9H14N2O4
-225.12598	C11H16ClNO
-225.1279003	C9H16N4S
-225.1300149	C13H11N3
-225.1547876	C15H14O
-225.1704316	C11H19NO3
-225.9586368	C6H5IO
-226.0010087	C4H11Cl2N2O2P
-226.0104374	C6H6NO6P
-226.0668667	C12H6O4
-226.0777714	C8H12N2O3S
-226.0825107	C8H11NO6
-226.0929054	C12H8N2O2
-226.1038101	C8H14N4OS
-226.1059247	C12H9N3O
-226.1168294	C8H15N5S
-226.1306974	C14H12O2
-226.1463413	C10H17NO4
-226.1593606	C10H18N2O3
-226.1723799	C10H19N3O2
-226.1971526	C12H22O3
-227.0333478	C9H9Cl2NO
-227.0454011	C7H8O8
-227.0753502	C9H9N2NaO3
-227.0908187	C9H13ClN2O2
-227.1044925	C9H15NO3S
-227.1066071	C13H10O3
-227.1196264	C13H11NO2
-227.1326457	C13H12N2O
-227.1704377	C15H16O
-227.1730623	C11H20O4
-227.3007236	C15H32
-227.9851393	C6H5ClN2O3S
-227.9962382	C8H6Cl2O3
-228.0035523	C6H6O7S
-228.0391067	C6H9N2O5P
-228.0469997	C12H8S2
-228.052126	C6H10N3O4P
-228.0647582	C12H8O2S
-228.0825168	C12H8O4
-228.0955361	C12H9NO3
-228.0981608	C8H13NO6
-228.1057864	C8H14ClN5
-228.1111801	C8H14N2O5
-228.1175397	C10H16ClNO2
-228.1241994	C8H15N3O4
-228.1463474	C14H14O2
-228.1489721	C10H18O5
-228.1619914	C10H19NO4
-228.172386	C14H16N2
-228.1813704	C12H22ClN
-228.2128027	C12H24O3
-229.0693312	C7H12N2O4S
-229.0801226	C7H10FN3O4
-229.1001091	C7H13N3O5
-229.1222571	C13H12O3
-229.1235231	C11H11N5
-229.1379011	C9H17NO5
-229.1482958	C13H14N2O
-229.1509204	C9H18N2O4
-229.1639397	C9H19N3O3
-229.1839732	C11H23NOS
-229.8979879	C2H4Cl3O4P
-229.9896904	C4H6N4O3S2
-230.014589	C6H11BrN2O2
-230.0239789	C6H10NO4PS
-230.0677761	C6H12N3O4P
-230.0804083	C12H10O2S
-230.0981669	C12H10O4
-230.0994328	C10H9N5O
-230.1007915	C8H14O7
-230.1020574	C6H13N5O4
-230.1111862	C12H11NO3
-230.1138108	C8H15NO6
-230.1268301	C8H16N2O5
-231.0542034	C7H13NO3S2
-231.0740766	C11H8O5
-231.0814778	C7H14NO5P
-231.0849813	C7H14N2O4S
-231.0870959	C11H9NO4
-231.1157592	C7H15N3O5
-231.1379072	C13H14O3
-231.1509265	C13H15NO2
-231.1639458	C13H16N2O
-231.9637077	C6H4Cl2O5
-232.0015758	C10H7BrO
-232.0075789	C6H11NO3Se
-232.0630056	C10H7NO5
-232.0693653	C12H9ClO2
-232.0716919	C4H13AlN4O5
-232.1138169	C12H12O4
-232.1247216	C8H18N2O3S
-232.1268362	C12H13NO3
-232.1398555	C12H14N2O2
-233.003748	C3H5N3O9
-233.0332973	C5H10NO7P
-233.0897266	C11H10O5
-233.102746	C11H11NO4
-233.1157653	C11H12N2O3
-233.1509326	C17H12
-233.1535573	C13H16O3
-233.1665766	C13H17NO2
-233.1795959	C13H18N2O
-233.2173879	C15H22O
-234.0405637	C12H8Cl2
-234.0600183	C6H13O7P
-234.0786557	C10H9NO5
-234.0850154	C12H11ClO2
-234.0869357	C10H11N3OS
-234.129467	C12H14O4
-234.1307329	C10H13N5O
-234.1424863	C12H15NO3
-234.1555056	C12H16N2O2
-234.1744016	C13H18NO2
-234.1932976	C14H20O2
-234.2063169	C14H21NO
-235.0134302	C5H12NO3PS2
-235.035928	C5H11O8P
-235.0489473	C5H12NO7P
-235.0619666	C5H13N2O6P
-235.0675847	C9H8N2O5
-235.1053767	C11H12O5
-235.1066426	C9H11N5O2
-235.118396	C11H13NO4
-235.1692073	C13H18O3
-235.1822266	C13H19NO2
-235.195246	C13H20N2O
-235.233038	C15H24O
-236.0565137	C8H7N3O5
-236.0791718	C6H15NO6S
-236.0812864	C10H10O6
-236.0943057	C10H11NO5
-236.1047004	C14H8N2O
-236.107325	C10H12N2O4
-236.1333637	C10H14N4O2
-236.1451171	C12H16O4
-236.146383	C10H15N5O
-236.1555117	C16H13N
-236.1581364	C12H17NO3
-236.1711557	C12H18N2O2
-236.184175	C12H19N3O
-236.2089477	C14H22O2
-236.8547176	C3H5Br2Cl
-237.0194041	C7H4N2O7
-237.0257638	C9H6ClNO4
-237.0515781	C5H13O8P
-237.0702155	C9H9NO6
-237.0765751	C11H11ClO3
-237.1184021	C15H10O2
-237.1210268	C11H14O5
-237.1444407	C15H12N2
-237.1848574	C13H20O3
-237.1978767	C13H21NO2
-237.248688	C15H26O
-238.0943119	C14H8O3
-238.0969365	C10H12O6
-238.0982024	C8H11N5O3
-238.1073312	C14H9NO2
-238.1099558	C10H13NO5
-238.1229751	C10H14N2O4
-238.1711618	C16H15N
-238.1737864	C12H19NO3
-238.1868057	C12H20N2O2
-238.2245977	C14H24O2
-239.0081741	C3H11NO7P2
-239.0858655	C9H11NO6
-239.0988848	C9H12N2O5
-239.1119041	C9H13N3O4
-239.1249234	C9H14N4O3
-239.1340522	C15H12O2
-239.1470715	C15H13NO
-239.1627155	C11H18N2O3
-239.2265461	C13H24N2O
-240.0125844	C8H7ClN2O2S
-240.0700553	C8H11N3O3S
-240.0941735	C10H13ClN2O2
-240.1043439	C10H15O4P
-240.1099619	C14H10O3
-240.1229812	C14H11NO2
-240.1386252	C10H16N2O4
-240.1449849	C12H18ClNO
-240.1469052	C10H18N4S
-240.1490198	C14H13N3
-240.1737925	C16H16O
-240.1764172	C12H20O4
-240.1776831	C10H19N5O
-240.1868118	C16H17N
-240.2024558	C12H22N2O2
-240.2402478	C14H26O2
-240.9776417	C7H7IO
-241.0256316	C9H8Cl2N2O
-241.0386509	C9H9Cl2N3
-241.0503545	C13H8S2
-241.0858716	C13H8O4
-241.0988909	C13H9NO3
-241.1015156	C9H13NO6
-241.1405735	C9H16N4O3
-241.1497023	C15H14O2
-241.2799882	C15H30O
-242.02758	C8H8Cl2N4
-242.0472589	C6H8ClN7O
-242.0596668	C8H11NO5S
-242.0748007	C12H7NO4
-242.0809661	C8H14N4S2
-242.125612	C14H12O3
-242.1268779	C12H11N5
-242.1386313	C14H13NO2
-242.1412559	C10H17NO5
-242.1516506	C14H14N2O
-242.1646699	C14H15N3
-242.1920672	C12H22O4
-242.2558979	C14H28O2
-243.0152431	C9H8Cl2O3
-243.1015217	C13H10O4
-243.114541	C13H11NO3
-243.1247913	C9H16ClN5
-243.130185	C9H16N2O5
-243.1653523	C15H16O2
-243.1809963	C11H21NO4
-243.1913909	C15H18N2
-243.2448269	C13H27NO2
-244.0067469	C6H8N2O4S2
-244.0283766	C8H5F3N2OS
-244.0422641	C6H8N2O8
-244.0774314	C12H8O5
-244.0930754	C8H13NO7
-244.1352483	C8H24O2Si3
-244.141262	C14H14O3
-244.1607771	C12H16F3N
-244.1699253	C10H20N2O4
-244.2715479	C14H30O2
-245.0086953	C5H8N4O3S2
-245.0415878	C9H4N4O4
-245.1171718	C13H12O4
-245.1210623	C7H15N5O4
-245.1301911	C13H13NO3
-245.1328157	C9H17NO6
-245.145835	C9H18N2O5
-245.1810024	C15H18O2
-245.1940217	C15H19NO
-245.1966463	C11H23NO4
-246.044066	C8H9N2NaO3S
-246.0496714	C6H11N2O6P
-246.0575644	C12H10OS2
-246.0753229	C12H10O3S
-246.0930815	C12H10O5
-246.0957061	C8H14O8
-246.1061008	C12H11NO4
-246.108334	C8H10BF4N3
-246.1087254	C8H15NO7
-246.1191201	C12H12N2O3
-246.1542875	C18H12
-246.1569121	C14H16O3
-246.1699314	C14H17NO2
-246.1829507	C14H18N2O
-247.0689912	C11H8O6
-247.0751567	C7H15N3O2S2
-247.0820105	C11H9NO5
-247.1328218	C13H14O4
-247.1588604	C13H16N2O2
-247.1718798	C13H17N3O
-247.1966525	C15H20O2
-247.2096718	C15H21NO
-247.9402093	C6H3Cl3N2O2
-248.00253	C6H12N2S4
-248.0215243	C6H11O6PS
-248.0380471	C6H12N2O4S2
-248.0392829	C6H11O8P
-248.1039923	C12H13NO2S
-248.1087315	C12H12O5
-248.1196363	C8H18N2O4S
-248.1855815	C14H19NO2
-248.1986008	C14H20N2O
-249.0217766	C11H6Cl2N2
-249.0412312	C5H11N2O7P
-249.0595686	C13H10Cl2
-249.1106799	C11H12N2O4
-249.1367185	C11H14N4O2
-249.1484719	C13H16O4
-249.1614912	C13H17NO3
-249.1745105	C13H18N2O2
-249.2123025	C15H22O2
-249.2253218	C15H23NO
-249.2383411	C15H24N2
-249.9298207	C6H3Cl3O4
-250.0072753	C10H8OS3
-250.0354784	C12H8Cl2O
-250.0549329	C6H13O8P
-250.0809715	C6H15N2O6P
-250.1126282	C10H12N4O3
-250.1477956	C16H12N2
-250.1504202	C12H16N2O3
-250.1764588	C12H18N4O
-250.1882122	C14H20O3
-250.2012315	C14H21NO2
-250.2142509	C14H22N2O
-250.9587693	C3H6O9P2
-250.9633119	C5H11NS5
-251.0225999	C5H12O7P2
-251.0885379	C9H10N4O4
-251.0946733	C7H17O7P
-251.1002913	C11H12O6
-251.1015573	C9H11N5O3
-251.12633	C11H14N2O4
-251.1326896	C13H16ClNO
-251.1523686	C11H16N4O2
-251.1771413	C13H19NO3
-251.1901606	C13H20N2O2
-251.2031799	C13H21N3O
-251.2279526	C15H24O2
-251.2539912	C15H26N2
-251.9010192	C6H2Cl4O2
-252.0433086	C6H14O6S2
-252.070583	C6H15O8P
-252.0844811	C10H12N2O3S
-252.0892204	C10H11NO6
-252.099615	C14H8N2O2
-252.1022397	C10H12N2O5
-252.1085994	C12H14ClNO2
-252.1282783	C10H14N4O3
-252.9649035	C3H7O9PS
-252.9663086	CH3ClHg
-253.0039615	C3H10N3O6PS
-253.0797698	C11H13ClN2S
-253.1133168	C15H10O3
-253.1172073	C9H13N5O3
-253.1263361	C15H11NO2
-253.1393554	C15H12N2O
-253.1483397	C13H18ClNO
-253.1549993	C11H17N3O3
-253.1680186	C11H18N4O2
-253.1927913	C13H21NO3
-253.2436026	C15H26O2
-254.0159672	C10H7Cl2NO2
-254.027179	C4H13NO7P2
-254.0556796	C10H11ClN2OS
-254.0892265	C14H8O4
-254.1022458	C14H9NO3
-254.1112301	C12H15ClO3
-254.1152651	C14H10N2O2
-254.1178897	C10H14N2O5
-254.130909	C10H15N3O4
-254.1439284	C10H16N4O3
-254.1687011	C12H19NO4
-254.1817204	C12H20N2O3
-254.283343	C16H30O
-255.0884057	C9H12ClN5O
-255.0937995	C9H12N2O6
-255.1014251	C9H13ClN6
-255.1068188	C9H13N3O5
-255.1198381	C9H14N4O4
-255.1289668	C15H12O3
-255.1328574	C9H15N5O3
-255.1398715	C11H18N2O2S
-255.1419861	C15H13NO2
-255.1639898	C13H20ClNO
-255.1770091	C13H21ClN2
-255.2058168	C17H19N
-255.2084414	C13H23NO3
-256.0484472	C8H10NO6P
-256.0760689	C10H12ClNO4
-256.0957478	C8H12N4O5
-256.1048765	C14H10O4
-256.1157812	C10H16N2O3S
-256.1178958	C14H11NO3
-256.1288006	C10H17N3O2S
-256.1687072	C16H16O2
-256.1947458	C16H18N2
-256.2989931	C16H32O
-256.9725563	C7H7IO2
-256.9945076	C9H6Cl2O4
-257.007527	C9H7Cl2NO3
-257.0335656	C9H9Cl2N3O
-257.0465849	C9H10Cl2N4
-257.0807863	C13H8O5
-257.089463	C9H11FN2O5
-257.0938056	C13H9NO4
-257.0964302	C9H13NO7
-257.099971	C9H16N4S2
-257.1094495	C9H14N2O6
-257.1354881	C9H16N4O4
-257.1446169	C15H14O3
-257.1576362	C15H15NO2
-257.1706555	C15H16N2O
-257.1836748	C15H17N3
-257.2084475	C17H20O
-257.2214668	C17H21N
-257.2571442	C15H30S
-257.2749028	C15H30O2
-257.3387334	C17H36
-257.9035177	C6H5Cl5
-258.034248	C10H10Cl2O3
-258.0606335	C8H10FN3O3S
-258.0640972	C8H12NO6P
-258.064976	C12H8N2O2S
-258.0771165	C8H13N2O5P
-258.08062	C8H13N3O4S
-258.0983785	C8H13N3O6
-258.1087732	C12H10N4O2
-258.1205266	C14H12O4
-258.1361706	C10H17NO6
-258.1595845	C14H15N3O
-258.1726038	C14H16N4
-258.1843572	C16H18O2
-258.1869819	C12H22O5
-258.2000012	C12H23NO4
-258.2103958	C16H20N2
-258.2130205	C12H24N2O3
-258.2508125	C14H28O3
-258.3146431	C16H34O
-258.9657061	C9H5Cl3O2
-259.023177	C9H9Cl2NO3
-259.0361963	C9H10Cl2N2O2
-259.0870076	C11H15Cl2NO
-259.0964363	C13H10O5
-259.1094556	C13H11NO4
-259.1485136	C13H14N4O
-259.1511382	C9H18N4O4
-259.1602669	C15H16O3
-259.1641575	C9H19N5O3
-259.1732863	C15H17NO2
-259.1863056	C15H18N2O
-259.2240976	C17H22O
-259.2371169	C17H23N
-259.9359977	C4H8Cl3O4P
-260.0190704	C12H8S3
-260.0806261	C12H10N2O2S
-260.0832507	C8H14N2O5S
-260.1163035	C10H19NO2S2
-260.1334076	C10H18ClN3O2
-260.1361767	C14H14O4
-260.1530865	C8H18N6O3
-260.1622153	C14H16N2O2
-260.2000073	C16H20O2
-260.2130266	C16H21NO
-260.2260459	C16H22N2
-260.2547092	C12H28N4O
-261.0426377	C7H11O8P
-261.0742944	C11H8N2O5
-261.0806541	C13H10ClNO2
-261.1277303	C9H17NO7
-261.138125	C13H14N2O3
-261.1446601	C11H17N2NaO3
-261.175917	C15H18O3
-261.1889363	C15H19NO2
-261.2019556	C15H20N2O
-261.2397476	C17H24O
-261.2527669	C17H25N
-261.8265356	C4Cl6
-261.9572659	C8H5Cl3O3
-262.0090316	C6H8O9S
-262.0407754	C8H11Cl2N3O2
-262.0629235	C14H10Cl2
-262.0702376	C12H10O4S
-262.0879961	C12H10O6
-262.0962762	C12H12N2O2S
-262.1140347	C12H12N2O4
-262.1166594	C8H16N2O7
-262.1334137	C14H15ClN2
-262.1518267	C14H16O4
-262.164846	C14H17NO3
-262.1778653	C14H18N2O2
-262.2156574	C16H22O2
-262.2286767	C16H23NO
-262.241696	C16H24N2
-262.9461949	C7H4Cl3NO3
-263.0277343	C11H7ClN2OS
-263.0388332	C13H8Cl2O
-263.057052	C7H14N2O4S2
-263.0748105	C7H14N2O6S
-263.0877634	C13H8F2O3
-263.1303611	C9H18O8
-263.1537751	C13H16N2O3
-263.1915671	C15H20O3
-263.2045864	C15H21NO2
-263.2176057	C15H22N2O
-264.0341975	C6H11O9P
-264.0416114	C8H10NNaO5S
-264.0528349	C10H7NO7
-264.0591945	C12H9ClO4
-264.0741342	C10H10N4O2S
-264.0862747	C6H15N4O5P
-264.1112718	C12H13ClN4
-264.1140408	C16H9NO2
-264.1166655	C12H13NO5
-264.1674768	C14H18O4
-264.1804961	C14H19NO3
-264.1935154	C14H20N2O2
-264.2443267	C16H25NO
-265.0925752	C11H11NO6
-265.1029699	C15H8N2O2
-265.1055945	C11H12N2O5
-265.1564058	C13H17NO4
-265.1668005	C17H14N2
-265.1694251	C13H18N2O3
-265.2072171	C15H22O3
-265.2202364	C15H23NO2
-265.2332558	C15H24N2O
-265.2710478	C17H28O
-266.032089	C6H13O7PS
-266.0377071	C10H8O6S
-266.0403317	C6H12O9S
-266.0498476	C6H13O9P
-266.0500719	C10H8ClN3O3
-266.053351	C6H13NO8S
-266.0628669	C6H14NO8P
-266.0684849	C10H9NO7
-266.0758862	C6H15N2O7P
-266.076765	C10H11N3O3S
-266.1075428	C10H12N4O4
-266.114557	C12H15NO3S
-266.1205622	C10H13N5O3
-266.1296909	C16H11NO2
-266.1453349	C12H16N2O4
-266.2091655	C14H22N2O2
-267.0175146	C5H12O8P2
-267.0342617	C9H8ClN5S
-267.0349161	C9H9N3O2S2
-267.0925813	C15H8O4
-267.0964719	C9H11N5O4
-267.0999826	C11H14NO4P
-267.1342639	C11H15N3O4
-267.1542973	C13H19NO2S
-267.1564119	C17H14O2
-267.2228672	C15H24O3
-267.2489058	C15H26N2O
-268.0015914	C12H7Cl3
-268.008251	C10H6Cl2N2O2
-268.0590623	C12H11Cl2NO
-268.0654976	C6H15O9P
-268.0711157	C10H10O8
-268.1231929	C10H14N4O4
-268.1323217	C16H12O3
-268.1349463	C12H16O6
-268.1362122	C10H15N5O3
-268.1432264	C12H18N2O2S
-268.1479656	C12H17NO5
-268.1583603	C16H14N2O
-268.1609849	C12H18N2O4
-268.1870235	C12H20N4O2
-268.2626075	C16H28O2
-268.2886462	C16H30N2
-268.969334	C3H8O10P2
-269.0423733	C7H15Cl2N2O2P
-269.0676703	C9H10ClN5O2
-269.1082314	C15H10O4
-269.1121219	C9H13N5O4
-269.1212507	C15H11NO3
-269.1315009	C11H16ClN5
-269.13427	C15H12N2O2
-269.158194	C11H19N5S
-269.172062	C17H16O2
-269.187706	C13H21NO4
-269.8671322	C6HCl5O
-270.0841411	C14H8O5
-270.0877317	C12H14Cl2N2
-270.0915423	C10H14NO5P
-270.1014055	C12H16ClNOS
-270.1128044	C10H14N2O6
-270.119164	C12H16ClNO3
-270.1258237	C10H15N3O5
-270.138843	C10H16N4O4
-270.1479717	C16H14O3
-270.2782576	C16H30O2
-271.0403036	C9H13BrN2O2
-271.0506221	C11H11Cl2NO2
-271.0674521	C9H12NO6P
-271.1017334	C9H13N3O6
-271.1238814	C15H12O4
-271.127772	C9H15N5O4
-271.1369007	C15H13NO3
-271.1395254	C11H17NO6
-271.1455775	C11H16FN3O3
-271.1499201	C15H14N2O2
-271.1629394	C15H15N3O
-272.0256032	C8H10NO5PS
-272.0852687	C8H12ClN7O
-272.0894339	C10H16NO3PS
-272.0997912	C14H10O5
-272.1128105	C14H11NO4
-272.1154351	C10H15NO7
-272.1414737	C10H17N3O5
-272.1609971	C20H12
-272.1636218	C16H16O3
-272.1896604	C16H18N2O
-272.2026797	C16H19N3
-272.2300771	C14H26O4
-272.2761491	C16H32S
-272.2939077	C16H32O2
-273.0729318	C9H12ClN3O4
-273.0757009	C13H8O6
-273.1017395	C13H10N2O4
-273.1395315	C15H14O4
-273.1525508	C15H15NO3
-273.1551755	C11H19NO6
-273.2033621	C17H20O2
-273.2163814	C17H21NO
-273.2190061	C13H25NO4
-273.2294007	C17H22N2
-273.9024673	C8Cl4N2
-274.0976827	C14H12O3S
-274.1154412	C14H12O5
-274.1284605	C14H13NO4
-274.1441045	C10H18N2O6
-274.1792718	C16H18O3
-274.1922912	C16H19NO2
-274.2053105	C16H20N2O
-274.2079351	C12H24N2O4
-274.2183298	C16H21N3
-274.2431025	C18H24O
-275.0913509	C13H10O6
-275.0930605	C9H11F2N3O4
-275.1043703	C13H11NO5
-275.1551816	C15H16O4
-275.1682009	C15H17NO3
-275.2190122	C17H22O2
-275.2320315	C17H23NO
-276.0932993	C12H10N2O5
-276.099659	C14H12ClNO2
-276.1063186	C12H11N3O4
-276.1089432	C8H15N3O7
-276.1216626	C12H19Cl2NO
-276.1480012	C8H18N6O4
-276.1571299	C14H16N2O3
-276.1893039	C12H25O4P
-276.1922973	C20H16
-276.1949219	C16H20O3
-276.2079412	C16H21NO2
-277.0505716	C7H12NO8P
-277.1048864	C9H17NO6S
-277.1096257	C9H16O9
-277.122645	C9H17NO8
-277.1708316	C15H18O4
-277.1791117	C15H20N2S
-277.1838509	C15H19NO3
-277.1968703	C15H20N2O2
-277.2098896	C15H21N3O
-277.2346623	C17H24O2
-277.9677746	C6H7ClN2O4S2
-278.0097276	C10H8BrN3O
-278.0760569	C8H16N2O4S2
-278.0975505	C14H14ClNS
-278.1467414	C14H16O5
-278.1623853	C10H21NO7
-278.1680407	C14H19N3S
-278.17278	C14H18N2O3
-278.2049539	C12H27O4P
-278.2235913	C16H23NO2
-278.2366106	C16H24N2O
-278.2874219	C18H29N
-279.0294324	C7H14N2O4Se
-279.1486897	C13H16N2O4
-279.1864817	C15H20O4
-279.2125203	C15H22N2O2
-279.2633316	C17H27NO
-279.3141429	C19H32
-280.0195963	C6H10O10S
-280.0226768	C12H7Cl2NO2
-280.0291121	C6H11O10P
-280.0734882	C14H12Cl2O
-280.0811893	C6H15N4O6P
-280.0868074	C10H10N4O5
-280.0890823	C12H14N2OS2
-280.0938215	C12H13NO4S
-280.0959362	C16H8O4
-280.0998267	C10H11N5O4
-280.1068409	C12H14N2O3S
-280.1198602	C12H15N3O2S
-280.1754107	C14H19NO4
-280.18843	C14H20N2O3
-280.226222	C16H24O3
-280.2392414	C16H25NO2
-280.2522607	C16H26N2O
-280.2900527	C18H30O
-281.0366785	C9H6N2O8
-281.0493979	C13H10Cl2O2
-281.0688525	C7H15O9P
-281.0754365	C13H12Cl2N2
-281.0757364	C9H9N5O5
-281.0957699	C11H13N3O3S
-281.1005091	C11H12N2O6
-281.1265477	C11H14N4O4
-281.1395671	C11H15N5O3
-281.2021318	C15H22O4
-281.2033977	C13H21N5O
-281.2125264	C19H19N
-281.2281704	C15H24N2O2
-282.0447622	C6H13O10P
-282.0475985	C10H7KN6O
-282.0495388	C6H15NO7P2
-282.1024575	C10H12N4O5
-282.1154768	C10H13N5O4
-282.1246055	C16H11NO3
-282.1376248	C16H12N2O2
-282.1532688	C12H17N3O4
-282.1910608	C14H21NO4
-282.2040801	C14H22N2O3
-282.2349049	C16H24FNO
-282.2418721	C16H26O3
-282.8786577	C7H3Br2NO
-282.9601209	C9H7BrO3S
-283.0124292	C5H12O9P2
-283.0216379	C7H13Cl2N2O3P
-283.0428501	C9H10N4O2S2
-283.0653479	C9H9N3O7
-283.0874959	C15H8O5
-283.1044058	C9H12N6O4
-283.1135346	C15H10N2O3
-283.1421978	C11H16N4O4
-283.149212	C13H19NO3S
-283.1513266	C17H14O3
-283.1643459	C17H15NO2
-283.2281765	C19H21N
-283.2308011	C15H25NO3
-283.2816125	C17H30O2
-283.996506	C12H7Cl3O
-284.0273968	C4H13N3O7P2
-284.0743104	C10H12N2O5S
-284.0894443	C14H8N2O4
-284.09594	C12H9F3N2O2
-284.1181075	C10H14N4O5
-284.1272363	C16H12O4
-284.1298609	C12H16O7
-284.138141	C12H18N2O3S
-284.1428802	C12H17NO6
-284.1558995	C12H18N2O5
-284.1622592	C14H20ClNO2
-284.1819382	C12H20N4O3
-284.1910669	C18H18O2
-284.2171055	C18H20N2
-284.9887903	C9H10BrNO2S
-285.0298802	C6H5Hg
-285.0372879	C7H15Cl2N2O3P
-285.0565798	C11H12ClNO3S
-285.0937173	C13H15Cl2NO
-285.103146	C15H10O5
-285.1140507	C11H16N2O4S
-285.1161653	C15H11NO4
-285.1291846	C15H12N2O3
-285.1422039	C15H13N3O2
-285.1511883	C13H19ClN2O2
-285.1552232	C15H14N4O
-285.1799959	C17H17NO2
-285.1930152	C17H18N2O
-285.2060345	C17H19N3
-285.2972625	C17H32O2
-286.0098837	C8H10IN3
-286.0591826	C10H13NO4S2
-286.0747036	C8H12N5O4P
-286.0769411	C10H13NO6S
-286.086457	C10H14NO6P
-286.0946997	C10H13NO8
-286.1230132	C12H19NO2S2
-286.1428863	C16H14O4
-286.1511664	C16H16N2S
-286.153791	C12H20N2O3S
-286.168925	C16H16N2O2
-286.1819443	C16H17N3O
-286.206717	C18H20O2
-286.2327556	C18H22N2
-286.3370029	C18H36O
-287.0446081	C9H12NO5PS
-287.100383	C15H11ClN2O
-287.1096673	C9H14N4O6
-287.1140568	C15H13NO2S
-287.1187961	C15H12O5
-287.1214207	C11H16O8
-287.1318154	C15H13NO4
-287.13444	C11H17NO7
-287.1448347	C15H14N2O3
-287.195646	C17H19NO2
-287.2216846	C17H21N3
-287.8332453	C6Cl6
-288.0535706	C10H15O3PS2
-288.0611589	C10H13ClN2O3S
-288.0947058	C14H10O6
-288.0982964	C12H16Cl2N2O
-288.1077251	C14H11NO5
-288.123369	C10H16N2O7
-288.1401234	C16H15ClN2
-288.1494077	C10H18N4O5
-288.1559118	C20H12O
-288.1585364	C16H16O4
-288.1647517	C10H26Cl2N2O2
-288.1715557	C16H17NO3
-288.222367	C18H22O2
-288.2249917	C14H26O5
-288.2353863	C18H23NO
-288.2888223	C16H32O3
-288.3526529	C18H38O
-289.0910361	C9H15N2O6P
-289.1031498	C11H11F3N2O3
-289.1122981	C9H15N3O7
-289.1253174	C9H16N4O6
-289.1297069	C15H15NO2S
-289.1344461	C15H14O5
-289.1370708	C11H18O8
-289.1474654	C15H15NO4
-289.1631094	C11H20N2O6
-289.1956521	C21H16
-289.1982768	C17H20O3
-289.2112961	C17H21NO2
-289.2529786	C13H28N4O2
-289.264732	C15H30O4
-289.9740075	C6H12Cl3O4P
-290.0748387	C14H12O2S2
-290.0799651	C8H14N3O6P
-290.1543133	C12H23NO2S2
-290.1741865	C16H18O4
-290.1872058	C16H19NO3
-290.2002251	C16H20N2O2
-290.2380171	C18H24O2
-290.2510364	C18H25NO
-290.2844858	C16H31FO2
-290.3174917	C16H35NO2
-291.0215935	C7H11NO7P2
-291.050094	C13H9ClN2OS
-291.1292141	C7H16N8O4
-291.1500962	C15H16O5
-291.1610009	C11H22N2O4S
-291.1631155	C15H17NO4
-291.2139268	C17H22O3
-291.2399654	C17H24N2O
-291.2777574	C19H28O
-292.0695765	C8H14NO8P
-292.1272718	C12H13N5O3
-292.1286306	C10H18O9
-292.1714235	C16H19ClN2
-292.1898365	C16H20O4
-292.2028558	C16H21NO3
-292.2536672	C18H26O2
-292.3174978	C20H32
-293.0286065	C11H8N2O3S2
-293.047631	C9H7N7O2S
-293.1123103	C17H9NO3
-293.1657463	C15H18O5
-293.1891602	C19H16N2
-293.2048042	C15H21N3O2
-293.2269522	C21H20
-293.2295769	C17H24O3
-293.2425962	C17H25NO2
-293.2556155	C17H26N2O
-293.2934075	C19H30O
-293.8801955	C6H6Cl6
-293.9757086	C6H8ClN3O4S2
-294.0527527	C14H10Cl2O2
-294.0794458	C14H13ClO2S
-294.0968968	C12H10FN3O4
-294.112144	C12H14N4O2S
-294.1238974	C14H16O4S
-294.1362623	C14H16ClN3O
-294.1429219	C12H15N5O3
-294.161035	C16H19ClO2
-294.1676946	C14H18N2O4
-294.1780893	C18H15N3
-294.1937332	C14H20N4O2
-294.2054866	C16H22O4
-294.2315252	C16H24N2O2
-295.048117	C7H13O10P
-295.0741556	C7H15N2O8P
-295.0880538	C11H12N4O3S
-295.130585	C13H15NO6
-295.1436043	C13H16N2O5
-295.1696429	C13H18N4O3
-295.1813963	C15H20O5
-295.1944156	C15H21NO4
-295.2452269	C17H26O3
-295.2582463	C17H27NO2
-295.2712656	C17H28N2O
-295.3090576	C19H32O
-296.0175915	C12H7Cl2NO3
-296.0239511	C14H9Cl3
-296.1103658	C14H10F3NO2
-296.1147748	C12H15N3O3S
-296.1703253	C14H19NO5
-296.196364	C14H21N3O3
-296.2315313	C20H21N
-296.234156	C16H25NO3
-296.2471753	C16H26N2O2
-296.2849673	C18H30O2
-297.0573318	C13H11Cl2NO2
-297.0637671	C7H15O10P
-297.0992948	C13H9F3N2O2
-297.1084431	C11H13N3O6
-297.1214624	C11H14N4O5
-297.1344817	C11H15N5O4
-297.1436104	C17H13NO3
-297.1722737	C13H19N3O4
-297.1970464	C15H22O5
-297.2100657	C15H23NO4
-297.2294447	C17H26ClN
-297.260877	C17H28O3
-297.9961563	C6H14INO2S
-298.0332415	C12H9Cl2NO3
-298.0358164	C10H10N2O4S2
-298.0396012	C14H11Cl3
-298.0399012	C10H8ClN3O5
-298.0462608	C12H10Cl2N2O2
-298.0796135	C10H12N4O4S
-298.0973721	C10H12N4O6
-298.1065008	C16H10O5
-298.1103914	C10H13N5O5
-298.1221448	C12H15NO7
-298.1234107	C10H14N6O4
-298.1269214	C12H17N2O4P
-298.1677068	C22H12
-298.1703315	C18H16O3
-298.1942555	C14H23N3OS
-298.2471814	C20H23N
-298.3006174	C18H32O2
-299.0073438	C5H12O10P2
-299.0824106	C15H8O6
-299.0898118	C11H14NO6P
-299.1084492	C15H10N2O4
-299.1371124	C11H16N4O5
-299.1441266	C13H19NO4S
-299.1462412	C17H14O4
-299.1488658	C13H18O7
-299.1592605	C17H15NO3
-299.1812641	C15H22ClNO2
-299.2100718	C19H20O2
-299.2230911	C19H21NO
-299.2257158	C15H25NO4
-299.2387351	C15H26N2O3
-299.8543307	C6Cl5NO2
-299.9914207	C12H7Cl3O2
-300.0685705	C10H11ClN4O4
-300.0815898	C10H12ClN5O3
-300.0822443	C10H13N3O5S
-300.0892584	C12H16O4S2
-300.1221509	C16H12O5
-300.1260415	C10H15N5O5
-300.1377949	C12H17NO7
-300.1481895	C16H14N2O3
-300.1773827	C12H25NaO4S
-300.1833569	C22H14
-300.1859815	C18H18O3
-300.1898721	C12H21N5O3
-300.2070036	C14H26O4Si
-300.3162674	C18H34O2
-300.8762031	C7H4Br2O3
-301.0322026	C7H15Cl2N2O4P
-301.0980606	C15H10O6
-301.1137046	C11H15NO8
-301.1618912	C17H16O4
-301.1749106	C17H17NO3
-301.1879299	C17H18N2O2
-301.2035738	C13H23N3O4
-301.2257219	C19H22O2
-301.2517605	C19H24N2
-301.2921771	C17H32O3
-301.9626191	C12H6Cl4
-302.0046215	C12H6Cl2NNaO2
-302.0534427	C10H12ClN3O3S
-302.063613	C10H14NO5PS
-302.0671165	C10H14N2O4S2
-302.0696182	C8H12N5O5P
-302.1049085	C12H18O4S2
-302.119388	C16H13ClN2O
-302.1309471	C12H20N2O2S2
-302.137801	C16H14O5
-302.1487057	C12H20N2O4S
-302.1508203	C16H15NO4
-302.1568724	C16H14FN3O
-302.1745958	C16H22OSi2
-302.1794835	C12H21N3O5
-302.2016316	C18H20O3
-302.2302948	C14H26N2O4
-302.2654622	C20H26O
-302.3319175	C18H36O2
-302.3449368	C18H37NO
-302.9856812	C9H10BrClN2O2
-303.0952977	C15H11ClN2O2
-303.1137107	C15H12O6
-303.1176012	C9H15N5O6
-303.1293546	C11H17NO8
-303.1423739	C11H18N2O7
-303.1775413	C17H18O4
-303.1858214	C17H20N2S
-303.1905606	C17H19NO3
-303.1931853	C13H23NO6
-303.2035799	C17H20N2O2
-303.2413719	C19H24O2
-303.2543912	C19H25NO
-303.2570159	C15H29NO4
-303.2674106	C19H26N2
-303.3078272	C17H34O3
-304.077867	C12H8N4O5
-304.097246	C14H11ClN4O
-304.1026397	C14H11NO6
-304.1109198	C14H13N3O2S
-304.1182837	C10H16N2O8
-304.1443223	C10H18N4O6
-304.153451	C16H16O5
-304.1664703	C16H17NO4
-304.1794896	C16H18N2O3
-304.192509	C16H19N3O2
-304.2172817	C18H22O3
-304.230301	C18H23NO2
-304.2719835	C14H30N4O2
-304.2811123	C20H28O
-304.2837369	C16H32O4
-304.9634133	C7H6ClN3O4S2
-305.0859507	C9H15N2O7P
-305.0980645	C11H11F3N2O4
-305.1293607	C15H14O6
-305.1319854	C11H18O9
-305.1423801	C15H15NO5
-305.1450047	C11H19NO8
-305.1684187	C15H17N3O3
-305.1733182	C13H25NO2S2
-305.1931914	C17H20O4
-305.195816	C13H24O7
-305.2062107	C17H21NO3
-305.2322493	C17H23N3O
-305.257022	C19H26O2
-305.2700413	C19H27NO
-306.0697534	C14H12O3S2
-306.0748797	C8H14N3O7P
-306.1182898	C14H13NO6
-306.1313091	C14H14N2O5
-306.1339337	C10H18N2O8
-306.1573477	C14H16N4O3
-306.1691011	C16H18O5
-306.1821204	C16H19NO4
-306.1833863	C14H18N6O
-306.1951397	C16H20N2O3
-306.208159	C16H21N3O2
-306.2329317	C18H24O3
-306.245951	C18H25NO2
-306.2967623	C20H30O
-307.0190456	C2H8N2O3Pt
-307.0340356	C11H10BrN5
-307.0811802	C13H10O8
-307.1436521	C17H11N5
-307.1450108	C15H16O6
-307.1462767	C13H15N5O3
-307.2088414	C17H22O4
-307.2218607	C17H23NO3
-307.2726721	C19H28O2
-307.2856914	C19H29NO
-307.9712878	C4H3ClHgO
-308.0184565	C6H11N3O7P2
-308.0632554	C8H15N3O5S2
-308.0785496	C10H20N2S4
-308.1044279	C12H13N5O2S
-308.1339398	C14H15NO6
-308.1573538	C18H13N3O
-308.1663381	C16H19ClN2O
-308.1729978	C14H18N4O3
-308.1977705	C16H21NO4
-308.2107898	C16H22N2O3
-308.2485818	C18H26O3
-308.2616011	C18H27NO2
-308.2746204	C18H28N2O
-308.3124124	C20H32O
-308.9613608	C9H8Cl3NO2S
-309.0717576	C15H12Cl2O2
-309.0829695	C9H18O7P2
-309.0968303	C13H12O8
-309.1042315	C9H18NO8P
-309.1302893	C9H21AlO9
-309.1580362	C19H14O3
-309.1606609	C15H18O6
-309.1997188	C15H21N3O3
-309.2244915	C17H24O4
-309.2348862	C21H21N
-309.2375108	C17H25NO3
-309.2883221	C19H30O2
-309.3521527	C21H36
-309.9760542	C6H11N2O4PS3
-310.0606866	C14H11Cl2NO2
-310.0706254	C8H15NO9S
-310.0801412	C8H16NO9P
-310.0940393	C12H13N3O4S
-310.0961539	C16H8N2O4
-310.1070587	C12H14N4O3S
-310.1191991	C8H19N4O6P
-310.1311769	C14H16ClN3O2
-310.1495899	C14H17NO6
-310.1626092	C14H18N2O5
-310.2264398	C16H24N2O3
-310.2642318	C18H28O3
-310.2772512	C18H29NO2
-310.3280625	C20H34O
-311.0560509	C7H14NO10P
-311.0951089	C7H17N4O7P
-311.1124803	C13H14O8
-311.1385189	C13H16N2O6
-311.1763109	C15H20O6
-311.1803015	C19H15BNNa
-311.1867056	C19H17NO2
-311.2023496	C15H22N2O4
-311.2401416	C17H26O4
-311.2531609	C17H27NO3
-311.3039722	C19H32O2
-311.9288023	C6H6Cl2N2O4S2
-311.9303631	C6H12Br2O4
-312.0797477	C14H10MgO6
-312.0884274	C12H15N2O3PS
-312.0919309	C12H15N3O2S2
-312.146827	C14H18ClN3O2
-312.149596	C18H14O4
-312.1522207	C14H18O7
-312.1534866	C12H17N5O4
-312.1626153	C18H15NO3
-312.17352	C14H21N3O2S
-312.1756346	C18H16N2O2
-312.2160513	C16H24O5
-312.2290706	C16H25NO4
-312.2394653	C20H22N2
-312.2420899	C16H26N2O3
-312.2798819	C18H30O3
-313.1116377	C11H15N5O3S
-313.1255057	C17H12O5
-313.1281304	C13H16O8
-313.1293963	C11H15N5O5
-313.1424156	C11H16N6O4
-313.1448847	C19H15ClO
-313.177583	C17H16N4O
-313.2023557	C19H19NO2
-313.215375	C19H20N2O
-313.2283943	C19H21N3
-313.2557916	C17H28O4
-313.2661863	C21H25N
-313.3196223	C19H34O2
-314.0263487	C6H14O10P2
-314.0356305	C8H18O4S4
-314.0745282	C10H12N4O5S
-314.1014155	C16H10O6
-314.1090411	C16H11ClN4
-314.1170594	C12H15NO8
-314.1253395	C12H17N3O4S
-314.1372213	C11H16N5O5
-314.1404734	C16H13N3O3
-314.1652461	C18H16O4
-314.1678707	C14H20O7
-314.1782654	C18H17NO3
-314.204304	C18H19N3O
-314.2447207	C16H27NO4
-314.295532	C18H32O3
-314.9690953	C9H7IO4
-315.0022584	C5H12O11P2
-315.0548772	C13H12Cl2O4
-315.0773252	C15H8O7
-315.1233972	C17H14O3S
-315.1299323	C15H17NaO3S
-315.1411558	C17H14O5
-315.1541751	C17H15NO4
-315.2049864	C19H20O3
-315.2062523	C17H19N5
-315.2206304	C15H25NO5
-315.231025	C19H22N2O
-315.2440444	C19H23N3
-315.3352723	C19H36O2
-316.0438062	C12H11Cl2NO4
-316.0532349	C14H6O8
-316.0792735	C14H8N2O6
-316.0973183	C12H19BrN2O2
-316.1123263	C16H13NO3S
-316.1170655	C16H12O6
-316.1300848	C16H13NO5
-316.1327095	C12H17NO8
-316.1431041	C16H14N2O4
-316.1457288	C12H18N2O7
-316.1469947	C10H17N7O4
-316.1781271	C14H22ClN3O2
-316.1808961	C18H18O4
-316.1891762	C18H20N2S
-316.1939155	C18H19NO3
-316.2447268	C20H24O2
-316.311182	C18H34O3
-316.3242013	C18H35NO2
-316.3750127	C20H40O
-316.9977646	C9H10INO3
-317.0093974	C9H11BrN2O5
-317.0495652	C9H11N2O8P
-317.0625845	C9H12N3O7P
-317.0699984	C11H11N4NaO3S
-317.0724476	C11H14ClN3O3S
-317.0929752	C15H10O7
-317.1216385	C11H16N2O8
-317.1568059	C17H16O5
-317.1698252	C17H17NO4
-317.1958638	C17H19N3O2
-317.1984884	C13H23N3O5
-317.2206365	C19H22O3
-317.2232611	C15H26O6
-317.2336558	C19H23NO2
-317.2466751	C19H24N2O
-317.3509224	C19H38O2
-317.3639417	C19H39NO
-317.9575337	C12H6Cl4O
-318.0901843	C14H11N3O3S
-318.0949236	C14H10N2O6
-318.0998231	C12H18O5S2
-318.1105675	C10H15N3O8
-318.1143026	C16H13ClN2O2
-318.1232869	C14H19Cl2NO2
-318.1235868	C10H16N4O7
-318.1273219	C16H14ClN3O
-318.1327156	C16H14O6
-318.1353776	C12H21N2O3PS
-318.154015	C16H17N3OS
-318.1587542	C16H16N2O4
-318.1743982	C12H21N3O6
-318.1965462	C18H20O4
-318.2048263	C18H22N2S
-318.2095655	C18H21NO3
-318.2603768	C20H26O2
-318.3268321	C18H36O3
-318.3398514	C18H37NO2
-319.0641737	C15H9ClO5
-319.0652152	C9H13N2O8P
-319.0782345	C9H14N3O7P
-319.1086253	C15H12O7
-319.1633272	C11H20N4O6
-319.1724559	C17H18O5
-319.1854752	C17H19NO4
-319.2362866	C19H24O3
-319.2493059	C19H25NO2
-319.2623252	C19H26N2O
-319.9344269	C6H4Na2O8S2
-320.0491439	C14H12BrNO2
-320.084535	C14H10O8
-320.108459	C10H17N3O6S
-320.1099661	C16H12ClFN2O
-320.1284925	C12H21NO4S2
-320.1483657	C16H16O6
-320.1874236	C16H19N3O3
-320.2121963	C18H22O4
-320.2252156	C18H23NO3
-320.2760269	C20H28O2
-320.3555015	C18H39NO2
-321.0687248	C13H10N2O5S
-321.0758649	C15H15BrO2
-321.1242754	C15H14O7
-321.1399193	C11H19NO9
-321.1433468	C15H14FN3O3
-321.150314	C15H16N2O5
-321.1633333	C15H17N3O4
-321.169693	C17H19ClN2O
-321.188106	C17H20O5
-321.2011253	C17H21NO4
-321.2519366	C19H26O3
-321.3157672	C21H32O
-321.3952418	C19H43NO
-322.0306608	C16H9Cl3
-322.1084652	C14H14N2O4S
-322.1132044	C14H13NO7
-322.1325834	C16H16ClNO3
-322.139243	C14H15N3O5
-322.1640157	C16H18O6
-322.1830871	C16H18FN3O2
-322.196414	C18H22ClNO
-322.2030736	C16H21N3O3
-322.24985	C16H31ClO3
-322.291677	C20H30O2
-322.3046963	C20H31NO
-323.0467068	C9H16N2O5Se
-323.067932	C9H14Cl2N6O2
-323.0843749	C13H12N2O5S
-323.1278721	C17H17Cl2N
-323.1351862	C15H17NO4S
-323.1373008	C19H12O4
-323.1399254	C15H16O7
-323.1425501	C11H20O10
-323.1659641	C15H18N2O5
-323.2037561	C17H22O5
-323.2167754	C17H23NO4
-323.2558333	C17H26N4O
-323.2675867	C19H28O3
-323.3314173	C21H34O
-324.0464469	C12H10Cl2F3NO
-324.0720753	C14H15O2PS2
-324.0724251	C8H15N2O9P
-324.0854444	C8H16N3O8P
-324.0907625	C16H14Cl2O2
-324.0924585	C10H19O7PS
-324.0986881	C12H12ClN7O
-324.1019744	C10H20O7P2
-324.1132105	C18H10O5
-324.1262298	C18H11NO4
-324.1288545	C14H15NO7
-324.1418738	C14H16N2O6
-324.1796658	C16H20O6
-324.1926851	C16H21NO5
-324.193951	C14H20N6O2
-324.2009652	C16H23N3OS
-324.2434964	C18H26O4
-324.2565157	C18H27NO3
-324.269535	C18H28N2O2
-324.307327	C20H32O2
-324.3203463	C20H33NO
-324.9518433	C7H9ClO6P2S
-325.0187855	C5H8N4O12
-325.1555755	C15H18O7
-325.1698607	C13H18N6O3
-325.1789895	C19H16N2O2
-325.1920088	C19H17N3O
-325.2076527	C15H22N4O3
-325.2194061	C17H24O5
-325.2654782	C19H30OS
-325.2832367	C19H30O3
-325.3470674	C21H36O
-326.0620365	C8H15O11P
-326.0730992	C14H9ClF2N2O2
-326.0750558	C8H16NO10P
-326.0910686	C16H8N2O5
-326.1019733	C12H14N4O4S
-326.1418799	C18H13NO4
-326.1445045	C14H17NO7
-326.1953158	C16H22O6
-326.2083352	C16H23NO5
-326.2213545	C16H24N2O4
-326.2473931	C16H26N4O2
-326.2591465	C18H28O4
-326.2721658	C18H29NO3
-326.3229771	C20H34O2
-327.0956415	C11H12N4O7
-327.1047703	C17H10O6
-327.1686009	C19H16O4
-327.1698668	C17H15N5O
-327.1712256	C15H20O7
-327.1816202	C19H17NO3
-327.1842449	C15H21NO6
-327.2350562	C17H26O5
-327.2480755	C17H27NO4
-327.2584702	C21H24N2
-327.9594837	C10H8N2O2S2Zn
-328.0763279	C10H12N5O5P
-328.1445106	C18H14O5
-328.1575299	C18H15NO4
-328.2747965	C18H30O4
-328.3386272	C20H36O2
-329.1109419	C17H14N2S2
-329.1204204	C17H12O6
-329.128046	C17H13ClN4
-329.142424	C15H19ClO5
-329.1724976	C17H16N4O2
-329.2102896	C19H20N2O2
-329.2192739	C17H26ClNO2
-329.2233089	C19H21N3O
-329.2322932	C17H27ClN2O
-329.2611009	C21H25NO
-329.2897642	C17H31N3O2
-329.3145369	C19H34O3
-329.3275562	C19H35NO2
-329.9786191	C12H6Cl3NO3
-329.9849788	C14H8Cl4
-329.999607	C10H8O8S2
-330.0230643	C7H5HgO2
-330.0294305	C14H11Cl3O2
-330.0304222	C10H12N3O3PS2
-330.0713935	C14H9ClF3NO2
-330.0963301	C16H10O7
-330.1417477	C18H15ClN2O
-330.1601607	C18H16O5
-330.17318	C18H17NO4
-330.2239913	C20H22O3
-330.2396353	C16H27NO5
-330.2500299	C20H24N2O
-330.2526546	C16H28N2O4
-330.2904466	C18H32O4
-330.3542772	C20H38O2
-331.1183119	C17H14O4S
-331.1360704	C17H14O6
-331.1490897	C17H15NO5
-331.1556248	C15H18NNaO5
-331.1751284	C17H17N3O3
-331.1811804	C17H16FN5
-331.199901	C19H20O4
-331.2129204	C19H21NO3
-331.2189725	C19H20FN3
-331.2259397	C19H22N2O2
-331.2637317	C21H26O2
-331.276751	C21H27NO
-331.905502	C8HCl4F3N2
-331.9367983	C12H4Cl4O2
-332.0006289	C14H10Cl4
-332.038797	C14H10BrN3O
-332.0426313	C14H10Cl2NNaO2
-332.070845	C12H17O4PS2
-332.0935671	C16H11ClN2O3
-332.0936195	C12H19IN2
-332.0937032	C12H10F3N3O4
-332.1002268	C14H10N4O5
-332.1119801	C16H12O7
-332.1262654	C14H12N6O3
-332.1310516	C16H12FN3O3
-332.1888301	C18H19NO4
-332.2126056	C18H26OSi2
-332.2396414	C20H24O3
-332.2526607	C20H25NO2
-332.2552853	C16H29NO5
-332.26568	C20H26N2O
-332.303472	C22H30O
-332.3060967	C18H34O4
-332.319116	C18H35NO3
-332.3699273	C20H40O2
-333.0824962	C15H10ClN3O3
-333.0878899	C15H10O8
-333.113321	C17H12ClFN2O
-333.1222085	C15H14N4O2S
-333.1295724	C11H17N3O8
-333.142242	C17H18N2S2
-333.1463268	C17H16ClN3O
-333.1469812	C17H17NO3S
-333.1517205	C17H16O6
-333.1647398	C17H17NO5
-333.1860392	C17H20N4S
-333.1886638	C13H24N4O3S
-333.2155511	C19H22O4
-333.2285704	C19H23NO3
-333.2415897	C19H24N2O2
-333.2793817	C21H28O2
-333.292401	C21H29NO
-333.2950257	C17H33NO4
-333.7935315	C6H3Br3O
-333.9524483	C12H6Cl4O2
-334.0581815	C10H13O10P
-334.0842201	C10H15N2O8P
-334.0972395	C10H16N3O7P
-334.1276302	C16H14O7
-334.1359103	C16H16N2O3S
-334.1419154	C14H14N6O3
-334.14227	C18H18ClNS
-334.1537158	C18H17FO2S
-334.1770828	C20H14N4
-334.1914608	C18H20O5
-334.1940855	C14H24O8
-334.2044801	C18H21NO4
-334.2148748	C22H18N2
-334.2174995	C18H22N2O3
-334.2435381	C18H24N4O
-334.2552915	C20H26O3
-334.2579161	C16H30O6
-334.2813301	C20H28N2O
-334.3217467	C18H36O4
-335.0432999	C11H12Cl2N2O5
-335.0601299	C9H13N2O9P
-335.0731492	C9H14N3O8P
-335.0810421	C15H13NO3S2
-335.1035399	C15H12O8
-335.1074305	C9H15N5O8
-335.1274639	C11H19N3O6S
-335.1474974	C13H23NO4S2
-335.1803899	C17H19NO5
-335.1999049	C15H21F3N2O2
-335.2127882	C19H23ClN2
-335.2312012	C19H24O4
-335.2394812	C19H26N2S
-335.2442205	C19H25NO3
-335.2950318	C21H30O2
-335.3614871	C19H40O3
-335.9236468	C12H5Cl5
-336.0385388	C14H10ClN3S2
-336.0548372	C10H16N2O4S3
-336.0673963	C16H11Cl2NO2
-336.0794496	C14H10O9
-336.1071087	C16H15ClN2OS
-336.1209084	C16H19BrN2
-336.1432803	C16H16O7
-336.1459049	C12H20O10
-336.1493324	C16H15FN2O4
-336.154185	C12H22N2O6S
-336.1589242	C12H21NO9
-336.1797136	C20H15N3O
-336.1927329	C20H16N4
-336.2071109	C18H22O5
-336.2201302	C18H23NO4
-336.2709415	C20H28O3
-336.2839608	C20H29NO2
-336.3504161	C18H39NO3
-337.0170732	C9H12ClN3O4S2
-337.0557934	C9H12FN2O8P
-337.0637997	C11H19NO2S4
-337.0757799	C9H15N2O9P
-337.11919	C15H14O8
-337.1348339	C11H19NO10
-337.1404894	C15H17N3O3S
-337.146849	C17H19ClN2S
-337.1526299	C11H22N3O6P
-337.1830206	C17H20O6
-337.1869112	C11H23N5O6
-337.1960399	C17H21NO5
-337.2090592	C17H22N2O4
-337.2284382	C19H25ClN2
-337.2598706	C19H27NO3
-337.3106819	C21H32O2
-338.0274958	C14H9Cl2N3S
-338.0821178	C14H14NO4PS
-338.1185137	C18H10N2O4
-338.1357781	C16H18ClN3S
-338.1563057	C20H14O4
-338.161555	C12H22O10
-338.1780017	C16H18FN3O3
-338.1875936	C12H24N2O8
-338.2006129	C12H25N3O7
-338.2110076	C16H22N4O3
-338.2136322	C12H26N4O6
-338.2865916	C20H30O3
-338.3256495	C20H33N3
-339.1149669	C11H21NO6S2
-339.117693	C13H14ClN7O
-339.1322154	C19H12O5
-339.1669308	C15H17FN4O3
-339.173898	C15H19N3O5
-339.1986707	C17H22O6
-339.2180497	C19H25ClO2
-339.2625013	C19H28O4
-339.3263319	C21H34O2
-339.3393512	C21H35NO
-340.019808	C12H12BrN3OS
-340.0593309	C14H9ClFNO5
-340.0696146	C10H19O6PS2
-340.1012713	C14H16N2O3S2
-340.1079807	C10H18ClN3O7
-340.1107498	C14H14O9
-340.1237691	C14H15NO8
-340.1253895	C16H18ClNO2S
-340.1367884	C14H16N2O7
-340.1698412	C16H21NO4S
-340.1719558	C20H16O4
-340.1875997	C16H21NO6
-340.2330173	C18H26ClN3
-340.277469	C18H29N3O2
-340.3022416	C20H32O3
-340.3412996	C20H35N3
-340.3731209	C20H24O2T8
-341.077181	C13H14N2O4S2
-341.1126981	C13H14N2O8
-341.1478655	C19H14O5
-341.1504901	C15H18O8
-341.1587702	C15H20N2O4S
-341.1717895	C15H21N3O3S
-341.1739041	C19H16N2O3
-341.212962	C19H19N5
-341.2143207	C17H24O6
-341.2781514	C19H30O4
-341.288546	C23H27N
-341.341982	C21H36O2
-342.0087751	C8H8F3N3O4S2
-342.0505159	C14H11Cl2NO4
-342.1237752	C18H12O6
-342.1263998	C14H16O9
-342.1524385	C14H18N2O7
-342.1876058	C20H18O4
-342.2006251	C20H19NO3
-342.2032498	C16H23NO6
-342.2136444	C20H20N2O2
-342.2266637	C20H21N3O
-342.2670804	C18H29NO4
-342.9956477	C13H8Cl2O4S
-343.0597783	C11H11N3O7S
-343.0683886	C13H7F3N2O5
-343.0966915	C9H19O11P
-343.1543868	C13H18N4O6
-343.1635155	C19H16O5
-343.1661402	C15H20O8
-343.1765349	C19H17NO4
-343.1895542	C19H18N2O3
-343.1921788	C15H22N2O6
-343.2252316	C17H27NO3S
-343.9269493	C6H12N2O4Se2
-344.0582232	C10H11N4O7P
-344.0712425	C10H12N5O6P
-344.0922046	C14H15Cl2N3O2
-344.1058783	C14H17ClN2O3S
-344.1302965	C12H16N4O7
-344.1311826	C18H15O4P
-344.1373107	C14H19NO6S
-344.1394253	C18H14O6
-344.1874675	C16H23ClN2O3
-344.1985166	C20H21NOS
-344.2032559	C20H20O4
-344.2058805	C16H24O7
-344.2115359	C20H22N2S
-344.2162752	C20H21NO3
-344.2292945	C20H22N2O2
-344.2801058	C22H27NO
-344.2827305	C18H31NO4
-344.8934774	C9H6Br2O4
-345.0420757	C13H11Cl2NO5
-345.0484354	C15H13Cl3O2
-345.0681143	C13H13Cl2N3O3
-345.115335	C17H12O7
-345.1179596	C13H16O10
-345.1319449	C15H19Cl2N3O
-345.1607526	C19H17ClN2O
-345.1921849	C19H19NO4
-345.2052042	C19H20N2O3
-345.2115639	C21H22ClN
-345.2141886	C17H26ClNO3
-345.2278623	C17H28O4S
-345.2429962	C21H24O3
-346.0101656	C6H13NO11S2
-346.016178	C6H14O12P2
-346.0534527	C14H6N2O8
-346.0793274	C14H10ClF3N2O2
-346.0868926	C10H14N5O6P
-346.1296951	C18H13ClFN3
-346.1550753	C18H16O6
-346.1680946	C18H17NO5
-346.1707193	C14H21NO8
-346.1967579	C14H23N3O6
-346.218906	C20H22O4
-346.2215306	C16H26O7
-346.224958	C20H21FN2O
-346.2319253	C20H23NO3
-346.2345499	C16H27NO6
-346.2449446	C20H24N2O2
-346.2579639	C20H25N3O
-346.3491918	C20H38O3
-346.9221468	C9H9Br2NO3
-347.0577192	C8H9HgO2
-347.0745557	C11H14NO9P
-347.0817942	C17H12ClNO2S
-347.087575	C11H15N2O8P
-347.130985	C17H14O7
-347.1336471	C13H21N2O4PS
-347.1948157	C19H20O5
-347.207835	C19H21NO4
-347.2208543	C19H22N2O3
-347.2338736	C19H23N3O2
-347.2586463	C21H26O3
-347.3570169	C20H39O3
-347.9051381	C6H10Ge2O7
-348.0691028	C14H8N2O8
-348.1068948	C16H12O8
-348.1371785	C14H21ClN2O3S
-348.1390988	C12H21N5O2S2
-348.1523124	C18H17ClN2O2
-348.1615966	C12H20N4O7
-348.1653317	C18H18ClN3O
-348.1707254	C18H18O6
-348.178351	C18H19ClN4
-348.1790055	C18H20N2O2S
-348.1837447	C18H19NO5
-348.1993887	C14H24N2O7
-348.234556	C20H24O4
-348.2371807	C16H28O7
-348.2605946	C20H26N2O2
-348.2983866	C22H30O2
-348.3114059	C22H31NO
-348.3778612	C20H41NO2
-349.0784523	C9H14N5O7P
-349.0837705	C17H12Cl2N2O
-349.0927548	C15H18Cl3NO
-349.1041039	C15H13N3O4S
-349.1067285	C11H17N3O7S
-349.1212549	C17H13ClFN3O
-349.1391268	C13H21ClN4O2S
-349.1466351	C17H16O7
-349.1596544	C17H17NO6
-349.1726737	C17H18N2O5
-349.1904792	C19H19FO4
-349.1920527	C19H21ClN2O
-349.2034985	C19H20FNO3
-349.2104657	C19H22O5
-349.2187458	C19H24N2OS
-349.223485	C19H23NO4
-349.2365044	C19H24N2O3
-349.2742964	C21H28O3
-349.2873157	C21H29NO2
-350.0602388	C9H13N3O9P
-350.0791348	C10H15N2O9P
-350.0870277	C16H14O4S2
-350.0921541	C10H16N3O8P
-350.1225448	C16H14O8
-350.1371846	C18H18ClNOS
-350.1642274	C12H21N3O8
-350.1993948	C18H21NO5
-350.2502061	C20H26O4
-350.2632254	C20H27NO3
-350.3140367	C22H32O2
-350.3166613	C18H36O5
-351.0680638	C9H14N3O9P
-351.0810831	C9H15N4O8P
-351.1088213	C15H10F6O2
-351.1223786	C11H19N3O7S
-351.1440082	C13H16F3N3O4
-351.1622852	C17H18O7
-351.1779291	C13H23NO9
-351.1813566	C17H18FN3O3
-351.2261158	C19H24O5
-351.2391351	C19H25NO4
-351.2899464	C21H30O3
-351.315985	C21H32N2O
-351.9185614	C12H5Cl5O
-352.0448523	C12H8N4O6S
-352.0753303	C16H12Cl2N2O2
-352.1355703	C20H12O5
-352.1360803	C12H21NO8S
-352.1381949	C16H16O8
-352.1408195	C12H20O11
-352.146475	C16H18N2O4S
-352.1746282	C20H15N3O2
-352.2150448	C18H23NO5
-352.2632315	C24H24O
-352.2658561	C20H28O4
-352.2788755	C20H29NO3
-352.2918948	C20H30N2O2
-352.3296868	C22H34O2
-353.0538148	C13H11N3O4S2
-353.1417637	C17H19ClN2OS
-353.1661818	C15H18N4O5
-353.1805599	C13H24O10
-353.2169932	C17H23N3O4
-353.2547852	C19H27NO4
-353.27283	C17H38BrN
-353.28561	C21H29FO2
-353.3055965	C21H32O3
-353.3446544	C21H35N3
-353.3694271	C23H38O
-354.0439796	C12H9N2O8P
-354.0538428	C14H11ClN2O4S
-354.0821714	C14H9N4NaO5
-354.1512203	C20H14O5
-354.153845	C16H18O8
-354.1564696	C12H22O11
-354.1642396	C20H15NO4
-354.1668643	C16H19NO7
-354.199917	C18H24O4S
-354.2122819	C18H24ClN3O
-354.2280702	C22H21NO2
-354.2306949	C18H25NO5
-354.2437142	C18H26N2O4
-354.2815062	C20H30O4
-354.2919009	C24H27N
-355.0799093	C15H13Cl2N3O2
-355.1193974	C11H22NO7PS
-355.12713	C19H12O6
-355.1297547	C15H16O9
-355.1401493	C19H13NO5
-355.1935853	C17H22O7
-355.1948512	C15H21N5O4
-355.20398	C21H19NO3
-355.2148847	C17H25N3O2S
-355.2678106	C23H25NO
-355.2704352	C19H29NO4
-355.3212466	C21H34O3
-355.9969641	C12H12BrN3S2
-356.0297804	C14H9Cl2NO5
-356.0805918	C16H14Cl2O4
-356.1121995	C12H17NaO10
-356.131703	C14H16N2O8
-356.1447223	C14H17N3O7
-356.1577886	C16H19FN2O3S
-356.1668704	C20H16O5
-356.1721197	C12H24O11
-356.1863854	C18H18F3NO2
-356.1885664	C16H20FN3O4
-356.2279319	C18H26ClN3O
-356.2333256	C18H26O6
-356.246345	C18H27NO5
-356.2593643	C18H28N2O4
-356.2971563	C20H32O4
-357.0707867	C13H12Cl2N6O
-357.0759561	C9H17O12P
-357.1375618	C15H15N4NaO4
-357.1427801	C19H14O6
-357.1454047	C15H18O9
-357.1504057	C19H15ClN4
-357.1557994	C19H15NO5
-357.1667041	C15H21N3O4S
-357.1948573	C19H18N4O2
-357.2033587	C16H23N2O6
-357.2105013	C15H23N5O4
-357.2326493	C21H22N2O2
-357.273066	C19H30O5
-358.074044	C12H14N4O4S2
-358.1213145	C14H16O10
-358.1489735	C16H21ClN2O2S
-358.1825204	C20H18O5
-358.1851451	C16H22O8
-358.1955398	C20H19NO4
-358.2085591	C20H20N2O3
-358.224203	C16H25N3O5
-358.2593704	C22H25NO2
-358.3128063	C20H34O4
-358.953512	C9H11Cl3NO3PS
-359.1076188	C17H11NO7
-359.1112095	C15H17Cl2N3O2
-359.1400172	C19H15ClN2O2
-359.1584302	C19H16O6
-359.1714495	C19H17NO5
-359.1823542	C15H23N3O4S
-359.1844688	C19H18N2O4
-359.1974881	C19H19N3O3
-359.2222608	C21H22O4
-359.2352801	C21H23NO3
-359.2482994	C21H24N2O2
-359.31213	C23H30N2
-360.0259893	C10H12BrN5O4
-360.0475198	C6H16N4O9P2
-360.0661571	C10H12N5O7P
-360.0674403	C16H15Cl3O2
-360.1343399	C18H14O7
-360.1452446	C14H20N2O6S
-360.1981705	C20H20O5
-360.2007952	C16H24O8
-360.2111898	C20H21NO4
-360.2242091	C20H22N2O3
-360.2372284	C20H23N3O2
-360.2620011	C22H26O3
-360.2750204	C22H27NO2
-360.392287	C22H42O2
-361.0266718	C11H13BrN2O6
-361.1102496	C17H12O8
-361.1637229	C15H24NO4PS
-361.1740802	C19H18O6
-361.1767049	C15H22O9
-361.1870995	C19H19NO5
-361.2001188	C19H20N2O4
-361.2379109	C21H24O4
-361.2509302	C21H25NO3
-361.2639495	C21H26N2O2
-361.9748081	C14H8Cl4O2
-362.0687879	C10H13N4O8P
-362.0818072	C10H14N5O7P
-362.0935606	C12H16NO9P
-362.0948265	C10H15N6O6P
-362.1499899	C18H16O7
-362.1535308	C18H19N3S2
-362.2138206	C20H22O5
-362.2221006	C20H24N2OS
-362.2268399	C20H23NO4
-362.2398592	C20H24N2O3
-362.2776512	C22H28O3
-362.2906705	C22H29NO2
-362.4079371	C22H44O2
-362.9637371	C13H7Cl4NO2
-363.0824896	C11H15N2O9P
-363.0897281	C17H13ClN2O2S
-363.1157667	C17H15ClN4S
-363.1258997	C17H14O8
-363.1513308	C19H16ClFN2O
-363.1897303	C19H20O6
-363.2247532	C17H28ClNO4
-363.2418075	C19H24N4O2
-363.2561856	C17H30O7
-363.2665802	C21H27NO3
-363.2926188	C21H29N3O
-363.3173915	C23H32O2
-363.3838468	C21H42O3
-364.0961913	C12H17O10P
-364.104434	C12H16O12
-364.1424878	C18H18ClN3S
-364.16564	C18H18O7
-364.1786593	C18H19NO6
-364.2046979	C18H21N3O4
-364.2424899	C20H25NO4
-364.2555093	C20H26N2O3
-364.2815479	C20H28N4O
-364.2933013	C22H30O3
-364.3063206	C22H31NO2
-364.991917	C7H5ClHgO2
-365.1571937	C13H21NO10
-365.1628491	C17H19N3O3S
-365.1675884	C17H18N2O6
-365.2053804	C19H22O6
-365.2183997	C19H23NO5
-365.231419	C19H24N2O4
-365.2377787	C21H26ClNO
-365.269211	C21H28O4
-365.3994969	C21H44O3
-365.924519	C12H6Cl4O2S
-365.9616566	C14H9Cl5
-365.9854711	C10H16Br2N2O2
-366.1298712	C18H15ClFNO3
-366.1387588	C16H17N3O4S
-366.1517781	C16H18N4O3S
-366.1943094	C18H21NO6
-366.2451207	C20H26O5
-366.2711593	C20H28N2O3
-366.2841786	C20H29N3O2
-366.3089513	C22H32O3
-366.3219706	C22H33NO2
-367.0169437	C7H11N5O8P2
-367.0759977	C9H15N4O9P
-367.089017	C9H16N5O8P
-367.0943352	C17H14Cl2N2O2
-367.1454464	C15H16N4O6
-367.2210304	C19H24O6
-367.2340497	C19H25NO5
-367.284861	C21H30O4
-367.3486917	C23H36O2
-367.9346659	C12H8Br2N2O
-368.0420917	C12H15Cl2NO5S
-368.0728197	C14H13N3O4S2
-368.1083368	C14H13N3O8
-368.1331095	C16H16O9
-368.1344224	C16H16FN3O3S
-368.1413896	C16H18N2O5S
-368.1435042	C20H13NO5
-368.1544089	C16H19N3O4S
-368.1759025	C22H17ClN2
-368.1785271	C18H21ClN2O3
-368.1791816	C18H22O5S
-368.2099595	C18H23NO6
-368.2229788	C18H24N2O5
-368.2607708	C20H28O5
-368.275056	C18H28N6O
-368.2868094	C20H30N2O3
-368.3246014	C22H34O3
-368.3376207	C22H35NO2
-368.3580604	C18H43AlO4
-369.0839466	C17H14Cl2O4
-369.0916478	C9H17N4O9P
-369.1090192	C15H14O10
-369.123659	C17H18ClNO3S
-369.1283982	C17H17ClO6
-369.1433379	C15H18N4O4S
-369.2366805	C19H26O6
-369.3005111	C21H32O4
-369.3643417	C23H38O2
-369.377361	C23H39NO
-369.8846744	C12H4Cl6
-369.9995665	C14H9Cl2N3S2
-370.0728756	C16H13Cl2NO4
-370.1461349	C20H14O6
-370.1487596	C16H18O9
-370.1538966	C16H14F3N5O
-370.1591542	C20H15NO5
-370.1721736	C20H16N2O4
-370.1811579	C18H22ClNO4
-370.1948317	C18H24O5S
-370.2229849	C22H21NO3
-370.2256095	C18H25NO6
-370.2716816	C20H31NO2S
-370.2764208	C20H30O5
-370.3402515	C22H36O3
-370.3532708	C22H37NO2
-370.9781009	C9H11Cl2N3O4S2
-371.0487853	C15H11Cl2NO5
-371.0643795	C13H13N3O5S2
-371.1220447	C19H12O7
-371.1273313	C11H23N2O7PS
-371.1329494	C15H18N2O6S
-371.1637272	C15H19N3O7
-371.1875848	C17H19F2N3O3
-371.1897658	C15H21N5O5
-371.19678	C17H24N2O4S
-371.1988946	C21H19NO4
-371.2119139	C21H20N2O3
-371.2653499	C19H29NO5
-371.3161612	C21H34O4
-372.101545	C16H16Cl2N2O3
-372.1257495	C16H14F3N3OS
-372.161785	C20H16O6
-372.1644096	C16H20O9
-372.2008429	C20H19N3O3
-372.2412596	C18H27NO6
-372.2776929	C22H26N4
-372.2920709	C20H32O5
-372.3689208	C22H39NO2
-373.0555034	C13H15IN2O2
-373.1152467	C17H18Cl2O4
-373.1199362	C19H14O5S
-373.1235268	C17H20Cl2N2S
-373.150714	C19H15NO6
-373.1967861	C21H21NO2S
-373.2015253	C21H20O5
-373.2124301	C17H26N2O4S
-373.2145447	C21H21NO4
-373.227564	C21H22N2O3
-373.265356	C23H26O3
-373.3318112	C21H36O4
-373.9159746	C12H8Cl6
-373.9649591	C8H16N2O4Se2
-374.0203586	C14H8Cl2FNO5
-374.0552848	C12H12ClN5O4S
-374.1153609	C16H14F3NO3S
-374.1245091	C14H18N2O7S
-374.1292484	C14H17NO10
-374.134025	C14H19N2O7P
-374.1375285	C14H19N3O6S
-374.1461388	C16H15F3N2O4
-374.1774351	C20H18O6
-374.1800597	C16H22O9
-374.1904544	C20H19NO5
-374.193079	C16H23NO8
-374.216493	C20H21N3O3
-374.254285	C22H25NO3
-374.2673043	C22H26N2O2
-374.307721	C20H34O5
-375.0696007	C7H11BiO4
-375.1533448	C19H16O7
-375.1559694	C15H20O10
-375.1593969	C19H15FN2O4
-375.2171754	C21H22O5
-375.2184413	C19H21N5O2
-375.2301947	C21H23NO4
-375.2328194	C17H27NO7
-375.243214	C21H24N2O3
-375.3074883	C21H32F2O2
-375.3474613	C21H38O4
-376.0614263	C14H16ClO5PS
-376.0843314	C16H10ClF4NO2
-376.1531785	C14H21N3O6S
-376.1553401	C20H17FO3S
-376.1579178	C14H20N2O9
-376.1930851	C20H20O6
-376.1957098	C16H24O9
-376.2039898	C16H26N2O5S
-376.2061044	C20H21NO5
-376.2191237	C20H22N2O4
-376.2569158	C22H26O4
-376.2699351	C22H27NO3
-376.2829544	C22H28N2O2
-376.323371	C20H36O5
-377.0300975	C7H16O13P2
-377.0691681	C13H12N3NaO6S
-377.0802276	C15H11ClF3NO4
-377.1312028	C17H14N2O7
-377.1375625	C19H16ClNO4
-377.1716195	C15H22O10
-377.1742441	C11H26O13
-377.1772749	C19H20N2O3S
-377.1906909	C15H22FN3O6
-377.2328255	C21H24O5
-377.236716	C15H27N5O5
-377.2458448	C21H25NO4
-377.2588641	C21H26N2O3
-377.2652238	C23H28ClN
-377.2718834	C21H27N3O2
-377.3031518	C21H31F3O
-377.3096754	C23H31NO2
-377.426942	C23H46O2
-378.0459439	C10H13N4O7PS
-378.0637025	C10H13N4O9P
-378.0767218	C10H14N5O8P
-378.108733	C18H15ClN2O2S
-378.1264916	C18H15ClN2O4
-378.1449046	C18H16O8
-378.1952444	C18H20F4O3
-378.2033415	C20H22ClN3O
-378.2087352	C20H22O6
-378.2347738	C20H24N2O4
-378.2855851	C22H29NO3
-378.2986044	C22H30N2O2
-378.3142484	C18H35N3O4
-378.4028517	C22H44O3
-378.9736742	C5H13O13P3
-379.0605743	C13H14Cl2N2O6
-379.0933891	C15H8F6N2O2
-379.1151962	C13H19O10P
-379.1571032	C13H21ClN6O4
-379.1728915	C17H18N4O5
-379.1846449	C19H20O7
-379.215709	C17H32BrNO2
-379.2484755	C21H26O5
-379.2614948	C21H27NO4
-379.2745142	C21H28N2O3
-379.3123062	C23H32O3
-379.3473291	C21H40ClNO
-379.3787614	C21H42O4
-379.8546425	C10H5Cl7
-380.0241565	C12H15ClNO4PS2
-380.0533139	C10H13N2O11P
-380.0723854	C10H13FN5O7P
-380.0793526	C10H15N4O9P
-380.1145199	C16H15N2O6P
-380.1221551	C18H14ClFN2O3
-380.1291223	C18H16ClNO5
-380.1748399	C16H18N6O4
-380.1799336	C20H21ClO4
-380.181854	C18H21N3O3S
-380.1844786	C14H25N3O6S
-380.1865933	C18H20N2O6
-380.1892179	C14H24N2O9
-380.1929529	C20H22ClNO3
-380.1969879	C22H17N3O2
-380.2243853	C20H24O6
-380.2504239	C20H26N2O4
-380.2634432	C20H27N3O3
-380.2882159	C22H30O4
-380.3012352	C22H31NO3
-380.3819757	C18H41N7
-381.1447444	C17H18N2O5S
-381.1688627	C19H20ClNO4
-381.200295	C19H22O7
-381.2063471	C19H21FN2O4
-381.208575	C19H24N2O3S
-381.2133143	C19H23NO6
-381.2193664	C19H22FN3O3
-381.2641256	C21H28O5
-381.9565712	C14H9Cl5O
-382.1133401	C18H16Cl2N2O2
-382.1149987	C12H18O13
-382.1171507	C16H16NO7P
-382.1336734	C16H17N3O5S
-382.1865994	C22H17NO4
-382.1952761	C18H20FN3O4
-382.2400353	C20H26O6
-382.2530546	C20H27NO5
-382.2660739	C20H28N2O4
-382.3168853	C22H33NO3
-382.3937352	C24H40N2
-383.0566572	C9H15N5O7S2
-383.1226025	C15H16N4O5S
-383.1534273	C17H18FN3O3S
-383.1603945	C17H20N2O5S
-383.1685612	C21H14FN3O2
-383.215945	C19H24O7
-383.2242251	C19H26N2O3S
-383.2483433	C21H28ClNO2
-383.2797757	C21H30O5
-383.2810416	C19H29N5O2
-383.3108398	C19H42BrN
-383.3414917	C19H41NO3S
-383.3436063	C23H36O3
-384.1493235	C16H19N3O5S
-384.164901	C18H17F2NO5
-384.2022494	C22H19NO4
-384.20614	C16H22N6O4
-384.2556854	C20H28O6
-384.281724	C20H30N2O4
-385.0653704	C15H12Cl2F4O2
-385.0807816	C15H14ClN3O4S
-385.1651398	C21H16O6
-385.1677645	C17H20O9
-385.1781591	C21H17NO5
-385.2315951	C19H26O7
-385.2446144	C19H27NO6
-385.2954257	C21H32O5
-385.308445	C21H33NO4
-385.8795891	C12H4Cl6O
-386.1341957	C16H20N2O4S2
-386.1382805	C16H18ClN3O5
-386.1410496	C20H14O7
-386.1436742	C16H18O10
-386.1519543	C16H20N2O6S
-386.1540689	C20H15NO6
-386.1697128	C16H20N2O8
-386.2087707	C16H23N5O5
-386.2205241	C18H25NO7
-386.2713355	C20H30O6
-386.3351661	C22H36O4
-387.0148425	C13H10ClN3O4S2
-387.1195839	C15H16O11
-387.2003049	C19H20F3NO3
-387.2294866	C19H28O5S
-387.2446205	C23H24O4
-387.2576398	C23H25NO3
-387.2966978	C23H28N4
-387.3110758	C21H34O5
-387.3879257	C23H41NO2
-388.0298101	C12H11ClN6O2S2
-388.0745083	C14H17IN2O2
-388.0756205	C10H19NO10S2
-388.136172	C16H20ClN3O3S
-388.1454762	C18H19NaO5S
-388.1566996	C20H16O7
-388.1697189	C20H17NO6
-388.1760786	C22H19ClO3
-388.2465689	C22H24N2O3
-388.2869855	C20H32O6
-389.1482533	C15H19NO10
-389.1650076	C21H18ClNO3
-389.178163	C17H18F3N3O3
-389.19644	C21H20O6
-389.1990646	C17H24O9
-389.2000306	C19H26Cl2N2O
-389.2177393	C21H23N3OS
-389.2224786	C21H22N2O4
-389.2889339	C19H32N2O5
-389.3241012	C25H32O2
-389.3267259	C21H36O5
-389.3371205	C25H33NO
-389.9108892	C12H8Cl6O
-389.9201237	C8H8Cl3N3O4S2
-389.9908081	C14H8Cl3NO5
-390.0274399	C8H15NO12S2
-390.0464716	C8H17NO12P2
-390.1085191	C18H12O9
-390.1324431	C14H19N3O7S
-390.1363535	C16H18N3NaO4S
-390.1723497	C20H18O7
-390.1749743	C16H22O10
-390.185369	C20H19NO6
-390.2622189	C22H26N2O3
-390.3026356	C20H34O6
-390.4302968	C24H46O2
-391.0826257	C15H16Cl3N5
-391.1298464	C19H15ClN2O4
-391.1612787	C19H17NO7
-391.1689043	C19H18ClN5O
-391.21209	C21H22O6
-391.2147147	C17H26O9
-391.2251093	C21H23NO5
-391.2381286	C21H24N2O4
-391.28894	C23H29NO3
-392.0992325	C16H13ClF3NO4
-392.1565674	C20H18ClNO4
-392.1879998	C20H20O7
-392.1906244	C16H24O10
-392.2249431	C16H28N4O4S
-392.2270577	C20H23N3O4
-392.236042	C18H29ClN2O4
-392.2427016	C16H28N4O6
-392.2518304	C22H26O5
-392.2648497	C22H27NO4
-392.3182856	C20H36O6
-392.3416996	C24H34N2O
-392.3821163	C22H42O4
-392.4459469	C24H48O2
-393.0722372	C15H16Cl3N3O2
-393.1083589	C17H14N2O6S
-393.1454965	C19H17ClN2O4
-393.1639095	C19H18O8
-393.2277401	C21H24O6
-393.229006	C19H23N5O3
-393.2407594	C21H25NO5
-393.2537787	C21H26N2O4
-393.3106421	C23H30FN3
-393.9646373	C14H8Cl4O4
-394.0586171	C10H13N4O10P
-394.1554631	C14H21NO11
-394.1658578	C18H18N2O7
-394.2036498	C20H22O7
-394.2166691	C20H23NO6
-394.2674804	C22H28O5
-394.2687464	C20H27N5O2
-394.2935191	C22H30N2O3
-394.3313111	C24H34O3
-394.7245839	CHI3
-394.9685888	C5H13O14P3
-395.0733705	C17H14BrFN2O2
-395.0774427	C13H18ClN3O4S2
-395.1396529	C13H21N3O8S
-395.1769349	C23H16O5
-395.2002044	C19H22ClN5O
-395.2433902	C21H26O6
-395.2564095	C21H27NO5
-395.2824481	C21H29N3O3
-395.8495571	C10H5Cl7O
-396.1110176	C18H15ClO7
-396.1203019	C12H18N2O12
-396.128582	C12H20N4O8S
-396.1528446	C22H14O6
-396.1711132	C14H23NO11
-396.1961476	C20H24ClN3S
-396.1968021	C20H25NO2S2
-396.2192999	C20H24O7
-396.3065445	C26H28N2
-396.3352077	C22H34N4O
-396.4427071	C27H45
-397.0497898	C15H10O10S
-397.0800735	C13H19ClN2O5S2
-397.0959878	C17H18BrNO4
-397.139659	C17H18N2O6S
-397.1568101	C19H18ClFN2O3
-397.1677844	C17H16F6N2O
-397.1813488	C15H28O7P2
-397.1834562	C17H20N4O6
-397.1952096	C19H22O8
-397.2076214	C21H23ClFNO2
-397.214281	C19H22FN3O4
-397.2406272	C21H27ClN2O2
-397.2590402	C21H28O6
-397.3181316	C23H35NOS
-397.3358902	C23H35NO3
-397.4505321	C27H46
-397.9514858	C14H9Cl5O2
-398.0194002	C6H11AuO5S
-398.0728267	C12H14ClF2N5O3S
-398.0956956	C12H21N3O5S3
-398.1108295	C16H17N3O4S2
-398.1684947	C22H16O6
-398.1723852	C16H19N5O6
-398.173744	C14H24O12
-398.1867633	C14H25NO11
-398.1945333	C22H18N2O4
-398.1987784	C20H25ClN2OS
-398.2349499	C20H26O7
-398.2609886	C20H28N2O5
-398.2787941	C22H29FO4
-398.3061818	C18H38NO5P
-398.3091752	C26H29NO
-398.3117999	C22H33NO4
-398.3626112	C24H38O3
-398.9863775	C15H14Br2O2
-399.0315457	C9H14N2O11P2
-399.0398488	C13H10Cl2F3N3O3
-399.044565	C9H15N3O10P2
-399.1553091	C17H20N2O6S
-399.1756923	C13H24N2O11
-399.1931011	C19H24O6S
-399.1991063	C17H22N4O6
-399.2547038	C21H27FO5
-399.2746903	C21H30O6
-399.4283902	C25H44N2
-399.9671359	C14H11Cl5O2
-400.0794531	C18H15Cl3N2O
-400.1064461	C14H15N5O6S
-400.1203141	C20H12O8
-400.1841447	C22H18O6
-400.1971641	C22H19NO5
-400.2506	C20H28O7
-400.2609947	C24H25NO3
-400.3144306	C22H34O5
-400.3218319	C18H40NO5P
-400.3274499	C22H35NO4
-400.3782613	C24H40O3
-400.3912806	C24H41NO2
-401.0069155	C11H10Cl2F2N4O3S
-401.0645973	C13H13N5O5S2
-401.08937	C15H16N2O6S2
-401.1062497	C11H20NO12P
-401.1156552	C17H21IO2
-401.1240189	C17H14F3N3O2S
-401.1600545	C21H16O7
-401.1626791	C17H20O10
-401.1730738	C21H17NO6
-401.2087512	C19H26O6S
-401.2238851	C23H22O5
-401.239529	C19H27NO7
-401.2703538	C21H29FO5
-401.2877157	C25H28O3
-401.354171	C23H38O4
-402.1199152	C16H15F2N3O4S
-402.1359642	C20H14O8
-402.1385888	C16H18O11
-402.1395548	C18H20Cl2N2O3
-402.1398547	C14H17N5O8
-402.1489835	C20H15NO7
-402.1637986	C18H20N3NaO3S
-402.1670283	C18H26BrNO3
-402.1709871	C18H22ClNO6
-402.2036854	C16H23N5O6
-402.2128141	C22H21NO5
-402.2636254	C24H26O4
-402.2766447	C24H27NO3
-402.2792694	C20H31NO6
-403.1066632	C17H12F4N2O2S
-403.1572915	C21H17ClN2O3
-403.1757045	C21H18O7
-403.1783292	C17H22O10
-403.1950835	C23H21ClO3
-403.1952195	C19H20F3NO4
-403.2244012	C19H28O6S
-403.2525545	C23H25NO4
-404.0291641	C16H13Cl3N2OS
-404.0488119	C18H15ClSn
-404.0494975	C14H14ClN3O4S2
-404.0561571	C12H13N5O6S2
-404.1377463	C14H19N5O6S
-404.1507656	C14H20N6O5S
-404.1516142	C20H16O8
-404.1646336	C20H17NO7
-404.2193354	C16H25N5O6
-404.2345163	C22H22FN3O2
-404.2388588	C26H20N2O
-404.2414835	C22H24N2O4
-404.2792755	C24H28O4
-405.0778616	C17H11ClF4N2S
-405.0962181	C13H13F2N6O4P
-405.168599	C17H21ClFN3O4
-405.1913546	C21H20O7
-405.1939792	C17H24O10
-405.2043739	C21H21NO6
-405.2942431	C23H29N3O2
-405.3606984	C21H39N3O3
-406.0651475	C14H16ClN3O4S2
-406.0990815	C12H16N5O8P
-406.1672643	C20H18O8
-406.169889	C16H22O11
-406.2257012	C22H24ClN3O
-406.2310949	C22H24O6
-406.2337196	C18H28O9
-406.2391995	C18H36OSn
-406.2571336	C22H26N2O4
-406.2949256	C24H30O4
-406.2975502	C20H34O7
-406.3058303	C20H36N2O3S
-406.3366081	C20H37N3O4
-406.8732782	C9H5I2NO
-407.05943	C7H11BiO6
-407.0724896	C13H16N2O8S2
-407.1642626	C17H20ClF2N3O3
-407.182232	C19H19N3O6
-407.2070047	C21H22O7
-407.2082706	C19H21N5O4
-407.2096293	C17H26O10
-407.220024	C21H23NO6
-407.228304	C21H25N3O2S
-407.2330433	C21H24N2O5
-407.3125178	C19H35N3O5
-407.3346659	C25H34O3
-407.3372905	C21H38O6
-408.0209377	C10H16KNO9S2
-408.0548088	C12H19Cl3O8
-408.1451224	C18H16N2O8
-408.1664382	C24H21As
-408.1985583	C16H25NO10
-408.246745	C22H26O6
-408.2727836	C22H28N2O4
-408.3105756	C24H32O4
-408.4291081	C22H46N4O
-408.5046921	C26H54O
-409.0837574	C9H22O13P2
-409.115414	C13H19N2O10P
-409.1848627	C19H20N2O7
-409.2131762	C21H26N2OS2
-409.2226547	C21H24O7
-409.2864853	C23H30O5
-409.4141466	C27H42O
-410.0310339	C10H14N5O6PS2
-410.1560332	C18H19N3O5S
-410.1607724	C18H18N2O8
-410.186811	C18H20N4O6
-410.1985644	C20H22O8
-410.1998304	C18H21N5O5
-410.2115837	C20H23NO7
-410.2224885	C16H29N3O6S
-410.2246031	C20H24N2O6
-410.2623951	C22H28O6
-410.2706751	C22H30N2O2S
-410.2888773	C20H32F2O5
-410.3262257	C24H34O4
-410.339245	C24H35NO3
-410.4030756	C26H41NO
-410.9882695	C15H10BrClN4S
-411.1443078	C17H17ClN6O3
-411.1494015	C21H20Cl2O3
-411.1874935	C19H21NO8
-411.1957735	C19H23N3O4S
-411.2198918	C21H25ClN2O3
-411.2329111	C21H26ClN3O2
-411.2383048	C21H26O7
-411.2395707	C19H25N5O4
-411.2643434	C21H28N2O5
-411.3034013	C21H31N5O2
-411.4297967	C27H44O
-412.0605586	C12H14AlMgNO11
-412.2142145	C20H24O8
-412.2332859	C20H24FN3O4
-412.2780451	C22H30O6
-412.279311	C20H29N5O3
-412.3418758	C24H36O4
-412.3548951	C24H37NO3
-412.431745	C26H44N2
-412.8470745	C9H6Cl6O3S
-413.1901242	C19H22O9
-413.2005189	C23H19NO5
-413.2355418	C21H27ClN2O3
-413.2539548	C21H28O7
-413.3177855	C23H34O5
-413.4076547	C25H42N2O
-413.4454467	C27H46O
-414.0505506	C10H16N2O11P2
-414.0635699	C10H17N3O10P2
-414.0679521	C14H13N5O5S2
-414.0927248	C16H16N2O6S2
-414.2024672	C22H19N3O4
-414.2298646	C20H26O8
-414.2428839	C20H27NO7
-414.2737087	C22H29FO5
-414.2936952	C22H32O6
-414.3040899	C26H29NO2
-414.3067145	C22H33NO5
-414.3575258	C24H38O4
-414.4343757	C26H45NO
-415.0264603	C9H14N2O12P2
-415.0394796	C9H15N3O11P2
-415.0441084	C15H14INO4
-415.125451	C15H17N5O6S
-415.139319	C21H14O8
-415.1446057	C13H25N2O8PS
-415.2178785	C19H22F2N4O3
-415.2669803	C25H26O4
-415.4610968	C27H48O
-415.8313203	C10H6Cl8
-416.0189393	C12H15AsN6OS2
-416.0566092	C18H15Cl3N2S
-416.1027195	C12H20O13S
-416.1205154	C12H23N2O9PS
-416.1790594	C22H18O7
-416.1920787	C22H19NO6
-416.205098	C22H20N2O5
-416.2559093	C24H25NO4
-416.3037272	C18H39O7P
-416.3731759	C24H40O4
-416.8935086	C13H6Cl6O2
-417.1037996	C13H18F3N3O4S2
-417.1456165	C21H20BrN3
-417.1549691	C21H16O8
-417.1762685	C21H19N3O3S
-417.1769727	C19H23ClO7
-417.2187997	C23H22O6
-417.2642173	C25H27ClN2
-417.2826303	C25H28O4
-417.3490856	C23H38O5
-418.1438981	C20H15NO8
-418.1960223	C22H20FN3OS
-418.2077287	C22H21NO6
-418.2715594	C24H27NO4
-418.274184	C20H31NO7
-418.2845787	C24H28N2O3
-419.1697705	C15H22N6O5S
-419.1706191	C21H18O8
-419.2344498	C23H24O6
-419.2604884	C23H26N2O4
-419.2655139	C21H36BrNO
-419.2982804	C25H30O4
-419.3647357	C23H40O5
-419.8406167	C12H3Cl7O
-420.0523576	C14H13AlCaN2O8
-420.0882092	C14H16ClN5O5S
-420.1170169	C18H14N4O5S
-420.1465289	C20H16O9
-420.1527441	C14H26Cl2N2O7
-420.1725675	C20H18N2O7
-420.2103595	C22H22O7
-420.2294309	C22H22FN3O3
-420.2467928	C26H21N3O
-420.2494174	C22H25N3O4
-420.2872094	C24H29NO4
-420.2898341	C20H33NO7
-420.3380207	C26H34O3
-421.0641659	C15H15ClFN3O3S2
-421.1180864	C13H18N5O8P
-421.1862692	C21H20O8
-421.1888939	C17H24O11
-421.1992885	C21H21NO7
-421.2691712	C23H26FN3O2
-421.2761385	C23H28N2O4
-421.3139305	C25H32O4
-421.3529884	C25H35N3O
-422.1621789	C20H18O9
-422.1861029	C16H25N3O7S
-422.2260096	C22H24O7
-422.2273224	C22H24FN3OS
-422.2390289	C22H25NO6
-422.3445421	C20H38N4O4
-422.4175014	C28H42O
-423.0465419	C13H12N5NaO5S2
-423.0777988	C17H13N3O5S2
-423.159388	C19H19N3O5S
-423.1854266	C19H21N5O3S
-423.2010042	C21H19F2N3O3
-423.2019193	C21H22O8
-423.2045439	C17H26O11
-423.2162045	C19H22N6O4
-423.2383526	C25H21N3O2
-423.2657499	C23H28O6
-423.2896739	C19H35N3O4S
-423.2917885	C23H30N2O4
-423.3322052	C21H38O7
-423.3934111	C27H40O2
-423.3960358	C23H44O5
-423.4090551	C23H45NO4
-424.1379224	C14H21N3O9S
-424.1463967	C20H18ClNO6
-424.2452004	C22H29N3S2
-424.2676982	C22H28N2O5
-424.3054902	C24H32O5
-424.3185096	C24H33NO4
-424.4331515	C28H44O
-424.4357761	C24H48O4
-425.1537387	C19H18O10
-425.2175693	C21H24O8
-425.2340161	C25H20FN3O
-425.2366407	C21H24FN3O4
-425.2388687	C21H27N3O3S
-425.2760063	C23H30ClN3O
-425.2814	C23H30O6
-425.3452306	C25H36O4
-425.3582499	C25H37NO3
-425.4220805	C27H43NO
-425.9825084	C6H15O15P3
-426.0402037	C10H14N4O10P2
-426.053223	C10H15N5O9P2
-426.1252963	C12H20N5O9P
-426.1509478	C18H19N3O6S
-426.1934791	C20H22O9
-426.209123	C16H27NO11
-426.2195177	C20H24N2O7
-426.232537	C20H25N3O6
-426.2573097	C22H28O7
-426.2682144	C18H34N2O6S
-426.3211403	C24H34O5
-426.3849709	C26H40O3
-426.4488016	C28H46O
-427.0016441	C17H12BrFO2S2
-427.1693888	C19H20O10
-427.1928028	C23H18N2O5
-427.2100671	C21H26ClN3OS
-427.2462387	C21H27NO7
-427.2525984	C23H29ClO4
-427.2656177	C23H30ClNO3
-427.291432	C19H37O7P
-427.29705	C23H32O6
-427.3739	C25H39NO3
-427.4247113	C27H44O2
-427.9387371	C9H18FeN3S6
-428.1752082	C20H17F3N2O4
-428.1913706	C20H24O7S
-428.2091291	C20H24O9
-428.2174092	C20H26N2O5S
-428.2295497	C16H31N2O8P
-428.2351677	C20H26N2O7
-428.2481871	C20H27N3O6
-428.2729597	C22H30O7
-428.2859791	C22H31NO6
-428.2989984	C22H32N2O5
-428.3367904	C24H36O5
-428.4644516	C28H48O
-429.0494116	C15H14IN3O3
-429.0739377	C15H14N4O6S2
-429.0778586	C15H14Cl2F3N3O3
-429.1755604	C19H24N2O4S2
-429.1824142	C23H18O7
-429.1906943	C23H20N2O3S
-429.2084528	C23H20N2O5
-429.2123434	C17H23N7O5
-429.2462448	C25H24O5
-429.2488695	C21H28O8
-429.307082	C19H39O7P
-429.3587722	C25H40O2S
-429.4403613	C27H46O2
-429.4664	C27H48N2
-429.9413151	C14H9Cl5O4
-429.9413151	C14H9Cl5O4
-430.0584845	C10H17N3O11P2
-430.1314366	C16H18N4O7S
-430.1583239	C22H16O8
-430.2063662	C20H25ClN2O5
-430.2247792	C20H26O9
-430.2330593	C20H28N2O5S
-430.2351739	C24H23NO5
-430.2441582	C22H29ClO5
-430.2886098	C22H32O7
-430.3524404	C24H38O5
-430.3654597	C24H39NO4
-430.4801017	C28H50O
-431.0756141	C19H17Cl3N2S
-431.133385	C15H18N6O6S
-431.1553222	C19H18ClF2N3O3
-431.1972156	C17H24N6O4S
-431.2258593	C21H24F3N3S
-431.2618949	C25H26O5
-431.3009528	C25H29N3O2
-431.3035775	C21H33N3O5
-431.3283502	C23H36O6
-431.3413695	C23H37NO5
-431.4560114	C27H48O2
-432.1032895	C16H18N2O7S2
-432.1210481	C16H18N2O9S
-432.173974	C22H18O8
-432.1765986	C18H22O11
-432.1815996	C22H19ClN4O2
-432.1959776	C20H25ClO7
-432.2487093	C20H30N2O5S
-432.2638432	C24H26N2O4
-432.2642868	C22H28F2O5
-432.2702029	C26H28ClNO
-432.3042599	C22H34O7
-432.3680905	C24H40O5
-432.3811098	C24H41NO4
-433.0785448	C15H15ClN4O6S
-433.1525084	C17H20O12
-433.1889137	C17H20F6N2O3
-433.2137143	C23H22O7
-433.2397529	C23H24N2O5
-433.2401966	C21H26F2O6
-433.2657916	C23H26N4O3
-433.277545	C25H28O5
-433.2905643	C25H29NO4
-433.2931889	C21H33NO7
-433.3413756	C27H34O3
-433.3440002	C23H38O6
-434.1228	C12H23O14P
-434.1497174	C16H21N3O8S
-434.1804953	C16H22N4O9
-434.1896241	C22H20O8
-434.2265009	C24H21F2NO3
-434.2534547	C24H26O6
-434.2807592	C22H27N7O
-434.3199099	C22H36O7
-435.114087	C17H14ClF7O2
-435.1386465	C15H20N4O8S
-435.1611816	C15H22N5O7P
-435.1655338	C21H18O9
-435.252151	C18H29N4O7
-435.293195	C25H30O5
-436.0746695	C16H15N2NaO6S2
-436.124072	C14H19N4O9P
-436.1352813	C18H21KN2O5S
-436.2052741	C22H22O8
-436.206587	C22H22FN3O2S
-436.2182934	C22H23NO7
-436.2621375	C24H26FNO4
-436.2800094	C20H34N2O5S
-436.2951434	C24H30N2O4
-436.321182	C24H32N4O2
-436.34333	C30H31N
-437.120894	C19H17N3O4S2
-437.1497515	C21H18ClNO6
-437.1710509	C21H21ClN4OS
-437.1811838	C21H20O9
-437.1838085	C17H24O12
-437.1894639	C21H22N2O5S
-437.2306364	C25H20N4O2
-437.2450145	C23H26O7
-437.2663138	C23H29N3O2S
-437.3218644	C25H33NO4
-437.3726757	C27H38O3
-437.385695	C27H39NO2
-437.5667922	C29H60
-437.9766697	C10H11BrN5O7P
-438.1193015	C18H14N2O10
-438.1450402	C22H19Cl2NO3
-438.2209242	C22H24O8
-438.2235488	C18H28O11
-438.2292042	C22H26N2O4S
-438.2847548	C24H30O6
-438.3551205	C24H39NaO4
-438.4124161	C28H42O2
-438.5427019	C28H58O
-438.9723517	C17H12Br2O3
-439.0727633	C15H16Cl2N2O8
-439.0792092	C15H14F3N3O4S2
-439.1230064	C15H16F3N5O4S
-439.131518	C13H22N4O8S2
-439.1478184	C17H21N2NaO7S
-439.1851274	C21H21FN2O4S
-439.1968339	C21H22O9
-439.1994585	C17H26O12
-439.2606645	C23H28O7
-439.2736838	C23H29NO6
-439.2867031	C23H30N2O5
-439.3883258	C27H40O3
-439.4013451	C27H41NO2
-439.4521564	C29H46O
-440.0655403	C12H18N4O7P2S
-440.1349516	C18H16N2O10
-440.1648613	C20H15F3N4O3
-440.2365742	C22H26O8
-440.2559532	C24H29ClO4
-440.2604983	C18H33N3O6S
-440.2826463	C24H32O4S
-440.2886515	C22H30N4O4
-440.2977802	C28H28O3
-440.3004049	C24H32O6
-440.3642355	C26H38O4
-440.4280661	C28H44O2
-440.4918967	C30H50
-440.8657382	C9H6I2O4
-441.0883635	C17H15N3O6S2
-441.1035483	C17H16N2Na2O6S
-441.1099932	C19H12F3N3O3S
-441.1486533	C19H18O11
-441.1571063	C21H23BrFNO2
-441.212484	C21H24O9
-441.2281279	C17H29NO11
-441.2385226	C21H26N2O7
-441.2515419	C21H27N3O6
-441.2619366	C25H24N4O2
-441.3531645	C25H37NO4
-441.4039758	C27H42O3
-441.4169951	C27H43NO2
-441.4678065	C29H48O
-442.0351183	C10H14N4O11P2
-442.0386217	C10H14N5O10PS
-442.0481376	C10H15N5O10P2
-442.1883937	C20H22O10
-442.1987883	C24H19NO6
-442.2144323	C20H24N2O8
-442.2170569	C16H28N2O11
-442.2274516	C20H25N3O7
-442.2495997	C26H24O5
-442.2522243	C22H28O8
-442.300921	C20H38O7S
-442.3160549	C24H34O6
-442.3929049	C26H41NO3
-442.4437162	C28H46O2
-442.8813883	C9H8I2O4
-442.8944076	C9H9I2NO3
-443.1040136	C17H17N3O6S2
-443.1196575	C13H22N4O8S2
-443.3062499	C21H32N6O3
-443.4196259	C27H44O3
-443.4326452	C27H45NO2
-443.4834565	C29H50O
-444.1107012	C16H16N4O8S
-444.2040437	C20H24O10
-444.2343274	C18H33ClN2O5S
-444.2678744	C22H30O8
-444.3955356	C26H42O4
-444.4085549	C26H43NO3
-444.4593662	C28H48O2
-445.0532593	C15H14N2Na2O6S2
-445.0905087	C11H20N4O10P2
-445.1773288	C23H18O8
-445.1923653	C21H23ClFNO5
-445.2032035	C23H22ClF3O2
-445.2097271	C25H22ClNO3
-445.2190114	C19H25N3O8
-445.2411594	C25H24O6
-445.2437841	C21H28O9
-445.2876282	C23H31FO6
-445.3076147	C23H34O7
-445.3844646	C25H41NO4
-445.435276	C27H46O3
-445.4613146	C27H48N2O
-445.9464799	C10H14Cl6N4O2
-446.0187234	C14H10N2O10S2
-446.0955734	C16H17N3O7S2
-446.1284658	C20H13N3O8
-446.1393778	C18H22O8P2
-446.2835244	C22H32O8
-446.3603744	C24H39NO5
-446.4750163	C28H50O2
-447.0975217	C15H17N5O6S2
-447.2086228	C19H25NO10
-447.2229081	C17H25N7O6
-447.2320368	C23H23N3O5
-447.2359274	C17H26N8O5
-447.3088867	C25H30N4O2
-447.3232648	C23H36O7
-447.450926	C27H48O3
-448.0327647	C18H13Cl4N3O
-448.1441159	C20H15N3O8
-448.1908922	C20H25ClO8
-448.1949272	C22H20N2O7
-448.2102712	C22H28Cl2O4
-448.2353439	C20H28O10
-448.2457385	C24H25NO6
-448.2717772	C24H27N3O4
-448.3095692	C26H31NO4
-448.3603805	C28H36O3
-448.3630051	C24H40O6
-448.4242111	C30H42O
-449.024923	C15H14ClN3O4S3
-449.0664922	C15H13ClFN5O5S
-449.1516554	C19H22KN3O4S
-449.216909	C23H24N2O4S
-449.4001208	C29H40O2
-449.4027455	C25H44O5
-450.0890815	C14H17N5O7S2
-450.1154973	C18H14F4N2O4S
-450.1576514	C16H22N4O8S
-450.1845387	C22H20O9
-450.2105773	C22H22N2O7
-450.2182029	C22H23ClN6O
-450.2392406	C18H28N4O8
-450.2483693	C24H26O7
-450.2744079	C24H28N2O5
-450.3252192	C26H33NO4
-451.1335611	C15H20N4O9S
-451.1560963	C15H22N5O8P
-451.224279	C23H24O8
-451.5460568	C29H58O
-451.7838464	C10H4Br3ClN2O
-451.9207538	C12H14As2Cl2N2O2
-451.9671037	C12H4Cl2F6N4OS
-452.0952167	C14H20N6O5Se
-452.1049258	C20H14ClNO8
-452.2001887	C22H22O9
-452.2208336	C22H24ClN5O2
-452.2214881	C22H25N3O4S
-452.236622	C26H21N3O3
-452.2640194	C24H28O7
-452.2799627	C22H38O4Zn
-452.3408693	C26H35NO4
-452.3447599	C20H38N6O4
-452.3538886	C26H36N2O3
-452.9988882	C11H13ClF3N3O4S3
-453.0806413	C13H17N5O8S2
-453.1536505	C19H24Cl2O7
-453.1643451	C19H18N4O8
-453.1760985	C21H20O10
-453.2399291	C23H26O8
-453.2659677	C23H28N2O6
-453.3675903	C27H38O4
-453.3806096	C27H39NO3
-453.3832343	C23H43NO6
-453.431421	C29H44O2
-453.4470649	C25H49NO4
-453.5617068	C29H60O
-454.1713159	C20H22N8O5
-454.2079565	C22H19F3N4O2
-454.2796694	C24H30O7
-454.3030834	C28H28N2O2
-454.305708	C24H32N2O5
-455.1917485	C21H22O10
-455.2412011	C25H22N4O3
-455.2816178	C23H30N2O6
-455.3076564	C23H32N4O4
-455.3137917	C21H39O7P
-455.3194098	C25H34O6
-455.3298044	C29H31NO2
-455.3832404	C27H40O4
-456.1356184	C22H18Cl2FNO3
-456.1676582	C20H20O11
-456.1906007	C22H17F4N3O2
-456.2288642	C26H22O6
-456.2314889	C22H26O9
-456.2391145	C22H27ClN4O3
-456.2527882	C22H29N3O4S
-456.2953195	C24H32O7
-456.4229807	C28H44O3
-456.4868114	C30H50O
-457.1204157	C19H18ClN3O5S
-457.171227	C21H23ClN2O4S
-457.2073986	C21H24O10
-457.2703805	C17H34N6O5S
-457.2828898	C25H26N6O
-457.2842485	C23H31NO7
-457.3206818	C27H30N4O
-457.3294418	C21H41O7P
-457.3350598	C25H36O6
-457.3988905	C27H42O4
-457.4119098	C27H43NO3
-457.4627211	C29H48O2
-457.9134125	C10H11I2NO3
-458.0252937	C10H15N5O9P2S
-458.0300329	C10H14N4O12P2
-458.0430522	C10H15N5O11P2
-458.1806837	C24H18O8
-458.290983	C24H31FO6
-458.3109696	C24H34O7
-458.4386308	C28H46O3
-458.5024614	C30H52O
-459.0785948	C19H16Cl2N2O4S
-459.2230486	C21H26O10
-459.2351998	C23H25F3N2OS
-459.2772874	C27H26FNO3
-459.2842546	C27H28O5
-459.2868793	C23H32O8
-459.2985399	C25H28N6O
-459.3259372	C23H35N3O5
-459.3611046	C29H35NO2
-459.4145405	C27H44O4
-459.4275598	C27H45NO3
-459.4405791	C27H46N2O2
-459.4783711	C29H50O2
-460.1811998	C20H24O9S
-460.1989584	C20H24O11
-460.2434962	C20H35N3Sn
-460.4034696	C26H43NO4
-460.4542809	C28H48O3
-461.0547079	C15H15Cl2N2NaO8
-461.0854233	C11H20N4O11P2
-461.2133185	C21H25ClFN3O4
-461.2599981	C21H31N3O5S
-461.2695139	C21H32N3O5P
-461.4301906	C27H46O4
-461.4562292	C27H48N2O2
-462.1184773	C20H16ClF3N2O2S
-462.2397789	C22H26F3N3OS
-462.2701131	C24H25FN6O
-462.2784391	C22H32O9
-462.2888337	C26H29NO5
-462.321232	C28H33ClN2
-462.4699309	C28H50O3
-463.1873993	C21H28ClNO3S2
-463.194059	C19H27N3O5S2
-463.2365902	C21H30O8S
-463.2422954	C23H31Cl2NO3
-463.2543488	C21H30O10
-463.3134402	C23H37NO5S
-463.3285741	C27H33NO4
-463.3311987	C23H37NO7
-463.3505777	C25H40ClNO3
-463.3832759	C23H41N5O3
-463.4458407	C27H48O4
-464.0721309	C18H16Cl3N3O4
-464.1231058	C12H28FeO14
-464.1486693	C18H22O11S
-464.2536725	C24H26N2O6
-464.3023692	C22H36N2O5S
-464.3044838	C26H31NO5
-465.0708146	C12H22CuO14
-465.0859582	C17H16N3NaO6S2
-465.0950671	C15H18N4O8S2
-465.2934128	C25H30N2O5
-465.3064321	C25H31N3O4
-465.3168268	C29H28N4
-466.0703601	C12H22O14Zn
-466.0926458	C16H15N4NaO8S
-466.1087688	C16H20N2O9S2
-466.152566	C16H22N4O9S
-466.1751012	C16H24N5O8P
-466.1794533	C22H20O10
-466.2054919	C22H22N2O8
-466.2320211	C22H27F3O4S
-466.2432839	C24H26O8
-466.3201339	C26H33NO5
-466.4347758	C30H44O2
-467.155363	C21H18O11
-467.1826675	C19H19N7O6
-467.1956869	C19H20N8O5
-467.2516443	C21H36INO
-467.3412368	C23H41O6P
-467.3885375	C23H43N3O5
-467.604802	C31H64
-468.077518	C16H16N3NaO7S2
-468.1951034	C22H22O10
-468.221142	C22H24N2O8
-468.2245694	C26H19FN4O2
-468.2465731	C24H26ClFN4O
-468.2563093	C28H24O5
-468.3996145	C28H41NO3
-468.5807117	C30H62O
-469.1298716	C15H24N6O5Se
-469.1710131	C21H20O11
-469.1983176	C19H21N7O6
-469.247863	C23H27NO8
-469.3116936	C25H33NO6
-469.4263356	C29H44O3
-469.4901662	C31H50O
-470.1682222	C20H21N3O7S
-470.222414	C24H20N6O3
-470.2607233	C20H36O7P2
-470.2628307	C22H28N4O6
-470.274584	C24H30O8
-470.2985081	C20H37N3O6S
-470.3006227	C24H32N2O6
-470.4660759	C30H48O2
-471.1054611	C13H19N4O12P
-471.1771847	C21H24N2O5S2
-471.1866631	C21H22O11
-471.2139677	C19H23N7O6
-471.3143244	C25H34O7
-471.318215	C19H37N5O7
-471.363777	C29H34N4
-471.5058163	C31H52O
-471.989916	C16H10N2O6S4
-472.1530944	C20H22N2O6S2
-472.2140426	C22H24ClFN4O3
-472.2264035	C22H26O10
-472.2902341	C24H32O8
-472.481726	C30H50O2
-473.0474149	C17H14N2O7S3
-473.1315058	C17H18N5O8P
-473.174752	C23H19ClF3NO3
-473.2162985	C23H27Cl2N3O2
-473.333865	C19H39N5O7
-473.4576357	C29H48O3
-474.0801411	C16H15N5O7S2
-474.1122777	C14H21NO14S
-474.4335454	C28H46O4
-474.497376	C30H52O2
-475.1109939	C19H17ClFN3O5S
-475.2236187	C25H24N2O4S
-475.252282	C21H30N4O5S
-475.2726651	C17H34N4O10
-475.2791693	C27H28O6
-475.3208518	C23H35N3O6
-475.3338711	C23H36N4O5
-475.3456245	C25H38O7
-475.3586438	C25H39NO6
-475.4094551	C27H44O5
-476.0532599	C14H14N8O4S3
-476.0957912	C16H17N5O7S2
-476.1044282	C12H22N4O11P2
-476.1912483	C24H20O9
-476.2021531	C20H26N2O8S
-476.213252	C22H27ClO8
-476.236666	C26H25ClN2O3
-476.279003	C22H33N3O5S
-476.2811176	C26H28N2O5
-476.2815612	C24H30F2O6
-476.3076735	C20H42O7P2
-476.3983842	C26H43NO5
-476.4491955	C28H48O4
-476.89689	C15H13Br3O2
-477.0066044	C15H10O13S2
-477.1216334	C13H24N3O11PS
-477.1476792	C15H29O10P3
-477.1497866	C17H21N4O9P
-477.2309887	C25H24O8
-477.2672776	C21H31ClN6O3
-477.2948193	C27H30O6
-477.3091045	C25H30N6O2
-477.4251052	C27H46O5
-478.1466584	C20H22Cl2N2O6
-478.1530937	C14H26NO14P
-478.1691064	C22H18N2O9
-478.2225424	C20H27NO11
-478.2247743	C20H28Cl2N8
-478.2727462	C24H32ClFO5
-478.2837483	C26H29NO6
-478.3371843	C24H38O8
-478.3502036	C24H39NO7
-478.3514695	C22H38N6O4
-478.4648456	C28H50O4
-478.9978761	C9H15N2O14P3
-479.0108954	C9H16N3O13P3
-479.1654367	C17H23N4O9P
-479.1910882	C23H22N2O6S
-479.2019929	C19H28N4O5S2
-479.2479047	C23H25N5O5
-479.3083548	C23H37NO6S
-479.389944	C25H43NO6
-479.4407553	C27H48O5
-480.1587179	C22H18O11
-480.2110052	C18H34Cl2N2O5S
-480.2225485	C24H24O9
-480.2251731	C20H28O12
-480.2419798	C22H35IO2
-480.2554568	C18H37ClN2O7S
-480.2863791	C26H30O7
-480.3350758	C24H40O6S
-481.2334811	C21H30ClNO8
-481.2992321	C21H36N4O5S
-481.3521581	C27H36N2O4
-481.4537807	C31H46O2
-481.5840666	C31H62O
-482.1036834	C16H20N2O10S2
-482.1061852	C14H18N5O11P
-482.1772543	C22H22ClN5O2S
-482.2146918	C20H22N8O5
-482.2355739	C28H22O6
-482.3671257	C26H37N5O2
-483.1502776	C21H18O12
-483.1845963	C21H22N4O6S
-483.2176989	C21H30Cl2N2O5
-483.2531662	C23H27N3O7
-483.2635609	C27H24N4O3
-483.2805635	C21H34O11
-483.3039775	C25H32N2O6
-483.3417695	C27H36O6
-483.3678081	C27H38N2O4
-483.4694308	C31H48O2
-483.5997166	C31H64O
-484.190018	C22H22O11
-484.2160566	C22H24N2O9
-484.2173225	C20H23N7O6
-484.2503753	C22H28N6O3S
-484.2538486	C24H28O9
-484.3176792	C26H34O7
-484.3410932	C30H32N2O2
-484.3671318	C30H34N4
-485.1659277	C21H20O12
-485.1672406	C21H20FN3O6S
-485.2504032	C23H28ClN5O3
-485.2570629	C21H27N7O5
-485.2935889	C25H32O8
-485.3052495	C27H28N6O
-485.3574196	C27H38O6
-486.1206055	C18H18N6O5S2
-486.184186	C22H30Cl4N2
-486.1891754	C20H23N5O6S
-486.2329726	C20H25N7O6
-486.3263621	C26H34FNO5
-486.3463486	C26H37NO6
-486.4128039	C24H47NO7
-486.4609905	C30H48O3
-487.1815778	C21H22O12
-487.2454084	C23H28O10
-487.309239	C25H34O8
-487.3730696	C27H40O6
-488.1400405	C22H21Cl3N4O
-488.1548628	C24H16O10
-488.2213181	C22H26O11
-488.2426175	C22H29N3O6S
-488.2851487	C24H32O9
-488.3289928	C26H35FO6
-488.3528699	C20H41N5O7
-488.4284539	C24H49NO7
-488.4766406	C30H50O3
-489.1394397	C17H19N6O8P
-489.1594732	C19H23N4O6PS
-489.2185272	C21H27N3O7S
-489.2258911	C17H30N2O13
-489.3248891	C25H36O8
-489.3887197	C27H42O6
-489.9830729	C10H14N5O10PSe
-490.1696642	C18H22N6O7S
-490.1861569	C20H23NO12
-490.2563472	C24H31ClO7
-490.2603821	C26H26N2O6
-490.2916701	C18H36N4O10
-490.3007988	C24H34O9
-490.3046894	C18H37N5O9
-490.3111935	C28H31NO5
-490.3302649	C28H31FN4O
-490.3620048	C30H36O4
-490.3720307	C22H46NO7P
-491.0814434	C19H17Cl2N3O5S
-491.1464226	C23H16O11
-491.1604079	C25H19Cl2N3O2
-491.1878053	C23H26Cl2O6
-491.2102533	C25H22O9
-491.2128779	C21H26O12
-491.2258972	C21H27NO11
-491.2513283	C23H29ClFN3O4
-491.2532017	C19H28N8O6
-491.276101	C25H32ClFO5
-491.2767085	C23H32O10
-491.3405391	C25H38O8
-491.3769724	C29H37N3O2
-491.4043698	C27H44O6
-492.0863235	C12H21N3O13P2
-492.2929421	C20H32N8O5
-492.3129091	C28H29F2N3O
-492.3932988	C26H43NO6
-492.4441101	C28H48O5
-493.0748956	C15H17N7O5S3
-493.2259033	C25H24O9
-493.236808	C21H30N2O8S
-493.3692085	C25H41NO7
-494.016881	C10H17N2O14P3
-494.0972849	C12H26FeO16
-494.0996962	C18H20ClN3O6S2
-494.1241144	C16H19N5O10S
-494.217457	C20H27NO12
-494.3047016	C26H31N3O5
-494.3555129	C28H36N2O4
-494.3933049	C30H40O4
-494.4597602	C28H50O5
-494.9927907	C9H15N2O15P3
-495.00581	C9H16N3O14P3
-495.0682919	C19H18Cl3N3O3S
-495.1777228	C23H20O11
-495.1813134	C21H26Cl2N2O6
-495.3848586	C25H43NO7
-495.5633311	C31H60O2
-495.7169901	C10Cl10O
-496.1536325	C22H18O12
-496.1620188	C20H27AlCl2O7
-496.2812937	C26H30O8
-496.3451243	C28H36O6
-496.371163	C28H38N2O4
-497.0862924	C13H26NO10PS3
-497.1018261	C17H18N5NaO6S2
-497.112925	C19H19ClN3NaO6S
-497.2936367	C29H27N3O3
-497.397884	C29H41NO4
-497.4486953	C31H46O3
-497.45132	C27H50O6
-497.6428118	C33H68
-497.7326402	C10H2Cl10O
-498.0331586	C18H15Cl4N3O4
-498.0777358	C16H16N5NaO7S2
-498.1965871	C20H21N7O7
-498.2825658	C28H26N4O3
-498.2969438	C26H32O8
-498.3607744	C28H38O6
-498.3998323	C28H41N3O3
-498.424605	C30H44O4
-499.1253191	C17H23NO11S2
-499.1317313	C17H20N4NaO9P
-499.2728535	C25H30O9
-499.2858728	C25H31NO8
-499.2934984	C25H32ClN5O2
-499.3275554	C21H38N4O8
-499.4643454	C31H48O3
-500.1246861	C13H18HgNO6
-500.206232	C22H25N3O7S
-500.2122371	C20H23N7O7
-500.2252564	C20H24N8O6
-500.2760678	C22H29N7O5
-500.3125939	C26H34O8
-500.4402551	C30H46O4
-500.479313	C30H49N3O
-500.5040857	C32H52O2
-501.1386943	C15H21N3O15
-501.1608423	C21H20O13
-501.1730328	C23H21N2NaO6S
-501.2557125	C27H25ClN6
-501.2700906	C25H31ClN2O5
-501.2885036	C25H32O9
-501.3523342	C27H38O7
-501.3562248	C21H41N5O7
-501.4799954	C31H50O3
-502.0933793	C14H22N4O9P2S
-502.1341274	C24H14O11
-502.1821697	C22H23ClN2O8
-502.2570494	C28H27NO4S
-502.26094	C22H30N6O4S
-502.3282439	C26H36O8
-502.3295098	C24H35N5O5
-502.4024692	C32H39NO2
-502.4559052	C30H48O4
-502.5197358	C32H54O2
-503.2008723	C27H22Cl2N4
-503.240323	C23H28O11
-503.2841671	C25H31FO8
-503.3041536	C25H34O9
-503.3479977	C27H37FO6
-503.3718748	C21H43N5O7
-503.4956455	C31H52O3
-504.1497775	C24H16O11
-504.1524021	C20H20O14
-504.1978197	C22H25ClN2O8
-504.2162327	C22H26O12
-504.2794558	C26H32ClFO5
-504.4181193	C32H41NO2
-504.4715552	C30H50O4
-505.121335	C17H18N5O10P
-505.1709106	C19H24N6O5S2
-505.1779247	C21H27N3O4S3
-505.2030472	C17H30N2O12S
-505.3436613	C27H36F2O5
-505.7287852	C12Cl10
-505.9488388	C6H16O18P4
-506.0065341	C10H15N4O13P3
-506.0195534	C10H16N5O12P3
-506.142438	C14H26N4O11P2
-506.2305241	C24H23N5O6
-506.2605461	C18H34N2O13
-506.2865847	C18H36N4O11
-506.299604	C18H37N5O10
-506.3725634	C26H41NO7
-506.4307759	C24H52NO6P
-507.2051679	C25H22O10
-507.3144161	C29H33ClN2O2
-507.3307145	C25H39NO6S
-507.3328291	C29H34O6
-507.3588677	C29H36N2O4
-507.371887	C29H37N3O3
-507.3992844	C27H44O7
-508.1025502	C18H17N6NaO5S2
-508.1810776	C24H20O11
-508.202377	C24H23N3O6S
-508.2839661	C26H29N3O6
-508.2903258	C28H31ClN2O3
-508.3751941	C26H42O8
-508.4390247	C28H48O6
-508.4650633	C28H50N2O4
-509.0111132	C9H16N5O13P3
-509.2846486	C27H30O8
-509.3614985	C29H37NO5
-509.3745178	C29H38N2O4
-510.0248149	C10H18N3O14P3
-510.1873751	C24H26BrN3O3
-510.2055676	C14H36Cl2N2O12
-510.2579336	C30H24O6
-510.3504275	C28H36N2O5
-510.3861049	C26H45NO5S
-511.236468	C25H26O10
-511.2441405	C27H28ClFN2OS
-511.3441427	C29H35FO5
-511.3901679	C29H40N2O4
-512.0254425	C18H14Cl4N4O4
-512.1572143	C16H23N6O10P
-512.2123777	C24H24O11
-512.2206578	C24H26N2O7S
-512.2762083	C26H30O9
-512.3894916	C32H36N4
-512.5979861	C32H64O2
-513.3797793	C29H40O6
-513.3966892	C23H44N6O5
-514.1641972	C22H20O13
-514.2918584	C26H32O9
-514.3817277	C28H40N2O5
-514.4195197	C30H44O5
-515.0568402	C15H16N7NaO5S3
-515.127512	C15H23N5O10P2
-515.2039375	C23H24O12
-515.3954294	C29H42O6
-516.2566972	C24H29NO10
-516.2670918	C28H26N2O6
-516.3713391	C28H40O7
-516.4207917	C32H40N4
-516.4351697	C30H46O5
-516.4742276	C30H49N3O2
-517.1592978	C21H23N3O7S2
-517.2361477	C23H30N4O4S2
-517.3511394	C21H41N5O8
-518.1508514	C16H26N4O10S2
-518.2513096	C28H26ClN3O3
-518.2593279	C24H30O11
-518.2749719	C20H35NO13
-518.2936466	C24H34N4O5S
-518.3231585	C26H36O9
-518.4508198	C30H48O5
-519.1687824	C25H18O11
-519.1774495	C19H23N6O8P
-519.2120854	C23H28ClN3O5S
-519.218745	C21H27N5O7S
-519.2298439	C23H28ClN3O7
-519.2899395	C19H36N4O11
-519.2990683	C25H34O10
-519.3120876	C25H35NO9
-519.3581596	C27H41NO5S
-519.9988179	C10H14N5O13P3
-520.0318707	C12H19N4O10P3S
-520.1927343	C22H25ClN2O9
-520.2085227	C26H22O10
-520.213772	C18H30O16
-520.2622204	C28H29ClN4S
-520.2697287	C32H24O5
-520.2988356	C26H32F2O7
-520.3340694	C26H39NO6S
-520.4664698	C30H50O5
-521.0385583	C11H18N5O12P3
-521.2743017	C27H28N2O7
-521.3147183	C25H36O10
-521.3385759	C27H36F2O6
-521.3915683	C27H43NO7
-522.0014487	C10H15N4O14P3
-522.0049521	C10H15N5O13P2S
-522.014468	C10H16N5O13P3
-522.2294221	C18H32O16
-522.2398167	C22H29NO12
-522.290628	C24H34O11
-522.41355	C28H47NO4S
-522.4182893	C28H46O7
-523.1398425	C21H22Cl2N2O8
-523.2625265	C25H24F6N4
-523.3094668	C25H32F3N3O4
-523.3277437	C29H34O7
-523.3386484	C25H40N2O6S
-523.394199	C27H44O8
-524.2006579	C18H34ClN2O8PS
-524.3557307	C28H36N4O4
-524.4195613	C30H42N4O2
-524.4339394	C28H48O7
-525.1952049	C21H28ClN3O7S
-525.2683003	C25H31F3O5S
-525.6013409	C33H64O2
-526.04401	C22H19Br2NO3
-526.2499153	C26H30Cl2F3NO
-526.2511208	C20H32N5O8P
-526.2684922	C26H29NO9
-526.3193035	C28H34O8
-526.3257992	C26H35F3O6
-526.3810195	C26H45NO6S
-526.3831342	C30H40O6
-526.3857588	C26H44O9
-526.3914142	C30H42N2O2S
-527.0216778	C9H18N5O14P3
-527.2196292	C23H24N4O9
-527.2396627	C25H28N2O7S
-527.3212519	C27H34N2O7
-527.3446658	C31H32N4O2
-527.3781153	C29H38FN3O3
-528.0076388	C12H12N6Na2O10S2
-528.0137232	C14H14N3O12PS2
-528.0623826	C12H21NO17S2
-528.3609922	C28H38N2O6
-528.3987842	C30H42O6
-529.1870926	C17H25N5O13
-529.2470327	C25H28O11
-529.2743372	C23H29N7O6
-529.3108633	C27H34O9
-530.2084005	C26H22ClF3N2O3
-530.2670013	C28H26ClN7
-530.3306171	C28H35FO7
-530.4144343	C30H44O6
-531.0739527	C19H18Cl2N3NaO6S
-531.1224267	C15H23N5O11P2
-531.2483047	C27H24N4O6
-531.2757021	C25H31NO10
-531.4397966	C33H42N4
-532.1934366	C26H21N3O6S
-532.3024231	C26H34O10
-532.3462672	C28H37FO7
-532.3662537	C28H40O8
-532.418331	C28H44N4O4
-533.0742461	C13H19N5O13P2
-533.1480469	C25H16O12
-533.2996322	C25H35N3O6S
-534.1387591	C16H26N2O13P2
-534.1609	C20H22N4O10S
-534.1851626	C30H16O8
-534.3219637	C20H39N5O10
-534.3922984	C32H39NO4
-534.9446125	C17H12I2O3
-535.1853835	C19H24N7O8P
-535.2157742	C25H22N4O8
-535.2913582	C29H30O8
-535.2939829	C25H34O11
-535.3178405	C27H34F2O7
-535.3530743	C27H41NO6S
-535.3708328	C27H41NO8
-535.4190195	C33H42O4
-536.2008127	C30H18O8
-536.2473518	C22H30Cl2N10
-536.3063259	C28H31N3O6
-536.3740471	C24H40N8O4
-537.0334729	C11H18N5O13P3
-537.1008196	C19H17N6NaO6S2
-537.3048937	C25H37NO8S
-537.3061596	C23H36N6O5S
-537.3590855	C29H36N4O4
-537.3864829	C27H43NO8
-537.4346695	C33H44O4
-537.9916241	C10H16N5O12P3S
-537.9963633	C10H15N4O15P3
-538.0093826	C10H16N5O14P3
-538.119248	C14H25N3O14P2
-538.1591783	C20H21CaN7O7
-538.2226282	C26H27N3O4S2
-538.4262232	C28H47NO7
-538.5382405	C36H54O
-539.049123	C11H20N5O13P3
-539.2671078	C27H30N2O6S
-539.327435	C29H36NO5P
-539.3420897	C27H45IO
-539.3747356	C29H38N4O4
-540.2165173	C14H33N10O7PS
-540.2477568	C26H27NO10
-540.2894393	C22H34N4O10
-540.9407514	C15H13I2NO4
-541.0009424	C9H16N5O15P3
-541.2106472	C25H24O12
-541.2874971	C27H31NO9
-541.3005164	C27H32N2O8
-542.165325	C22H22N6O5S2
-542.1865569	C24H22O13
-542.1964574	C26H27ClN2O3S2
-542.2634068	C26H29NO10
-542.3142181	C28H34O9
-542.3759342	C26H45NO7S
-542.3780488	C30H40O7
-542.3806734	C26H44O10
-542.38545	C26H46NO7P
-542.5851846	C32H63NO3
-543.116462	C19H17N9O5S2
-543.2901279	C27H32O10
-543.3400977	C25H44O7P2
-543.3518439	C25H43NO8S
-544.1790547	C24H24ClN3O6S
-544.2143975	C26H25N2NaO6S
-544.2660376	C26H30O11
-544.2933421	C24H31N7O6
-544.3154902	C30H30N4O4
-544.3311341	C26H35N5O6
-544.3936988	C30H42O7
-545.2254547	C23H27N5O7S
-545.2419473	C25H28O12
-545.3057779	C27H34O10
-545.3696086	C29H40O8
-545.3826279	C29H41NO7
-546.1023736	C16H22N2O14P2
-546.1106537	C16H24N4O10P2S
-546.1458138	C20H21N7O6S2
-546.1505531	C20H20N6O9S
-546.217857	C24H26O13
-546.279063	C30H28O8
-546.2816877	C26H32O11
-546.4093489	C30H44O7
-546.4758042	C28H54O8
-547.2325247	C27H30Cl2O6
-547.2575974	C25H30O12
-547.3652721	C29H39FO7
-547.4135721	C31H48O2S2
-547.4490892	C31H48O6
-548.1180237	C16H24N2O14P2
-548.131043	C16H25N3O13P2
-548.2947131	C30H30O8
-548.2973377	C26H34O11
-548.3167167	C28H37ClO7
-548.424999	C30H46O7
-549.1069527	C15H23N3O14P2
-549.1503929	C19H22N8O6S2
-549.2862667	C25H33NO11
-549.3370781	C27H38O10
-549.4009087	C29H44O8
-549.6597809	C10Cl12
-550.1336738	C16H26N2O14P2
-550.1466931	C16H27N3O13P2
-550.1800772	C30H16O9
-550.2491572	C24H30O13
-550.2908397	C20H37N3O13
-550.3129878	C26H36O11
-550.3168783	C20H39N5O11
-550.440649	C30H48O7
-551.1226028	C15H25N3O14P2
-551.1672788	C19H23N6O10P
-551.3357254	C33H30N4O2
-551.3630949	C27H38F6O3
-551.4139341	C33H42O5
-552.0854932	C14H22N2O16P2
-552.2361749	C30H26CaO6
-552.2478045	C30H22N4O5
-552.2648072	C24H32O13
-552.3780904	C30H38N4O4
-553.3813975	C27H43NO9
-553.9865387	C10H16N5O13P3S
-553.9922203	C16H9N4Na3O9S2
-554.1141626	C14H25N3O15P2
-554.2490766	C32H18N8
-554.4211378	C28H47NO8
-554.5331551	C36H54O2
-554.8074026	C15H12Br4O2
-555.2537424	C27H28O11
-555.2667617	C27H29NO10
-555.3533789	C24H40N5O8
-555.3566309	C29H37N3O6
-556.0199473	C10H18N5O15P3
-556.3325406	C28H35N3O7
-556.9634189	C15H10O16S3
-557.2055618	C25H24O13
-557.2824117	C27H31NO10
-557.3132365	C29H33FO8
-557.3996783	C27H46O10
-557.4087143	C33H38N6
-558.134201	C22H20N4O8S2
-558.1814715	C24H22O14
-558.2426775	C30H24O9
-558.3729634	C30H40O8
-559.2212119	C25H26O13
-559.3110811	C27H34N2O9
-559.3488731	C29H38O9
-559.3975698	C27H48O8S
-560.1971216	C24H24O14
-560.2609522	C26H30O12
-560.3221582	C32H32O7
-560.3247828	C28H36O10
-560.3378021	C28H37NO9
-560.3886135	C30H42O8
-560.5801053	C36H60O2
-561.0966058	C15H21N5O13P2
-561.3006926	C27H34O11
-561.3645232	C29H40O9
-561.376935	C31H41ClFNO3
-562.2527956	C26H31Cl2N5O3
-562.384277	C30H41FO7
-562.4042635	C30H44O8
-563.1370286	C17H26N2O14P2
-563.1500479	C17H27N3O13P2
-563.1582906	C17H26N3O15P
-563.199076	C27H21NO11
-563.2498874	C29H26O10
-563.2715834	C25H30FN3O9
-563.3801732	C29H42O9
-564.1129383	C16H24N2O15P2
-564.1672157	C18H26O19
-564.4199136	C30H46O8
-565.088848	C15H22N2O16P2
-565.1018674	C15H23N3O15P2
-565.1526787	C17H28N2O14P2
-565.165698	C17H29N3O13P2
-565.1700802	C21H25N5O8S2
-565.2017068	C27H22O12
-565.2681621	C25H32O13
-565.329368	C31H34O8
-565.3358832	C21H41N5O11
-565.3958233	C29H44O9
-565.5873152	C35H62O3
-566.0774201	C18H18N6O8S3
-566.1285884	C16H26N2O15P2
-566.1416077	C16H27N3O14P2
-566.2270691	C30H20N4O6
-566.2597157	C20H35NO16
-566.3052778	C30H32O9
-566.3696184	C24H47NO10S
-566.7754005	C9H6I3NO3
-567.1044981	C15H24N2O16P2
-567.2073993	C23H26N5NaO7S
-567.2838121	C25H34O13
-568.1906419	C30H18O10
-568.2036612	C30H19NO9
-568.2570972	C28H28O11
-568.2588804	C20H39NO12P2
-568.2867264	C26H36Cl2N4O4
-569.059871	C19H16N5NaO7S3
-569.2664468	C23H34N3O10P
-569.4127454	C31H42N4O4
-569.55216	C37H56O2
-569.9494033	C10H15N5O13P2Se
-570.2766378	C22H33N5O11
-570.2893572	C26H37Cl2N3O5
-570.4004085	C32H42O7
-571.248657	C27H28O12
-571.2500832	C23H36N4O5S3
-571.2616763	C27H29NO11
-571.2877149	C27H31N3O9
-571.3111289	C31H29N5O4
-571.4023568	C31H42N2O6
-571.5039795	C35H52O4
-571.5169988	C35H53NO3
-572.1484885	C20H26ClN5O7S2
-572.2219421	C30H22O10
-572.2294232	C22H31Cl2N7O5
-572.2922879	C22H35N5O11
-572.4160586	C32H44O7
-572.6231944	C34H67NO3
-573.3281377	C29H36O10
-573.4049876	C31H43NO7
-574.1551543	C22H22N6O7S2
-574.1763861	C24H22O15
-574.4343333	C28H50O10
-574.5567452	C40H54
-576.2180748	C24H26N2O13
-576.2532422	C30H26O10
-576.3196975	C28H36O11
-576.3835281	C30H42O9
-576.5723953	C40H56
-577.2043792	C27H21N3O10
-577.2956072	C27H34O12
-577.3568132	C33H36O7
-577.3594378	C29H40O10
-577.510513	C37H50N2O
-578.2180809	C28H23NO11
-578.3613861	C28H40N2O9
-578.3991781	C30H44O9
-578.4225921	C34H42N2O4
-578.5880454	C40H58
-579.1071705	C15H23N5O14P2
-579.1319432	C17H26N2O15P2
-579.1862206	C19H28O19
-579.1884027	C21H26N8O6S2
-579.1939907	C27H21NO12
-579.2026578	C21H26N7O9P
-579.3346712	C31H34N2O7
-579.3750879	C29H42O10
-579.5261631	C37H52N2O
-580.0827233	C18H18N8O7S3
-580.1161457	C22H19N4NaO8S2
-580.1847029	C18H31N3O13P2
-580.3063517	C22H42N4O8S2
-580.6036954	C40H60
-581.0837627	C15H22N2O17P2
-581.1475933	C17H28N2O15P2
-581.1606126	C17H29N3O14P2
-581.2418448	C23H32N6O6S2
-581.2630767	C25H32O14
-581.3520777	C29H38F3N3O2S
-581.3893792	C31H39N5O4
-581.3907379	C29H44O10
-581.5183992	C33H56O6
-582.123503	C16H26N2O16P2
-582.2133723	C18H34N4O12P2
-582.2803192	C26H37NO8S2
-582.302817	C26H36O13
-582.3652889	C30H37N5O5
-582.8341457	C11H12I3NO2
-583.0994127	C15H24N2O17P2
-583.112432	C15H25N3O16P2
-583.1806449	C21H27N5O9S2
-583.1903432	C25H29BrF2O7
-583.2787267	C25H34O14
-583.3659713	C31H38N2O7
-583.5314246	C37H54O3
-584.1756261	C20H25FN8O6S2
-584.3010201	C28H39Cl3N4O
-584.6349956	C40H64
-585.3047715	C29H33NO10
-585.3555828	C31H38O9
-585.4363233	C27H48N6O6
-585.6135299	C35H66O4
-585.9151692	C6H17O21P5
-586.2806812	C28H31NO11
-586.3718164	C28H38N8O4
-586.3953231	C32H42O8
-586.6506456	C40H66
-587.1351823	C17H30Cl2N5O8PS
-587.1725151	C23H30Cl2NNa2O6P
-587.240947	C31H24O10
-587.4233101	C31H44N4O5
-587.4350635	C33H46O7
-587.5653494	C33H62O6
-588.088028	C14H23N8NaO9S3
-588.2583154	C32H31BrN2O2
-588.4109732	C32H44O8
-588.6662957	C40H68
-589.2448436	C29H24N4O8
-589.2643587	C27H26F3N5O5
-589.3230523	C29H36O11
-589.3243182	C27H35N5O8
-589.3266429	C27H42Cl2N2O6
-589.3725049	C33H36N4O4
-590.1790867	C22H32ClN3O6S3
-590.2351314	C26H28O14
-590.2898333	C22H36N4O13
-590.3429195	C26H45NO8S2
-590.360168	C34H36O7
-590.4266233	C32H46O8
-590.5516599	C40H54O
-591.2748717	C27H32O13
-591.3387024	C29H38O11
-591.364741	C29H40N2O9
-591.3881549	C33H38N4O4
-591.4155523	C31H45NO8
-591.4194429	C25H48N6O8
-592.2481568	C30H26O11
-592.4422733	C32H48O8
-592.5673099	C40H56O
-593.3021824	C29H30N6O6
-593.3035411	C27H35NO12
-593.320451	C21H39N7O11
-593.3577799	C33H35FN2O5
-594.1261754	C16H25N5O14P2
-594.2129956	C28H23NO12
-594.2216627	C22H28N7O9P
-594.296011	C26H37N5O5S2
-594.3940928	C30H44O10
-594.3988694	C30H46NO7P
-594.4579234	C32H50O8
-595.0938424	C15H24N5O13P3
-595.1348307	C19H28Cl2N6O6S2
-595.2367732	C27H31N2NaO6S2
-595.3700025	C29H42O11
-595.435099	C29H47N5O6
-596.1027676	C16H24N2O17P2
-596.1796175	C18H31N3O14P2
-596.2768323	C34H26O8
-596.2820816	C26H34O14
-596.3756859	C34H40ClNO4
-596.4097428	C30H46O10
-597.0786773	C15H22N2O18P2
-597.1177352	C15H25N5O15P2
-597.3191973	C31H34O10
-597.3842938	C31H39N5O5
-597.3856526	C29H44O11
-597.4577632	C31H52N2O5S
-598.2286517	C32H22O10
-598.257315	C28H28N2O11
-598.3698423	C28H44N2O8S
-598.4110149	C32H42N4O5
-598.5504295	C38H56O3
-599.0384198	C17H17N7O8S4
-599.3582613	C35H34N2O5
-599.4286072	C27H47N7O6
-599.4781525	C31H53NO8
-599.5041912	C31H55N3O6
-599.5263392	C37H54O4
-600.1870237	C20H28N7O9PS
-600.3237764	C30H35NO10
-600.3602097	C34H34N4O4
-601.414328	C33H44O8
-601.9677791	C10H16N4O17P4
-601.9807984	C10H17N5O16P4
-602.4115371	C32H45N3O4S
-602.4540684	C34H48O7
-602.5152744	C40H50O2
-602.6612042	C36H71NO3
-603.2439972	C23H34ClN5O8S
-603.4156001	C35H40N4O3
-603.4299781	C33H46O8
-604.2467943	C28H30ClNO10
-604.2539639	C18H38N4O15S
-604.5309244	C40H52O2
-604.9724871	C15H17I2N5O4
-605.2541363	C27H30O14
-605.3014743	C27H35N5O7S
-605.3125732	C29H36ClN3O7
-605.3817975	C31H42O10
-605.4456282	C33H48O8
-606.2274214	C30H24O12
-606.230046	C26H28O15
-606.2703699	C24H30N8O9
-606.2938766	C28H34O13
-606.3589732	C28H39N5O8
-606.3837459	C30H42N2O9
-606.4071599	C34H40N4O4
-606.4215379	C32H46O9
-606.5465745	C40H54O2
-607.2697864	C27H32O14
-608.10544	C16H23N5O15P2
-608.2430714	C30H26O12
-608.2456961	C26H30O15
-608.3095267	C28H36O13
-608.4398126	C28H52O12
-608.5622246	C40H56O2
-609.1191417	C17H25N3O16P2
-609.2320005	C29H25NO12
-609.2406676	C23H30N7O9P
-609.3041111	C31H33N3O6S
-609.3153656	C21H39N7O12
-609.3531576	C23H43N5O12
-610.0413094	C18H16N6Na2O8S3
-610.1210901	C16H25N5O15P2
-610.1588821	C18H29N3O15P2
-610.3355714	C32H35NO9
-611.0887571	C15H24N5O14P3
-611.1478111	C17H28N4O15P2
-611.1986224	C19H33N3O14P2
-611.3310157	C21H41N7O12
-611.427389	C33H43N5O4
-611.4925784	C33H54O8
-612.3447174	C22H43N5O13
-612.3642408	C32H38N2O8
-612.4032987	C32H41N5O5
-612.4684881	C32H52O9
-612.5349433	C30H62O10
-613.0405765	C13H20N5O16P3
-613.2476566	C33H24O10
-613.3805672	C29H44O12
-613.572059	C35H62O6
-614.287397	C34H28O9
-614.3772662	C36H36N2O5
-614.4815135	C36H50O6
-614.5453441	C38H56O4
-615.2659313	C29H30O13
-615.3792146	C35H36N4O4
-616.1341205	C26H14N8O7S
-616.4194722	C30H52O7P2
-616.4333329	C34H46O8
-617.2815814	C29H32O13
-617.345412	C31H38O11
-617.368826	C35H36N2O6
-617.3857359	C29H40N8O5
-617.5395286	C33H60O8
-617.6671898	C37H72O4
-617.975713	C10H17N5O17P4
-618.0855784	C14H26N3O17P3
-618.411191	C32H44N2O8
-618.448983	C34H48O8
-619.2307762	C31H24O12
-619.2657992	C29H32ClNO10
-619.3466841	C33H34N4O6
-619.3597034	C33H35N5O5
-619.362328	C29H39N5O8
-619.3844761	C35H38N2O6
-619.4248927	C33H46O9
-620.2066859	C30H22O13
-620.2731412	C28H32O14
-620.3864244	C34H38N4O5
-620.4268411	C32H46N2O8
-620.4646331	C34H50O8
-621.2490509	C27H30O15
-621.3248966	C35H36ClNO3S
-621.3623341	C33H36N4O6
-621.3753534	C33H37N5O5
-621.4405428	C33H48O9
-621.5043734	C35H54O7
-622.2249606	C26H28O16
-622.2887913	C28H34O14
-622.3296015	C34H32MgN4O4
-623.2356991	C17H39N5O14S2
-623.264701	C27H32O15
-623.3779842	C33H38N4O6
-624.0905689	C18H25Cl2N9O4S3
-624.1946061	C22H27N9O7S2
-624.4321026	C32H48O10
-624.5571392	C40H56O3
-625.280351	C27H34O15
-625.3675956	C33H38N2O8
-625.3936343	C33H40N4O6
-625.4718429	C33H52O9
-626.1160047	C16H25N5O16P2
-626.4090925	C32H44F3N3O2S
-626.43075	C38H40N4O2
-626.6332268	C36H70MgO4
-626.8006088	C11H9I3N2O4
-627.1297064	C17H27N3O17P2
-627.2960011	C27H36O15
-627.4092843	C33H42N4O6
-629.4249344	C33H44N4O6
-629.4523317	C31H51NO10
-630.0908197	C28H10O16
-630.1771514	C24H27KN4O10S
-630.1883669	C26H27IN6O3
-630.2571701	C20H38N3O16P
-630.3982195	C36H38N4O4
-630.4125975	C34H44O9
-631.3246766	C31H36O12
-631.4405845	C33H46N4O6
-631.6464544	C37H70O5
-632.3878309	C36H38N2O6
-633.4027986	C35H39N5O4
-633.4171766	C33H45NO9
-633.4562345	C33H48N4O6
-633.4679879	C35H50O8
-634.3774424	C36H38O8
-634.403481	C36H40N2O6
-634.4438976	C34H48O9
-634.4451635	C32H47N5O6
-634.4595416	C30H53NO11
-634.4933502	C38H48N4O2
-635.2686393	C25H30N8O10
-635.483638	C35H52O8
-636.2680558	C28H32O15
-636.3318864	C30H38O13
-636.381339	C34H38N4O6
-636.3957171	C32H44O11
-636.4595477	C34H50O9
-636.5207537	C40H52O4
-637.2439655	C27H30O16
-637.3486064	C35H34MgN4O4
-637.3716268	C31H42O12
-638.201268	C20H32N6O12S2
-638.2025038	C20H31N4O16P
-638.2837059	C28H34O15
-638.4239619	C32H47F5O3S
-639.5149381	C35H56O8
-640.0952692	C16H23N5O17P2
-640.1327043	C22H24N6O9S3
-640.2329007	C30H26O14
-640.4882232	C38H50O6
-640.5520538	C40H56O4
-641.108971	C17H25N3O18P2
-641.1350096	C17H27N5O16P2
-641.2752657	C27H34O16
-641.2761469	C33H32FeN4O4
-641.3598856	C37H34N2O6
-641.8196137	C12H11I3N2O4
-642.5677039	C40H58O4
-643.0023091	C17H15N7Na2O8S4
-643.3586369	C23H45N5O14
-643.3716562	C23H46N6O13
-643.3781603	C33H40N2O9
-643.4159523	C35H44O9
-644.0073243	C20H20I2N2O5
-644.3514454	C36H34N2O7
-645.3299798	C31H36N2O11
-645.3911857	C37H38N2O6
-645.3950763	C31H41N7O6
-646.3032648	C34H30N2O9
-647.1177722	C19H24N8O10S3
-647.3690438	C35H36N4O6
-647.3977071	C31H42N6O7
-647.4068358	C37H40N2O6
-648.3957648	C36H39N3O6
-648.4869928	C36H52O8
-648.4978975	C32H58N2O7S
-649.3122209	C35H30MgN4O5
-649.330502	C31H39NO10S
-649.3469019	C33H34N6O6
-649.3977132	C35H39N5O5
-649.4120912	C33H45NO10
-649.4641684	C33H49N5O6
-650.3749816	C32H42O12
-650.5026429	C36H54O8
-650.5898875	C42H58N2O
-651.1842397	C25H28N6O7S3
-651.327871	C35H32MgN4O5
-651.4785526	C35H52O9
-652.3276823	C36H36FeN4O2
-652.3906317	C32H44O12
-652.5182929	C36H56O8
-653.2388802	C27H30O17
-653.3027108	C29H36O15
-653.343521	C35H34MgN4O5
-654.1974184	C20H31N4O17P
-654.2795017	C34H32FeN4O4
-654.4687537	C36H47N5O4
-656.1748894	C24H26N2O16S
-657.2858242	C23H39NO19
-658.2864139	C24H34N8O12
-658.3950506	C30H47N3O9S
-659.0735009	C15H24N5O17P3
-659.1467623	C18H33FeO21
-659.2413787	C27H33ClO15
-659.4773222	C33H54O11
-659.6049835	C37H66O7
-660.3359654	C32H37NO12
-660.3762892	C30H39N9O6
-660.5000599	C40H48N4O2
-661.1711945	C27H22O18
-662.2737062	C34H32N4O4Zn
-662.4258407	C38H42N2O6
-662.4427506	C32H46N8O5
-662.7372238	C40H79NO3
-663.1868446	C27H24O18
-664.2079777	C22H32N6O12S2
-664.3516215	C36H36O10
-664.4310961	C34H47NO10
-664.4414908	C38H44N2O6
-664.808725	C15H9I3O5
-665.2024947	C27H26O18
-665.223794	C27H29N3O13S
-665.3913619	C37H40O9
-665.4070058	C33H45NO11
-665.4200251	C33H46N2O10
-665.7131396	C43H74O2
-665.8814996	C6H18O24P6
-666.2396104	C32H26O14
-666.3829156	C32H43NO12
-666.4311022	C38H44O8
-666.8373943	C15H12I3NO4
-667.1630313	C25H23N8NaO7S2
-667.3119244	C31H35N2NaO11
-667.4439553	C33H50N4O6S
-667.7287897	C43H76O2
-668.3671333	C32H43ClN2O9
-668.5132076	C36H56O9
-668.5570517	C38H59FO6
-669.2976254	C29H36O16
-669.4369472	C35H44N6O5
-669.4747392	C37H48N4O5
-671.1045856	C25H29I2NO3
-671.3289194	C25H43NO18
-671.4005201	C35H42N2O9
-671.4353187	C29H55O13P
-672.2726926	C26H35N5O12S
-672.2865605	C32H32O14
-672.7112269	C40H75N3O2
-673.2867814	C21H40N7O14P
-673.3054188	C25H36N8O12
-674.3022106	C32H34O14
-674.4559105	C36H48N2O8
-675.4188009	C35H45NO10
-675.4696122	C37H50O9
-675.4747687	C29H52N10O6
-675.5998981	C37H66O8
-676.4051053	C38H40N2O7
-676.4056153	C30H49N3O10S
-676.4949745	C40H48N4O3
-677.3150698	C31H37N3O10S
-677.434451	C35H47NO10
-677.7562287	C41H81NO3
-678.3191327	C34H32N4O9
-679.1995853	C25H27N9O8S2
-679.2455898	C29H30O17
-679.8537685	C16H13I3N2O3
-680.4260107	C34H47NO11
-680.4842233	C32H58NO10P
-682.4924721	C36H54O10
-682.4998734	C32H60NO10P
-683.4019266	C37H42O10
-683.4415302	C26H45N020
-683.590425	C35H69O8P
-683.672893	C41H71NO4
-684.3934802	C32H45NO13
-684.4442916	C34H50O12
-684.6969894	C46H70O
-685.29254	C29H36O17
-685.4175766	C37H44O10
-685.8577585	C8H22K2O15Sb2
-687.3316041	C33H36N2O12
-687.3889306	C25H48N6O14
-687.6273432	C39H68O7
-688.2637166	C32H32O13S
-688.3418325	C32H38N6O7S
-689.2483544	C34H32ClFeN4O4
-689.281696	C21H40N7O15P
-689.4110848	C35H44N2O10
-689.4488768	C37H48O10
-689.4988466	C35H60O7P2
-690.0874205	C16H26N5O18P3
-690.3023745	C24H42O21
-690.3138113	C32H40BrN5O5
-691.1457982	C21H26N6O15P2
-691.1588175	C21H27N7O14P2
-691.2973461	C21H42N7O15P
-691.4137155	C35H45NO11
-691.7198493	C45H74O2
-692.2706311	C24H36N7O13P
-692.3127753	C32H36O15
-692.3739813	C38H38O10
-692.5081577	C32H57N5O9
-692.7622143	C42H82O4
-692.7752336	C42H83NO3
-693.1744675	C21H29N7O14P2
-693.4019682	C37H40N4O7
-693.4045929	C33H44N4O10
-693.4397602	C39H44N2O7
-693.7354994	C45H76O2
-694.3114227	C38H28N4O7
-694.377878	C36H38N4O8
-694.4547279	C38H45N5O5
-695.3147297	C35H33NO12
-695.8176047	C43H88O3
-696.3914134	C32H45N5O8S
-696.4209254	C34H47NO12
-696.4791379	C32H58NO11P
-697.5257622	C35H56N6O6
-697.7667995	C45H80O2
-697.9420434	C10H18N5O20P5
-698.1997636	C20H34AuO9PS
-698.494788	C32H60NO11P
-698.5512174	C38H60O9
-698.5642367	C38H61NO8
-699.4030067	C33H49N3O7S2
-699.4124851	C33H47NO13
-700.1452502	C20H29N3O19P2
-700.4248281	C36H44N4O8
-700.5030368	C36H56O11
-700.5642428	C42H58O6
-700.691904	C46H70O2
-701.1815299	C25H26N9NaO8S2
-701.3161179	C25H42N2O19
-701.4944977	C31H53N11O5
-702.1609003	C20H31N3O19P2
-702.235967	C30H27N3O15
-703.3903493	C35H42N2O11
-704.404051	C36H44O12
-704.4300897	C36H46N2O10
-705.5102467	C35H58O12
-705.5658346	C37H65O8P
-706.3420025	C28H43N5O12S
-706.4457397	C36H48N2O10
-706.549987	C36H62O11
-707.086521	C17H27N3O20P2S
-707.3317802	C33H38O15
-707.5814846	C37H67O8P
-708.4353821	C38H48CaN2O6
-709.3510209	C31H46Cl2N2O10
-709.4112609	C35H46O13
-709.4737328	C39H47N5O5
-709.5428127	C33H61N5O9
-709.5971347	C37H69O8P
-710.3341519	C28H38N12O6S
-710.4640205	C36H51NO11
-711.4104183	C33H47N5O8S
-711.4399303	C35H49NO12
-711.4907416	C37H54O11
-711.6127848	C37H71O8P
-714.3546401	C32H42O16
-715.1985738	C21H35N7O13P2S
-715.5363269	C35H58N6O7
-715.7109089	C47H72O2
-717.4855217	C37H50N6O6
-721.4399719	C35H47N5O9
-721.4647446	C37H50N2O10
-722.3455358	C42H32O9
-723.3709092	C25H43N13O10
-723.5338306	C35H61NO12
-724.4536798	C40H46N2O8
-724.4693237	C36H51N3O10
-724.5618176	C34H63N5O9
-726.1732719	C28H25N6NaO10S2
-726.4589352	C36H51NO12
-728.378108	C44H32N4O4
-728.3923416	C34H46ClN3O10
-728.432054	C34H50N4O9S
-728.4615659	C36H52O13
-729.6901735	C47H70O3
-730.2961188	C34H33NO15
-730.3091381	C34H34N2O14
-732.3599555	C40H36O11
-733.3200769	C35H37ClN2O11
-733.4023205	C37H44O13
-734.1046948	C18H28N5O19P3
-734.1733274	C32H22N6Na2O6S2
-734.3326682	C26H45NO21
-734.4680995	C38H50N2O10
-734.4915134	C42H48N4O5
-734.4943482	C34H64Cl2N2O6S
-735.4309899	C37H47NO12
-736.5071635	C42H50N4O5
-737.5130952	C35H59NO13
-738.4095303	C36H46O14
-739.0398313	C15H25N5O20P4
-739.371062	C37H38N4O10
-739.4726847	C41H48N2O8
-739.4753093	C37H52N2O11
-739.6351445	C39H73O8P
-740.3847638	C38H40N2O11
-740.5684856	C36H65NO12
-741.6638139	C39H76NO7P
-742.3769999	C34H44O16
-742.3818066	C32H46N8O6S2
-742.5397357	C44H50N8
-743.2140122	C21H40O23P2
-743.4792121	C39H49N5O7
-744.1138652	C24H24N5O15P3
-744.2910273	C30H36N2O18
-744.7091784	C48H72O3
-745.2165502	C21H35N9O15P2
-745.328143	C35H36N2O14
-745.3672009	C35H39N5O11
-745.6251481	C39H67N5O6
-745.6877128	C43H74O7
-745.84783	C6H19O27P7
-746.4681472	C42H45N5O5
-746.5433625	C34H66NO12P
-748.3548701	C40H36O12
-748.4322301	C34H52N2O12S
-748.4877807	C36H56O14
-749.3972351	C37H44O14
-750.4630141	C38H50N2O11
-751.4094119	C35H46N6O8S
-751.4128852	C37H46O14
-751.5261684	C43H52N4O5
-752.1228525	C28H32Cl2O10P2S2
-752.4361329	C36H49N5O8S
-753.2531118	C21H41N7O17P2
-754.4943142	C38H54N2O11
-754.5321062	C40H58O11
-755.3803547	C35H44O16
-755.5080159	C39H56O12
-755.5874905	C37H67NO12
-756.5634002	C36H65NO13
-757.3526248	C27H47N9O10S2
-757.6587285	C39H76NO8P
-758.2702918	C30H34N2O19
-758.5764257	C40H63NO10
-759.3682749	C27H49N9O10S2
-759.6587346	C43H73O6P
-760.3849399	C38H42O14
-760.4513952	C36H52O15
-760.704093	C48H72O4
-761.5549661	C39H62O12
-761.7438334	C49H76O3
-762.2989673	C34H34N2O16
-762.5782211	C40H68O7P2
-763.4190984	C37H48N6O5S2
-763.4259523	C41H42N4O8
-763.4897829	C43H48N4O6
-764.2178593	C30H33FeN3O15
-764.6103565	C40H68O11
-765.505433	C43H50N4O6
-767.521083	C43H52N4O6
-767.7243283	C51H72O2
-769.2480264	C21H41N7O18P2
-769.5511111	C41H60O11
-770.3485483	C34H41NO17
-770.4866042	C42H50N2O9
-771.1121286	C21H27N6O18P3
-771.1251479	C21H28N7O17P3
-771.2636765	C21H43N7O18P2
-771.5824051	C37H67NO13
-772.5426709	C40H60O12
-773.140798	C21H30N7O17P3
-773.3270888	C33H40O19
-773.3848214	C37H42N6O8S
-773.5954306	C41H65NO10
-774.3029985	C32H38O20
-774.3707197	C28H47N5O18
-774.6295528	C38H74NO10P
-774.6933835	C40H80NO8P
-775.5980613	C41H66O11
-775.7230979	C49H74O4
-776.3824792	C34H46O18
-776.573971	C40H64O12
-777.2051135	C23H36N4O20P2
-778.1940425	C22H35N5O20P2
-779.304959	C39H32O15
-779.754398	C49H78O4
-781.5303696	C37H61NO14
-782.3837634	C44H36N2O9
-783.2724285	C37H30O17
-784.3642461	C38H38N4O12
-784.570116	C42H62O11
-785.3645549	C27H51FeN9O12
-785.5616697	C37H65NO14
-785.6810882	C41H78NO8P
-786.1193801	C20H27N10O16P3
-786.3825208	C34H44N4O15
-786.60141	C38H69NO13
-786.6495967	C44H70O9
-787.0433355	C17H27N3O23P2S2
-787.5616758	C41H62O12
-788.5375855	C40H60O13
-788.6144355	C42H67NO10
-788.6300794	C38H72N2O12
-788.6596287	C40H77O10P
-789.3220034	C33H40O20
-789.5773259	C41H64O12
-790.3617437	C34H44O19
-790.8059334	C52H82O2
-791.5791152	C37H72O11P2
-791.5929759	C41H66O12
-791.6294092	C45H65N3O6
-792.7340373	C15H11I4NO4
-793.4275288	C39H47NO14
-793.6724566	C43H74O10
-794.4542498	C40H50O14
-795.1649042	C21H36N7O16P3S
-795.4431789	C39H49NO14
-796.5493745	C38H63NO14
-796.9022306	C17H22I3N3O8
-797.7037568	C43H78O10
-799.7194068	C43H80O10
-801.7936382	C53H80O2
-802.2603292	C32H38N4O12S3
-802.5806807	C42H64O12
-802.6519126	C40H76NO10P
-802.7695479	C52H78O3
-803.3372396	C25H44N13O13P
-803.4145511	C39H44N4O12
-803.5001611	C35H62NO15P
-804.7313933	C42H84NO8P
-805.316918	C33H40O21
-805.3319559	C40H41FeN4O6S
-805.3542675	C41H38N6O5S2
-805.43933	C45H44O11
-805.5722405	C41H64O13
-806.2273384	C36H30Cl2N2O13
-807.2617607	C29H36N5O18P
-807.5878906	C41H66O13
-808.2794759	C22H47N5O21S2
-809.0836789	C29H20ClN7O11S3
-809.2774107	C29H38N5O18P
-809.3542606	C31H45N6O15P
-809.5527293	C39H63NO14
-809.6035406	C41H68O13
-809.7119851	C20H10Br4O10S2
-809.9055855	C18H22I3N3O8
-810.3301704	C30H43N6O16P
-810.552053	C42H59N3O10
-811.4346201	C37H49N7O9S
-811.4854315	C39H54N6O8S
-811.5683794	C39H65NO14
-811.9212355	C18H24I3N3O8
-812.0423559	C18H26N4O23P4
-812.3458204	C30H45N6O16P
-812.4648145	C40H52O15
-814.7159819	C15H10I4NNaO4
-815.3807903	C35H44N4O16
-816.3706355	C38H42N8O6S2
-818.1899869	C34H24O22
-818.7644626	C52H78O4
-819.6791663	C45H74O10
-820.205637	C34H26O22
-820.655076	C44H72O11
-821.2210291	C27H33N9O15P2
-821.3118326	C33H40O22
-821.3756632	C35H46O20
-821.5671551	C41H64O14
-821.8836836	C55H90O
-822.2212871	C34H28O22
-822.6068955	C42H68O13
-822.6755027	C44H76NO8P
-823.2366792	C27H35N9O15P2
-823.3526798	C29H51N3O18P2
-823.5606826	C36H72N6O6Tc
-824.1631737	C22H36N7O17P3S
-824.6512088	C38H76N2O14
-825.3491753	C31H45N6O16P
-825.5476439	C39H63NO15
-825.5984552	C41H68O14
-826.5873843	C40H67NO14
-826.7068028	C44H80NO8P
-827.3143312	C33H43ClO20
-827.3648253	C31H47N6O16P
-827.8694278	C49H94O6
-827.9161501	C18H24I3N3O9
-828.7706396	C50H83O4P
-829.3574302	C39H38N4O14
-830.7381029	C44H84NO8P
-831.4100236	C35H48N8O11S
-831.5515528	C45H57N3O9
-832.1646726	C32H32O16S4
-832.2351357	C30H44K2O16S2
-832.6152172	C42H68N6O6S
-834.57051	C42H64O14
-835.2246419	C35H28O22
-835.559439	C41H63NO14
-835.6232696	C43H69NO12
-835.6375548	C41H69N7O8
-835.6575955	C45H76O7P2
-835.6740809	C45H74O11
-836.58616	C42H66O14
-836.6499906	C44H72O12
-837.5620697	C41H64O15
-839.1821786	C23H38N7O17P3S
-840.5666488	C40H65NO15
-840.6174601	C42H70O14
-841.3440899	C31H45N6O17P
-841.6063892	C41H69NO14
-842.505449	C38H60O18
-842.5522769	C46H56N4O8
-842.6331102	C42H72O14
-842.935155	C19H26I3N3O9
-845.3523448	C39H38N4O15
-847.2547117	C33H34O24
-848.6136051	C44H68O13
-848.6266244	C44H69NO12
-848.8024724	C54H82O4
-849.5895149	C43H66O14
-849.6533455	C45H72O12
-850.6766004	C46H78O7P2
-851.297228	C31H45Cl3N6O13
-851.413673	C37H50O20
-851.4878983	C43H53NO14
-851.5543536	C41H63NO15
-852.1315867	C24H39N8O18P3S
-852.1855334	C24H38N7O17P3S
-852.5810746	C42H66O15
-854.2011835	C24H40N7O17P3S
-854.5967247	C42H68O15
-855.5856537	C41H67NO15
-857.9541599	C20H28I3N3O9
-858.315283	C42H30N6O12
-858.375327	C30H52O26
-858.4339083	C40H50O18
-858.5471915	C46H56N4O9
-859.6025758	C43H65N5O10
-860.5628416	C46H58N4O9
-862.7231556	C44H82O13
-864.5446891	C42H62O16
-866.0857105	C20H28N10O19P4
-866.6371891	C44H71NO13
-867.2045383	C25H40N7O17P3S
-867.3551517	C39H41NO19
-867.368171	C39H42N2O18
-867.3699542	C31H53N3O19P2
-867.6000795	C43H68O15
-868.180448	C24H38N7O18P3S
-868.6259591	C40H78O13P2
-869.1563578	C23H36N7O19P3S
-869.2201884	C25H42N7O17P3S
-869.5375209	C43H58N4O12
-870.1960981	C24H40N7O18P3S
-870.2091174	C24H41N8O17P3S
-870.6046586	C42H69NO15
-872.5264561	C46H54N4O10
-873.3810642	C43H42ClN3O12
-873.4529132	C41H52O18
-873.4775931	C43H49N7O10
-874.3506143	C40H38N4O16
-874.5421062	C46H56N4O10
-875.1689893	C23H38N3O25P3
-875.3967143	C43H44ClN3O12
-876.6372308	C44H69N5O10
-877.494608	C45H53NO14
-879.3669529	C45H38O16
-879.6561879	C41H76N2O15
-879.6857372	C43H81O13P
-880.3975645	C40H44N4O16
-880.5009703	C36H65N3O15P2
-882.2235432	C26H42N7O17P3S
-882.3871759	C40H44N2O18
-883.1994529	C25H40N7O18P3S
-883.3344224	C43H36O18
-884.1753627	C24H38N7O19P3S
-884.188382	C24H39N8O18P3S
-884.2391933	C26H44N7O17P3S
-885.215103	C25H42N7O18P3S
-885.2281223	C25H43N8O17P3S
-885.6080196	C47H66O13
-886.4150027	C38H48N8O12S
-887.2307531	C25H44N7O18P3S
-887.4960084	C43H56O17
-888.2704934	C26H48N7O17P3S
-889.3759789	C43H42ClN3O13
-891.3916289	C43H44ClN3O13
-891.5281897	C49H58FeN4O5
-892.4506985	C48H48N4O6S2
-893.4322072	C33H54N6O20
-894.1871577	C26H38N7O18P3S
-896.583971	C46H62N4O11
-897.2425481	C27H44N7O17P3S
-897.6511087	C45H73NO14
-898.0495011	C20H26N8O23P4
-898.0755397	C20H28N10O21P4
-898.2184578	C26H42N7O18P3S
-898.3820905	C40H44N2O19
-898.4081292	C40H46N4O17
-899.1943676	C25H40N7O19P3S
-899.2581982	C27H46N7O17P3S
-900.2341079	C26H44N7O18P3S
-900.5658185	C42H66O18
-901.4856676	C47H51NO14
-901.850014	C55H91O4P
-902.249758	C26H46N7O18P3S
-902.4056206	C32H55NO26
-904.3365468	C42H38O20
-904.5045319	C44H52N8O10
-905.5065731	C43H58O18
-905.6342343	C47H70O14
-905.6498783	C43H75NO16
-906.2146028	C28H40N7O17P3S
-907.4075812	C39H49NO21
-908.2302529	C28H42N7O17P3S
-908.3326796	C36H42N2O23
-908.4199242	C42H46N4O16
-908.73697	C50H84O7P2
-910.1643138	C26H38N7O17P3S2
-910.1820723	C26H38N7O19P3S
-910.245903	C28H44N7O17P3S
-910.4355743	C42H48N4O16
-910.460347	C44H51NO17
-910.4929008	C34H60N8O18
-911.3567821	C45H38O18
-912.1977224	C26H40N7O19P3S
-912.2615157	C28H43N5O23P2
-912.261553	C28H46N7O17P3S
-913.2374627	C27H44N7O18P3S
-913.4707068	C47H58FeN4O4S2
-913.633004	C45H72O16
-913.6460233	C45H73NO15
-913.6968346	C47H78O14
-914.2133725	C26H42N7O19P3S
-914.5450831	C42H64O19
-915.1892822	C25H40N7O20P3S
-915.2531128	C27H46N7O18P3S
-919.5235368	C45H54N8O10
-920.6532392	C48H72O14
-921.2336077	C29H42N7O17P3S
-921.8818468	C59H90O4
-922.2095174	C28H40N7O18P3S
-922.2225368	C28H41N8O17P3S
-922.6975526	C44H80N2O15
-923.5197624	C39H64O22
-923.644799	C47H72O15
-924.205181	C28H39FN7O17P3S
-924.2251675	C28H42N7O18P3S
-924.535996	C36H64N8O17
-925.4545792	C43H50N4O16
-926.1592284	C26H38N7O18P3S2
-926.2408176	C28H44N7O18P3S
-927.2167273	C27H42N7O19P3S
-927.2805579	C29H48N7O17P3S
-927.3686066	C39H42N6O18
-927.4311713	C43H49NO19
-927.5978905	C47H64N4O12
-927.6707571	C55H62N10
-928.2564676	C28H46N7O18P3S
-929.2323774	C27H44N7O19P3S
-929.2453967	C27H45N8O18P3S
-929.277312	C28H48N8O17P3S
-929.296208	C29H50N7O17P3S
-929.5497099	C45H60N4O14
-929.5757485	C45H62N6O12
-929.6279186	C45H72O17
-929.6409379	C45H73NO16
-930.2082871	C26H42N7O20P3S
-931.292962	C28H50N8O17P3S
-931.6435687	C45H74O17
-931.6696073	C45H76N2O15
-932.2239371	C26H44N7O20P3S
-932.6324977	C44H73NO17
-934.2369626	C30H42N7O17P3S
-934.3972473	C42H52FeN8O6S2
-935.6722441	C49H74O14
-935.689154	C43H78N6O13
-937.2285224	C29H42N7O18P3S
-937.2415417	C29H43N8O17P3S
-938.6638039	C48H74O15
-940.1756305	C28H39ClN7O17P3S
-940.2331014	C28H43N8O18P3S
-940.4042153	C34H54Cl2N10O14
-941.4364745	C43H49N3O18
-941.4494938	C43H50N4O17
-942.2357322	C28H44N7O19P3S
-942.4306528	C34H56N4O24
-942.4436721	C34H57N5O23
-942.4892341	C44H54N4O16
-943.2116419	C27H42N7O20P3S
-943.2754725	C29H48N7O18P3S
-943.6202025	C45H71NO17
-944.2513823	C28H46N7O19P3S
-944.3152129	C30H52N7O17P3S
-944.3511843	C40H42N2O22
-944.5048842	C44H56N4O16
-945.227292	C27H44N7O20P3S
-945.2911226	C29H50N7O18P3S
-945.4035513	C45H44Cl2N10O6
-946.0520409	C20H29N10O22P5
-947.2878767	C28H50N8O18P3S
-947.6515026	C45H75NO17
-948.675599	C50H74O14
-949.6923189	C55H70MgN4O5
-949.9680372	C63H98O2
-950.2318772	C30H42N7O18P3S
-951.6033281	C47H68O17
-951.707969	C55H72MgN4O5
-952.2475273	C30H44N7O18P3S
-953.223437	C29H42N7O19P3S
-953.2872676	C31H48N7O17P3S
-953.3866081	C31H51N12O18P
-953.6828088	C49H76O15
-955.3029177	C31H50N7O17P3S
-956.4684987	C44H52N4O17
-957.3185677	C31H52N7O17P3S
-957.8391456	C57H88O8
-958.2306468	C28H44N7O20P3S
-958.2944774	C30H50N7O18P3S
-958.3017856	C44H34O22
-958.5302208	C46H60N4O13S
-959.3342178	C31H54N7O17P3S
-959.6659284	C47H76O17
-960.2436722	C32H42N7O17P3S
-960.2462969	C28H46N7O20P3S
-960.383891	C42H46O23
-960.7524967	C56H76N4O6
-962.3392162	C42H44FeN4O16
-962.6705075	C46H77NO17
-962.7681467	C56H78N4O6
-965.649048	C45H76O19
-965.6872336	C55H70MgN4O6
-965.7232732	C51H79NO13
-966.2267918	C30H42N7O19P3S
-966.7148269	C46H82N2O16
-967.4553548	C39H54N10O14S
-967.7028836	C55H72MgN4O6
-969.2821822	C31H48N7O18P3S
-969.7185337	C55H74MgN4O6
-971.2978323	C31H50N7O18P3S
-971.4875036	C45H54N4O17
-971.6425622	C47H73NO17
-972.2867613	C30H49N8O18P3S
-973.3134823	C31H52N7O18P3S
-973.6582123	C47H75NO17
-974.1366582	C28H38Cl2N7O17P3S
-974.6849333	C48H78O17
-975.2014712	C27H42N7O22P3S
-975.2087794	C41H26O26
-975.3291324	C31H54N7O18P3S
-977.2244294	C41H28O26
-977.6764931	C47H78O18
-979.2400795	C41H30O26
-979.6921431	C47H80O18
-981.2457967	C31H44N7O19P3S
-981.2557296	C41H32O26
-981.8163444	C55H92O7P2
-983.4954253	C37H61N7O21
-984.3011871	C32H50N7O18P3S
-985.3409275	C33H54N7O17P3S
-985.4667682	C45H52N4O18
-987.2927469	C31H50N7O19P3S
-987.3565775	C33H56N7O17P3S
-988.6641979	C48H76O18
-989.3722276	C33H58N7O17P3S
-989.6401076	C47H74O19
-990.6798479	C48H78O18
-992.695498	C48H80O18
-993.219344	C41H28O27
-994.2491516	C32H44N7O19P3S
-994.711148	C48H82O18
-995.2349941	C41H30O27
-996.2648016	C32H46N7O19P3S
-996.843592	C56H93O9P
-997.2407113	C31H44N7O20P3S
-997.2506442	C41H32O27
-999.2563614	C31H46N7O20P3S
-1002.311752	C32H52N7O19P3S
-1003.351492	C33H56N7O18P3S
-1005.367142	C33H58N7O18P3S
-1007.252506	C33H44N7O19P3S
-1008.390444	C34H58N4O24S2
-1009.662638	C55H74N4O6Zn
-1010.244066	C32H44N7O20P3S
-1010.732101	C48H84N2O17
-1012.259716	C32H46N7O20P3S
-1012.583553	C60H56O11
-1017.394587	C35H60N7O17P3S
-1019.410237	C35H62N7O17P3S
-1020.526366	C44H64O24
-1022.410003	C34H58N5O26P
-1024.23635	C32H43N8O20P3S
-1025.751106	C49H86N2O17
-1026.448279	C36H62O31
-1028.382292	C36H58N7O17P3S
-1028.654063	C44H77N5O19
-1028.675369	C46H83N3O15P2
-1031.705562	C51H80O18
-1032.681472	C50H78O19
-1033.270121	C31H50N9O18P3S2
-1033.657382	C49H76O20
-1035.405152	C35H62N7O18P3S
-1036.648942	C48H76O21
-1042.397528	C46H46N2O23
-1043.713155	C49H74N10O12
-1047.432597	C37H64N7O17P3S
-1048.278221	C36H46N7O19P3S
-1048.370677	C34H55N7O24P2
-1049.448247	C37H66N7O17P3S
-1050.293871	C36H48N7O19P3S
-1053.683504	C49H74N10O12
-1056.531003	C42H67N5O21S
-1058.748546	C54H87NO12P2
-1061.545134	C43H66N12O12S2
-1062.699486	C50H81N4O15P
-1063.427512	C37H64N7O18P3S
-1063.592928	C43H77N3O20P2
-1064.273136	C36H46N7O20P3S
-1065.443162	C37H66N7O18P3S
-1066.288786	C36H48N7O20P3S
-1068.715621	C50H83NO20
-1069.922966	C61H101O9P
-1073.439307	C39H64N7O17P3S
-1073.914323	C55H103NO15
-1074.454779	C46H58Cl2N4O18
-1075.454957	C39H66N7O17P3S
-1077.470607	C39H68N7O17P3S
-1077.575216	C49H66N10O10S2
-1079.17423	C66H125NO5
-1079.486257	C39H70N7O17P3S
-1081.705956	C51H82O21
-1083.624281	C53H67N9O10S
-1084.710536	C50H83NO21
-1092.608948	C42H74N8O22
-1093.363862	C35H55N7O26P2
-1095.840187	C53H93N7O13
-1097.262799	C31H51N10O21P3S2
-1098.676781	C50H80O23
-1099.716521	C51H84O22
-1100.692431	C50H82O23
-1101.461667	C41H66N7O17P3S
-1102.705456	C54H80O20
-1103.477317	C41H68N7O17P3S
-1108.133614	C32H35ClN18O10S6
-1108.484526	C40H70N7O18P3S
-1108.66371	C50H71N13O12
-1108.814122	C52H97NO18S
-1109.524267	C41H74N7O17P3S
-1109.741335	C53H85NO20
-1109.755621	C51H85N7O16
-1111.743966	C53H86O21
-1113.695786	C51H82O23
-1115.711436	C51H84O23
-1117.128911	C72H116O4
-1124.684664	C50H73N15O11
-1125.519181	C41H74N7O18P3S
-1126.739588	C52H90CaO20
-1128.539766	C46H64N14O12S2
-1129.402751	C35H59Al3N10O24
-1136.647105	C52H76O24
-1144.5477	C46H65N15O12S2
-1144.773536	C54H90O22
-1145.61916	C53H72O24
-1149.72731	C55H83NO21
-1149.889297	C61H102O12P2
-1153.38907	C37H58N8O27P2
-1156.760564	C58H84N2O18
-1157.71306	C53H84O24
-1161.573161	C20H14I6N2O6
-1167.713009	C53H76N14O12
-1168.248701	C48H32O32
-1169.54503	C55H59N5O20
-1169.763919	C59H84N2O18
-1170.794531	C54H90N6O18
-1176.510667	C42H70O35
-1185.73542	C55H86O24
-1188.802988	C52H100N2O20P2
-1190.482955	C40H68N5O31P
-1193.527515	C45H74N7O19P3S
-1193.919591	C63H105NO12P2
-1194.521232	C42H72O36
-1198.459104	C40H65N9O26P2
-1200.416821	C77H150O3
-1201.730334	C55H86O25
-1203.35662	C49H51N13O8S6
-1204.33253	C48H49N13O9S6
-1207.50678	C45H72N7O20P3S
-1209.52243	C45H74N7O20P3S
-1212.871646	C60H92N12O10
-1220.701427	C62H79ClN4O13S
-1228.433283	C40H63N9O28P2
-1234.513249	C42H71N6O31P
-1236.56888	C48H78N7O19P3S
-1238.58453	C48H80N7O19P3S
-1239.595914	C22H18I6N2O9
-1239.700659	C57H82O26
-1243.452288	C41H65N9O28P2
-1252.563795	C48H78N7O20P3S
-1252.770469	C56H92O27
-1253.707135	C55H75N17O13
-1253.757946	C57H80N16O12
-1254.579445	C48H80N7O20P3S
-1260.681901	C48H84N8O27
-1260.793825	C56H85N17O12
-1267.789474	C57H94O27
-1268.558709	C48H78N7O21P3S
-1270.574359	C48H80N7O21P3S
-1273.503317	C43H70N10O27P2
-1275.016752	C62H111N11O12
-1280.792828	C58H94O27
-1281.623577	C24H20I6N4O8
-1281.768738	C57H92O28
-1283.795956	C59H84N16O12
-1284.760298	C56H92O29
-1285.280388	C51H43N13O12S6
-1285.800038	C57H96O28
-1288.020107	C63H111N11O12
-1291.780533	C59H92O27
-1295.811833	C59H96O27
-1296.047285	C34H30ClFeN4O4.2H
-1296.63395	C54H74N8O25
-1297.631511	C24H21I6N5O8
-1314.452581	C54H52N16O16S2
-1315.666849	C26H26I6N2O10
-1318.983308	C62H114N2O23
-1327.801663	C59H96O29
-1328.800893	C62H86N12O16
-1348.837503	C66H87N13O13
-1353.200212	C51H40N6O23S6
-1360.401452	C56H55N15O10S6
-1361.992543	C69H115NO17P2
-1371.289842	C76H142O15
-1373.859174	C63H91N17O13
-1374.167178	C36H46N16Na4O21S6
-1376.31148	C58H44Cl3N7O21S
-1381.830732	C63H98O29
-1382.745436	C56H94O35
-1387.603909	C86H172O6
-1393.697217	C58H85CoN16O14P
-1395.10983	C68H129N2O20P
--- a/databases/bmrb-heavy_carbon.tsv	Tue Jul 10 17:58:35 2018 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6088 +0,0 @@
-17.03465497	CH4
-28.01425388	CHN
-28.02235974	C2H2
-30.0380098	C2H4
-31.01391952	CH2O
-32.045554	CH5N
-33.02956959	CH4O
-35.02523313	CH3F
-43.02515291	CH2N2
-44.0091685	CHNO
-45.04890884	C2H5N
-45.05701471	C3H6
-46.02481856	CH3NO
-46.03292443	C2H4O
-47.00883415	CH2O2
-47.06455891	C2H7N
-48.04857449	C2H6O
-49.00672566	CH4S
-56.03661361	C3H3N
-57.0206292	C3H2O
-59.03627926	C3H4O
-59.98632457	CHNS
-60.01218898	C2H2O2
-60.06791374	C3H7N
-61.02001402	C2H3O2
-61.0357176	CH4N2O
-61.04382346	C2H5NO
-61.05192933	C3H6O
-62.01973318	CH3NO2
-62.02783905	C2H4O2
-62.07545794	C2H8N2
-62.08356381	C3H9N
-63.00374877	CH2O3
-63.05947353	C2H7NO
-63.06757939	C3H8O
-63.99903748	C2H3Cl
-64.02573056	C2H6S
-64.04348911	C2H6O2
-71.04751265	C3H4N2
-72.0396341	C4H4O
-73.01554382	C3H2O2
-73.06316272	C3H6N2
-73.07126858	C4H7N
-74.0471783	C3H5NO
-74.05528417	C4H6O
-75.03119389	C3H4O2
-75.07070692	C2H7N3
-75.08691865	C4H9N
-76.00710361	C2H2O3
-76.04661664	CH5N3O
-76.0547225	C2H6N2O
-76.06282837	C3H7NO
-76.07093423	C4H8O
-77.01287367	CH4N2S
-77.03063222	CH4N2O2
-77.03873809	C2H5NO2
-77.04684395	C3H6O2
-77.09446284	C3H10N2
-77.10256871	C4H11N
-78.00499512	C2H4OS
-78.02275367	C2H4O3
-78.07847843	C3H9NO
-78.08658429	C4H10O
-79.0366296	C2H7NS
-79.04473546	C3H8S
-79.06249401	C3H8O2
-79.9939521	C2H3ClO
-80.01841722	C2H3FO2
-80.02064518	C2H6OS
-80.03577909	C6H2
-82.00960217	C2H5ClO
-83.05925419	C6H5
-84.05086749	C4H4N2
-84.05897335	C5H5N
-84.06707922	C6H6
-84.95671032	CH2Cl2
-84.98569341	CHNaO3
-86.05030582	C2H4N4
-86.05841169	C3H5N3
-86.06651755	C4H6N2
-87.04242727	C3H4N2O
-88.03454872	C4H4O2
-88.09027348	C5H9N
-89.0661832	C4H7NO
-89.07428907	C5H8O
-90.04209292	C3H5NO2
-90.05019879	C4H6O2
-90.09781768	C4H10N2
-90.10592355	C5H11N
-90.11402941	C6H12
-91.01800264	C2H3NO3
-91.02610851	C3H4O3
-91.06562154	C2H7N3O
-91.0737274	C3H8N2O
-91.08183327	C4H9NO
-91.08993913	C5H10O
-92.00201823	C2H2O4
-92.04963712	C2H6N2O2
-92.05774299	C3H7NO2
-92.06584885	C4H8O2
-92.11346775	C4H12N2
-92.12157361	C5H13N
-92.12967948	C6H14
-92.99730694	C3H3ClO
-93.02400002	C3H6OS
-93.04175857	C3H6O3
-93.1055892	C5H12O
-93.99990974	C2H4O2S
-94.06374036	C4H10S
-94.07339305	C3H9NO2
-94.08149892	C4H10O2
-95.01295701	C3H5ClO
-95.05740864	C3H8O3
-95.9444151	C2Cl2
-95.98886673	C2H3ClO2
-95.99780125	C2H6S2
-96.0155598	C2H6O2S
-96.95117677	CH4Se
-96.99146952	CH4O3S
-97.96006516	C2H2Cl2
-99.06987239	C5H6N2
-99.07797826	C6H7N
-99.08608412	C7H8
-99.97571522	C2H4Cl2
-99.98372092	C2H3KO2
-100.053888	C5H5NO
-100.0619938	C6H6O
-101.0297977	C4H3NO2
-101.0379036	C5H4O2
-101.0774166	C4H7N3
-102.0576574	C6H5F
-102.0614322	C4H6N2O
-102.0776439	C6H8O
-103.0373419	C3H4N2O2
-103.0454478	C4H5NO2
-103.0768549	C2H7N5
-104.0770822	C4H8N2O
-104.0851881	C5H9NO
-104.093294	C6H10O
-105.0352334	C3H6N2S
-105.0448861	C2H5N3O2
-105.052992	C3H6N2O2
-105.0610978	C4H7NO2
-105.0692037	C5H8O2
-105.1249284	C6H13N
-106.0289017	C2H4N2O3
-106.0370075	C3H5NO3
-106.0451134	C4H6O3
-106.0927323	C4H10N2O
-106.1008382	C5H11NO
-106.108944	C6H12O
-107.0210231	C3H4O4
-107.0346717	CH6N4S
-107.068642	C3H8N2O2
-107.0767479	C4H9NO2
-107.0848538	C5H10O2
-107.1324726	C5H14N2
-107.1405785	C6H15N
-108.0526576	C3H7NO3
-108.0607635	C4H8O3
-108.9922216	C3H3ClO2
-109.0189146	C3H6O2S
-109.0366732	C3H6O4
-109.0746394	C4H11NS
-109.092398	C4H11NO2
-109.9477998	C2FeN2
-110.0483212	C3H6FNO2
-110.0494713	C5H3N3
-110.0575772	C6H4N2
-110.065683	C7H5N
-111.0264588	C2H7NO2S
-111.9701817	C2H6Se
-112.0118844	CH6NO3P
-112.089439	C8H8
-112.9790701	C3H4Cl2
-112.9863841	CH4O4S
-112.9959	CH5O4P
-113.0572428	C6H5NO
-113.0653487	C7H6O
-113.0792465	C4H12ClN
-114.0412584	C6H4O2
-114.0807714	C5H7N3
-114.0888773	C6H8N2
-114.0969832	C7H9N
-114.105089	C8H10
-115.0566811	C4H5N3O
-115.064787	C5H6N2O
-115.0728929	C6H7NO
-115.0809987	C7H8O
-116.0406967	C4H4N2O2
-116.0488026	C5H5NO2
-116.0569085	C6H6O2
-116.0964215	C5H9N3
-116.1126332	C7H11N
-117.0328182	C5H4O3
-117.0685564	C6H6FN
-117.0723312	C4H7N3O
-118.0087279	C4H2O4
-118.0281069	C6H5Cl
-118.0563468	C4H6N2O2
-118.0644527	C5H7NO2
-118.0725585	C6H8O2
-118.917738	CHCl3
-119.0403624	C4H5NO3
-119.0484682	C5H6O3
-119.0960871	C5H10N2O
-119.104193	C6H11NO
-120.0162721	C3H3NO4
-120.024378	C4H4O4
-120.063891	C3H7N3O2
-120.07045	C6H10S
-120.0801027	C5H9NO2
-120.0882086	C6H10O2
-121.0002877	C3H2O5
-121.0240971	C3H4NO4
-121.030148	C3H6N2OS
-121.0479066	C3H6N2O3
-121.0560124	C4H7NO3
-121.0641183	C5H8O3
-121.1117372	C5H12N2O
-121.1279489	C7H14O
-122.0319222	C3H5NO4
-122.040028	C4H6O4
-122.0876469	C4H10N2O2
-122.0957528	C5H11NO2
-122.1038587	C6H12O2
-122.1676893	C8H18
-122.9981792	C3H4O3S
-123.0159378	C3H4O5
-123.053904	C4H9NOS
-123.0716625	C4H9NO3
-123.0797684	C5H10O3
-124.020161	C4H8S2
-124.0298137	C3H7NO2S
-124.0379195	C4H8O2S
-124.0556781	C4H8O4
-124.9539056	CH5AsO2
-125.0603703	C5H4N4
-125.0765821	C7H6N2
-125.0846879	C8H7N
-125.0873126	C4H11NO3
-125.989739	C2H4O4S
-125.9992548	C2H5O4P
-126.0187707	C3H6ClNO2
-126.0713282	C4H10O4
-126.9751646	CH3O5P
-127.0117208	C3H8OS2
-127.0213735	C2H7NO3S
-127.0308893	C2H8NO3P
-127.0922321	C7H8N2
-127.1084439	C9H10
-127.9698719	C2H6S3
-128.005389	C2H6O4S
-128.0149049	C2H7O4P
-128.060036	C5H5N3O
-128.0681419	C6H6N2O
-128.0762477	C7H7NO
-128.0843536	C8H8O
-128.9061952	CH2BrCl
-129.0343989	C6H5NS
-129.0521574	C6H5NO2
-129.0602633	C7H6O2
-129.0754587	C3H6N6
-129.1078822	C7H10N2
-129.1159881	C8H11N
-129.1240939	C9H12
-130.036173	C6H4O3
-130.0594743	C3H5N5O
-130.0675802	C4H6N4O
-130.0756861	C5H7N3O
-130.0837919	C6H8N2O
-130.1000036	C8H10O
-130.9896347	C3H6Cl2O
-131.0434899	C3H4N4O2
-131.0515958	C4H5N3O2
-131.0597016	C5H6N2O2
-131.0678075	C6H7NO2
-131.0759134	C7H8O2
-131.1154264	C6H11N3
-131.9210928	C2HCl3
-132.0275055	C3H3N3O3
-132.0356114	C4H4N2O3
-132.0437172	C5H5NO3
-132.0518231	C6H6O3
-132.0913361	C5H9N3O
-133.0390059	C6H6ClN
-133.0471118	C7H7Cl
-133.0494873	C4H7N3S
-133.0753517	C5H8N2O2
-133.0834576	C6H9NO2
-133.0915634	C7H10O2
-133.1148647	C4H11N5
-133.1310765	C6H13N3
-133.1472882	C8H15N
-134.0230215	C6H5ClO
-134.0312749	C4H3FN2O2
-134.0593673	C5H7NO3
-134.0674732	C6H8O3
-134.1069862	C5H11N3O
-134.115092	C6H12N2O
-134.1231979	C7H13NO
-134.1313038	C8H14O
-135.0271711	C3H4N2O4
-135.035277	C4H5NO4
-135.0433829	C5H6O4
-135.07479	C3H8N4O2
-135.0828959	C4H9N3O2
-135.0910018	C5H10N2O2
-135.0991076	C6H11NO2
-135.1072135	C7H12O2
-135.1386207	C5H14N4
-135.1629383	C8H17N
-135.9756696	C3H3NOS2
-136.0192926	C4H4O5
-136.0588056	C3H7N3O3
-136.0669115	C4H8N2O3
-136.0750173	C5H9NO3
-136.0831232	C6H10O3
-136.1226362	C5H13N3O
-136.1307421	C6H14N2O
-136.138848	C7H15NO
-136.1469538	C8H16O
-136.9542286	C3FeN3
-137.0412744	C5H8O2S
-137.0428212	C3H6N2O4
-137.0509271	C4H7NO4
-137.0590329	C5H8O4
-137.1066518	C5H12N2O2
-137.1147577	C6H13NO2
-137.1228636	C7H14O2
-137.1623766	C6H17N3
-137.1785883	C8H19N
-138.0349427	C4H6O5
-138.0637252	C6H4N4
-138.0729089	C5H11NOS
-138.0825615	C4H10N2O3
-138.0880428	C9H7N
-138.0961486	C10H8
-138.0987733	C6H12O3
-138.1626039	C8H18O
-139.0488186	C4H9NO2S
-139.0569244	C5H10O2S
-139.0665771	C4H9NO4
-139.074683	C5H10O4
-139.1045433	C5H14N2S
-140.0328342	C4H8O3S
-140.0505927	C4H8O5
-140.0712694	C5H5N5
-140.0793752	C6H6N4
-140.0874811	C7H7N3
-140.095587	C8H8N2
-140.1036928	C9H9N
-140.9488203	CH5AsO3
-141.0182597	C3H7O4P
-141.055285	C5H4N4O
-141.0796026	C8H7NO
-141.0877084	C9H8O
-141.0903331	C5H12O4
-141.9846536	C2H4O5S
-141.9860636	CH4NO5P
-141.9941695	C2H5O5P
-142.0311947	C4H2N4O2
-142.0403784	C3H9NO3S
-142.0498942	C3H10NO3P
-142.0950253	C6H8N4
-142.1193429	C9H11N
-142.1274488	C10H12
-143.0258039	C2H8NO4P
-143.0339098	C3H9O4P
-143.0790409	C6H7N3O
-143.0952526	C8H9NO
-143.1033585	C9H10O
-143.9825451	C2H6O3S2
-144.0536636	C4H10FO2P
-144.0630565	C6H6N2O2
-144.0711623	C7H7NO2
-144.0792682	C8H8O2
-144.1106754	C6H10N4
-144.1268871	C8H12N2
-144.134993	C9H13N
-144.1430988	C10H14
-145.0470721	C6H5NO3
-145.0551779	C7H6O3
-145.094691	C6H9N3O
-145.1027968	C7H10N2O
-145.1109027	C8H11NO
-145.1190085	C9H12O
-146.0229818	C5H3NO4
-146.0310876	C6H4O4
-146.0543889	C3H5N5O2
-146.0787065	C6H8N2O2
-146.0868124	C7H9NO2
-146.0949183	C8H10O2
-146.1587489	C10H16
-147.0263764	C7H5ClO
-147.0508415	C7H5FO2
-147.0546163	C5H6N2O3
-147.0627221	C6H7NO3
-147.070828	C7H8O3
-147.110341	C6H11N3O
-147.1265527	C8H13NO
-147.1346586	C9H14O
-147.9160075	C2HCl3O
-148.0255874	C3H4ClN5
-148.0289792	C6H6O2S
-148.0467377	C6H6O4
-148.0943566	C6H10N2O2
-148.1024625	C7H11NO2
-148.1105683	C8H12O2
-148.1662931	C9H17N
-148.9557478	C3H5Cl3
-149.009603	C3H3ClN4O
-149.0420264	C7H7ClO
-149.0606136	C6H9NOS
-149.0783722	C6H9NO3
-149.0864781	C7H10O3
-149.1178852	C5H12N4O
-149.1422028	C8H15NO
-149.9316575	C2H3Cl3O
-149.9936185	C3H2ClN3O2
-150.0098303	C5H4ClNO2
-150.0179361	C6H5ClO2
-150.0284175	C4H6N2O2S
-150.0365234	C5H7NO2S
-150.046176	C4H6N2O4
-150.0542819	C5H7NO4
-150.0623878	C6H8O4
-150.1019008	C5H11N3O2
-150.1100067	C6H12N2O2
-150.1181125	C7H13NO2
-150.1262184	C8H14O2
-150.1819432	C9H19N
-151.0382975	C5H6O5
-151.0576765	C7H9ClO
-151.0778105	C4H9N3O3
-151.0843696	C7H12OS
-151.0859164	C5H10N2O3
-151.0940223	C6H11NO3
-151.1021281	C7H12O3
-151.1416411	C6H15N3O
-151.1578529	C8H17NO
-151.9891346	C6H4Cl2
-152.0142072	C4H4O6
-152.0335862	C6H7ClO2
-152.0425207	C6H10S2
-152.0521734	C5H9NO2S
-152.0602793	C6H10O2S
-152.0618261	C4H8N2O4
-152.069932	C5H9NO4
-152.0780378	C6H10O4
-152.1256567	C6H14N2O2
-152.1418685	C8H16O2
-152.1732756	C6H18N4
-152.1813815	C7H19N3
-153.0094959	C5H5ClO3
-153.036189	C5H8O3S
-153.0458417	C4H7NO5
-153.0539476	C5H8O5
-153.1070477	C10H9N
-153.1096723	C6H13NO3
-153.1151535	C11H10
-153.9943402	C4H6O2S2
-154.0047846	C6H6Cl2
-154.0298573	C4H6O6
-154.0411304	C5H8ClNO2
-154.0500649	C5H11NS2
-154.0678235	C5H11NO2S
-154.0748515	C8H6N2O
-154.0829574	C9H7NO
-154.0910633	C10H8O
-154.0936879	C6H12O4
-154.1575185	C8H18O2
-154.9880084	C3H4O5S
-154.9975243	C3H5O5P
-155.0588671	C8H5NO2
-155.066973	C9H6O2
-155.0695976	C5H10O5
-155.0902743	C6H7N5
-155.1145919	C9H10N2
-155.1253224	C6H15NO3
-156.0018844	C3H7NO2S2
-156.0099902	C4H8O2S2
-156.0196429	C3H7NO4S
-156.066184	C5H5N5O
-156.0738209	C6H14S2
-156.0986075	C9H9NO
-157.0131744	C3H7O5P
-157.032441	C5H4N4S
-157.0501996	C5H4N4O2
-157.0567586	C8H7NS
-157.0688991	C4H12NO3P
-157.0745172	C8H7NO2
-157.082623	C9H8O2
-157.0852477	C5H12O5
-157.1059243	C6H9N5
-157.1302419	C9H12N2
-157.1383478	C10H13N
-157.9890841	C2H5O6P
-158.0256403	C4H10O2S2
-158.0448088	C3H10NO4P
-158.0504269	C7H5NO3
-158.0529147	C4H11O4P
-158.0585328	C8H6O3
-158.0650679	C6H9NaO3
-158.1142575	C9H11NO
-158.1223634	C10H12O
-159.00155	C3H8O3S2
-159.0288244	C3H9O5P
-159.0457156	C8H6ClN
-159.0820614	C7H8N2O2
-159.0901672	C8H9NO2
-159.0982731	C9H10O2
-159.1539979	C10H15N
-160.043629	C5H11Cl2N
-160.0579711	C6H6N2O3
-160.066077	C7H7NO3
-160.0741828	C8H8O3
-160.0974841	C5H9N5O
-160.1136959	C7H11N3O
-160.1299076	C9H13NO
-160.1380134	C10H14O
-161.0338808	C5H4N2O4
-161.0419867	C6H5NO4
-161.0500925	C7H6O4
-161.0814997	C5H8N4O2
-161.0896056	C6H9N3O2
-161.1058173	C8H11NO2
-161.1139232	C9H12O2
-161.1696479	C10H17N
-161.9598827	C2H6Te
-161.9775918	C6H5Br
-162.0260023	C6H4O5
-162.0372754	C7H6ClNO
-162.0453813	C8H7ClO
-162.0558626	C6H8N2OS
-162.0574094	C4H6N4O3
-162.0736212	C6H8N2O3
-162.0898329	C8H10O3
-162.1455576	C9H15NO
-162.1536635	C10H16O
-163.0131851	C6H4ClNO2
-163.021291	C7H5ClO2
-163.0495309	C5H6N2O4
-163.0576367	C6H7NO4
-163.0657426	C7H8O4
-163.1214674	C8H13NO2
-163.1295732	C9H14O2
-163.1528745	C6H15N5
-163.9109221	C2HCl3O2
-164.0416523	C6H6O5
-164.0892712	C6H10N2O3
-164.0973771	C7H11NO3
-164.1612077	C9H17NO
-164.1693136	C10H18O
-165.036941	C7H7ClO2
-165.0651809	C5H8N2O4
-165.0732868	C6H9NO4
-165.0813927	C7H10O4
-165.1209057	C6H13N3O2
-165.1371174	C8H15NO2
-165.1452233	C9H16O2
-165.8821205	C2Cl4
-165.9265721	C2H3Cl3O2
-166.0128508	C6H5ClO3
-166.0491965	C5H7NO5
-166.053107	C7H6NNaO2
-166.0573024	C6H8O5
-166.1022966	C10H8N2
-166.1049213	C6H12N2O3
-166.1130272	C7H13NO3
-166.1185084	C12H10
-166.121133	C8H14O3
-166.1849636	C10H20O
-166.9707911	C3H4Cl2F2O
-167.0000336	C6H5Cl2N
-167.0332121	C5H6O6
-167.0630725	C5H10N2O2S
-167.0889369	C6H11NO4
-167.0944181	C11H8O
-167.0970427	C7H12O4
-167.1446616	C7H16N2O2
-167.1527675	C8H17NO2
-167.1608734	C9H18O2
-167.2003864	C8H21N3
-167.9840492	C6H4Cl2O
-168.0374354	C6H10OS2
-168.047088	C5H9NO3S
-168.0551939	C6H10O3S
-168.0648466	C5H9NO5
-168.0703278	C10H6O2
-168.0729525	C6H10O5
-168.101735	C8H8N4
-168.1179467	C10H10N2
-168.1205714	C6H14N2O3
-168.1286772	C7H15NO3
-168.1341584	C12H12
-168.1367831	C8H16O3
-168.2006137	C10H22O
-169.0488622	C5H8O6
-169.0695388	C6H5N5O
-169.0868284	C6H13NO2S
-169.1019623	C10H9NO
-169.1045869	C6H13NO4
-169.1100682	C11H10O
-169.1126928	C7H14O4
-170.0449795	C5H11NOS2
-170.0465264	C3H9N3O3S
-170.0535544	C6H4N4O2
-170.0627381	C5H11NO3S
-170.077872	C9H7NO2
-170.0859779	C10H8O2
-170.0886025	C6H12O5
-170.1092792	C7H9N5
-170.1335968	C10H12N2
-170.1417026	C11H13N
-170.9787242	C2H8AsNO3
-170.9829231	C3H4O6S
-170.9924389	C3H5O6P
-171.0110484	C3H2F6O
-171.0618876	C9H6O3
-171.0645122	C5H10O6
-171.0851889	C6H7N5O
-171.1095065	C9H10N2O
-171.1176124	C10H11NO
-171.9742648	C3H7NO2Se
-172.0145575	C3H7NO5S
-172.0240734	C3H8NO5P
-172.0321793	C4H9O5P
-172.0433401	C5H5N5S
-172.0514459	C6H6N4S
-172.0610986	C5H5N5O2
-172.0854162	C8H8N2O2
-172.0913134	C8H9BO3
-172.0935221	C9H9NO2
-172.1016279	C10H10O2
-172.1168234	C6H10N6
-172.1492468	C10H14N2
-172.9985731	C3H6O6S
-173.008089	C3H7O6P
-173.0451142	C5H4N4O3
-173.0613259	C7H6N2O3
-173.0638137	C4H12NO4P
-173.0694318	C8H7NO3
-173.0775377	C9H8O3
-173.0833296	C5H13ClN2O2
-173.100839	C6H9N5O
-173.1251566	C9H12N2O
-173.1332624	C10H13NO
-174.0098244	C7H5NS2
-174.0300708	C4H11O3PS
-174.0453415	C7H5NO4
-174.0534474	C8H6O4
-174.0833077	C8H10N2S
-174.0848545	C6H8N4O2
-174.1091721	C9H11NO2
-174.117278	C10H12O2
-174.1730028	C11H17N
-174.9978682	C4H5CaNO4
-175.023739	C3H9O6P
-175.0325244	C7H5ClN2O
-175.0430057	C5H6N4OS
-175.0607643	C5H6N4O3
-175.0673233	C8H9NOS
-175.0850819	C8H9NO3
-175.0905631	C13H6
-175.0931877	C9H10O3
-175.1327008	C8H13N3O
-175.1489125	C10H15NO
-175.1570184	C11H16O
-175.9593201	C4H4FeO4
-176.01654	C7H4ClNO2
-176.0351272	C6H6N2O2S
-176.0609916	C7H7NO4
-176.0690974	C8H8O4
-176.1005046	C6H10N4O2
-176.1086105	C7H11N3O2
-176.1167163	C8H12N2O2
-176.1248222	C9H13NO2
-176.1329281	C10H14O2
-177.0450072	C7H6O5
-177.0562803	C8H8ClNO
-177.0748675	C7H10N2OS
-177.1007319	C8H11NO3
-177.1062131	C13H8
-177.1088378	C9H12O3
-177.9725064	C6H5BrO
-177.9877384	C7H3Cl2N
-178.0402959	C8H7ClO2
-178.0507772	C6H8N2O2S
-178.0588831	C7H9NO2S
-178.0635972	C5H8ClN5
-178.0685358	C6H8N2O4
-178.0766416	C7H9NO4
-178.0847475	C8H10O4
-178.1323664	C8H14N2O2
-178.1485781	C10H16O2
-178.1637736	C6H16N6
-178.2043029	C11H21N
-179.0347928	C6H7NO3S
-179.0428987	C7H8O3S
-179.0606572	C7H8O5
-179.1001703	C6H11N3O3
-179.1082761	C7H12N2O3
-179.1137573	C12H9N
-179.116382	C8H13NO3
-179.1218632	C13H10
-179.1244879	C9H14O3
-179.155895	C7H16N4O
-179.1802126	C10H19NO
-179.9696673	C4H7Cl3O
-179.9921153	C6H3ClO4
-180.0188084	C6H6O4S
-180.0283243	C6H7O4P
-180.036567	C6H6O6
-180.0679741	C4H8N4O4
-180.07608	C5H9N3O4
-180.0841858	C6H10N2O4
-180.0922917	C7H11NO4
-180.0977729	C12H8O
-180.1003976	C8H12O4
-180.1318047	C6H14N4O2
-180.1399106	C7H15N3O2
-180.1642282	C10H18O2
-181.0385622	C7H7FO2S
-181.044392	C6H7O6
-181.0600956	C5H8N2O5
-181.0682014	C6H9NO5
-181.0763073	C7H10O5
-181.1077145	C5H12N4O3
-181.1158203	C6H13N3O3
-181.1239262	C7H14N2O3
-181.1294074	C12H11N
-181.1320321	C8H15NO3
-181.2039685	C11H22O
-182.0077654	C6H5ClO4
-182.0480216	C7H6NNaO3
-182.052217	C6H8O6
-182.1079418	C7H13NO4
-182.113423	C12H10O
-182.1160476	C8H14O4
-182.1798783	C10H20O2
-182.2437089	C12H26
-183.0022623	C4H5NO5S
-183.0142786	C7H5NaO2S
-183.0579871	C5H10N2O3S
-183.0660929	C6H11NO3S
-183.0812269	C10H7NO2
-183.0838515	C6H11NO5
-183.0893327	C11H8O2
-183.0919574	C7H12O5
-183.112634	C8H9N5
-183.1369516	C11H12N2
-183.1531633	C13H14
-183.9789638	C6H4Cl2O2
-184.0265827	C6H8Cl2N2
-184.0420027	C5H9NO4S
-184.0652424	C10H6O3
-184.0678671	C6H10O6
-184.1128613	C10H10N2O
-184.115486	C6H14N2O4
-184.1209672	C11H11NO
-184.1316977	C8H16O4
-185.0644535	C6H5N5O2
-185.0736371	C5H12N2O3S
-185.081743	C6H13NO3S
-185.0887711	C9H8N2O2
-185.0968769	C10H9NO2
-185.0995016	C6H13NO5
-185.1049828	C11H10O2
-185.1076074	C7H14O5
-185.1444958	C10H13N3
-185.1526017	C11H14N2
-185.1607075	C12H15N
-185.9420043	C2H5AsO5
-185.9501623	C6H3Cl3
-185.9841694	C4H6O4S2
-185.9946139	C6H6Cl2O2
-186.0221356	C5H11NS3
-186.0657586	C6H12O4S
-186.0671686	C5H12NO4P
-186.0808925	C10H8O3
-186.0835171	C6H12O6
-186.1285114	C10H12N2O
-186.9814979	C3H2ClF5O
-186.9873535	C3H5O7P
-186.9932697	C4H9NO2Se
-187.0253197	C4H10NO3PS
-187.0511842	C5H11O5P
-187.0568022	C9H6O4
-187.0806117	C9H8NO3
-187.0882094	C7H8N4O2
-187.0963153	C8H9N3O2
-187.1044211	C9H10N2O2
-187.1206328	C11H12O2
-187.1763576	C12H17N
-187.874685	C2H4Br2
-188.0094722	C3H7NO6S
-188.018988	C3H8NO6P
-188.0270939	C4H9O6P
-188.0733028	C5H13NO4S
-188.0791807	C6H11FO5
-188.0803308	C8H8N2O3
-188.0828186	C5H14NO4P
-188.0884367	C9H9NO3
-188.0909245	C6H15O4P
-188.0965426	C10H10O3
-188.0991672	C6H14O6
-188.1068131	C6H12F2N2O2
-188.1104403	C7H16ClNO2
-188.111738	C6H10N6O
-188.1360556	C9H13N3O
-188.1441615	C10H14N2O
-188.1522673	C11H15NO
-189.0030036	C3H7O7P
-189.0288293	C8H7NS2
-189.0400288	C5H4N4O4
-189.0562406	C7H6N2O4
-189.0643464	C8H7NO4
-189.0724523	C9H8O4
-189.0957536	C6H9N5O2
-189.1023126	C9H12N2S
-189.1038595	C7H10N4O2
-189.1106783	C7H16FO2P
-189.1200712	C9H12N2O2
-189.128177	C10H13NO2
-189.1362829	C11H14O2
-189.8983633	C2H4S5
-190.0224976	C7H5NO3S
-190.0321503	C6H4N2O5
-190.048362	C8H6O5
-190.0865881	C6H14FO3P
-190.1040868	C9H11NO3
-190.1121926	C10H12O3
-190.1598115	C10H16N2O
-190.1679174	C11H17NO
-190.1760233	C12H18O
-190.9736207	C3H8O3S3
-190.9972901	C3F8
-191.0242717	C7H4O6
-191.0799965	C8H9NO4
-191.0881024	C9H10O4
-191.1276154	C8H13N3O2
-191.151933	C11H16O2
-191.2076577	C12H21N
-192.0559062	C7H7NO5
-192.0640121	C8H8O5
-192.0671793	C8H9ClN2O
-192.0997503	C9H10FNO2
-192.1090063	C12H8N2
-192.111631	C8H12N2O3
-192.1197368	C9H13NO3
-192.1252181	C14H10
-192.1278427	C10H14O3
-192.1916733	C12H20O
-193.0221632	C7H6O4S
-193.0399218	C7H6O6
-193.0697821	C7H10N2O2S
-193.0826021	C6H10ClN5
-193.0875407	C7H10N2O4
-193.1011278	C13H8O
-193.1037524	C9H12O4
-193.1150255	C10H14ClN
-193.1594772	C10H17NO2
-193.167583	C11H18O2
-194.0352105	C8H7ClO3
-194.0553445	C5H7N3O5
-194.0633136	C7H10NO3P
-194.0715563	C7H9NO5
-194.0770375	C12H6O2
-194.1246564	C12H10N2
-194.1353869	C9H15NO3
-194.1434928	C10H16O3
-194.1748999	C8H18N4O
-194.1992175	C11H21NO
-195.0297074	C6H7NO4S
-195.0378133	C7H8O4S
-195.0555719	C7H8O6
-195.0690836	C6H12N3PS
-195.0950849	C6H11N3O4
-195.1031907	C7H12N2O4
-195.1112966	C8H13NO4
-195.1167778	C13H10O
-195.1194025	C9H14O4
-195.1508096	C7H16N4O2
-195.1832331	C11H20O2
-195.9983031	C7H5Cl2NO
-196.013723	C6H6O5S
-196.0314816	C6H6O7
-196.0791005	C6H10N2O5
-196.0872063	C7H11NO5
-196.0926876	C12H8O2
-196.0953122	C8H12O5
-196.1065853	C9H14ClNO
-196.1267194	C6H14N4O3
-196.1332784	C9H17NOS
-196.1348252	C7H15N3O3
-196.1403064	C12H12N2
-196.1429311	C8H16N2O3
-196.151037	C9H17NO3
-196.1591428	C10H18O3
-196.1986559	C9H21N3O
-196.2229734	C12H24O
-196.9823187	C7H4Cl2O2
-197.0631161	C6H9NO6
-197.0685973	C11H6O3
-197.0712219	C7H10O6
-197.1010823	C7H14N2O2S
-197.1081103	C10H9N3O
-197.1091881	C8H15NO2S
-197.1162162	C11H10N2O
-197.1188408	C7H14N2O4
-197.124322	C12H11NO
-197.1269467	C8H15NO4
-197.1350525	C9H16O4
-197.1463257	C10H18ClN
-197.1826714	C9H20N2O2
-197.1907773	C10H21NO2
-197.1988832	C11H22O2
-197.2627138	C13H28
-197.8969346	C2HBrClF3
-198.00268	C6H5ClO5
-198.0471316	C6H8O7
-198.0850978	C7H13NO3S
-198.1083376	C12H10O2
-198.1109623	C8H14O5
-198.1489285	C9H19NOS
-198.1559565	C12H14N2
-198.1721682	C14H16
-198.1747929	C10H20O3
-198.2386235	C12H26O
-199.0680356	C9H6N2O3
-199.0761415	C10H7NO3
-199.0787661	C6H11NO6
-199.0842473	C11H8O3
-199.086872	C7H12O6
-199.1318662	C11H12N2O
-199.9907084	C4H5O7P
-200.0183301	C6H7ClO5
-200.0302214	C3H8N3O5P
-200.0601571	C10H6O4
-200.0627817	C6H10O7
-200.0795361	C12H9Cl
-200.0996701	C9H9N3O2
-200.1158818	C11H11NO2
-200.1239877	C12H12O2
-200.1266123	C8H16O5
-200.1716066	C12H16N2
-200.1797124	C13H17N
-201.0699618	C4H12N3O4P
-201.074033	C10H9NOS
-201.0917915	C10H9NO3
-201.0944162	C6H13NO6
-201.0998974	C11H10O3
-201.102522	C7H14O6
-201.1475163	C11H14N2O
-201.1556222	C12H15NO
-201.9450769	C6H3Cl3O
-201.9580848	C3H6BrNO4
-202.0063584	C4H7O7P
-202.0122746	C5H11NO2Se
-202.0313555	C10H5ClO2
-202.0433837	C6H4N4O4
-202.0525673	C5H11NO5S
-202.0620832	C5H12NO5P
-202.0677013	C9H7NO4
-202.0758071	C10H8O4
-202.0784318	C6H12O7
-202.0991084	C7H9N5O2
-202.1072143	C8H10N4O2
-202.123426	C10H12N2O2
-202.1341565	C7H17NO5
-202.1396377	C12H14O2
-202.1553413	C11H15N2O
-203.0188244	C5H10O4S2
-203.0379929	C4H10NO6P
-203.1074416	C10H11NO3
-203.1155475	C11H12O3
-203.1631664	C11H16N2O
-203.1712722	C12H17NO
-203.9607269	C6H5Cl3O
-203.964094	C3H7NO4Se
-203.9866282	C3H7NO5S2
-204.0206315	C4H3F7O
-204.0220085	C4H9O7P
-204.0590337	C6H6N4O4
-204.0833513	C9H9NO4
-204.0914572	C10H10O4
-204.1390761	C10H14N2O2
-204.1471819	C11H15NO2
-204.1552878	C12H16O2
-205.0344744	C5H12O4S2
-205.059261	C8H7NO5
-205.0635061	C6H14ClNO2S
-205.0673669	C9H8O5
-205.1068799	C8H11N3O3
-205.1230917	C10H13NO3
-205.1311975	C11H14O3
-205.1314081	C9H19NO4
-205.1544988	C8H15N5O
-205.1950282	C13H20O
-206.0376586	C4H11O7P
-206.0432766	C8H6O6
-206.0827897	C7H9N3O4
-206.0908955	C8H10N2O4
-206.0990014	C9H11NO4
-206.1071073	C10H12O4
-206.1102745	C10H13ClN2
-206.1183804	C11H14ClN
-206.1207559	C8H14N4S
-206.1547261	C10H16N2O2
-206.1709379	C12H18O2
-207.0505935	C5H6N4O5
-207.0749111	C8H9NO5
-207.083017	C9H10O5
-207.12253	C8H13N3O3
-207.1306359	C9H14N2O3
-207.1361171	C14H11N
-207.1387417	C10H15NO3
-207.9812353	C2H8O7P2
-207.9982633	C6H3ClN2O4
-208.0589267	C8H8O6
-208.0865591	C8H9FN2O3
-208.101607	C7H12ClN5
-208.1065456	C8H12N2O4
-208.1201327	C14H10O
-208.1227573	C10H14O4
-208.1865879	C12H20O2
-208.2179951	C10H22N4
-209.0170779	C7H6O5S
-209.0265937	C7H7O5P
-209.0348364	C7H6O7
-209.0542154	C9H9ClO3
-209.0960424	C13H8O2
-209.1138625	C5H12N6O3
-209.1355554	C12H11N3
-209.1543918	C10H17NO3
-209.2020107	C10H21N3O
-210.119571	C12H10N2O
-210.1221957	C8H14N2O4
-210.1698145	C8H18N4O2
-210.202238	C12H22O2
-211.0504865	C7H8O7
-211.0698655	C9H11ClO3
-211.0777222	C11H8N2S
-211.1035866	C12H9NO2
-211.1062112	C8H13NO5
-211.1116925	C13H10O2
-211.1143171	C9H14O5
-211.1457243	C7H16N4O3
-211.1512055	C12H13N3
-211.1593114	C13H14N2
-211.1700419	C10H19NO3
-211.2338725	C12H25NO
-211.9754591	C7H5Cl2NS
-211.9851118	C6H4Cl2N2O2
-212.0044422	C7H4NNaO3S
-212.0263962	C6H6O8
-212.1190093	C10H10N4O
-212.1378457	C8H16N2O4
-212.1459516	C9H17NO4
-212.1514328	C14H14O
-212.1540574	C10H18O4
-212.2178881	C12H24O2
-212.2492952	C10H26N4
-213.0177261	C7H11BrO2
-213.0504674	C9H5ClN4
-213.0635119	C11H6O4
-213.0661365	C7H10O7
-213.0863442	C8H15NOS2
-213.1111308	C11H10N2O2
-213.1192367	C12H11NO2
-213.1273425	C13H12O2
-213.1299672	C9H16O5
-213.142538	C9H12N6
-213.1506438	C10H13N5
-213.1749614	C13H16N2
-213.1911731	C15H18
-213.953143	C6H2Cl2O4
-214.0169736	C8H8Cl2O2
-214.0564867	C7H11Cl2N3
-214.0703598	C8H14O2S2
-214.0951464	C11H9NO3
-214.1032522	C12H10O3
-214.1189558	C11H11N2O2
-214.1427653	C11H13N3O
-214.1616016	C9H19NO4
-214.2173264	C10H24N2O2
-215.0492263	C4H10N3O5P
-215.0640281	C7H12O5S
-215.0710561	C10H7NO4
-215.079162	C11H8O4
-215.1019943	C8H17NOS2
-215.1049511	C5H15N4O3P
-215.1090223	C11H12N2S
-215.1267809	C11H12N2O2
-215.1348867	C12H13NO2
-215.1375114	C8H17NO5
-215.1429926	C13H14O2
-215.1662939	C10H15N5
-215.9687931	C6H4Cl2O4
-216.0576963	C6H10O8
-216.0744507	C12H9ClO
-216.084932	C10H10N2OS
-216.0860098	C8H16O2S2
-216.0945847	C9H9N3O3
-216.1107964	C11H11NO3
-216.1189023	C12H12O3
-216.1665212	C12H16N2O
-216.1746271	C13H17NO
-216.1827329	C14H18O
-216.9640818	C7H5Cl3O
-217.0172575	C4H8NO7P
-217.0309814	C9H4O6
-217.0867062	C10H9NO4
-217.094812	C11H10O4
-217.0974367	C7H14O7
-217.1246724	C11H14N2S
-217.1262192	C9H12N4O2
-217.1314081	C10H19NO4
-217.1424309	C11H14N2O2
-217.1505368	C12H15NO2
-217.1586426	C13H16O2
-217.2224733	C15H22
-217.9399915	C6H3Cl3O2
-218.0012731	C4H7O8P
-218.0071892	C5H11NO3Se
-218.0239562	C5H9Cl2N3O2
-218.0707217	C10H8O5
-218.1183406	C10H12N2O3
-218.1264465	C11H13NO3
-218.1319277	C16H10
-218.1345524	C12H14O3
-218.1740654	C11H17N3O
-218.1821713	C12H18N2O
-218.1902771	C13H19NO
-219.0329075	C4H10NO7P
-219.0410134	C5H11O7P
-219.0708737	C5H15N2O3PS
-219.0861445	C8H9N3O4
-219.0893118	C8H10ClN5
-219.1023562	C10H11NO4
-219.1104621	C11H12O4
-219.1130867	C7H16O7
-219.1136294	C11H13ClN2
-219.158081	C11H16N2O2
-219.1661868	C12H17NO2
-219.1742927	C13H18O2
-219.2381233	C15H24
-219.9556416	C6H5Cl3O2
-219.9870241	C8H4O3S2
-219.9991646	C4H9O6PS
-220.0169231	C4H9O8P
-220.0524015	C8H8N2O3S
-220.0726479	C5H14NO6P
-220.0782659	C9H9NO5
-220.0863718	C10H10O5
-220.1258848	C9H13N3O3
-220.1339907	C10H14N2O3
-220.1420966	C11H15NO3
-220.1502024	C12H16O3
-220.1978213	C12H20N2O
-220.2059272	C13H21NO
-220.2140331	C14H22O
-221.0105527	C7H6N2O2S2
-221.0566635	C5H13O7P
-221.0622815	C9H8O6
-221.0735547	C10H10ClNO2
-221.1083536	C11H14O2S
-221.1180063	C10H13NO4
-221.1261122	C11H14O4
-221.1316549	C8H15N5S
-221.1397608	C9H16N4S
-221.1899428	C13H20O2
-221.92684	C6H4Cl4
-221.9897808	C8H7BrO2
-222.0447263	C6H9NaO7
-222.0858101	C8H10N2O5
-222.093916	C9H11NO5
-222.0993972	C14H8O2
-222.1020219	C10H12O5
-222.1156705	C8H14N4OS
-222.1389103	C13H11N3
-222.1496408	C10H16N2O3
-222.1577466	C11H17NO3
-222.1632279	C16H14
-222.1658525	C12H18O3
-223.0779316	C9H10O6
-223.0892047	C10H12ClNO2
-223.11482	C12H9N3O
-223.1206119	C8H14ClN5
-223.1229258	C13H10N2O
-223.1255505	C9H14N2O4
-223.1336564	C10H15NO4
-223.1391376	C15H12O
-223.1812752	C10H19N3O2
-223.197487	C12H21NO2
-223.9424901	C6H6Cl4
-223.95932	C4H7Cl2O4P
-224.0069389	C4H11Cl2N2O2P
-224.0538413	C8H8O7
-224.0732203	C10H11ClO3
-224.0837017	C8H12N2O3S
-224.0988356	C12H8N2O2
-224.1069414	C13H9NO2
-224.1095661	C9H13NO5
-224.1150473	C14H10O2
-224.1289451	C11H16ClNO
-224.1383486	C11H11N5
-224.1652908	C10H18N2O3
-224.1733967	C11H19NO3
-224.1788779	C16H16
-224.1815026	C12H20O3
-225.0134025	C6H6NO6P
-225.0610214	C6H10N3O4P
-225.0812804	C9H9N2NaO3
-225.0854758	C8H11NO6
-225.0967489	C9H13ClN2O2
-225.1142583	C10H9N5O
-225.116883	C6H13N5O4
-225.1330947	C8H15N3O4
-225.1385759	C13H12N2O
-225.1493064	C10H17NO4
-225.1547876	C15H14O
-225.9586368	C6H5IO
-225.9910695	C6H5ClN2O3S
-226.0015508	C4H6N4O3S2
-226.0363129	C9H9Cl2NO
-226.0450369	C6H9N2O5P
-226.0668667	C12H6O4
-226.0890179	C7H10FN3O4
-226.1074576	C9H15NO3S
-226.1090044	C7H13N3O5
-226.1171103	C8H14N2O5
-226.1225915	C13H11NO2
-226.1306974	C14H12O2
-226.172835	C9H19N3O3
-226.1783163	C14H16N2
-226.1971526	C12H22O3
-227.0454011	C7H8O8
-227.0752614	C7H12N2O4S
-227.0766714	C6H12N3O4P
-227.0985012	C12H9NO3
-227.1011259	C8H13NO6
-227.1066071	C13H10O3
-227.1205049	C10H16ClNO2
-227.154226	C13H14N2O
-227.1568506	C9H18N2O4
-227.1649565	C10H19NO4
-227.1704377	C15H16O
-227.1730623	C11H20O4
-227.1843355	C12H22ClN
-227.3007236	C15H32
-227.9962382	C8H6Cl2O3
-228.0035523	C6H6O7S
-228.0205192	C6H11BrN2O2
-228.0469997	C12H8S2
-228.0647582	C12H8O2S
-228.0825168	C12H8O4
-228.0835523	C4H13AlN4O5
-228.1246545	C7H15N3O5
-228.1327603	C8H16N2O5
-228.1408662	C9H17NO5
-228.1463474	C14H14O2
-228.1489721	C10H18O5
-228.1869383	C11H23NOS
-228.2128027	C12H24O3
-229.026944	C6H10NO4PS
-229.0909115	C7H14N2O4S
-229.1141513	C12H11NO3
-229.1167759	C8H15NO6
-229.1222571	C13H12O3
-229.1455584	C10H13N5O
-229.169876	C13H16N2O
-229.8979879	C2H4Cl3O4P
-230.0126433	C3H5N3O9
-230.0571685	C7H13NO3S2
-230.0804083	C12H10O2S
-230.0844429	C7H14NO5P
-230.090061	C11H9NO4
-230.0981669	C12H10O4
-230.1007915	C8H14O7
-230.1214682	C9H11N5O2
-230.1306518	C8H18N2O3S
-230.1457858	C12H14N2O2
-230.1538916	C13H15NO2
-231.0105441	C6H11NO3Se
-231.0659707	C10H7NO5
-231.0740766	C11H8O5
-231.0958311	C10H11N3OS
-231.1216955	C11H12N2O3
-231.1298013	C12H13NO3
-231.1379072	C13H14O3
-231.1612085	C10H15N5O
-231.1855261	C13H18N2O
-231.9637077	C6H4Cl2O5
-232.0015758	C10H7BrO
-232.0362624	C5H10NO7P
-232.0693653	C12H9ClO2
-232.1057111	C11H11NO4
-232.1138169	C12H12O4
-232.1452241	C10H14N4O2
-232.1614358	C12H16N2O2
-232.1695417	C13H17NO2
-233.0654091	C8H7N3O5
-233.0678969	C5H13N2O6P
-233.0735149	C9H8N2O5
-233.0816208	C10H9NO5
-233.0897266	C11H10O5
-233.1130279	C8H11N5O3
-233.1454514	C12H15NO3
-233.1509326	C17H12
-233.1535573	C13H16O3
-233.1773667	C13H18NO2
-233.1930703	C12H19N3O
-233.2011762	C13H20N2O
-233.209282	C14H21NO
-233.2173879	C15H22O
-234.0163953	C5H12NO3PS2
-234.0405637	C12H8Cl2
-234.0519124	C5H12NO7P
-234.0600183	C6H13O7P
-234.0850154	C12H11ClO2
-234.1106306	C14H8N2O
-234.1132553	C10H12N2O4
-234.1213611	C11H13NO4
-234.129467	C12H14O4
-234.1770859	C12H18N2O2
-234.1851918	C13H19NO2
-234.1932976	C14H20O2
-235.0253344	C7H4N2O7
-235.035928	C5H11O8P
-235.0680147	C6H8ClN7O
-235.0821369	C6H15NO6S
-235.0972708	C10H11NO5
-235.1053767	C11H12O5
-235.1367839	C9H14N4O3
-235.150371	C15H12N2
-235.1584768	C16H13N
-235.1611015	C12H17NO3
-235.1692073	C13H18O3
-235.1925086	C10H19N5O
-235.233038	C15H24O
-236.0287289	C9H6ClNO4
-236.0731806	C9H9NO6
-236.0812864	C10H10O6
-236.1207995	C9H13N3O4
-236.1289053	C10H14N2O4
-236.1451171	C12H16O4
-236.1587657	C10H18N4S
-236.192736	C12H20N2O2
-236.2008418	C13H21NO2
-236.2089477	C14H22O2
-236.8547176	C3H5Br2Cl
-237.0515781	C5H13O8P
-237.0765751	C11H11ClO3
-237.0789506	C8H11N3O3S
-237.104815	C9H12N2O5
-237.1102963	C14H9NO2
-237.1129209	C10H13NO5
-237.1184021	C15H10O2
-237.1210268	C11H14O5
-237.1417034	C12H11N5
-237.1524339	C9H16N4O3
-237.1579152	C14H13N3
-237.1686457	C11H18N2O3
-237.1741269	C16H15N
-237.1767515	C12H19NO3
-237.1848574	C13H20O3
-237.2324763	C13H24N2O
-237.248688	C15H26O
-238.0111392	C3H11NO7P2
-238.0185146	C8H7ClN2O2S
-238.0394404	C8H8Cl2N4
-238.0475463	C9H9Cl2N3
-238.0888306	C9H11NO6
-238.0928266	C8H14N4S2
-238.0943119	C14H8O3
-238.0969365	C10H12O6
-238.1001038	C10H13ClN2O2
-238.1396168	C9H16ClN5
-238.1445554	C10H16N2O4
-238.1500366	C15H13NO
-238.208386	C12H22N2O2
-238.2245977	C14H24O2
-239.0315619	C9H8Cl2N2O
-239.1259463	C14H11NO2
-239.1340522	C15H12O2
-239.14795	C12H18ClNO
-239.1735652	C14H15N3
-239.189777	C16H17N
-240.1018561	C13H9NO3
-240.1043439	C10H15O4P
-240.1044807	C9H13NO6
-240.1099619	C14H10O3
-240.1358879	C7H15N5O4
-240.1575808	C14H14N2O
-240.1737925	C16H16O
-240.1764172	C12H20O4
-240.2402478	C14H26O2
-240.9776417	C7H7IO
-241.0205557	C5H8N4O3S2
-241.0503545	C13H8S2
-241.0534482	C9H4N4O4
-241.0626319	C8H11NO5S
-241.0777658	C12H7NO4
-241.0858716	C13H8O4
-241.1314081	C12H19NO4
-241.1361152	C9H16N2O5
-241.1415964	C14H13NO2
-241.144221	C10H17NO5
-241.1497023	C15H14O2
-241.1973212	C15H18N2
-241.2799882	C15H30O
-242.0126772	C6H8N2O4S2
-242.0343068	C8H5F3N2OS
-242.0481943	C6H8N2O8
-242.1175061	C13H11NO3
-242.125612	C14H12O3
-242.1758555	C10H20N2O4
-242.1839614	C11H21NO4
-242.1920672	C12H22O4
-242.247792	C13H27NO2
-242.2558979	C14H28O2
-243.0152431	C9H8Cl2O3
-243.0960405	C8H13NO7
-243.1015217	C13H10O4
-243.1172293	C8H10BF4N3
-243.1517652	C9H18N2O5
-243.1637422	C12H16F3N
-243.1653523	C15H16O2
-244.0499962	C8H9N2NaO3S
-244.0556016	C6H11N2O6P
-244.0774314	C12H8O5
-244.084052	C7H15N3O2S2
-244.1250503	C12H12N2O3
-244.1331562	C13H13NO3
-244.1352483	C8H24O2Si3
-244.1357808	C9H17NO6
-244.141262	C14H14O3
-244.1807751	C13H17N3O
-244.1888809	C14H18N2O
-244.1969868	C15H19NO
-244.1996114	C11H23NO4
-244.2715479	C14H30O2
-245.1090659	C12H11NO4
-245.1116905	C8H15NO7
-245.1171718	C13H12O4
-245.1485789	C11H14N4O2
-245.1647907	C13H16N2O2
-245.1728965	C14H17NO2
-245.1810024	C15H18O2
-245.9461395	C6H3Cl3N2O2
-246.0084602	C6H12N2S4
-246.0439773	C6H12N2O4S2
-246.0575644	C12H10OS2
-246.0753229	C12H10O3S
-246.0849756	C11H9NO5
-246.0930815	C12H10O5
-246.0957061	C8H14O8
-246.1163828	C9H11N5O3
-246.1244887	C10H12N4O3
-246.1255665	C8H18N2O4S
-246.1542875	C18H12
-246.1569121	C14H16O3
-246.1883193	C12H18N4O
-246.204531	C14H20N2O
-246.2126369	C15H21NO
-247.0277068	C11H6Cl2N2
-247.0471614	C5H11N2O7P
-247.0689912	C11H8O6
-247.1003984	C9H10N4O4
-247.1069574	C12H13NO2S
-247.1166101	C11H12N2O4
-247.1328218	C13H14O4
-247.164229	C11H16N4O2
-247.1804407	C13H18N2O2
-247.1885466	C14H19NO2
-247.1966525	C15H20O2
-247.2442713	C15H24N2
-248.0215243	C6H11O6PS
-248.0392829	C6H11O8P
-248.0869018	C6H15N2O6P
-248.1087315	C12H12O5
-248.1320329	C9H13N5O3
-248.1401387	C10H14N4O3
-248.1537258	C16H12N2
-248.1563504	C12H16N2O3
-248.1644563	C13H17NO3
-248.2120752	C13H21N3O
-248.2201811	C14H22N2O
-248.2282869	C15H23NO
-249.0595686	C13H10Cl2
-249.1192157	C9H13ClN6
-249.1322602	C11H14N2O4
-249.1484719	C13H16O4
-249.1798791	C11H18N4O2
-249.1960908	C13H20N2O2
-249.2041967	C14H21NO2
-249.2123025	C15H22O2
-249.2599214	C15H26N2
-249.9298207	C6H3Cl3O4
-249.966277	C5H11NS5
-250.0072753	C10H8OS3
-250.0128568	C3H10N3O6PS
-250.0354784	C12H8Cl2O
-250.0549329	C6H13O8P
-250.0904113	C10H12N2O3S
-250.1032313	C9H12ClN5O
-250.1055452	C14H8N2O2
-250.1081699	C10H12N2O5
-250.1356547	C13H16ClNO
-250.1476829	C9H15N5O3
-250.1557888	C10H16N4O3
-250.1638946	C11H17N3O3
-250.1801064	C13H19NO3
-250.1882122	C14H20O3
-250.9587693	C3H6O9P2
-251.0225999	C5H12O7P2
-251.0857	C11H13ClN2S
-251.0921855	C10H11NO6
-251.0946733	C7H17O7P
-251.1002913	C11H12O6
-251.1115645	C12H14ClNO2
-251.1316985	C9H14N4O4
-251.1398044	C10H15N3O4
-251.1452856	C15H12N2O
-251.2279526	C15H24O2
-251.9010192	C6H2Cl4O2
-252.0433086	C6H14O6S2
-252.0616098	C10H11ClN2OS
-252.070583	C6H15O8P
-252.1076082	C8H12N4O5
-252.1157141	C9H13N3O5
-252.1211953	C14H10N2O2
-252.1238199	C10H14N2O5
-252.1293012	C15H11NO2
-252.1513048	C13H18ClNO
-252.1876506	C12H20N2O3
-252.1957564	C13H21NO3
-252.9649035	C3H7O9PS
-252.9663086	CH3ClHg
-253.0189323	C10H7Cl2NO2
-253.0301441	C4H13NO7P2
-253.0584453	C9H10Cl2N4
-253.0997297	C9H12N2O6
-253.1052109	C14H9NO3
-253.1118315	C9H16N4S2
-253.1133168	C15H10O3
-253.1376959	C10H17N3O2S
-253.1458017	C11H18N2O2S
-253.1473486	C9H16N4O4
-253.1716662	C12H19NO4
-253.1829393	C13H21ClN2
-253.2436026	C15H26O2
-254.0424609	C9H9Cl2N3O
-254.0892265	C14H8O4
-254.1112301	C12H15ClO3
-254.1206336	C12H10N4O2
-254.1217115	C10H16N2O3S
-254.1449512	C15H13NO2
-254.1669549	C13H20ClNO
-254.1708772	C8H18N6O3
-254.178983	C9H19N5O3
-254.1844643	C14H16N4
-254.1925701	C15H17N3
-254.200676	C16H18N2
-254.2087819	C17H19N
-254.2114065	C13H23NO3
-254.283343	C16H30O
-255.0514123	C8H10NO6P
-255.0695288	C8H10FN3O3S
-255.079034	C10H12ClNO4
-255.0895153	C8H13N3O4S
-255.0953932	C9H11FN2O5
-255.1072739	C8H13N3O6
-255.1153797	C9H14N2O6
-255.120861	C14H11NO3
-255.1289668	C15H12O3
-255.160374	C13H14N4O
-255.1629986	C9H18N4O4
-255.1684798	C14H15N3O
-255.1765857	C15H16N2O
-256.0104921	C9H7Cl2NO3
-256.0709063	C12H8N2O2S
-256.0830468	C8H13N2O5P
-256.0967707	C13H9NO4
-256.0993953	C9H13NO7
-256.1048765	C14H10O4
-256.1606013	C15H15NO2
-256.1687072	C16H16O2
-256.2163261	C16H20N2
-256.2189507	C12H24N2O3
-256.2244319	C17H21N
-256.2665696	C12H28N4O
-256.2989931	C16H32O
-256.9725563	C7H7IO2
-256.9945076	C9H6Cl2O4
-257.0421265	C9H10Cl2N2O2
-257.0670623	C8H12NO6P
-257.0807863	C13H8O5
-257.1391357	C10H17NO6
-257.1423029	C10H18ClN3O2
-257.1446169	C15H14O3
-257.1922358	C15H18N2O
-257.2029663	C12H23NO4
-257.2084475	C17H20O
-257.2571442	C15H30S
-257.2749028	C15H30O2
-257.3387334	C17H36
-257.9035177	C6H5Cl5
-258.0261421	C9H9Cl2NO3
-258.034248	C10H10Cl2O3
-258.0865563	C12H10N2O2S
-258.089181	C8H14N2O5S
-258.0899727	C11H15Cl2NO
-258.1124207	C13H11NO4
-258.1205266	C14H12O4
-258.1681455	C14H16N2O2
-258.1762514	C15H17NO2
-258.1843572	C16H18O2
-258.1869819	C12H22O5
-258.2319761	C16H22N2
-258.240082	C17H23N
-258.2508125	C14H28O3
-258.3146431	C16H34O
-258.9657061	C9H5Cl3O2
-259.0496707	C8H11Cl2N3O2
-259.0802246	C11H8N2O5
-259.0964363	C13H10O5
-259.1192686	C10H19NO2S2
-259.1440552	C13H14N2O3
-259.1505903	C11H17N2NaO3
-259.1602669	C15H16O3
-259.2078858	C15H20N2O
-259.2159917	C16H21NO
-259.2240976	C17H22O
-259.9359977	C4H8Cl3O4P
-260.0190704	C12H8S3
-260.0836192	C13H10ClNO2
-260.0859947	C10H10N4O2S
-260.0981352	C6H15N4O5P
-260.1022064	C12H12N2O2S
-260.1199649	C12H12N2O4
-260.1225896	C8H16N2O7
-260.1231322	C12H13ClN4
-260.1306954	C9H17NO7
-260.1361767	C14H14O4
-260.1393439	C14H15ClN2
-260.1837956	C14H18N2O2
-260.1919014	C15H19NO2
-260.2000073	C16H20O2
-260.2476262	C16H24N2
-260.2557321	C17H25N
-261.0336645	C11H7ClN2OS
-261.0426377	C7H11O8P
-261.0629822	C7H14N2O4S2
-261.0807407	C7H14N2O6S
-261.1353877	C10H13N5O3
-261.1597053	C13H16N2O3
-261.1678111	C14H17NO3
-261.175917	C15H18O3
-261.2235359	C15H22N2O
-261.2316418	C16H23NO
-261.2397476	C17H24O
-261.8265356	C4Cl6
-261.94916	C7H4Cl3NO3
-261.9572659	C8H5Cl3O3
-262.0090316	C6H8O9S
-262.0490872	C9H8ClN5S
-262.0629235	C14H10Cl2
-262.0702376	C12H10O4S
-262.0879961	C12H10O6
-262.1112974	C9H11N5O4
-262.1194033	C10H12N4O4
-262.1518267	C14H16O4
-262.1994456	C14H20N2O2
-262.2075515	C15H21NO2
-262.2156574	C16H22O2
-263.0388332	C13H8Cl2O
-263.0445765	C8H10NNaO5S
-263.0558	C10H7NO7
-263.0589672	C10H8ClN3O3
-263.0856603	C10H11N3O3S
-263.0877634	C13H8F2O3
-263.1089001	C15H8N2O2
-263.1115247	C11H12N2O5
-263.1170059	C16H9NO2
-263.1196306	C12H13NO5
-263.1303611	C9H18O8
-263.1510378	C10H15N5O3
-263.1727307	C17H14N2
-263.1753553	C13H18N2O3
-263.1834612	C14H19NO3
-263.1915671	C15H20O3
-263.239186	C15H24N2O
-263.2472918	C16H25NO
-264.0341975	C6H11O9P
-264.0438115	C9H9N3O2S2
-264.0591945	C12H9ClO4
-264.0818164	C6H15N2O7P
-264.0824958	C9H10ClN5O2
-264.0955403	C11H11NO6
-264.1269475	C9H13N5O4
-264.1350533	C10H14N4O4
-264.1431592	C11H15N3O4
-264.1463265	C11H16ClN5
-264.1512651	C12H16N2O4
-264.1593709	C13H17NO4
-264.1674768	C14H18O4
-264.1730195	C11H19N5S
-264.198884	C12H20N4O2
-264.2150957	C14H22N2O2
-264.2232016	C15H23NO2
-265.0563161	C6H13NO8S
-265.065832	C6H14NO8P
-265.07145	C10H9NO7
-265.1060245	C8H12ClN7O
-265.1175221	C12H15NO3S
-265.1314081	C14H19NO4
-265.132656	C16H11NO2
-265.2072171	C15H22O3
-265.254836	C15H26N2O
-265.2710478	C17H28O
-266.0141812	C10H6Cl2N2O2
-266.032089	C6H13O7PS
-266.0377071	C10H8O6S
-266.0403317	C6H12O9S
-266.0498476	C6H13O9P
-266.1029477	C11H14NO4P
-266.1425975	C9H15N5O4
-266.1491566	C12H18N2O2S
-266.1507034	C10H16N4O4
-266.1572624	C13H19NO2S
-266.1642905	C16H14N2O
-266.1669151	C12H18N2O4
-266.2945764	C16H30N2
-267.0175146	C5H12O8P2
-267.0483035	C7H15Cl2N2O2P
-267.0620275	C12H11Cl2NO
-267.0925813	C15H8O4
-267.134719	C10H15N3O5
-267.1402002	C15H12N2O2
-267.1509307	C12H17NO5
-267.1564119	C17H14O2
-267.2228672	C15H24O3
-268.0015914	C12H7Cl3
-268.0654976	C6H15O9P
-268.0711157	C10H10O8
-268.0936619	C12H14Cl2N2
-268.1106287	C9H13N3O6
-268.1187346	C10H14N2O6
-268.1242158	C15H11NO3
-268.1323217	C16H12O3
-268.1349463	C12H16O6
-268.1544728	C11H16FN3O3
-268.1718347	C15H15N3O
-268.1906711	C13H21NO4
-268.2626075	C16H28O2
-268.969334	C3H8O10P2
-269.0462338	C9H13BrN2O2
-269.0945075	C10H14NO5P
-269.1043706	C12H16ClNOS
-269.1082314	C15H10O4
-269.1221291	C12H16ClNO3
-269.1503691	C10H17N3O5
-269.1558503	C15H14N2O2
-269.172062	C17H16O2
-269.211575	C16H19N3
-269.8671322	C6HCl5O
-270.0535872	C11H11Cl2NO2
-270.0704172	C9H12NO6P
-270.0818271	C9H12ClN3O4
-270.0841411	C14H8O5
-270.1398659	C15H13NO3
-270.1424905	C11H17NO6
-270.1479717	C16H14O3
-270.1657918	C8H18N6O4
-270.1955906	C16H18N2O
-270.2782576	C16H30O2
-271.0285683	C8H10NO5PS
-271.092399	C10H16NO3PS
-271.1076697	C13H10N2O4
-271.1157756	C14H11NO4
-271.1184002	C10H15NO7
-271.1238814	C15H12O4
-271.2272251	C16H21N3
-271.235331	C17H22N2
-271.9083976	C8Cl4N2
-272.0997912	C14H10O5
-272.1019558	C9H11F2N3O4
-272.1500347	C10H18N2O6
-272.1555159	C15H15NO3
-272.1581406	C11H19NO6
-272.1609971	C20H12
-272.1636218	C16H16O3
-272.2112407	C16H20N2O
-272.2138653	C12H24N2O4
-272.2193465	C17H21NO
-272.2219712	C13H25NO4
-272.2300771	C14H26O4
-272.2761491	C16H32S
-272.2939077	C16H32O2
-273.0757009	C13H8O6
-273.1152139	C12H11N3O4
-273.1178386	C8H15N3O7
-273.1314256	C14H13NO4
-273.1395315	C15H14O4
-273.1952563	C16H19NO2
-273.2033621	C17H20O2
-274.0976827	C14H12O3S
-274.0992295	C12H10N2O5
-274.1073354	C13H11NO5
-274.1154412	C14H12O5
-274.1630601	C14H16N2O3
-274.171166	C15H17NO3
-274.1792718	C16H18O3
-274.2187849	C15H21N3O
-274.2349966	C17H23NO
-274.2431025	C18H24O
-275.0186229	C10H8BrN3O
-275.0913509	C13H10O6
-275.1026241	C14H12ClNO2
-275.1146522	C10H11N5O4
-275.1246277	C12H19Cl2NO
-275.1551816	C15H16O4
-275.176936	C14H19N3S
-275.1850419	C15H20N2S
-275.2028005	C15H20N2O2
-275.2109063	C16H21NO2
-275.2190122	C17H22O2
-275.9737048	C6H7ClN2O4S2
-276.0535367	C7H12NO8P
-276.0653892	C10H7KN6O
-276.0819871	C8H16N2O4S2
-276.090562	C9H9N5O5
-276.0930498	C6H15N4O6P
-276.0986678	C10H10N4O5
-276.1078515	C9H17NO6S
-276.1256101	C9H17NO8
-276.1543926	C11H15N5O3
-276.1787102	C14H18N2O3
-276.186816	C15H19NO3
-276.1893039	C12H25O4P
-276.1922973	C20H16
-276.1949219	C16H20O3
-276.2182232	C13H21N5O
-276.2425408	C16H24N2O
-277.0353626	C7H14N2O4Se
-277.1005156	C14H14ClNS
-277.1096257	C9H16O9
-277.1221964	C9H12N6O4
-277.1287555	C12H15N3O2S
-277.1303023	C10H13N5O4
-277.1384082	C11H14N4O4
-277.1546199	C13H16N2O4
-277.1653504	C10H21NO7
-277.1708316	C15H18O4
-277.2184505	C15H22N2O2
-277.2265564	C16H23NO2
-277.2346623	C17H24O2
-277.290387	C18H29N
-278.0950125	C12H14N2OS2
-278.1046652	C11H13N3O3S
-278.1127711	C12H14N2O3S
-278.1143179	C10H12N4O5
-278.1467414	C14H16O5
-278.1943602	C14H20N2O3
-278.2049539	C12H27O4P
-278.2581909	C16H26N2O
-278.2662967	C17H27NO
-279.0256419	C12H7Cl2NO2
-279.0426087	C9H6N2O8
-279.0547105	C9H10N4O2S2
-279.0813667	C13H12Cl2N2
-279.0967867	C12H13NO4S
-279.1064393	C11H12N2O6
-279.1540582	C11H16N4O4
-279.1621641	C12H17N3O4
-279.1783758	C14H19NO4
-279.1864817	C15H20O4
-279.2341006	C15H24N2O2
-279.2422065	C16H25NO2
-279.3141429	C19H32
-280.0195963	C6H10O10S
-280.0291121	C6H11O10P
-280.0734882	C14H12Cl2O
-280.0742432	C9H9N3O7
-280.0959362	C16H8O4
-280.129968	C10H14N4O5
-280.143555	C16H12N2O2
-280.1937986	C12H20N4O3
-280.2100103	C14H22N2O3
-280.2154915	C19H19N
-280.226222	C16H24O3
-280.2900527	C18H30O
-281.0275681	C7H13Cl2N2O3P
-281.0362922	C4H13N3O7P2
-281.0493979	C13H10Cl2O2
-281.0525039	C6H15NO7P2
-281.0688525	C7H15O9P
-281.0895291	C8H12N5O4P
-281.1194648	C15H10N2O3
-281.1275706	C16H11NO3
-281.1670837	C15H14N4O
-281.1940259	C14H21NO4
-281.2021318	C15H22O4
-281.23787	C16H24FNO
-281.8816228	C7H3Br2NO
-282.0447622	C6H13O10P
-282.0802406	C10H12N2O5S
-282.0953745	C14H8N2O4
-282.1018702	C12H9F3N2O2
-282.1440712	C12H18N2O3S
-282.1510992	C15H13N3O2
-282.1521771	C13H19NO3S
-282.1618298	C12H18N2O5
-282.167311	C17H15NO2
-282.2149299	C17H19N3
-282.2230357	C18H20N2
-282.2311416	C19H21N
-282.2337662	C15H25NO3
-282.2418721	C16H26O3
-282.9601209	C9H7BrO3S
-283.0124292	C5H12O9P2
-283.018779	C8H10IN3
-283.0432182	C7H15Cl2N2O3P
-283.0874959	C15H8O5
-283.1199809	C11H16N2O4S
-283.1215277	C9H14N4O6
-283.1351148	C15H12N2O3
-283.1458453	C12H17NO6
-283.1513266	C17H14O3
-283.1529349	C7H16N8O4
-283.1571185	C13H19ClN2O2
-283.1652243	C14H20ClNO2
-283.1908396	C16H17N3O
-283.1989455	C17H18N2O
-283.2816125	C17H30O2
-283.9917554	C9H10BrNO2S
-283.996506	C12H7Cl3O
-284.0595449	C11H12ClNO3S
-284.0966824	C13H15Cl2NO
-284.1191304	C15H11NO4
-284.1272363	C16H12O4
-284.1298609	C12H16O7
-284.1570966	C16H16N2S
-284.1597213	C12H20N2O3S
-284.1612681	C10H18N4O5
-284.1748552	C16H16N2O2
-284.182961	C17H17NO2
-284.1910669	C18H18O2
-284.2305799	C17H21N3
-284.2386858	C18H22N2
-285.0298802	C6H5Hg
-285.0621477	C10H13NO4S2
-285.0799062	C10H13NO6S
-285.0894221	C10H14NO6P
-285.0976648	C10H13NO8
-285.103146	C15H10O5
-285.1063133	C15H11ClN2O
-285.1259783	C12H19NO2S2
-285.1371778	C9H16N4O6
-285.1507649	C15H14N2O3
-285.2648391	C13H28N4O2
-285.2972625	C17H32O2
-286.0475732	C9H12NO5PS
-286.0670891	C10H13ClN2O3S
-286.0683867	C9H7N7O2S
-286.1042266	C12H16Cl2N2O
-286.1170219	C15H13NO2S
-286.1211934	C9H15N3O7
-286.1292993	C10H16N2O7
-286.1347805	C15H13NO4
-286.1374051	C11H17NO7
-286.1428863	C16H14O4
-286.1460536	C16H15ClN2
-286.1706819	C10H26Cl2N2O2
-286.1986111	C17H19NO2
-286.206717	C18H20O2
-286.3370029	C18H36O
-287.0888604	C8H14N3O6P
-287.0969663	C9H15N2O6P
-287.10908	C11H11F3N2O3
-287.1106902	C14H11NO5
-287.1187961	C15H12O5
-287.1214207	C11H16O8
-287.1420974	C12H13N5O3
-287.1690396	C11H20N2O6
-287.1745208	C16H17NO3
-287.2383514	C18H23NO
-287.8332453	C6Cl6
-288.0535706	C10H15O3PS2
-288.0947058	C14H10O6
-288.132672	C15H15NO2S
-288.1504305	C15H15NO4
-288.1559118	C20H12O
-288.1585364	C16H16O4
-288.2061553	C16H20N2O2
-288.2142612	C17H21NO2
-288.222367	C18H22O2
-288.2249917	C14H26O5
-288.2888223	C16H32O3
-288.3526529	C18H38O
-289.0560242	C13H9ClN2OS
-289.1314081	C16H19NO4
-289.1344461	C15H14O5
-289.1370708	C11H18O8
-289.1572784	C12H23NO2S2
-289.1577474	C12H15N5O3
-289.1669311	C11H22N2O4S
-289.1901709	C16H19NO3
-289.1956521	C21H16
-289.1982768	C17H20O3
-289.2458956	C17H24N2O
-289.2540015	C18H25NO
-289.264732	C15H30O4
-289.3204568	C16H35NO2
-289.9740075	C6H12Cl3O4P
-290.0245586	C7H11NO7P2
-290.0748387	C14H12O2S2
-290.1240045	C12H14N4O2S
-290.1660806	C15H17NO4
-290.1741865	C16H18O4
-290.1773537	C16H19ClN2
-290.2055936	C14H20N4O2
-290.2136995	C15H21N3O2
-290.2380171	C18H24O2
-290.2844858	C16H31FO2
-290.9846039	C6H8ClN3O4S2
-291.0345367	C11H8N2O3S2
-291.0725416	C8H14NO8P
-291.0999142	C11H12N4O3S
-291.1057921	C12H10FN3O4
-291.1451576	C14H16ClN3O
-291.1500962	C15H16O5
-291.1815034	C13H18N4O3
-291.1869846	C18H15N3
-291.1950904	C19H16N2
-291.205821	C16H21NO3
-291.2139268	C17H22O3
-291.2615457	C17H26N2O
-291.2777574	C19H28O
-292.1152754	C17H9NO3
-292.1286306	C10H18O9
-292.1412013	C10H14N6O4
-292.1493072	C11H15N5O4
-292.1736248	C14H18N2O4
-292.1898365	C16H20O4
-292.2374554	C16H24N2O2
-292.2455613	C17H25NO2
-292.2536672	C18H26O2
-292.3174978	C20H32
-293.0800858	C7H15N2O8P
-293.1236701	C12H15N3O3S
-293.1252169	C10H13N5O5
-293.1333228	C11H14N4O5
-293.1495345	C13H16N2O5
-293.1657463	C15H18O5
-293.2052593	C14H21N3O3
-293.2269522	C21H20
-293.2295769	C17H24O3
-293.2771958	C17H28N2O
-293.2934075	C19H30O
-293.8801955	C6H6Cl6
-294.0527527	C14H10Cl2O2
-294.0794458	C14H13ClO2S
-294.091474	C10H12N4O4S
-294.1092325	C10H12N4O6
-294.1173384	C11H13N3O6
-294.1238974	C14H16O4S
-294.1335501	C13H15NO6
-294.161035	C16H19ClO2
-294.181169	C13H19N3O4
-294.1973807	C15H21NO4
-294.2054866	C16H22O4
-294.2531055	C16H26N2O2
-294.2612114	C17H27NO2
-295.0205566	C12H7Cl2NO3
-295.048117	C7H13O10P
-295.0487965	C10H8ClN3O5
-295.0964154	C10H12ClN5O3
-295.105225	C13H9F3N2O2
-295.1133309	C14H10F3NO2
-295.140867	C10H15N5O5
-295.1489729	C11H16N4O5
-295.1732905	C14H19NO5
-295.1813963	C15H20O5
-295.2031508	C14H23N3OS
-295.2046976	C12H21N5O3
-295.2344964	C20H21N
-295.2371211	C16H25NO3
-295.2452269	C17H26O3
-295.3090576	C19H32O
-296.0239511	C14H9Cl3
-296.0417466	C10H10N2O4S2
-296.052191	C12H10Cl2N2O2
-296.0602969	C13H11Cl2NO2
-296.080431	C10H11ClN4O4
-296.1328516	C12H17N2O4P
-296.1465755	C17H13NO3
-296.2130308	C15H23NO4
-296.2324098	C17H26ClN
-296.2849673	C18H30O2
-296.9991214	C6H14INO2S
-297.0362066	C12H9Cl2NO3
-297.0637671	C7H15O10P
-297.0844437	C8H12N5O5P
-297.0911396	C10H13N3O5S
-297.1143794	C15H10N2O4
-297.1251099	C12H15NO7
-297.1970464	C15H22O5
-297.2446653	C15H26N2O3
-297.2501465	C20H23N
-297.260877	C17H28O3
-298.0396012	C14H11Cl3
-298.0927769	C11H14NO6P
-298.1065008	C16H10O5
-298.1324268	C9H15N5O6
-298.1470917	C13H19NO4S
-298.1541197	C16H14N2O3
-298.1622256	C17H15NO3
-298.1677068	C22H12
-298.1703315	C18H16O3
-298.1842292	C15H22ClNO2
-298.2124691	C13H23N3O4
-298.2260562	C19H21NO
-298.2286809	C15H25NO4
-298.3006174	C18H32O2
-298.8572958	C6Cl5NO2
-299.0073438	C5H12O10P2
-299.0381328	C7H15Cl2N2O4P
-299.062338	C10H12ClN3O3S
-299.0824106	C15H8O6
-299.14076	C12H17NO7
-299.1462412	C17H14O4
-299.1488658	C13H18O7
-299.1657677	C16H14FN3O
-299.1883789	C12H21N3O5
-299.1938601	C17H18N2O2
-299.2100718	C19H20O2
-299.2576907	C19H24N2
-299.9914207	C12H7Cl3O2
-300.0730467	C10H14N2O4S2
-300.0892584	C12H16O4S2
-300.0897274	C12H8N4O5
-300.1091064	C14H11ClN4O
-300.1166697	C11H15NO8
-300.1221509	C16H12O5
-300.1253182	C16H13ClN2O
-300.1368773	C12H20N2O2S2
-300.1546359	C12H20N2O4S
-300.1561827	C10H18N4O6
-300.1773827	C12H25NaO4S
-300.1778757	C17H17NO3
-300.1833569	C22H14
-300.1859815	C18H18O3
-300.201177	C14H18N6O
-300.2070036	C14H26O4Si
-300.2362251	C14H26N2O4
-300.283844	C14H30N4O2
-300.3162674	C18H34O2
-300.8762031	C7H4Br2O3
-300.9916114	C9H10BrClN2O2
-301.0075866	C12H6Cl2NNaO2
-301.0665781	C10H14NO5PS
-301.0980606	C15H10O6
-301.1012279	C15H11ClN2O2
-301.1198151	C14H13N3O2S
-301.1314081	C17H19NO4
-301.1483042	C11H18N2O7
-301.1537854	C16H15NO4
-301.1618912	C17H16O4
-301.1917516	C17H20N2S
-301.2014043	C16H19N3O2
-301.2095101	C17H20N2O2
-301.2257219	C19H22O2
-301.2733408	C19H26N2
-301.2921771	C17H32O3
-301.3479019	C18H37NO
-301.9626191	C12H6Cl4
-301.9723087	C7H6ClN3O4S2
-302.0488612	C11H10BrN5
-302.1049085	C12H18O4S2
-302.1242139	C10H16N2O8
-302.1323197	C11H17NO8
-302.137801	C16H14O5
-302.1584776	C17H11N5
-302.1611023	C13H15N5O3
-302.1692081	C14H16N4O3
-302.1745958	C16H22OSi2
-302.177314	C15H17N3O3
-302.1854199	C16H18N2O3
-302.1935257	C17H19NO3
-302.1961504	C13H23NO6
-302.2016316	C18H20O3
-302.2411446	C17H23N3O
-302.2573563	C19H25NO
-302.259981	C15H29NO4
-302.2654622	C20H26O
-302.3319175	C18H36O2
-303.083775	C8H14N3O7P
-303.0918809	C9H15N2O7P
-303.1039947	C11H11F3N2O4
-303.1056048	C14H11NO6
-303.1137107	C15H12O6
-303.1192534	C12H13N5O2S
-303.1694354	C16H17NO4
-303.1775413	C17H18O4
-303.2170543	C16H21N3O2
-303.2332661	C18H23NO2
-303.2413719	C19H24O2
-303.3078272	C17H34O3
-304.1372393	C14H14N2O5
-304.1398639	C10H18N2O8
-304.1453452	C15H15NO5
-304.1479698	C11H19NO8
-304.153451	C16H16O5
-304.1762833	C13H25NO2S2
-304.1848582	C14H18N4O3
-304.2010699	C16H20N2O3
-304.2091758	C17H21NO3
-304.2172817	C18H22O3
-304.2730064	C19H27NO
-304.2811123	C20H28O
-304.2837369	C16H32O4
-305.0249758	C2H8N2O3Pt
-305.0273518	C6H11N3O7P2
-305.0721507	C8H15N3O5S2
-305.1212549	C14H13NO6
-305.1293607	C15H14O6
-305.1319854	C11H18O9
-305.1662491	C18H13N3O
-305.1850855	C16H19NO4
-305.1931914	C17H20O4
-305.195816	C13H24O7
-305.2489161	C18H25NO2
-305.257022	C19H26O2
-306.0697534	C14H12O3S2
-306.0844798	C10H20N2S4
-306.1189191	C12H14N4O3S
-306.1310596	C8H19N4O6P
-306.1691011	C16H18O5
-306.1722684	C16H19ClN2O
-306.2086141	C15H21N3O3
-306.21672	C16H22N2O3
-306.2248259	C17H23NO3
-306.2329317	C18H24O3
-306.2805506	C18H28N2O
-306.2886565	C19H29NO
-306.2967623	C20H30O
-307.0811802	C13H10O8
-307.1029347	C12H13N3O4S
-307.1069693	C7H17N4O7P
-307.1369049	C14H15NO6
-307.1400722	C14H16ClN3O2
-307.1450108	C15H16O6
-307.1602062	C11H16N6O4
-307.1683121	C12H17N5O4
-307.2007356	C16H21NO4
-307.2088414	C17H22O4
-307.2645662	C18H27NO2
-307.2726721	C19H28O2
-307.9643259	C9H8Cl3NO2S
-307.9712878	C4H3ClHgO
-307.9819845	C6H11N2O4PS3
-308.1020842	C16H8N2O4
-308.1071966	C9H18NO8P
-308.1264633	C11H15N5O3S
-308.1442218	C11H15N5O5
-308.1685394	C14H18N2O5
-308.2323701	C16H24N2O3
-308.2378513	C21H21N
-308.2404759	C17H25NO3
-308.2485818	C18H26O3
-308.3124124	C20H32O
-309.0636518	C14H11Cl2NO2
-309.0717576	C15H12Cl2O2
-309.0735905	C8H15NO9S
-309.0829695	C9H18O7P2
-309.0831063	C8H16NO9P
-309.0968303	C13H12O8
-309.1008262	C12H15N3O2S2
-309.1302893	C9H21AlO9
-309.1444491	C13H16N2O6
-309.1520469	C11H16N5O5
-309.152555	C14H17NO6
-309.1557223	C14H18ClN3O2
-309.1580362	C19H14O3
-309.1606609	C15H18O6
-309.1677504	C10H17N7O4
-309.1824154	C14H21N3O2S
-309.1894434	C17H16N4O
-309.2082798	C15H22N2O4
-309.2244915	C17H24O4
-309.2802163	C18H29NO2
-309.2883221	C19H30O2
-309.3521527	C21H36
-309.9347325	C6H6Cl2N2O4S2
-310.0590161	C7H14NO10P
-310.0863886	C10H12N4O5S
-310.0943576	C12H15N2O3PS
-310.1209015	C16H11ClN4
-310.1815648	C18H16N2O2
-310.1832666	C19H15BNNa
-310.1896707	C19H17NO2
-310.2210779	C17H19N5
-310.2372896	C19H21N3
-310.2453955	C20H22N2
-310.2480201	C16H26N2O3
-310.256126	C17H27NO3
-310.2642318	C18H28O3
-310.3280625	C20H34O
-311.1124803	C13H14O8
-311.1342348	C12H17N3O4S
-311.1493687	C16H13N3O3
-311.1655804	C18H15NO3
-311.1763109	C15H20O6
-311.2131993	C18H19N3O
-311.2213052	C19H20N2O
-311.2320357	C16H25NO4
-311.2401416	C17H26O4
-311.3039722	C19H32O2
-311.9303631	C6H12Br2O4
-312.0261314	C14H9ClF2N2O2
-312.0797477	C14H10MgO6
-312.149596	C18H14O4
-312.1522207	C14H18O7
-312.2053208	C19H19NO2
-312.2160513	C16H24O5
-312.2529397	C19H23N3
-312.2691514	C21H25N
-312.2798819	C18H30O3
-313.0818588	C11H11N4NaO3S
-313.1200245	C12H15NO8
-313.1255057	C17H12O5
-313.1281304	C13H16O8
-313.1314081	C18H19NO4
-313.1448847	C19H15ClO
-313.1812305	C18H17NO3
-313.1870224	C14H22ClN3O2
-313.2369553	C19H22N2O
-313.2476858	C16H27NO4
-313.2557916	C17H28O4
-313.3196223	C19H34O2
-314.0263487	C6H14O10P2
-314.0356305	C8H18O4S4
-314.0714798	C9H12N3O7P
-314.0813429	C11H14ClN3O3S
-314.0852037	C14H8N2O6
-314.1014155	C16H10O6
-314.1032485	C12H19BrN2O2
-314.1354473	C10H16N4O7
-314.1490344	C16H14N2O4
-314.151659	C12H18N2O7
-314.1571402	C17H15NO4
-314.1652461	C18H16O4
-314.1678707	C14H20O7
-314.1951064	C18H20N2S
-314.2047591	C17H19N3O2
-314.2073838	C13H23N3O5
-314.2235955	C15H25NO5
-314.295532	C18H32O3
-314.9690953	C9H7IO4
-315.0022584	C5H12O11P2
-315.0153276	C9H11BrN2O5
-315.0467713	C12H11Cl2NO4
-315.0548772	C13H12Cl2O4
-315.0554954	C9H11N2O8P
-315.0773252	C15H8O7
-315.0990797	C14H11N3O3S
-315.1152914	C16H13NO3S
-315.1194629	C10H15N3O8
-315.1233972	C17H14O3S
-315.1275687	C11H16N2O8
-315.1299323	C15H17NaO3S
-315.1330499	C16H13NO5
-315.1356746	C12H17NO8
-315.1362172	C16H14ClN3O
-315.1411558	C17H14O5
-315.1629103	C16H17N3OS
-315.1751876	C11H20N4O6
-315.1832935	C12H21N3O6
-315.1968806	C18H19NO3
-315.2049864	C19H20O3
-315.2526053	C19H24N2O
-315.3271665	C18H35NO2
-315.3352723	C19H36O2
-316.0007297	C9H10INO3
-316.0532349	C14H6O8
-316.0871299	C9H14N3O7P
-316.1008538	C14H10N2O6
-316.1170655	C16H12O6
-316.1202328	C16H13ClN2O2
-316.1413078	C12H21N2O3PS
-316.1646844	C16H16N2O4
-316.1727903	C17H17NO4
-316.1808961	C18H18O4
-316.2107565	C18H22N2S
-316.2366209	C19H23NO2
-316.2447268	C20H24O2
-316.311182	C18H34O3
-316.3669068	C19H39NO
-316.3750127	C20H40O
-317.0711455	C9H13N2O8P
-317.0857227	C9H14Cl2N6O2
-317.0929752	C15H10O7
-317.1173544	C10H17N3O6S
-317.1194438	C12H12ClN7O
-317.126252	C14H19Cl2NO2
-317.1568059	C17H16O5
-317.1963189	C16H19N3O3
-317.2125306	C18H21NO3
-317.2206365	C19H22O3
-317.2232611	C15H26O6
-317.2682554	C19H26N2O
-317.3428165	C18H37NO2
-317.3509224	C19H38O2
-317.9575337	C12H6Cl4O
-318.0998231	C12H18O5S2
-318.1158963	C16H12ClFN2O
-318.1327156	C16H14O6
-318.1522421	C15H14FN3O3
-318.1722286	C15H17N3O4
-318.1884403	C17H19NO4
-318.1965462	C18H20O4
-318.2117416	C14H20N6O2
-318.252271	C19H25NO2
-318.2603768	C20H26O2
-318.3268321	C18H36O3
-319.052109	C14H12BrNO2
-319.0641737	C15H9ClO5
-319.074655	C13H10N2O5S
-319.1086253	C15H12O7
-319.1314576	C12H21NO4S2
-319.1481383	C14H15N3O5
-319.1562442	C15H16N2O5
-319.1724559	C17H18O5
-319.1756232	C17H19ClN2O
-319.1876514	C13H18N6O3
-319.1919824	C16H18FN3O2
-319.211969	C16H21N3O3
-319.2281807	C18H23NO3
-319.2362866	C19H24O3
-319.2676937	C17H26N4O
-319.3584666	C18H39NO2
-319.9344269	C6H4Na2O8S2
-320.084535	C14H10O8
-320.1143954	C14H14N2O4S
-320.1428844	C11H19NO9
-320.1483657	C16H16O6
-320.2040904	C17H21NO4
-320.2121963	C18H22O4
-320.2760269	C20H28O2
-320.3982069	C19H43NO
-321.0306459	C5H8N4O12
-321.052637	C9H16N2O5Se
-321.0758649	C15H15BrO2
-321.0903051	C13H12N2O5S
-321.0943397	C8H16N3O8P
-321.1161695	C14H13NO7
-321.1242754	C15H14O7
-321.1355485	C16H16ClNO3
-321.1718943	C15H18N2O5
-321.188106	C17H20O5
-321.1993791	C18H22ClNO
-321.2098605	C16H23N3OS
-321.2195132	C15H22N4O3
-321.2519366	C19H26O3
-321.3076614	C20H31NO
-321.3157672	C21H32O
-322.0306608	C16H9Cl3
-322.0783553	C8H15N2O9P
-322.1138337	C12H14N4O4S
-322.1308372	C17H17Cl2N
-322.1381513	C15H17NO4S
-322.147804	C14H16N2O6
-322.1640157	C16H18O6
-322.1846924	C17H15N5O
-322.2009041	C19H17N3O
-322.2197405	C17H23NO4
-322.24985	C16H31ClO3
-322.2592535	C16H26N4O2
-322.2754652	C18H28N2O2
-322.291677	C20H30O2
-323.049412	C12H10Cl2F3NO
-323.0911534	C10H12N5O5P
-323.107502	C11H12N4O7
-323.1291949	C18H11NO4
-323.1318196	C14H15NO7
-323.1373008	C19H12O4
-323.1399254	C15H16O7
-323.1425501	C11H20O10
-323.1849197	C19H16N2O2
-323.1956502	C16H21NO5
-323.2037561	C17H22O5
-323.2594808	C18H27NO3
-323.2675867	C19H28O3
-323.3233114	C20H33NO
-323.3314173	C21H34O
-324.0720753	C14H15O2PS2
-324.0790294	C14H9ClF2N2O2
-324.0907625	C16H14Cl2O2
-324.0924585	C10H19O7PS
-324.0969988	C16H8N2O5
-324.1019744	C10H20O7P2
-324.1132105	C18H10O5
-324.1314199	C20H21NOS
-324.1796658	C16H20O6
-324.2272847	C16H24N2O4
-324.2434964	C18H26O4
-324.307327	C20H32O2
-324.9518433	C7H9ClO6P2S
-325.078021	C8H16NO10P
-325.1314081	C19H19NO4
-325.1399064	C17H13ClN4
-325.144845	C18H13NO4
-325.1474696	C14H17NO7
-325.1555755	C15H18O7
-325.184358	C17H16N4O2
-325.2113003	C16H23NO5
-325.2194061	C17H24O5
-325.2644004	C21H24N2
-325.2654782	C19H30OS
-325.2751309	C18H29NO3
-325.2832367	C19H30O3
-325.3470674	C21H36O
-325.9654139	C10H8N2O2S2Zn
-326.0620365	C8H15O11P
-326.144056	C14H12N6O3
-326.1845853	C19H17NO3
-326.18721	C15H21NO6
-326.1953158	C16H22O6
-326.196006	C17H16FN5
-326.2322042	C19H21N3O
-326.2510406	C17H27NO4
-326.2591465	C18H28O4
-326.2986595	C17H31N3O2
-326.3229771	C20H34O2
-327.0393175	C10H12N3O3PS2
-327.1047703	C17H10O6
-327.1168721	C17H14N2S2
-327.1604951	C18H15NO4
-327.1686009	C19H16O4
-327.1712256	C15H20O7
-327.2162198	C19H20N2O2
-327.2350562	C17H26O5
-327.2382235	C17H27ClN2O
-328.1120872	C14H10N4O5
-328.1445106	C18H14O5
-328.1476779	C18H15ClN2O
-328.1597061	C14H14N6O3
-328.1840237	C17H17N3O3
-328.222239	C17H26ClNO2
-328.2278678	C19H20FN3
-328.2559602	C20H24N2O
-328.2585848	C16H28N2O4
-328.264066	C21H25NO
-328.2747965	C18H30O4
-328.3305213	C19H35NO2
-328.3386272	C20H36O2
-328.9815842	C12H6Cl3NO3
-329.0476923	C14H10BrN3O
-329.0743586	C14H9ClF3NO2
-329.1025985	C12H10F3N3O4
-329.1204204	C17H12O6
-329.134069	C15H14N4O2S
-329.1399469	C16H12FN3O3
-329.142424	C15H19ClO5
-329.1761451	C18H17NO4
-329.1978996	C17H20N4S
-329.2005242	C13H24N4O3S
-329.2318699	C19H22N2O2
-329.2426004	C16H27NO5
-329.3145369	C19H34O3
-329.9114322	C8HCl4F3N2
-329.9849788	C14H8Cl4
-329.999607	C10H8O8S2
-330.0230643	C7H5HgO2
-330.0294305	C14H11Cl3O2
-330.0913915	C15H10ClN3O3
-330.0963301	C16H10O7
-330.0994973	C16H11ClN2O3
-330.0995497	C12H19IN2
-330.122256	C9H15N5O8
-330.1384678	C11H17N3O8
-330.1520548	C17H15NO5
-330.1552221	C17H16ClN3O
-330.1585899	C15H18NNaO5
-330.1601607	C18H16O5
-330.1889432	C20H14N4
-330.2158855	C19H21NO3
-330.2239913	C20H22O3
-330.2553985	C18H24N4O
-330.2716102	C20H26N2O
-330.2797161	C21H27NO
-330.2904466	C18H32O4
-330.3542772	C20H38O2
-331.0455964	C14H10Cl2NNaO2
-331.1061348	C10H16N3O7P
-331.1183119	C17H14O4S
-331.1192512	C17H12ClFN2O
-331.1360704	C17H14O6
-331.1481722	C17H18N2S2
-331.1917952	C18H19NO4
-331.199901	C19H20O4
-331.2475199	C19H24N2O2
-331.2556258	C20H25NO2
-331.2582505	C16H29NO5
-331.2637317	C21H26O2
-331.3220811	C18H35NO3
-331.9367983	C12H4Cl4O2
-332.0006289	C14H10Cl4
-332.070845	C12H17O4PS2
-332.0820445	C9H14N3O8P
-332.0901504	C10H15N2O8P
-332.1119801	C16H12O7
-332.1363593	C11H19N3O6S
-332.1384487	C13H14ClN7O
-332.1418405	C16H16N2O3S
-332.1499464	C17H17NO3S
-332.1677049	C17H17NO5
-332.2017367	C11H23N5O6
-332.2045933	C20H16N4
-332.2126056	C18H26OSi2
-332.220805	C22H18N2
-332.2234297	C18H22N2O3
-332.2315355	C19H23NO3
-332.2396414	C20H24O3
-332.2872603	C20H28N2O
-332.2953662	C21H29NO
-332.2979908	C17H33NO4
-332.303472	C22H30O
-332.3060967	C18H34O4
-332.3699273	C20H40O2
-333.0474342	C14H10ClN3S2
-333.0492301	C11H12Cl2N2O5
-333.0660601	C9H13N2O9P
-333.0878899	C15H10O8
-333.1452351	C18H18ClNS
-333.1517205	C17H16O6
-333.1886089	C20H15N3O
-333.2058351	C15H21F3N2O2
-333.2074452	C18H21NO4
-333.2155511	C19H22O4
-333.2187184	C19H23ClN2
-333.2454115	C19H26N2S
-333.2793817	C21H28O2
-333.7935315	C6H3Br3O
-333.9524483	C12H6Cl4O2
-334.0259685	C9H12ClN3O4S2
-334.0581815	C10H13O10P
-334.0607675	C10H16N2O4S3
-334.0840072	C15H13NO3S2
-334.1130389	C16H15ClN2OS
-334.1268386	C16H19BrN2
-334.1276302	C16H14O7
-334.1493847	C15H17N3O3S
-334.1504625	C13H23NO4S2
-334.1537158	C18H17FO2S
-334.1552626	C16H15FN2O4
-334.1601152	C12H22N2O6S
-334.1615252	C11H22N3O6P
-334.183355	C17H19NO5
-334.1914608	C18H20O5
-334.1940855	C14H24O8
-334.222868	C16H22N4O3
-334.2254926	C12H26N4O6
-334.2471856	C19H25NO3
-334.2552915	C20H26O3
-334.2579161	C16H30O6
-334.3217467	C18H36O4
-335.0363911	C14H9Cl2N3S
-335.0617236	C9H12FN2O8P
-335.0703614	C16H11Cl2NO2
-335.0817101	C9H15N2O9P
-335.1035399	C15H12O8
-335.1446734	C16H18ClN3S
-335.1527793	C17H19ClN2S
-335.1618893	C12H21NO9
-335.1787912	C15H17FN4O3
-335.1868971	C16H18FN3O3
-335.2095082	C12H25N3O7
-335.2149894	C17H22N2O4
-335.2230953	C18H23NO4
-335.2312012	C19H24O4
-335.2343684	C19H25ClN2
-335.2869259	C20H29NO2
-335.2950318	C21H30O2
-335.3345448	C20H33N3
-335.3533812	C18H39NO3
-335.3614871	C19H40O3
-335.9236468	C12H5Cl5
-336.0667648	C11H19NO2S4
-336.0794496	C14H10O9
-336.1244439	C18H10N2O4
-336.1377991	C11H19NO10
-336.1432803	C16H16O7
-336.1459049	C12H20O10
-336.1827933	C15H19N3O5
-336.1935238	C12H24N2O8
-336.199005	C17H21NO5
-336.2071109	C18H22O5
-336.2277876	C19H19N5
-336.2628357	C19H27NO3
-336.2709415	C20H28O3
-337.0287034	C12H12BrN3OS
-337.0850829	C14H14NO4PS
-337.116876	C10H18ClN3O7
-337.11919	C15H14O8
-337.1314081	C20H19NO4
-337.1830206	C17H20O6
-337.2419126	C18H26ClN3
-337.2863643	C18H29N3O2
-337.3106819	C21H32O2
-337.3501949	C20H35N3
-338.1072015	C14H16N2O3S2
-338.117932	C11H21NO6S2
-338.1427186	C14H16N2O7
-338.1563057	C20H14O4
-338.161555	C12H22O10
-338.1806848	C15H21N3O3S
-338.2865916	C20H30O3
-338.3423163	C21H35NO
-339.0176704	C8H8F3N3O4S2
-339.062296	C14H9ClFNO5
-339.0831112	C13H14N2O4S2
-339.086068	C10H12N5O6P
-339.1186283	C13H14N2O8
-339.1267342	C14H15NO8
-339.1283546	C16H18ClNO2S
-339.1322154	C19H12O5
-339.1647004	C15H20N2O4S
-339.1662472	C13H18N4O6
-339.1728063	C16H21NO4S
-339.1798343	C19H16N2O3
-339.1905648	C16H21NO6
-339.1986707	C17H22O6
-339.2180497	C19H25ClO2
-339.2355591	C20H21N3O
-339.2625013	C19H28O4
-339.3263319	C21H34O2
-340.0686736	C11H11N3O7S
-340.0696146	C10H19O6PS2
-340.0700836	C10H11N4O7P
-340.1107498	C14H14O9
-340.1421569	C12H16N4O7
-340.1583687	C14H18N2O7
-340.1719558	C20H16O4
-340.2195747	C20H20N2O2
-340.2915111	C23H27N
-340.3022416	C20H32O3
-340.3731209	C20H24O2T8
-341.053481	C14H11Cl2NO4
-341.0743188	C13H7F3N2O5
-341.1010999	C14H15Cl2N3O2
-341.1017181	C10H14N5O6P
-341.1478655	C19H14O5
-341.1504901	C15H18O8
-341.1954844	C19H18N2O3
-341.198109	C15H22N2O6
-341.2035902	C20H19NO3
-341.2062149	C16H23NO6
-341.2143207	C17H24O6
-341.2700455	C18H29NO4
-341.2781514	C19H30O4
-341.341982	C21H36O2
-341.9328795	C6H12N2O4Se2
-342.0770096	C13H13Cl2N3O3
-342.1118086	C14H17ClN2O3S
-342.1237752	C18H12O6
-342.1263998	C14H16O9
-342.1314677	C16H22O8
-342.1314677	C16H22O8
-342.1408402	C15H19Cl2N3O
-342.1795	C19H17NO4
-342.1876058	C20H18O4
-342.1933977	C16H23ClN2O3
-342.2174662	C20H22N2S
-342.2281967	C17H27NO3S
-342.2352247	C20H22N2O2
-342.9956477	C13H8Cl2O4S
-343.0966915	C9H19O11P
-343.1385904	C18H13ClFN3
-343.1402758	C14H19NO6S
-343.1539244	C12H21N5O2S2
-343.1635155	C19H16O5
-343.1661402	C15H20O8
-343.1666828	C19H17ClN2O
-343.2014817	C20H21NOS
-343.2056532	C14H23N3O6
-343.2111344	C19H20N2O3
-343.2192403	C20H21NO3
-343.2668592	C20H25N3O
-343.2830709	C22H27NO
-343.2856956	C18H31NO4
-344.0450408	C13H11Cl2NO5
-344.0593829	C14H6N2O8
-344.0852576	C14H10ClF3N2O2
-344.0932779	C9H14N5O7P
-344.1311826	C18H15O4P
-344.1394253	C18H14O6
-344.1734571	C12H20N4O7
-344.1902114	C18H19ClN4
-344.19515	C19H19NO4
-344.2032559	C20H20O4
-344.2058805	C16H24O7
-344.214529	C21H22ClN
-344.2171537	C17H26ClNO3
-344.2308883	C20H21FN2O
-344.2427689	C19H23N3O2
-344.2508748	C20H24N2O2
-344.8934774	C9H6Br2O4
-345.0131307	C6H13NO11S2
-345.0484354	C15H13Cl3O2
-345.0935052	C11H15N2O8P
-345.115335	C17H12O7
-345.1179596	C13H16O10
-345.1395773	C13H21N2O4PS
-345.1509872	C13H21ClN4O2S
-345.1710597	C18H17NO5
-345.1736844	C14H21NO8
-345.174227	C18H18ClN3O
-345.2267845	C19H22N2O3
-345.2278623	C17H28O4S
-345.2348904	C20H23NO3
-345.237515	C16H27NO6
-345.2429962	C21H24O3
-345.9251119	C9H9Br2NO3
-346.016178	C6H14O12P2
-346.075033	C14H8N2O8
-346.0775208	C11H14NO9P
-346.0847593	C17H12ClNO2S
-346.1129992	C15H13N3O4S
-346.1156238	C11H17N3O7S
-346.1301502	C17H13ClFN3O
-346.1431087	C14H21ClN2O3S
-346.1550753	C18H16O6
-346.1582426	C18H17ClN2O2
-346.1849357	C18H20N2O2S
-346.2053189	C14H24N2O7
-346.2108001	C19H21NO4
-346.218906	C20H22O4
-346.2215306	C16H26O7
-346.2665248	C20H26N2O2
-346.3491918	C20H38O3
-347.0577192	C8H9HgO2
-347.0691341	C9H13N3O9P
-347.0897007	C17H12Cl2N2O
-347.0929435	C9H15N4O8P
-347.1010494	C10H16N3O8P
-347.130985	C17H14O7
-347.1731227	C12H21N3O8
-347.1786039	C17H18N2O5
-347.1867098	C18H19NO5
-347.1948157	C19H20O5
-347.1979829	C19H21ClN2O
-347.224676	C19H24N2OS
-347.2424346	C19H24N2O3
-347.2586463	C21H26O3
-347.3143711	C22H31NO
-347.3570169	C20H39O3
-347.3808263	C20H41NO2
-347.9051381	C6H10Ge2O7
-348.0567128	C12H8N4O6S
-348.0769591	C9H14N3O9P
-348.085065	C10H15N2O9P
-348.0957199	C15H18Cl3NO
-348.1068948	C16H12O8
-348.1312739	C11H19N3O7S
-348.1529035	C13H16F3N3O4
-348.1626195	C17H17NO6
-348.1707254	C18H18O6
-348.1902519	C17H18FN3O3
-348.2064636	C19H20FNO3
-348.2264502	C19H23NO4
-348.234556	C20H24O4
-348.2371807	C16H28O7
-348.2902808	C21H29NO2
-348.2983866	C22H30O2
-349.1314081	C21H19NO4
-349.1401497	C18H18ClNOS
-349.1466351	C17H16O7
-349.1780423	C15H18N4O5
-349.1835235	C20H15N3O2
-349.1904792	C19H19FO4
-349.2023599	C18H21NO5
-349.2104657	C19H22O5
-349.2661905	C20H27NO3
-349.2742964	C21H28O3
-349.3219153	C21H32N2O
-350.0627101	C13H11N3O4S2
-350.0812605	C16H12Cl2N2O2
-350.0870277	C16H14O4S2
-350.0940318	C14H9N4NaO5
-350.1225448	C16H14O8
-350.1524052	C16H18N2O4S
-350.1808942	C13H23NO9
-350.2096768	C15H21N5O4
-350.2258885	C17H23N3O4
-350.2421002	C19H25NO4
-350.2502061	C20H26O4
-350.297825	C20H30N2O2
-350.3140367	C22H32O2
-350.3166613	C18H36O5
-350.3535497	C21H35N3
-351.0885774	C13H12Cl2N6O
-351.1088213	C15H10F6O2
-351.1390454	C12H21NO8S
-351.1476939	C17H19ClN2OS
-351.1622852	C17H18O7
-351.2180099	C18H23NO5
-351.2211772	C18H24ClN3O
-351.2261158	C19H24O5
-351.2818406	C20H29NO3
-351.2899464	C21H30O3
-351.9185614	C12H5Cl5O
-352.0499098	C12H9N2O8P
-352.059773	C14H11ClN2O4S
-352.0888047	C15H13Cl2N3O2
-352.1355703	C20H12O5
-352.1381949	C16H16O8
-352.1408195	C12H20O11
-352.22378	C17H25N3O2S
-352.2253268	C15H23N5O4
-352.2496444	C18H26N2O4
-352.2577503	C19H27NO4
-352.2632315	C24H24O
-352.2658561	C20H28O4
-352.2757951	C17H38BrN
-352.3296868	C22H34O2
-353.0058594	C12H12BrN3S2
-353.1494222	C15H15N4NaO4
-353.1536176	C14H17N3O7
-353.1622661	C19H15ClN4
-353.1672047	C20H15NO4
-353.1698294	C16H19NO7
-353.1805599	C13H24O10
-353.1974618	C16H20FN3O4
-353.2067178	C19H18N4O2
-353.2310354	C22H21NO2
-353.23366	C18H25NO5
-353.2368273	C18H26ClN3O
-353.28561	C21H29FO2
-353.294866	C24H27N
-353.3055965	C21H32O3
-353.3694271	C23H38O
-354.0859044	C12H14N4O4S2
-354.1223625	C11H22NO7PS
-354.1376332	C14H16N2O8
-354.1431145	C19H13NO5
-354.1512203	C20H14O5
-354.153845	C16H18O8
-354.1564696	C12H22O11
-354.1637188	C16H19FN2O3S
-354.1755994	C15H21N3O4S
-354.199917	C18H24O4S
-354.2069451	C21H19NO3
-354.2652945	C18H28N2O4
-354.2707757	C23H25NO
-354.2734003	C19H29NO4
-354.2815062	C20H30O4
-355.0327456	C14H9Cl2NO5
-355.0408149	C10H12BrN5O4
-355.0809827	C10H12N5O7P
-355.12713	C19H12O6
-355.1297547	C15H16O9
-355.1893505	C18H18F3NO2
-355.1935853	C17H22O7
-355.2092889	C16H23N2O6
-355.2330983	C16H25N3O5
-355.2385796	C21H22N2O2
-355.2493101	C18H27NO5
-355.3212466	C21H34O3
-356.0593802	C6H16N4O9P2
-356.0805918	C16H14Cl2O4
-356.1121995	C12H17NaO10
-356.1126171	C10H15N6O6P
-356.1201048	C15H17Cl2N3O2
-356.1549037	C16H21ClN2O2S
-356.1587645	C19H15NO5
-356.1668704	C20H16O5
-356.1721197	C12H24O11
-356.1912495	C15H23N3O4S
-356.2063834	C19H19N3O3
-356.2144893	C20H20N2O3
-356.2333256	C18H26O6
-356.2971563	C20H32O4
-357.0759561	C9H17O12P
-357.0966327	C10H14N5O7P
-357.1427801	C19H14O6
-357.1454047	C15H18O9
-357.1459474	C19H15ClN2O2
-357.190399	C19H18N2O4
-357.1985049	C20H19NO4
-357.2461238	C20H23N3O2
-357.2542296	C21H24N2O2
-357.2623355	C22H25NO2
-357.273066	C19H30O5
-357.3180602	C23H30N2
-357.9564771	C9H11Cl3NO3PS
-358.0806483	C10H13N4O8P
-358.110584	C17H11NO7
-358.1213145	C14H16O10
-358.1213145	C14H16O10
-358.1511748	C14H20N2O6S
-358.1744146	C19H17NO5
-358.1825204	C20H18O5
-358.1851451	C16H22O8
-358.2301393	C20H22N2O3
-358.2382452	C21H23NO3
-358.3128063	C20H34O4
-359.032602	C11H13BrN2O6
-359.1276271	C17H15ClN4S
-359.1584302	C19H16O6
-359.1624261	C18H19N3S2
-359.2060491	C19H20N2O4
-359.2141549	C20H21NO4
-359.2222608	C21H22O4
-359.253668	C19H24N4O2
-359.2698797	C21H26N2O2
-359.2779855	C22H27NO2
-360.0674403	C16H15Cl3O2
-360.1343399	C18H14O7
-360.166688	C15H24NO4PS
-360.1900646	C19H19NO5
-360.1981705	C20H20O5
-360.2007952	C16H24O8
-360.2280308	C20H24N2OS
-360.2457894	C20H24N2O3
-360.2538953	C21H25NO3
-360.2620011	C22H26O3
-360.2934083	C20H28N4O
-360.3015142	C21H29N3O
-360.392287	C22H42O2
-361.0884198	C11H15N2O9P
-361.0956583	C17H13ClN2O2S
-361.0965257	C12H16NO9P
-361.1102496	C17H12O8
-361.1314081	C22H19NO4
-361.1513831	C18H18ClN3S
-361.157261	C19H16ClFN2O
-361.1740802	C19H18O6
-361.1767049	C15H22O9
-361.2135933	C18H21N3O4
-361.229805	C20H23NO4
-361.2379109	C21H24O4
-361.2936356	C22H29NO2
-361.9667022	C13H7Cl4NO2
-361.9748081	C14H8Cl4O2
-362.0317692	C7H11N5O8P2
-362.1038426	C9H16N5O8P
-362.1499899	C18H16O7
-362.1636386	C16H18N4O3S
-362.1717444	C17H19N3O3S
-362.2138206	C20H22O5
-362.2277183	C17H28ClNO4
-362.2614395	C20H26N2O3
-362.2695453	C21H27NO3
-362.2776512	C22H28O3
-362.2928466	C18H28N6O
-362.4079371	C22H44O2
-363.0878582	C9H15N4O9P
-363.1258997	C17H14O8
-363.1476541	C16H17N3O4S
-363.1573068	C15H16N4O6
-363.1735186	C17H18N2O6
-363.1816244	C18H19NO6
-363.1897303	C19H20O6
-363.2373492	C19H24N2O4
-363.2454551	C20H25NO4
-363.2561856	C17H30O7
-363.2930739	C20H29N3O2
-363.3092857	C22H31NO2
-363.3173915	C23H32O2
-363.3838468	C21H42O3
-363.9914013	C10H16Br2N2O2
-364.0961913	C12H17O10P
-364.104434	C12H16O12
-364.1601588	C13H21NO10
-364.16564	C18H18O7
-364.2213648	C19H23NO5
-364.2407438	C21H26ClNO
-364.2770895	C20H28N2O3
-364.2933013	C22H30O3
-364.991917	C7H5ClHgO2
-365.081715	C14H13N3O4S2
-365.1002654	C17H14Cl2N2O2
-365.1035082	C9H17N4O9P
-365.1172321	C14H13N3O8
-365.1328363	C18H15ClFNO3
-365.1433177	C16H16FN3O3S
-365.1551983	C15H18N4O4S
-365.1633042	C16H19N3O4S
-365.1687221	C16H14F3N5O
-365.1972745	C18H21NO6
-365.2053804	C19H22O6
-365.269211	C21H28O4
-365.3249357	C22H33NO2
-365.3994969	C21H44O3
-365.924519	C12H6Cl4O2S
-365.9405961	C12H8Br2N2O
-365.9616566	C14H9Cl5
-366.1473198	C16H18N2O5S
-366.1818327	C22H17ClN2
-366.1844573	C18H21ClN2O3
-366.2045914	C15H21N5O5
-366.228909	C18H24N2O5
-366.2370148	C19H25NO5
-366.2451207	C20H26O5
-366.2927396	C20H30N2O3
-366.3089513	C22H32O3
-367.0084618	C14H9Cl2N3S2
-367.0450568	C12H15Cl2NO5S
-367.1464693	C20H13NO5
-367.2129246	C18H23NO6
-367.2210304	C19H24O6
-367.284861	C21H30O4
-367.3405858	C22H35NO2
-367.3486917	C23H36O2
-367.9869962	C9H11Cl2N3O4S2
-368.0732748	C13H13N3O5S2
-368.1266241	C17H18ClNO3S
-368.1331095	C16H16O9
-368.1726225	C15H19N3O7
-368.1781038	C20H16N2O4
-368.1791816	C18H22O5S
-368.1964801	C17H19F2N3O3
-368.2607708	C20H28O5
-368.2895533	C22H26N4
-368.3246014	C22H34O3
-368.3580604	C18H43AlO4
-368.3803261	C23H39NO
-369.0701104	C12H12ClN5O4S
-369.0758407	C16H13Cl2NO4
-369.0839466	C17H14Cl2O4
-369.1090192	C15H14O10
-369.1283982	C17H17ClO6
-369.1332615	C11H23N2O7PS
-369.1346448	C16H14F3N3OS
-369.1388796	C15H18N2O6S
-369.1621194	C20H15NO5
-369.184123	C18H22ClNO4
-369.2027102	C17H24N2O4S
-369.2097382	C20H19N3O3
-369.2178441	C21H20N2O3
-369.22595	C22H21NO3
-369.2285746	C18H25NO6
-369.2366805	C19H26O6
-369.2746467	C20H31NO2S
-369.3005111	C21H32O4
-369.3562359	C22H37NO2
-369.3643417	C23H38O2
-369.8846744	C12H4Cl6
-370.0517505	C15H11Cl2NO5
-370.1074752	C16H16Cl2N2O3
-370.1461349	C20H14O6
-370.1487596	C16H18O9
-370.1948317	C18H24O5S
-370.2018597	C21H19NO4
-370.2332669	C19H21N5O2
-370.268315	C19H29NO5
-370.2764208	C20H30O5
-370.3402515	C22H36O3
-371.0614336	C13H15IN2O2
-371.1220447	C19H12O7
-371.129457	C17H20Cl2N2S
-371.1464238	C14H19N3O6S
-371.2183603	C17H26N2O4S
-371.2253883	C20H21N3O3
-371.2334942	C21H22N2O3
-371.2442247	C18H27NO6
-371.3161612	C21H34O4
-371.3718859	C22H39NO2
-371.9708893	C8H16N2O4Se2
-372.1304394	C14H18N2O7S
-372.1399552	C14H19N2O7P
-372.152069	C16H15F3N2O4
-372.1536791	C19H15NO6
-372.161785	C20H16O6
-372.1644096	C16H20O9
-372.1997512	C21H21NO2S
-372.2175098	C21H21NO4
-372.2515416	C15H27N5O5
-372.2732345	C22H26N2O2
-372.2920709	C20H32O5
-373.0233237	C14H8Cl2FNO5
-373.0915473	C10H14N5O8P
-373.1152467	C17H18Cl2O4
-373.118326	C16H14F3NO3S
-373.1199362	C19H14O5S
-373.1322135	C14H17NO10
-373.1620738	C14H21N3O6S
-373.1653271	C19H15FN2O4
-373.1748938	C13H21ClN6O4
-373.1934195	C20H19NO5
-373.1960441	C16H23NO8
-373.2015253	C21H20O5
-373.2491442	C21H24N2O3
-373.2572501	C22H25NO3
-373.265356	C23H26O3
-373.3318112	C21H36O4
-373.4027314	C18H41N7
-373.9159746	C12H8Cl6
-374.0578044	C10H13N4O7PS
-374.0755629	C10H13N4O9P
-374.0780634	C13H12N3NaO6S
-374.163848	C14H20N2O9
-374.1774351	C20H18O6
-374.1800597	C16H22O9
-374.1926305	C16H18N6O4
-374.1995862	C15H22FN3O6
-374.2099201	C16H26N2O5S
-374.225054	C20H22N2O4
-374.2331598	C21H23NO4
-374.2357845	C17H27NO7
-374.2807787	C21H27N3O2
-374.2888846	C22H28N2O2
-374.307721	C20H34O5
-375.0696007	C7H11BiO4
-375.0872109	C10H13FN5O7P
-375.0872965	C16H10ClF4NO2
-375.1371331	C17H14N2O7
-375.1533448	C19H16O7
-375.1559694	C15H20O10
-375.1832051	C19H20N2O3S
-375.184752	C17H18N4O5
-375.2090695	C20H21NO5
-375.2122368	C20H22ClN3O
-375.2171754	C21H22O5
-375.2647943	C21H26N2O3
-375.2729002	C22H27NO3
-375.3074883	C21H32F2O2
-375.3231437	C18H35N3O4
-375.3474613	C21H38O4
-376.0614263	C14H16ClO5PS
-376.0831927	C15H11ClF3NO4
-376.091213	C10H15N4O9P
-376.1146632	C18H15ClN2O2S
-376.1324218	C18H15ClN2O4
-376.1405276	C19H16ClNO4
-376.1553401	C20H17FO3S
-376.1930851	C20H20O6
-376.1957098	C16H24O9
-376.240704	C20H24N2O4
-376.2488099	C21H25NO4
-376.2569158	C22H26O4
-376.2681889	C23H28ClN
-376.3045346	C22H30N2O2
-376.3126405	C23H31NO2
-376.323371	C20H36O5
-377.0300975	C7H16O13P2
-377.0665045	C13H14Cl2N2O6
-377.0993193	C15H8F6N2O2
-377.1716195	C15H22O10
-377.1742441	C11H26O13
-377.1907493	C18H21N3O3S
-377.193374	C14H25N3O6S
-377.2058832	C22H17N3O2
-377.2328255	C21H24O5
-377.2723385	C20H27N3O3
-377.2804444	C21H28N2O3
-377.2885502	C22H29NO3
-377.3031518	C21H31F3O
-377.426942	C23H46O2
-378.0592442	C10H13N2O11P
-378.0714828	C9H15N5O7S2
-378.1204501	C16H15N2O6P
-378.1280853	C18H14ClFN2O3
-378.1314677	C19H22O8
-378.1314677	C19H22O8
-378.1449046	C18H16O8
-378.1925235	C18H20N2O6
-378.1951481	C14H24N2O9
-378.1952444	C18H20F4O3
-378.2087352	C20H22O6
-378.2186741	C17H32BrNO2
-378.2239306	C16H22N6O4
-378.2282617	C19H22FN3O3
-378.2563541	C20H26N2O4
-378.26446	C21H27NO4
-378.2958671	C19H29N5O2
-378.3502942	C21H40ClNO
-378.4028517	C22H44O3
-378.9736742	C5H13O13P3
-379.0271216	C12H15ClNO4PS2
-379.1151962	C13H19O10P
-379.1320874	C18H16ClNO5
-379.1344629	C15H16N4O5S
-379.1425688	C16H17N3O5S
-379.1506746	C17H18N2O5S
-379.1846449	C19H20O7
-379.195918	C20H22ClNO3
-379.2041714	C18H20FN3O4
-379.2122773	C19H21FN2O4
-379.2145053	C19H24N2O3S
-379.2484755	C21H26O5
-379.3042003	C22H31NO3
-379.3123062	C23H32O3
-379.3787614	C21H42O4
-379.8546425	C10H5Cl7
-380.1192703	C18H16Cl2N2O2
-380.1623226	C17H18FN3O3S
-380.1718278	C19H20ClNO4
-380.1774565	C21H14FN3O2
-380.1799336	C20H21ClO4
-380.2162794	C19H23NO6
-380.2243853	C20H24O6
-380.2720042	C20H28N2O4
-380.2882159	C22H30O4
-380.3996654	C24H40N2
-381.1201158	C16H16NO7P
-381.1582188	C16H19N3O5S
-381.1663247	C17H20N2O5S
-381.1895645	C22H17NO4
-381.200295	C19H22O7
-381.2235963	C16H23N5O5
-381.2301553	C19H26N2O3S
-381.2560197	C20H27NO5
-381.2641256	C21H28O5
-381.3198504	C22H33NO3
-381.9565712	C14H9Cl5O
-382.0476008	C12H11ClN6O2S2
-382.0896769	C15H14ClN3O4S
-382.1149987	C12H18O13
-382.2400353	C20H26O6
-382.2513085	C21H28ClNO2
-382.2876542	C20H30N2O4
-382.3138049	C19H42BrN
-382.3444568	C19H41NO3S
-383.1471758	C16H18ClN3O5
-383.1678661	C18H17F2NO5
-383.2052145	C22H19NO4
-383.215945	C19H24O7
-383.2797757	C21H30O5
-383.3085582	C23H28N4
-383.3436063	C23H36O3
-384.0237378	C13H10ClN3O4S2
-384.1314776	C19H20F3NO4
-384.1401259	C16H20N2O4S2
-384.1578845	C16H20N2O6S
-384.175643	C16H20N2O8
-384.1811243	C21H17NO5
-384.2475795	C19H27NO6
-384.2556854	C20H28O6
-384.3114101	C21H33NO4
-385.0653704	C15H12Cl2F4O2
-385.1450673	C16H20ClN3O3S
-385.157034	C20H15NO6
-385.1651398	C21H16O6
-385.1677645	C17H20O9
-385.2234892	C18H25NO7
-385.2315951	C19H26O7
-385.2954257	C21H32O5
-385.8795891	C12H4Cl6O
-386.0804385	C14H17IN2O2
-386.0974512	C15H16Cl3N5
-386.1410496	C20H14O7
-386.1436742	C16H18O10
-386.1837299	C19H18ClN5O
-386.1870583	C17H18F3N3O3
-386.20327	C19H20F3NO3
-386.2266347	C21H23N3OS
-386.2524991	C22H24N2O3
-386.2606049	C23H25NO3
-386.2713355	C20H30O6
-386.3351661	C22H36O4
-386.3908908	C23H41NO2
-386.929019	C8H8Cl3N3O4S2
-387.0785856	C10H19NO10S2
-387.1195839	C15H16O11
-387.1413384	C14H19N3O7S
-387.1452488	C16H18N3NaO4S
-387.172684	C20H17NO6
-387.2059608	C19H26Cl2N2O
-387.2284088	C21H22N2O4
-387.2294866	C19H28O5S
-387.2446205	C23H24O4
-387.2948641	C19H32N2O5
-387.3110758	C21H34O5
-388.1454762	C18H19NaO5S
-388.1512184	C15H19NO10
-388.1566996	C20H16O7
-388.1679728	C21H18ClNO3
-388.1760786	C22H19ClO3
-388.2368035	C16H28N4O4S
-388.2438315	C19H23N5O3
-388.2545621	C16H28N4O6
-388.2681491	C22H26N2O3
-388.2869855	C20H32O6
-388.3400856	C25H33NO
-388.9937732	C14H8Cl3NO5
-389.030405	C8H15NO12S2
-389.0494367	C8H17NO12P2
-389.1357766	C19H15ClN2O4
-389.1883341	C20H19NO6
-389.19644	C21H20O6
-389.1990646	C17H24O9
-389.235953	C20H23N3O4
-389.2440589	C21H24N2O4
-389.2835719	C20H27N5O2
-389.3241012	C25H32O2
-389.3267259	C21H36O5
-389.9108892	C12H8Cl6O
-390.0704775	C10H13N4O10P
-390.0811325	C15H16Cl3N3O2
-390.1085191	C18H12O9
-390.1314677	C20H22O8
-390.1314677	C20H22O8
-390.1642438	C19H17NO7
-390.1723497	C20H18O7
-390.1749743	C16H22O10
-390.21503	C19H22ClN5O
-390.2280744	C21H23NO5
-390.2419722	C18H29ClN2O4
-390.2919051	C23H29NO3
-390.3026356	C20H34O6
-390.3195374	C23H30FN3
-390.3476298	C24H34N2O
-390.4302968	C24H46O2
-391.1021976	C16H13ClF3NO4
-391.1142891	C17H14N2O6S
-391.1514267	C19H17ClN2O4
-391.1595325	C20H18ClNO4
-391.21209	C21H22O6
-391.2147147	C17H26O9
-391.2597089	C21H26N2O4
-391.2678148	C22H27NO4
-392.0863381	C13H18ClN3O4S2
-392.1404424	C12H20N4O8S
-392.1485482	C13H21N3O8S
-392.171788	C18H18N2O7
-392.1879998	C20H20O7
-392.1906244	C16H24O10
-392.2437245	C21H25NO5
-392.2518304	C22H26O5
-392.2913434	C21H29N3O3
-392.2994493	C22H30N2O3
-392.3182856	C20H36O6
-392.3470682	C22H34N4O
-392.3821163	C22H42O4
-392.4459469	C24H48O2
-393.0793007	C17H14BrFN2O2
-393.0876522	C12H14ClF2N5O3S
-393.1584283	C14H21NO11
-393.1639095	C19H18O8
-393.1872108	C16H19N5O6
-393.1953166	C17H20N4O6
-393.2050429	C20H24ClN3S
-393.2196342	C20H23NO6
-393.2277401	C21H24O6
-393.9646373	C14H8Cl4O4
-394.1262321	C12H18N2O12
-394.2036498	C20H22O7
-394.2231763	C19H22FN3O4
-394.2593746	C21H27NO5
-394.2674804	C22H28O5
-394.3124747	C26H28N2
-394.3313111	C24H34O3
-394.7245839	CHI3
-394.9685888	C5H13O14P3
-395.0860037	C13H19ClN2O5S2
-395.1045909	C12H21N3O5S3
-395.1197248	C16H17N3O4S2
-395.1212717	C14H15N5O6S
-395.1455893	C17H18N2O6S
-395.1627403	C19H18ClFN2O3
-395.1737146	C17H16F6N2O
-395.1740783	C14H23NO11
-395.1769349	C23H16O5
-395.1997672	C20H25NO2S2
-395.2109667	C17H22N4O6
-395.2433902	C21H26O6
-395.2465574	C21H27ClN2O2
-395.8495571	C10H5Cl7O
-396.0487441	C13H10Cl2F3N3O3
-396.0534603	C9H15N3O10P2
-396.0794228	C13H13N5O5S2
-396.0989529	C17H18BrNO4
-396.1110176	C18H15ClO7
-396.1528446	C22H14O6
-396.2004635	C22H18N2O4
-396.2047086	C20H25ClN2OS
-396.2105865	C21H23ClFNO2
-396.2192999	C20H24O7
-396.2669188	C20H28N2O5
-396.3210967	C23H35NOS
-396.3388553	C23H35NO3
-396.4427071	C27H45
-397.0187759	C11H10Cl2F2N4O3S
-397.0374759	C9H14N2O11P2
-397.0497898	C15H10O10S
-397.1546803	C14H17N5O8
-397.1612393	C17H20N2O6S
-397.1813488	C15H28O7P2
-397.1816225	C13H24N2O11
-397.1897284	C14H25NO11
-397.1952096	C19H22O8
-397.2185109	C16H23N5O6
-397.2590402	C21H28O6
-397.3091469	C18H38NO5P
-397.3121403	C26H29NO
-397.314765	C22H33NO4
-397.4343204	C25H44N2
-397.4505321	C27H46
-397.9514858	C14H9Cl5O2
-398.0194002	C6H11AuO5S
-398.0853833	C18H15Cl3N2O
-398.1329142	C17H14F3N3O2S
-398.1684947	C22H16O6
-398.1685562	C14H20N6O5S
-398.173744	C14H24O12
-398.2349499	C20H26O7
-398.2787941	C22H29FO4
-398.3626112	C24H38O3
-398.9863775	C15H14Br2O2
-399.0709826	C12H13N5O6S2
-399.0953002	C15H16N2O6S2
-399.1140087	C13H13F2N6O4P
-399.1288105	C16H15F2N3O4S
-399.1525718	C14H19N5O6S
-399.172694	C18H20N3NaO3S
-399.1931011	C19H24O6S
-399.2001292	C22H19NO5
-399.234161	C16H25N5O6
-399.2547038	C21H27FO5
-399.2639598	C24H25NO3
-399.2746903	C21H30O6
-399.324797	C18H40NO5P
-399.330415	C22H35NO4
-399.3942457	C24H41NO2
-399.9671359	C14H11Cl5O2
-400.1092148	C11H20NO12P
-400.1203141	C20H12O8
-400.145485	C18H20Cl2N2O3
-400.1760389	C21H17NO6
-400.1841447	C22H18O6
-400.2424941	C19H27NO7
-400.2506	C20H28O7
-400.3144306	C22H34O5
-400.3782613	C24H40O3
-401.0583928	C14H14ClN3O4S2
-401.1125934	C17H12F4N2O2S
-401.1139071	C12H16N5O8P
-401.1156552	C17H21IO2
-401.1519486	C20H15NO7
-401.1600545	C21H16O7
-401.1626791	C17H20O10
-401.1632217	C21H17ClN2O3
-401.1699934	C18H26BrNO3
-401.1739522	C18H22ClNO6
-401.2087512	C19H26O6S
-401.2157792	C22H21NO5
-401.2238851	C23H22O5
-401.2434116	C22H22FN3O2
-401.2703538	C21H29FO5
-401.2796098	C24H27NO3
-401.2822345	C20H31NO6
-401.2877157	C25H28O3
-401.354171	C23H38O4
-402.0350943	C16H13Cl3N2OS
-402.1314677	C21H22O8
-402.1314677	C21H22O8
-402.1359642	C20H14O8
-402.1385888	C16H18O11
-402.1774943	C17H21ClFN3O4
-402.1981847	C19H20F3NO4
-402.2230961	C19H21N5O4
-402.2447891	C26H20N2O
-402.2474137	C22H24N2O4
-402.2555196	C23H25NO4
-402.2636254	C24H26O4
-402.3031385	C23H29N3O2
-402.3695937	C21H39N3O3
-403.0740428	C14H16ClN3O4S2
-403.0837918	C17H11ClF4N2S
-403.1675987	C20H17NO7
-403.1757045	C21H18O7
-403.1783292	C17H22O10
-403.1950835	C23H21ClO3
-403.2244012	C19H28O6S
-403.2345966	C22H24ClN3O
-403.3455034	C20H37N3O4
-404.0488119	C18H15ClSn
-404.1516142	C20H16O8
-404.1731579	C17H20ClF2N3O3
-404.1911273	C19H19N3O6
-404.207339	C21H21NO6
-404.2371993	C21H25N3O2S
-404.2630638	C22H26N2O4
-404.2792755	C24H28O4
-404.3117605	C20H36N2O3S
-404.3214132	C19H35N3O5
-404.4409686	C22H46N4O
-405.0458595	C10H14N5O6PS2
-405.0784198	C13H16N2O8S2
-405.1620984	C17H17ClN6O3
-405.1913546	C21H20O7
-405.1939792	C17H24O10
-405.2146559	C18H21N5O5
-405.2389735	C21H24N2O5
-405.8762433	C9H5I2NO
-406.1510526	C18H16N2O8
-406.1672643	C20H18O8
-406.169889	C16H22O11
-406.1986715	C18H20N4O6
-406.2229891	C21H23NO6
-406.2310949	C22H24O6
-406.2337196	C18H28O9
-406.2391995	C18H36OSn
-406.2543962	C19H25N5O4
-406.2787138	C22H28N2O4
-406.2949256	C24H30O4
-406.2975502	C20H34O7
-406.3182269	C21H31N5O2
-407.0001299	C15H10BrClN4S
-407.0239028	C10H16KNO9S2
-407.05943	C7H11BiO6
-407.1213442	C13H19N2O10P
-407.1649285	C18H19N3O5S
-407.1907929	C19H20N2O7
-407.2015234	C16H25NO10
-407.2070047	C21H22O7
-407.2096293	C17H26O10
-407.2191064	C21H26N2OS2
-407.2313838	C16H29N3O6S
-407.2941366	C20H29N5O3
-407.3346659	C25H34O3
-407.3372905	C21H38O6
-408.0548088	C12H19Cl3O8
-408.1664382	C24H21As
-408.1667026	C18H18N2O8
-408.2046689	C19H23N3O4S
-408.2305333	C20H24N2O6
-408.2418064	C21H26ClN3O2
-408.246745	C22H26O6
-408.2766053	C22H30N2O2S
-408.3105756	C24H32O4
-408.5046921	C26H54O
-409.0827777	C14H13N5O5S2
-409.0837574	C9H22O13P2
-409.2145489	C20H23NO7
-409.2226547	C21H24O7
-409.225822	C21H25ClN2O3
-409.2421812	C20H24FN3O4
-409.2702736	C21H28N2O5
-409.2864853	C23H30O5
-409.3422101	C24H35NO3
-409.4060407	C26H41NO
-409.4141466	C27H42O
-410.03673	C12H15AsN6OS2
-410.1402766	C15H17N5O6S
-410.1904586	C19H21NO8
-410.1985644	C20H22O8
-410.2623951	C22H28O6
-410.2888773	C20H32F2O5
-410.3262257	C24H34O4
-410.4376752	C26H44N2
-411.0635237	C12H14AlMgNO11
-411.0724652	C10H17N3O10P2
-411.1494015	C21H20Cl2O3
-411.2113625	C22H19N3O4
-411.2297389	C19H22F2N4O3
-411.2383048	C21H26O7
-411.241472	C21H27ClN2O3
-411.3578602	C24H37NO3
-411.4135849	C25H42N2O
-411.4297967	C27H44O
-412.0483749	C9H15N3O11P2
-412.0564808	C10H16N2O11P2
-412.098655	C16H16N2O6S2
-412.203484	C23H19NO5
-412.2142145	C20H24O8
-412.2780451	C22H30O6
-412.3418758	C24H36O4
-412.8470745	C9H6Cl6O3S
-413.0323905	C9H14N2O12P2
-413.1505359	C13H25N2O8PS
-413.1875611	C15H22N6O5S
-413.1901242	C19H22O9
-413.245849	C20H27NO7
-413.2539548	C21H28O7
-413.307055	C26H29NO2
-413.3096796	C22H33NO5
-413.3177855	C23H34O5
-413.4373409	C26H45NO
-413.4454467	C27H46O
-414.0470735	C15H14INO4
-414.0625394	C18H15Cl3N2S
-414.112695	C13H18F3N3O4S2
-414.1264456	C12H23N2O9PS
-414.1314677	C22H22O8
-414.1314677	C22H22O8
-414.1545119	C21H20BrN3
-414.1851638	C21H19N3O3S
-414.2110282	C22H20N2O5
-414.2298646	C20H26O8
-414.2737087	C22H29FO5
-414.2936952	C22H32O6
-414.3575258	C24H38O4
-415.1030348	C14H16ClN5O5S
-415.139319	C21H14O8
-415.1950438	C22H19NO6
-415.2049176	C22H20FN3OS
-415.2588744	C24H25NO4
-415.2669803	C25H26O4
-415.2701475	C25H27ClN2
-415.4610968	C27H48O
-415.8313203	C10H6Cl8
-416.1027195	C12H20O13S
-416.1288774	C18H14N4O5S
-416.132912	C13H18N5O8P
-416.1790594	C22H18O7
-416.2905089	C24H28N2O3
-416.3037272	C18H39O7P
-416.3731759	C24H40O4
-416.8935086	C13H6Cl6O2
-417.1468632	C20H15NO8
-417.1549691	C21H16O8
-417.1769727	C19H23ClO7
-417.2106938	C22H21NO6
-417.2187997	C23H22O6
-417.2339951	C19H22N6O4
-417.2383262	C22H22FN3O3
-417.2556881	C26H21N3O
-417.2583127	C22H25N3O4
-417.2664186	C23H26N2O4
-417.2745245	C24H27NO4
-417.2771491	C20H31NO7
-417.2826303	C25H28O4
-417.3490856	C23H38O5
-418.0582878	C14H13AlCaN2O8
-418.0613675	C13H12N5NaO5S2
-418.0730612	C15H15ClFN3O3S2
-418.1586743	C14H26Cl2N2O7
-418.1784977	C20H18N2O7
-418.2002522	C19H21N5O3S
-418.268479	C21H36BrNO
-418.2780666	C23H26FN3O2
-418.3564025	C20H38N4O4
-418.3618837	C25H35N3O
-419.1706191	C21H18O8
-419.1949983	C16H25N3O7S
-419.2344498	C23H24O6
-419.2362177	C22H24FN3OS
-419.2820687	C23H28N2O4
-419.2901745	C24H29NO4
-419.2927992	C20H33NO7
-419.2982804	C25H30O4
-419.3647357	C23H40O5
-419.8406167	C12H3Cl7O
-420.0866942	C17H13N3O5S2
-420.1465289	C20H16O9
-420.1682833	C19H19N3O5S
-420.2022536	C21H21NO7
-420.2098995	C21H19F2N3O3
-420.2103595	C22H22O7
-420.2472479	C25H21N3O2
-420.2985692	C19H35N3O4S
-420.3380207	C26H34O3
-421.0680485	C10H15N5O9P2
-421.1401218	C12H20N5O9P
-421.1468177	C14H21N3O9S
-421.1862692	C21H20O8
-421.1888939	C17H24O11
-421.241994	C22H25NO6
-421.2540958	C22H29N3S2
-421.2977187	C23H30N2O4
-421.3139305	C25H32O4
-422.0520641	C10H14N4O10P2
-422.1621789	C20H18O9
-422.2260096	C22H24O7
-422.2330991	C17H23N7O5
-422.2429114	C25H20FN3O
-422.2455361	C21H24FN3O4
-422.247764	C21H27N3O3S
-422.2736285	C22H28N2O5
-422.2849016	C23H30ClN3O
-422.4120202	C23H45NO4
-422.4175014	C28H42O
-423.1493618	C20H18ClNO6
-423.1598431	C18H19N3O6S
-423.2019193	C21H22O8
-423.2045439	C17H26O11
-423.2414323	C20H25N3O6
-423.2657499	C23H28O6
-423.3214747	C24H33NO4
-423.3322052	C21H38O7
-423.3934111	C27H40O2
-423.3960358	C23H44O5
-424.2189625	C21H26ClN3OS
-424.2254479	C20H24N2O7
-424.2741446	C18H34N2O6S
-424.3054902	C24H32O5
-424.361215	C25H37NO3
-424.4250456	C27H43NO
-424.4331515	C28H44O
-424.4357761	C24H48O4
-424.9476324	C9H18FeN3S6
-425.0857982	C15H14N4O6S2
-425.1511756	C15H18N6O6S
-425.1537387	C19H18O10
-425.198733	C23H18N2O5
-425.2120881	C16H27NO11
-425.2150062	C17H24N6O4S
-425.2175693	C21H24O8
-425.2570824	C20H27N3O6
-425.2814	C23H30O6
-425.3452306	C25H36O4
-425.9825084	C6H15O15P3
-426.0583069	C15H14IN3O3
-426.0867539	C15H14Cl2F3N3O3
-426.143297	C16H18N4O7S
-426.1811384	C20H17F3N2O4
-426.1934791	C20H22O9
-426.2233394	C20H26N2O5S
-426.2354799	C16H31N2O8P
-426.241098	C20H26N2O7
-426.2492038	C21H27NO7
-426.2573097	C22H28O7
-426.2685828	C23H30ClNO3
-426.3049286	C22H32N2O5
-426.3211403	C24H34O5
-426.3768651	C25H39NO3
-426.3849709	C26H40O3
-426.4488016	C28H46O
-427.0016441	C17H12BrFO2S2
-427.0673798	C10H17N3O11P2
-427.1693888	C19H20O10
-427.1814906	C19H24N2O4S2
-427.1966245	C23H20N2O3S
-427.214383	C23H20N2O5
-427.2525984	C23H29ClO4
-427.2889442	C22H31NO6
-427.291432	C19H37O7P
-427.29705	C23H32O6
-427.301515	C22H27N7O
-427.4247113	C27H44O2
-427.4723302	C27H48N2
-428.1642175	C19H18ClF2N3O3
-428.1913706	C20H24O7S
-428.19346	C22H19ClN4O2
-428.2091291	C20H24O9
-428.2122964	C20H25ClN2O5
-428.2347547	C21H24F3N3S
-428.2389895	C20H28N2O5S
-428.2729597	C22H30O7
-428.3098481	C25H29N3O2
-428.3124728	C21H33N3O5
-428.3367904	C24H36O5
-428.4644516	C28H48O
-429.0815443	C19H17Cl3N2S
-429.0904052	C15H15ClN4O6S
-429.1824142	C23H18O7
-429.238139	C24H23NO5
-429.2462448	C25H24O5
-429.2488695	C21H28O8
-429.277652	C23H26N4O3
-429.307082	C19H39O7P
-429.3587722	C25H40O2S
-429.3684249	C24H39NO4
-429.4403613	C27H46O2
-429.9413151	C14H9Cl5O4
-430.1092197	C16H18N2O7S2
-430.1269783	C16H18N2O9S
-430.1314366	C16H18N4O7S
-430.1583239	C22H16O8
-430.1760072	C15H22N5O7P
-430.1923557	C16H22N4O9
-430.2247792	C20H26O9
-430.2441582	C22H29ClO5
-430.2546395	C20H30N2O5S
-430.2697734	C24H26N2O4
-430.2886098	C22H32O7
-430.3443346	C23H37NO5
-430.3524404	C24H38O5
-430.4801017	C28H50O
-431.1505069	C15H20N4O8S
-431.1586128	C16H21N3O8S
-431.194844	C17H20F6N2O3
-431.2456832	C23H24N2O5
-431.2618949	C25H26O5
-431.2640114	C18H29N4O7
-431.273168	C26H28ClNO
-431.3283502	C23H36O6
-431.3840749	C24H41NO4
-431.4560114	C27H48O2
-432.1359325	C14H19N4O9P
-432.173974	C22H18O8
-432.1765986	C18H22O11
-432.1959776	C20H25ClO7
-432.2642868	C22H28F2O5
-432.2935294	C25H29NO4
-432.296154	C21H33NO7
-432.3042599	C22H34O7
-432.3330424	C24H32N4O2
-432.3680905	C24H40O5
-432.9914952	C10H11BrN5O7P
-433.1525084	C17H20O12
-433.1829113	C21H21ClN4OS
-433.2137143	C23H22O7
-433.2154823	C22H22FN3O2S
-433.2294661	C24H21F2NO3
-433.2401966	C21H26F2O6
-433.2424969	C25H20N4O2
-433.277545	C25H28O5
-433.3413756	C27H34O3
-433.3440002	C23H38O6
-434.0805997	C16H15N2NaO6S2
-434.1228	C12H23O14P
-434.1297893	C19H17N3O4S2
-434.1378319	C15H16F3N5O4S
-434.1412115	C18H21KN2O5S
-434.1896241	C22H20O8
-434.2534547	C24H26O6
-434.2752092	C23H29N3O2S
-434.2859397	C20H34N2O5S
-434.3010736	C24H30N2O4
-434.3199099	C22H36O7
-435.114087	C17H14ClF7O2
-435.1655338	C21H18O9
-435.1953941	C21H22N2O5S
-435.2212585	C22H23NO7
-435.2651026	C24H26FNO4
-435.293195	C25H30O5
-435.3462951	C30H31N
-436.0774007	C12H18N4O7P2S
-436.0881045	C15H14F3N3O4S2
-436.1252318	C18H14N2O10
-436.1527166	C21H18ClNO6
-436.1767217	C20H15F3N4O3
-436.2052741	C22H22O8
-436.2351345	C22H26N2O4S
-436.3005119	C22H30N4O4
-436.3248295	C25H33NO4
-436.3886601	C27H39NO2
-437.0534473	C10H14N5O10PS
-437.0629631	C10H15N5O10P2
-437.0786935	C15H16Cl2N2O8
-437.1480053	C22H19Cl2NO3
-437.1537486	C17H21N2NaO7S
-437.1811838	C21H20O9
-437.1838085	C17H24O12
-437.1910577	C21H21FN2O4S
-437.2450145	C23H26O7
-437.2693936	C18H33N3O6S
-437.273797	C25H24N4O2
-437.2926334	C23H30N2O5
-437.3240405	C21H32N6O3
-437.3726757	C27H38O3
-437.5667922	C29H60
-438.0469787	C10H14N4O11P2
-438.0972589	C17H15N3O6S2
-438.1188885	C19H12F3N3O3S
-438.1408818	C18H16N2O10
-438.2209242	C22H24O8
-438.2235488	C18H28O11
-438.2604372	C21H27N3O6
-438.2766489	C23H29NO6
-438.2847548	C24H30O6
-438.3551205	C24H39NaO4
-438.4043102	C27H41NO2
-438.4124161	C28H42O2
-438.5427019	C28H58O
-438.9723517	C17H12Br2O3
-439.1094785	C17H16N2Na2O6S
-439.131518	C13H22N4O8S2
-439.1968339	C21H22O9
-439.1994585	C17H26O12
-439.2363469	C20H25N3O7
-439.2444528	C21H26N2O7
-439.2596482	C17H26N8O5
-439.2606645	C23H28O7
-439.3883258	C27H40O3
-439.4521564	C29H46O
-440.1129089	C17H17N3O6S2
-440.1225616	C16H16N4O8S
-440.1600714	C21H23BrFNO2
-440.2203625	C20H24N2O8
-440.2229872	C16H28N2O11
-440.231093	C17H29NO11
-440.2365742	C22H26O8
-440.2436638	C17H25N7O6
-440.2559532	C24H29ClO4
-440.2826463	C24H32O4S
-440.2977802	C28H28O3
-440.3004049	C24H32O6
-440.3561296	C25H37NO4
-440.3642355	C26H38O4
-440.4199603	C27H43NO2
-440.4280661	C28H44O2
-440.4918967	C30H50
-440.8657382	C9H6I2O4
-441.1023691	C11H20N4O10P2
-441.1486533	C19H18O11
-441.2017535	C24H19NO6
-441.212484	C21H24O9
-441.39587	C26H41NO3
-441.4039758	C27H42O3
-441.4678065	C29H48O
-441.8973727	C9H9I2NO3
-441.9583404	C10H14Cl6N4O2
-442.1123473	C15H17N5O6S2
-442.1883937	C20H22O10
-442.2279067	C19H25N3O8
-442.2402577	C18H33ClN2O5S
-442.2495997	C26H24O5
-442.2522243	C22H28O8
-442.300921	C20H38O7S
-442.3160549	C24H34O6
-442.4356103	C27H45NO2
-442.4437162	C28H46O2
-442.8813883	C9H8I2O4
-443.0591895	C15H14N2Na2O6S2
-443.1044687	C16H17N3O7S2
-443.1373612	C20H13N3O8
-443.3207472	C25H30N4O2
-443.41152	C26H43NO3
-443.4196259	C27H44O3
-443.4672448	C27H48N2O
-443.4834565	C29H50O
-444.0246537	C14H10N2O10S2
-444.0813177	C15H13ClFN5O5S
-444.1953304	C21H23ClFNO5
-444.2040437	C20H24O10
-444.2126922	C25H22ClNO3
-444.2359935	C22H23ClN6O
-444.2409321	C23H23N3O5
-444.2678744	C22H30O8
-444.3874298	C25H41NO4
-444.3955356	C26H42O4
-444.4593662	C28H48O2
-445.04166	C18H13Cl4N3O
-445.103907	C14H17N5O7S2
-445.1530112	C20H15N3O8
-445.1773288	C23H18O8
-445.2032035	C23H22ClF3O2
-445.2411594	C25H24O6
-445.2437841	C21H28O9
-445.2806725	C24H27N3O4
-445.2876282	C23H31FO6
-445.3076147	C23H34O7
-445.3633395	C24H39NO5
-445.435276	C27H46O3
-445.4613146	C27H48N2O
-446.0338183	C15H14ClN3O4S3
-446.1130073	C14H20N6O5Se
-446.1393778	C18H22O8P2
-446.1605507	C19H22KN3O4S
-446.1695118	C16H22N4O8S
-446.1709218	C15H22N5O8P
-446.2008574	C22H20N2O7
-446.2115879	C19H25NO10
-446.251101	C18H28N4O8
-446.2835244	C22H32O8
-446.3625505	C20H38N6O4
-446.4750163	C28H50O2
-447.1454215	C15H20N4O9S
-447.2228392	C23H24N2O4S
-447.2356592	C22H24ClN5O2
-447.2487036	C24H25NO6
-447.3125343	C26H31NO4
-447.3232648	C23H36O7
-447.450926	C27H48O3
-447.9789641	C12H4Cl2F6N4OS
-448.0954668	C13H17N5O8S2
-448.1214275	C18H14F4N2O4S
-448.1908922	C20H25ClO8
-448.2102712	C22H28Cl2O4
-448.2165075	C22H22N2O7
-448.2353439	C20H28O10
-448.2803381	C24H28N2O5
-448.3603805	C28H36O3
-448.3630051	C24H40O6
-448.4242111	C30H42O
-449.1762055	C19H18N4O8
-449.2303834	C22H25N3O4S
-449.2455173	C26H21N3O3
-449.3281843	C26H33NO4
-449.4001208	C29H40O2
-449.4027455	C25H44O5
-449.7897766	C10H4Br3ClN2O
-449.926684	C12H14As2Cl2N2O2
-450.0077835	C11H13ClF3N3O4S3
-450.1845387	C22H20O9
-450.2198169	C22H19F3N4O2
-450.2483693	C24H26O7
-450.3598188	C26H36N2O3
-451.1078909	C20H14ClNO8
-451.224279	C23H24O8
-451.2530615	C25H22N4O3
-451.2718979	C23H28N2O6
-451.2881712	C17H34N6O5S
-451.3006804	C25H26N6O
-451.3195168	C23H32N4O4
-451.3438344	C26H35NO4
-451.5460568	C29H58O
-452.2001887	C22H22O9
-452.2509749	C22H27ClN4O3
-452.2640194	C24H28O7
-452.2799627	C22H38O4Zn
-452.3090136	C28H28N2O2
-452.3116383	C24H32N2O5
-452.3835747	C27H39NO3
-452.3861994	C23H43NO6
-452.45003	C25H49NO4
-453.0401192	C10H15N5O9P2S
-453.0578777	C10H15N5O11P2
-453.1536505	C19H24Cl2O7
-453.1760985	C21H20O10
-453.199496	C22H17F4N3O2
-453.2399291	C23H26O8
-453.2616836	C22H29N3O4S
-453.287548	C23H30N2O6
-453.3163305	C25H28N6O
-453.3325422	C27H30N4O
-453.3675903	C27H38O4
-453.431421	C29H44O2
-453.5617068	C29H60O
-454.0418933	C10H14N4O12P2
-454.129311	C19H18ClN3O5S
-454.2796694	C24H30O7
-454.3327695	C29H31NO2
-455.1385835	C22H18Cl2FNO3
-455.1771572	C21H23ClN2O4S
-455.1917485	C21H22O10
-455.3137917	C21H39O7P
-455.3194098	C25H34O6
-455.3832404	C27H40O4
-456.1676582	C20H20O11
-456.2288642	C26H22O6
-456.2314889	C22H26O9
-456.2872136	C23H31NO7
-456.2879038	C24H25FN6O
-456.2953195	C24H32O7
-456.3348325	C23H35N3O5
-456.4148749	C27H43NO3
-456.4229807	C28H44O3
-456.4868114	C30H50O
-456.9163776	C10H11I2NO3
-457.084525	C19H16Cl2N2O4S
-457.0972837	C11H20N4O11P2
-457.2073986	C21H24O10
-457.24113	C23H25F3N2OS
-457.2523915	C20H35N3Sn
-457.3294418	C21H41O7P
-457.3350598	C25H36O6
-457.3988905	C27H42O4
-457.4465094	C27H46N2O2
-457.4627211	C29H48O2
-458.1806837	C24H18O8
-458.2222138	C21H25ClFN3O4
-458.2688934	C21H31N3O5S
-458.2784093	C21H32N3O5P
-458.2802525	C27H26FNO3
-458.290983	C24H31FO6
-458.3109696	C24H34O7
-458.3640697	C29H35NO2
-458.3981015	C23H41N5O3
-458.4305249	C27H45NO3
-458.4386308	C28H46O3
-458.5024614	C30H52O
-459.0606381	C15H15Cl2N2NaO8
-459.2194077	C19H20N8O5
-459.2230486	C21H26O10
-459.2486742	C22H26F3N3OS
-459.2842546	C27H28O5
-459.2868793	C23H32O8
-459.4064347	C26H43NO4
-459.4145405	C27H44O4
-459.4621594	C27H48N2O2
-459.4783711	C29H50O2
-460.1244075	C20H16ClF3N2O2S
-460.1811998	C20H24O9S
-460.1989584	C20H24O11
-460.2029543	C19H27N3O5S2
-460.2034233	C19H19N7O6
-460.3271622	C28H33ClN2
-460.4542809	C28H48O3
-461.0810262	C18H16Cl3N3O4
-461.1069275	C15H18N4O8S2
-461.1899267	C16H24N5O8P
-461.2917988	C26H29NO5
-461.3286872	C29H28N4
-461.4301906	C27H46O4
-462.0948536	C17H16N3NaO6S2
-462.1045062	C16H15N4NaO8S
-462.1644264	C16H22N4O9S
-462.1903645	C21H28ClNO3S2
-462.2190734	C19H21N7O6
-462.2452606	C23H31Cl2NO3
-462.2596027	C24H26N2O6
-462.2784391	C22H32O9
-462.3082994	C22H36N2O5S
-462.3153274	C25H31N3O4
-462.3164053	C23H37NO5S
-462.3315392	C27H33NO4
-462.3341638	C23H37NO7
-462.3535428	C25H40ClNO3
-462.4699309	C28H50O3
-463.1476623	C15H24N6O5Se
-463.2365902	C21H30O8S
-463.2543488	C21H30O10
-463.299343	C25H30N2O5
-463.3074489	C26H31NO5
-463.4458407	C27H48O4
-464.114699	C16H20N2O9S2
-464.1231058	C12H28FeO14
-464.1486693	C18H22O11S
-464.2114221	C22H22N2O8
-464.2347234	C19H23N7O6
-464.2364299	C26H19FN4O2
-464.2402046	C24H20N6O3
-464.2584335	C24H26ClFN4O
-464.3974328	C23H43N3O5
-465.0708146	C12H22CuO14
-465.0864133	C16H16N3NaO7S2
-465.323099	C26H33NO5
-466.0703601	C12H22O14Zn
-466.1794533	C22H20O10
-466.2270722	C22H24N2O8
-466.2320211	C22H27F3O4S
-466.2432839	C24H26O8
-466.2546094	C21H36INO
-466.2746911	C22H28N4O6
-466.3330405	C19H37N5O7
-466.4347758	C30H44O2
-467.1173215	C13H19N4O12P
-467.155363	C21H18O11
-467.1771175	C20H21N3O7S
-467.3074034	C20H37N3O6S
-467.3412368	C23H41O6P
-467.3756374	C29H34N4
-467.4025796	C28H41NO3
-467.604802	C31H64
-468.0769808	C14H14N8O4S3
-468.1463313	C17H18N5O8P
-468.1951034	C22H22O10
-468.225903	C22H24ClFN4O3
-468.2508281	C23H27NO8
-468.2563093	C28H24O5
-468.3065529	C24H32N2O6
-468.3146587	C25H33NO6
-468.3486906	C19H39N5O7
-468.5807117	C30H62O
-469.0949666	C16H15N5O7S2
-469.1710131	C21H20O11
-469.1831149	C21H24N2O5S2
-469.4263356	C29H44O3
-469.4901662	C31H50O
-469.9958462	C16H10N2O6S4
-470.1590246	C20H22N2O6S2
-470.2251938	C23H27Cl2N3O2
-470.2484951	C20H28Cl2N8
-470.2607233	C20H36O7P2
-470.274584	C24H30O8
-470.4660759	C30H48O2
-471.0533451	C17H14N2O7S3
-471.1106167	C16H17N5O7S2
-471.1866631	C21H22O11
-471.2641424	C21H30N4O5S
-471.2845256	C17H34N4O10
-471.2850682	C21H31ClN6O3
-471.3143244	C25H34O7
-471.3268952	C25H30N6O2
-471.3457316	C23H36N4O5
-471.5058163	C31H52O
-472.1162886	C12H22N4O11P2
-472.1198892	C19H17ClFN3O5S
-472.1777171	C23H19ClF3NO3
-472.2264035	C22H26O10
-472.2902341	C24H32O8
-472.3297471	C23H35N3O6
-472.3692602	C22H38N6O4
-472.481726	C30H50O2
-473.1152428	C14H21NO14S
-473.161647	C17H21N4O9P
-473.2295489	C25H24N2O4S
-473.2878983	C22H33N3O5S
-473.4576357	C29H48O3
-474.1305287	C13H24N3O11PS
-474.2080833	C20H26N2O8S
-474.2384126	C20H22N8O5
-474.2425962	C26H25ClN2O3
-474.2627302	C23H25N5O5
-474.2870478	C26H28N2O5
-474.3616089	C25H39NO6
-474.4335454	C28H46O4
-474.497376	C30H52O2
-475.1772971	C17H23N4O9P
-475.2138533	C19H28N4O5S2
-475.2791693	C27H28O6
-475.3456245	C25H38O7
-475.4013493	C26H43NO5
-475.4094551	C27H44O5
-476.0197907	C9H16N3O13P3
-476.1525886	C20H22Cl2N2O6
-476.1750366	C22H18N2O9
-476.1912483	C24H20O9
-476.213252	C22H27ClO8
-476.2815612	C24H30F2O6
-476.3076735	C20H42O7P2
-476.4491955	C28H48O4
-476.89689	C15H13Br3O2
-477.0038063	C9H15N2O14P3
-477.0066044	C15H10O13S2
-477.1210107	C14H18N5O11P
-477.1476792	C15H29O10P3
-477.1560588	C14H26NO14P
-477.1920798	C22H22ClN5O2S
-477.1970184	C23H22N2O6S
-477.2255075	C20H27NO11
-477.2309887	C25H24O8
-477.2380783	C20H23N7O6
-477.2867135	C26H29NO6
-477.2948193	C27H30O6
-477.3110926	C21H36N4O5S
-477.3531687	C24H39NO7
-477.3819512	C26H37N5O2
-477.4251052	C27H46O5
-478.2169354	C18H34Cl2N2O5S
-478.261387	C18H37ClN2O7S
-478.2681659	C22H28N6O3S
-478.2727462	C24H32ClFO5
-478.2778186	C21H27N7O5
-478.3113199	C23H37NO6S
-478.3371843	C24H38O8
-478.3929091	C25H43NO6
-478.4648456	C28H50O4
-479.1964567	C21H22N4O6S
-479.2537283	C20H25N7O6
-479.2754213	C27H24N4O3
-479.3230402	C27H28N6O
-479.3580883	C27H36N2O4
-479.4407553	C27H48O5
-480.1096137	C16H20N2O10S2
-480.1383962	C18H18N6O5S2
-480.1587179	C22H18O11
-480.2225485	C24H24O9
-480.2251731	C20H28O12
-480.2364462	C21H30ClNO8
-480.2419798	C22H35IO2
-480.2620615	C23H27N3O7
-480.2652288	C23H28ClN5O3
-480.2863791	C26H30O7
-480.3350758	C24H40O6S
-480.3789922	C30H34N4
-481.2040009	C20H23N5O6S
-481.2236291	C21H30Cl2N2O5
-481.3099077	C25H32N2O6
-481.3737383	C27H38N2O4
-481.4537807	C31H46O2
-481.5840666	C31H62O
-482.1761359	C21H20FN3O6S
-482.2219868	C22H24N2O9
-482.2355739	C28H22O6
-482.3470234	C30H32N2O2
-483.1502776	C21H18O12
-483.1572304	C17H19N6O8P
-483.2769226	C19H28N8O6
-483.2805635	C21H34O11
-483.3417695	C27H36O6
-483.3676955	C20H41N5O7
-483.4694308	C31H48O2
-483.5997166	C31H64O
-484.1519009	C22H21Cl3N4O
-484.1874549	C18H22N6O7S
-484.190018	C22H22O11
-484.1901162	C22H30Cl4N2
-484.2538486	C24H28O9
-484.3166629	C20H32N8O5
-484.3176792	C26H34O7
-484.9978984	C10H14N5O10PSe
-485.1659277	C21H20O12
-485.1713336	C19H23N4O6PS
-485.2515128	C22H29N3O6S
-485.2935889	C25H32O8
-485.3195149	C18H37N5O9
-485.3293272	C26H34FNO5
-485.3493137	C26H37NO6
-485.3574196	C27H38O6
-485.415769	C24H47NO7
-486.0956513	C15H17N7O5S3
-486.2274225	C21H27N3O7S
-486.3035305	C18H36N4O10
-486.3421253	C28H31FN4O
-486.4609905	C30H48O3
-487.1815778	C21H22O12
-487.2318213	C17H30N2O13
-487.2454084	C23H28O10
-487.309239	C25H34O8
-487.3730696	C27H40O6
-487.431419	C24H49NO7
-488.0903387	C19H17Cl2N3O5S
-488.1548628	C24H16O10
-488.1693032	C25H19Cl2N3O2
-488.2213181	C22H26O11
-488.2602236	C23H29ClFN3O4
-488.2663124	C26H26N2O6
-488.2851487	C24H32O9
-488.3289928	C26H35FO6
-488.3858677	C29H37N3O2
-488.4766406	C30H50O3
-489.0952189	C12H21N3O13P2
-489.13894	C16H19N5O10S
-489.189122	C20H23NO12
-489.3141586	C28H31NO5
-489.3218044	C28H29F2N3O
-489.3248891	C25H36O8
-489.3749958	C22H46NO7P
-489.3887197	C27H42O6
-490.2288623	C21H27NO11
-490.2563472	C24H31ClO7
-490.3007988	C24H34O9
-490.3620048	C30H36O4
-491.1085916	C18H20ClN3O6S2
-491.1464226	C23H16O11
-491.1878053	C23H26Cl2O6
-491.2102533	C25H22O9
-491.2128779	C21H26O12
-491.2173428	C20H21N7O7
-491.2427382	C21H30N2O8S
-491.276101	C25H32ClFO5
-491.2767085	C23H32O10
-491.3135969	C26H31N3O5
-491.3405391	C25H38O8
-491.3962639	C26H43NO6
-491.4043698	C27H44O6
-492.0147053	C9H16N3O14P3
-492.0228112	C10H17N2O14P3
-492.0771872	C19H18Cl3N3O3S
-492.1166516	C17H18N5NaO6S2
-492.2489773	C20H24N8O6
-492.3614431	C28H36N2O4
-492.3721736	C25H41NO7
-492.4441101	C28H48O5
-492.9987209	C9H15N2O15P3
-493.0925613	C16H16N5NaO7S2
-493.1872436	C21H26Cl2N2O6
-493.2204221	C20H27NO12
-493.2259033	C25H24O9
-493.2329929	C20H23N7O7
-493.2968235	C22H29N7O5
-494.0972849	C12H26FeO16
-494.1218203	C19H19ClN3NaO6S
-494.1314983	C19H23N6O8P
-494.2944262	C28H26N4O3
-494.302532	C29H27N3O3
-494.308324	C25H32ClN5O2
-494.3770932	C28H38N2O4
-494.3878237	C25H43NO7
-494.3933049	C30H40O4
-494.4597602	C28H50O5
-495.0420539	C18H15Cl4N3O4
-495.1435917	C17H20N4NaO9P
-495.1777228	C23H20O11
-495.2735032	C27H25ClN6
-495.3394158	C21H38N4O8
-495.4087277	C28H41N3O3
-495.5633311	C31H60O2
-495.7169901	C10Cl10O
-496.0892575	C13H26NO10PS3
-496.1536325	C22H18O12
-496.1620188	C20H27AlCl2O7
-496.2787306	C22H30N6O4S
-496.2812937	C26H30O8
-496.3451243	C28H36O6
-496.3710503	C21H41N5O7
-496.4008491	C29H41NO4
-497.2151273	C22H25N3O7S
-497.3443354	C24H35N5O5
-497.4486953	C31H46O3
-497.45132	C27H50O6
-497.4882083	C30H49N3O
-497.6428118	C33H68
-497.7326402	C10H2Cl10O
-498.1052398	C14H22N4O9P2S
-498.1282842	C17H23NO11S2
-498.1475896	C15H21N3O15
-498.2888379	C25H31NO8
-498.2969438	C26H32O8
-498.3607744	C28H38O6
-498.3867004	C21H43N5O7
-498.424605	C30H44O4
-499.1276512	C13H18HgNO6
-499.178963	C23H21N2NaO6S
-499.1887012	C19H24N6O5S2
-499.2127328	C27H22Cl2N4
-499.2728535	C25H30O9
-499.2760208	C25H31ClN2O5
-499.4643454	C31H48O3
-500.1361606	C17H18N5O10P
-500.1880999	C22H23ClN2O8
-500.3125939	C26H34O8
-500.4402551	C30H46O4
-500.5040857	C32H52O2
-501.0343789	C10H16N5O12P3
-501.1608423	C21H20O13
-501.2453496	C24H23N5O6
-501.2600145	C28H27NO4S
-501.2885036	C25H32O9
-501.3144295	C18H37N5O10
-501.3523342	C27H38O7
-501.4054343	C32H39NO2
-501.4799954	C31H50O3
-502.0183945	C10H15N4O13P3
-502.1203408	C18H17N6NaO5S2
-502.1341274	C24H14O11
-502.1542984	C14H26N4O11P2
-502.18682	C21H27N3O4S3
-502.2037499	C22H25ClN2O8
-502.2984451	C18H36N4O11
-502.3282439	C26H36O8
-502.4559052	C30H48O4
-502.5197358	C32H54O2
-503.2089774	C17H30N2O12S
-503.240323	C23H28O11
-503.2841671	C25H31FO8
-503.3041536	C25H34O9
-503.3479977	C27H37FO6
-503.4210844	C32H41NO2
-503.4956455	C31H52O3
-504.0259387	C9H16N5O13P3
-504.1497775	C24H16O11
-504.1524021	C20H20O14
-504.2162327	C22H26O12
-504.2664763	C18H34N2O13
-504.2794558	C26H32ClFO5
-504.3807824	C29H37N3O3
-504.4715552	C30H50O4
-505.2112723	C24H23N3O6S
-505.2928615	C26H29N3O6
-505.3203463	C29H33ClN2O2
-505.3436613	C27H36F2O5
-505.364798	C29H36N2O4
-505.3755285	C26H41NO7
-505.433741	C24H52NO6P
-505.7287852	C12Cl10
-505.9488388	C6H16O18P4
-506.1750049	C16H23N6O10P
-506.296256	C28H31ClN2O3
-506.3336796	C25H39NO6S
-506.4709936	C28H50N2O4
-507.0337102	C10H18N3O14P3
-507.1962704	C24H26BrN3O3
-507.2051679	C25H22O10
-507.3328291	C29H34O6
-507.380448	C29H38N2O4
-507.3992844	C27H44O7
-507.4144798	C23H44N6O5
-508.0373029	C18H14Cl4N4O4
-508.077596	C15H16N7NaO5S3
-508.1810776	C24H20O11
-508.2114978	C14H36Cl2N2O12
-508.3563577	C28H36N2O5
-508.3644636	C29H37NO5
-508.3751941	C26H42O8
-508.401352	C32H36N4
-508.4390247	C28H48O6
-509.2500708	C27H28ClFN2OS
-509.2846486	C27H30O8
-509.38907	C26H45NO5S
-509.3960981	C29H40N2O4
-510.1423376	C15H23N5O10P2
-510.226588	C24H26N2O7S
-510.2579336	C30H24O6
-511.236468	C25H26O10
-511.3441427	C29H35FO5
-512.2123777	C24H24O11
-512.2762083	C26H30O9
-512.3659649	C21H41N5O8
-512.3876579	C28H40N2O5
-512.4326521	C32H40N4
-512.5979861	C32H64O2
-513.1952402	C19H23N6O8P
-513.2480081	C23H30N4O4S2
-513.3797793	C29H40O6
-513.483123	C30H49N3O2
-514.1627119	C16H26N4O10S2
-514.1641972	C22H20O13
-514.1681931	C21H23N3O7S2
-514.2335705	C21H27N5O7S
-514.273022	C28H26N2O6
-514.2918584	C26H32O9
-514.305507	C24H34N4O5S
-514.4195197	C30H44O5
-515.0136435	C10H14N5O13P3
-515.2039375	C23H24O12
-515.2596623	C24H29NO10
-515.2602049	C28H26ClN3O3
-515.3017999	C19H36N4O11
-515.3954294	C29H42O6
-516.0437311	C12H19N4O10P3S
-516.0533838	C11H18N5O12P3
-516.2209807	C23H28ClN3O5S
-516.2387392	C23H28ClN3O7
-516.2740808	C28H29ClN4S
-516.3713391	C28H40O7
-516.4351697	C30H46O5
-517.0197777	C10H15N5O13P2S
-517.0292935	C10H16N5O13P3
-517.277937	C20H35NO13
-518.0133091	C10H15N4O14P3
-518.1986646	C22H25ClN2O9
-518.2593279	C24H30O11
-518.3150527	C25H35NO9
-518.3231585	C26H36O9
-518.3611247	C27H41NO5S
-518.4508198	C30H48O5
-519.1687824	C25H18O11
-519.2743869	C25H24F6N4
-519.2802319	C27H28N2O7
-519.2990683	C25H34O10
-519.3370345	C26H39NO6S
-520.2085227	C26H22O10
-520.213772	C18H30O16
-520.2697287	C32H24O5
-520.2988356	C26H32F2O7
-520.3183621	C25H32F3N3O4
-520.3675911	C28H36N4O4
-520.3945334	C27H43NO7
-520.4314217	C30H42N4O2
-520.4664698	C30H50O5
-521.1457727	C21H22Cl2N2O8
-521.2427818	C22H29NO12
-521.2659463	C20H32N5O8P
-521.3147183	C25H36O10
-521.3385759	C27H36F2O6
-521.3445787	C25H40N2O6S
-521.4165152	C28H47NO4S
-522.0254294	C12H12N6Na2O10S2
-522.0365034	C9H18N5O14P3
-522.2041003	C21H28ClN3O7S
-522.2065881	C18H34ClN2O8PS
-522.2294221	C18H32O16
-522.290628	C24H34O11
-522.295093	C23H29N7O6
-522.4182893	C28H46O7
-523.2314897	C23H24N4O9
-523.287757	C28H26ClN7
-523.3277437	C29H34O7
-523.3565263	C31H32N4O2
-523.394199	C27H44O8
-524.2019182	C17H25N5O13
-524.3870106	C29H38FN3O3
-524.3973444	C30H42N2O2S
-524.4339394	C28H48O7
-525.0226185	C14H14N3O12PS2
-525.0469751	C22H19Br2NO3
-525.2455929	C25H28N2O7S
-525.2528804	C26H30Cl2F3NO
-525.2683003	C25H31F3O5S
-525.2714573	C26H29NO9
-525.3271821	C27H34N2O7
-525.3839847	C26H45NO6S
-525.6013409	C33H64O2
-526.1372522	C15H23N5O11P2
-526.2770029	C22H30Cl2N10
-526.3193035	C28H34O8
-526.3257992	C26H35F3O6
-526.3669224	C28H38N2O6
-526.3831342	C30H40O6
-526.3857588	C26H44O9
-527.0653477	C12H21NO17S2
-527.2601651	C27H24N4O6
-527.451657	C33H42N4
-528.082848	C19H18Cl2N3NaO6S
-528.0890716	C13H19N5O13P2
-528.2061392	C19H24N7O8P
-528.2143307	C26H22ClF3N2O3
-528.3977679	C24H40N8O4
-528.3987842	C30H42O6
-528.4301914	C28H44N4O4
-529.2023319	C26H21N3O6S
-529.2470327	C25H28O11
-529.3108633	C27H34O9
-529.3367893	C20H39N5O10
-530.1727604	C20H22N4O10S
-530.2461684	C14H33N10O7PS
-530.2786672	C25H31NO10
-530.3085275	C25H35N3O6S
-530.3306171	C28H35FO7
-530.4144343	C30H44O6
-531.1186103	C19H17N6NaO6S2
-531.179934	C20H21CaN7O7
-531.2276346	C25H22N4O8
-531.3239503	C23H36N6O5S
-532.0482984	C11H18N5O13P3
-532.1446894	C16H26N2O13P2
-532.3024231	C26H34O10
-532.3462672	C28H37FO7
-532.3662537	C28H40O8
-533.0064496	C10H16N5O12P3S
-533.0242082	C10H16N5O14P3
-533.1480469	C25H16O12
-533.3152212	C28H31N3O6
-533.370946	C29H36N4O4
-533.3952636	C32H39NO4
-534.0082237	C10H15N4O15P3
-534.0639485	C11H20N5O13P3
-534.143148	C19H17N9O5S2
-534.1851626	C30H16O8
-534.3560394	C27H41NO6S
-534.3737979	C27H41NO8
-534.9446125	C17H12I2O3
-535.1281433	C14H25N3O14P2
-535.2315235	C26H27N3O4S2
-535.2913582	C29H30O8
-535.2939829	C25H34O11
-535.3178405	C27H34F2O7
-535.386596	C29H38N4O4
-535.4190195	C33H42O4
-536.0157679	C9H16N5O15P3
-536.1831157	C22H22N6O5S2
-536.2008127	C30H18O8
-536.3012998	C22H34N4O10
-536.3078588	C25H37NO8S
-536.389448	C27H43NO8
-537.273038	C27H30N2O6S
-537.3140979	C24H31N7O6
-537.4291883	C28H47NO7
-537.4346695	C33H44O4
-538.3304001	C29H36NO5P
-538.5382405	C36H54O
-539.1665696	C20H21N7O6S2
-539.2507219	C26H27NO10
-539.3064466	C27H32N2O8
-539.3420897	C27H45IO
-539.3459597	C26H35N5O6
-539.9437165	C15H13I2NO4
-540.1683437	C20H20N6O9S
-540.2023876	C26H27ClN2O3S2
-540.2402802	C23H27N5O7S
-540.2904622	C27H31NO9
-540.3273506	C30H30N4O4
-541.1741138	C19H22N8O6S2
-541.18795	C24H24ClN3O6S
-541.2106472	C25H24O12
-541.2663719	C26H29NO10
-541.3788993	C26H45NO7S
-541.3884151	C26H46NO7P
-541.5881497	C32H63NO3
-542.1225141	C16H24N4O10P2S
-542.1865569	C24H22O13
-542.2203277	C26H25N2NaO6S
-542.3142181	C28H34O9
-542.354809	C25H43NO8S
-542.3780488	C30H40O7
-542.3806734	C26H44O10
-543.2901279	C27H32O10
-543.3400977	C25H44O7P2
-544.1083039	C16H22N2O14P2
-544.2021314	C26H37Cl2N3O5
-544.2660376	C26H30O11
-544.385593	C29H41NO7
-544.3936988	C30H42O7
-545.1399383	C16H25N3O13P2
-545.1850694	C19H23N6O10P
-545.2419473	C25H28O12
-545.3057779	C27H34O10
-545.3317039	C20H39N5O11
-545.3696086	C29H40O8
-546.1158481	C15H23N3O14P2
-546.1239539	C16H24N2O14P2
-546.217857	C24H26O13
-546.2727974	C32H18N8
-546.279063	C30H28O8
-546.2816877	C26H32O11
-546.4093489	C30H44O7
-546.4758042	C28H54O8
-547.1555884	C16H27N3O13P2
-547.2325247	C27H30Cl2O6
-547.2575974	C25H30O12
-547.299735	C20H37N3O13
-547.3475859	C33H30N4O2
-547.3652721	C29H39FO7
-547.4135721	C31H48O2S2
-547.4490892	C31H48O6
-548.1314981	C15H25N3O14P2
-548.139604	C16H26N2O14P2
-548.259665	C30H22N4O5
-548.2892319	C25H33NO11
-548.2947131	C30H30O8
-548.2973377	C26H34O11
-548.3167167	C28H37ClO7
-548.3899509	C30H38N4O4
-548.424999	C30H46O7
-549.0013642	C10H16N5O13P3S
-549.3370781	C27H38O10
-549.4009087	C29H44O8
-549.6597809	C10Cl12
-550.0040807	C16H9N4Na3O9S2
-550.0914234	C14H22N2O16P2
-550.1800772	C30H16O9
-550.2491572	C24H30O13
-550.3129878	C26H36O11
-550.3682044	C24H40N5O8
-550.440649	C30H48O7
-551.0347728	C10H18N5O15P3
-551.1230579	C14H25N3O15P2
-551.3630949	C27H38F6O3
-551.4139341	C33H42O5
-551.4265049	C33H38N6
-552.2361749	C30H26CaO6
-552.2648072	C24H32O13
-552.3655262	C29H37N3O6
-552.3843626	C27H43NO9
-553.341436	C28H35N3O7
-553.4241029	C28H47NO8
-554.1460615	C22H20N4O8S2
-554.2697268	C27H29NO10
-554.5331551	C36H54O2
-554.8074026	C15H12Br4O2
-555.2537424	C27H28O11
-556.1114314	C15H21N5O13P2
-556.2853768	C27H31NO10
-556.9634189	C15H10O16S3
-557.2055618	C25H24O13
-557.2676211	C26H31Cl2N5O3
-557.3132365	C29H33FO8
-557.3170113	C27H34N2O9
-557.3996783	C27H46O10
-558.1814715	C24H22O14
-558.2426775	C30H24O9
-558.3729634	C30H40O8
-559.2212119	C25H26O13
-559.3407673	C28H37NO9
-559.3488731	C29H38O9
-559.3975698	C27H48O8S
-560.0952107	C18H18N6O8S3
-560.1589432	C17H27N3O13P2
-560.1671859	C17H26N3O15P
-560.1849058	C21H25N5O8S2
-560.1971216	C24H24O14
-560.2609522	C26H30O12
-560.2804787	C25H30FN3O9
-560.3221582	C32H32O7
-560.3247828	C28H36O10
-560.3507088	C21H41N5O11
-560.3799001	C31H41ClFNO3
-560.3886135	C30H42O8
-560.5801053	C36H60O2
-561.1429588	C17H26N2O14P2
-561.3006926	C27H34O11
-561.3645232	C29H40O9
-562.1107627	C15H23N3O15P2
-562.1188685	C16H24N2O15P2
-562.1745933	C17H29N3O13P2
-562.2020411	C27H21NO11
-562.2222248	C23H26N5NaO7S
-562.2389295	C30H20N4O6
-562.384277	C30H41FO7
-562.4042635	C30H44O8
-563.0947783	C15H22N2O16P2
-563.150503	C16H27N3O14P2
-563.1586089	C17H28N2O14P2
-563.2498874	C29H26O10
-563.3801732	C29H42O9
-564.0746966	C19H16N5NaO7S3
-564.1345186	C16H26N2O15P2
-564.1672157	C18H26O19
-564.2985869	C26H36Cl2N4O4
-564.4199136	C30H46O8
-564.9642288	C10H15N5O13P2Se
-565.1104283	C15H24N2O16P2
-565.2017068	C27H22O12
-565.250179	C22H31Cl2N7O5
-565.2626808	C20H35NO16
-565.2681621	C25H32O13
-565.2914634	C22H33N5O11
-565.329368	C31H34O8
-565.3725835	C24H47NO10S
-565.3958233	C29H44O9
-565.4246058	C31H42N4O4
-565.5873152	C35H62O3
-565.7783656	C9H6I3NO3
-566.2753421	C23H34N3O10P
-566.3052778	C30H32O9
-566.3259544	C31H29N5O4
-567.1633141	C20H26ClN5O7S2
-567.2066263	C30H19NO9
-567.2618455	C20H39NO12P2
-567.2619436	C23H36N4O5S3
-567.2838121	C25H34O13
-567.2982525	C26H37Cl2N3O5
-567.3071134	C22H35N5O11
-568.1729449	C22H22N6O7S2
-568.1906419	C30H18O10
-568.2570972	C28H28O11
-568.2966102	C27H31N3O9
-569.4082871	C31H42N2O6
-569.55216	C37H56O2
-570.2646414	C27H29NO11
-570.4004085	C32H42O7
-570.5199639	C35H53NO3
-571.2121236	C21H26N8O6S2
-571.248657	C27H28O12
-571.5039795	C35H52O4
-571.6261595	C34H67NO3
-572.1064441	C18H18N8O7S3
-572.2219421	C30H22O10
-572.2234136	C21H26N7O9P
-572.4079527	C31H43NO7
-572.4160586	C32H44O7
-573.3281377	C29H36O10
-574.1219961	C15H23N5O14P2
-574.1763861	C24H22O15
-574.2132745	C27H21N3O10
-574.224005	C24H26N2O13
-574.4343333	C28H50O10
-574.5567452	C40H54
-575.2596354	C23H32N6O6S2
-575.5164432	C37H50N2O
-576.1280061	C22H19N4NaO8S2
-576.1993469	C20H25FN8O6S2
-576.2532422	C30H26O10
-576.3182122	C22H42N4O8S2
-576.3196975	C28H36O11
-576.3673164	C28H40N2O9
-576.3835281	C30H42O9
-576.4042047	C31H39N5O4
-576.4285223	C34H42N2O4
-576.5723953	C40H56
-577.1378734	C17H26N2O15P2
-577.1935982	C18H31N3O13P2
-577.221046	C28H23NO11
-577.2956072	C27H34O12
-577.3406014	C31H34N2O7
-577.3568132	C33H36O7
-577.3594378	C29H40O10
-577.3801145	C30H37N5O5
-577.5320933	C37H52N2O
-578.1695079	C17H29N3O14P2
-578.1954705	C21H27N5O9S2
-578.1969558	C27H21NO12
-578.2252327	C18H34N4O12P2
-578.3609731	C29H38F3N3O2S
-578.3955372	C28H38N8O4
-578.3991781	C30H44O9
-578.5880454	C40H58
-579.0896929	C15H22N2O17P2
-579.1535235	C17H28N2O15P2
-579.1862206	C19H28O19
-579.3750879	C29H42O10
-579.4541139	C27H48N6O6
-580.1117488	C14H23N8NaO9S3
-580.1213274	C15H25N3O16P2
-580.1294332	C16H26N2O16P2
-580.3128805	C28H39Cl3N4O
-580.6036954	C40H60
-581.1053429	C15H24N2O17P2
-581.2630767	C25H32O14
-581.2832843	C26H37NO8S2
-581.3719016	C31H38N2O7
-581.3907379	C29H44O10
-581.5183992	C33H56O6
-581.8371109	C11H12I3NO2
-582.1500078	C17H30Cl2N5O8PS
-582.302817	C26H36O13
-583.1903432	C25H29BrF2O7
-583.2787267	C25H34O14
-583.4351705	C31H44N4O5
-583.5314246	C37H54O3
-584.2791842	C27H26F3N5O5
-584.3077366	C29H33NO10
-584.3391437	C27H35N5O8
-584.6349956	C40H64
-585.2567041	C29H24N4O8
-585.2836463	C28H31NO11
-585.3555828	C31H38O9
-585.3843653	C33H36N4O4
-585.4372335	C25H48N6O8
-585.6135299	C35H66O4
-585.9151692	C6H17O21P5
-586.1754802	C23H30Cl2NNa2O6P
-586.2642457	C32H31BrN2O2
-586.3016937	C22H36N4O13
-586.3412067	C21H39N7O11
-586.3953231	C32H42O8
-586.6506456	C40H66
-587.187982	C22H32ClN3O6S3
-587.240947	C31H24O10
-587.2424185	C22H28N7O9P
-587.319973	C29H30N6O6
-587.3325731	C27H42Cl2N2O6
-587.4000154	C33H38N4O4
-587.4350635	C33H46O7
-587.5653494	C33H62O6
-588.4109732	C32H44O8
-588.6662957	C40H68
-589.141001	C16H25N5O14P2
-589.1526214	C19H28Cl2N6O6S2
-589.3108365	C26H37N5O5S2
-589.3230523	C29H36O11
-589.3458846	C26H45NO8S2
-589.3706712	C29H40N2O9
-590.108668	C15H24N5O13P3
-590.2351314	C26H28O14
-590.2351314	C26H28O14
-590.360168	C34H36O7
-590.4185174	C31H45NO8
-590.4266233	C32H46O8
-590.4499246	C29H47N5O6
-590.5516599	C40H54O
-591.2748717	C27H32O13
-591.3387024	C29H38O11
-591.3637101	C33H35FN2O5
-592.0591756	C17H17N7O8S4
-592.1325607	C15H25N5O15P2
-592.2481568	C30H26O11
-592.3065062	C27H35NO12
-592.3991194	C31H39N5O5
-592.4422733	C32H48O8
-592.4493629	C27H47N7O6
-592.5673099	C40H56O
-593.1885128	C18H31N3O14P2
-593.2077795	C20H28N7O9PS
-593.2159607	C28H23NO12
-593.2427034	C27H31N2NaO6S2
-593.4018345	C30H46NO7P
-594.1086978	C16H24N2O17P2
-594.3940928	C30H44O10
-594.4228753	C32H42N4O5
-594.4579234	C32H50O8
-595.0846075	C15H22N2O18P2
-595.3700025	C29H42O11
-595.378651	C34H40ClNO4
-595.4636935	C31H52N2O5S
-596.2632452	C28H28N2O11
-596.2768323	C34H26O8
-596.2820816	C26H34O14
-596.3720701	C34H34N4O4
-596.3757725	C28H44N2O8S
-596.4097428	C30H46O10
-596.5130865	C31H55N3O6
-596.9956239	C10H17N5O16P4
-597.3191973	C31H34O10
-597.3641915	C35H34N2O5
-597.3856526	C29H44O11
-597.9796395	C10H16N4O17P4
-598.2286517	C32H22O10
-598.2588228	C23H34ClN5O8S
-598.2940907	C24H30N8O9
-598.4811177	C31H53NO8
-598.5504295	C38H56O3
-599.3267415	C30H35NO10
-599.4204324	C32H45N3O4S
-599.4274605	C35H40N4O3
-599.5263392	C37H54O4
-599.9873126	C15H17I2N5O4
-600.2658243	C18H38N4O15S
-600.3162998	C27H35N5O7S
-601.3737987	C28H39N5O8
-601.414328	C33H44O8
-601.6641693	C36H71NO3
-602.2614234	C23H30N7O9P
-602.3214685	C29H36ClN3O7
-602.3361213	C21H39N7O12
-602.4190203	C34H40N4O4
-602.4540684	C34H48O7
-602.5152744	C40H50O2
-603.1202655	C16H23N5O15P2
-603.2497594	C28H30ClNO10
-603.4299781	C33H46O8
-604.0591	C18H16N6Na2O8S3
-604.3517714	C21H41N7O12
-604.3679831	C23H43N5O12
-604.3896761	C30H42N2O9
-604.5309244	C40H52O2
-605.1359156	C16H25N5O15P2
-605.2541363	C27H30O14
-605.3817975	C31H42O10
-605.4456282	C33H48O8
-606.1035826	C15H24N5O14P3
-606.128037	C17H25N3O16P2
-606.2274214	C30H24O12
-606.230046	C26H28O15
-606.2938766	C28H34O13
-606.3130065	C31H33N3O6S
-606.4215379	C32H46O9
-606.4422145	C33H43N5O4
-606.5465745	C40H54O2
-607.1596715	C17H28N4O15P2
-607.1677774	C18H29N3O15P2
-607.2697864	C27H32O14
-607.3595429	C22H43N5O13
-607.4181243	C32H41N5O5
-608.055402	C13H20N5O16P3
-608.1578413	C26H14N8O7S
-608.2075177	C19H33N3O14P2
-608.2349656	C29H25NO12
-608.2430714	C30H26O12
-608.2456961	C26H30O15
-608.3095267	C28H36O13
-608.4398126	C28H52O12
-608.5622246	C40H56O2
-609.3385365	C32H35NO9
-609.4094567	C29H40N8O5
-610.370171	C32H38N2O8
-611.391075	C35H36N4O4
-611.4925784	C33H54O8
-612.3831964	C36H36N2O5
-612.4684881	C32H52O9
-612.5349433	C30H62O10
-612.9905386	C10H17N5O17P4
-613.2476566	C33H24O10
-613.3805672	C29H44O12
-613.572059	C35H62O6
-614.287397	C34H28O9
-614.3745289	C33H35N5O5
-614.3771536	C29H39N5O8
-614.4815135	C36H50O6
-614.5453441	C38H56O4
-615.0944737	C14H26N3O17P3
-615.1172549	C18H25Cl2N9O4S3
-615.2212921	C22H27N9O7S2
-615.2659313	C29H30O13
-615.3585445	C33H34N4O6
-615.3747562	C35H36N2O6
-616.390179	C33H37N5O5
-616.3982848	C34H38N4O5
-616.4171212	C32H44N2O8
-616.4194722	C30H52O7P2
-616.4333329	C34H46O8
-617.2815814	C29H32O13
-617.345412	C31H38O11
-617.3741946	C33H36N4O6
-617.3904063	C35H38N2O6
-617.5395286	C33H60O8
-617.6671898	C37H72O4
-618.2505246	C17H39N5O14S2
-618.2687643	C29H32ClNO10
-618.3414619	C34H32MgN4O4
-618.4327713	C32H46N2O8
-618.448983	C34H48O8
-619.2307762	C31H24O12
-619.3898446	C33H38N4O6
-619.4248927	C33H46O9
-620.2066859	C30H22O13
-620.2731412	C28H32O14
-620.3278618	C35H36ClNO3S
-620.4646331	C34H50O8
-621.1308302	C16H25N5O16P2
-621.2490509	C27H30O15
-621.4054947	C33H40N4O6
-621.4405428	C33H48O9
-621.5043734	C35H54O7
-622.2249606	C26H28O16
-622.2887913	C28H34O14
-622.4426104	C38H40N4O2
-623.264701	C27H32O15
-623.3735259	C33H38N2O8
-623.4179878	C32H44F3N3O2S
-623.4211447	C33H42N4O6
-624.1386017	C17H27N3O17P2
-624.2061575	C26H27IN6O3
-624.4321026	C32H48O10
-624.5571392	C40H56O3
-624.806539	C11H9I3N2O4
-625.280351	C27H34O15
-625.4367948	C33H44N4O6
-625.4718429	C33H52O9
-626.1890118	C24H27KN4O10S
-626.4100799	C36H38N4O4
-626.6332268	C36H70MgO4
-627.2660655	C20H38N3O16P
-627.2923602	C25H30N8O10
-627.2960011	C27H36O15
-627.4524449	C33H46N4O6
-628.4176241	C35H39N5O4
-628.4552968	C31H51NO10
-629.4599891	C32H47N5O6
-629.4680949	C33H48N4O6
-630.0908197	C28H10O16
-630.3937611	C36H38N2O6
-630.4125975	C34H44O9
-630.5052106	C38H48N4O2
-631.3246766	C31H36O12
-631.6464544	C37H70O5
-632.2190587	C20H32N6O12S2
-632.3931995	C34H38N4O6
-632.4094112	C36H40N2O6
-632.4201417	C33H45NO9
-633.3604668	C35H34MgN4O4
-633.4625067	C30H53NO11
-633.4679879	C35H50O8
-634.1504949	C22H24N6O9S3
-634.2143642	C20H31N4O16P
-634.3774424	C36H38O8
-634.4438976	C34H48O9
-635.1100948	C16H23N5O17P2
-635.483638	C35H52O8
-636.0230648	C17H15N7Na2O8S4
-636.1498351	C17H27N5O16P2
-636.2680558	C28H32O15
-636.3318864	C30H38O13
-636.3957171	C32H44O11
-636.4595477	C34H50O9
-636.5207537	C40H52O4
-637.2439655	C27H30O16
-637.2880073	C33H32FeN4O4
-637.3716268	C31H42O12
-637.3894469	C23H46N6O13
-638.1178663	C17H25N3O18P2
-638.2837059	C28H34O15
-638.3734624	C23H45N5O14
-638.4158321	C31H41N7O6
-638.4239619	C32H47F5O3S
-639.141493	C19H24N8O10S3
-639.3658158	C37H34N2O6
-639.5149381	C35H56O8
-639.8255439	C12H11I3N2O4
-640.2329007	C30H26O14
-640.4882232	C38H50O6
-640.5520538	C40H56O4
-641.2752657	C27H34O16
-641.3840905	C33H40N2O9
-641.4154977	C31H42N6O7
-642.0132545	C20H20I2N2O5
-642.3573756	C36H34N2O7
-642.5677039	C40H58O4
-643.33591	C31H36N2O11
-643.3646925	C33H34N6O6
-643.3809042	C35H36N4O6
-643.397116	C37H38N2O6
-643.4159523	C35H44O9
-644.3091951	C34H30N2O9
-644.4125387	C35H39N5O5
-644.478994	C33H49N5O6
-645.2020303	C25H28N6O7S3
-645.3240813	C35H30MgN4O5
-645.4046602	C36H39N3O6
-645.412766	C37H40N2O6
-646.5038277	C32H58N2O7S
-647.3397314	C35H32MgN4O5
-648.3334671	C31H39NO10S
-648.3395427	C36H36FeN4O2
-648.4150563	C33H45NO10
-648.4869928	C36H52O8
-648.5958177	C42H58N2O
-649.3553814	C35H34MgN4O5
-649.4835792	C36H47N5O4
-650.2092789	C20H31N4O17P
-650.2913621	C34H32FeN4O4
-650.3101347	C24H34N8O12
-650.3749816	C32H42O12
-650.5026429	C36H54O8
-651.4029752	C30H39N9O6
-651.4785526	C35H52O9
-652.3906317	C32H44O12
-652.5182929	C36H56O8
-653.2388802	C27H30O17
-653.3027108	C29H36O15
-654.0883265	C15H24N5O17P3
-654.1808196	C24H26N2O16S
-654.4664714	C32H46N8O5
-655.4039459	C30H47N3O9S
-656.2887893	C23H39NO19
-656.5119203	C40H48N4O2
-658.2257683	C22H32N6O12S2
-658.2855666	C34H32N4O4Zn
-659.1467623	C18H33FeO21
-659.1867521	C25H23N8NaO7S2
-659.2413787	C27H33ClO15
-659.3389305	C32H37NO12
-659.4773222	C33H54O11
-659.6049835	C37H66O7
-660.4317709	C38H42N2O6
-661.1711945	C27H22O18
-661.7401889	C40H79NO3
-662.2326893	C27H29N3O13S
-662.447421	C38H44N2O6
-663.1868446	C27H24O18
-663.4259554	C33H46N2O10
-663.4340612	C34H47NO10
-663.4547379	C35H44N6O5
-663.4558157	C33H50N4O6S
-663.5008323	C26H45N020
-664.3516215	C36H36O10
-664.4099709	C33H45NO11
-664.808725	C15H9I3O5
-665.2024947	C27H26O18
-665.3178546	C31H35N2NaO11
-665.3291396	C25H36N8O12
-665.3858807	C32H43NO12
-665.3913619	C37H40O9
-665.4865997	C37H48N4O5
-665.5044198	C29H52N10O6
-665.7131396	C43H74O2
-665.8403594	C15H12I3NO4
-665.8814996	C6H18O24P6
-666.2396104	C32H26O14
-666.3075371	C21H40N7O14P
-666.3730635	C32H43ClN2O9
-666.4311022	C38H44O8
-667.2875181	C26H35N5O12S
-667.7287897	C43H76O2
-668.5132076	C36H56O9
-668.5570517	C38H59FO6
-669.2976254	C29H36O16
-669.4064503	C35H42N2O9
-669.7201222	C40H75N3O2
-670.1075507	C25H29I2NO3
-670.2262712	C25H27N9O8S2
-670.3318845	C25H43NO18
-671.4353187	C29H55O13P
-672.2865605	C32H32O14
-672.4618407	C36H48N2O8
-672.5068349	C40H48N4O3
-673.4145106	C30H49N3O10S
-674.3022106	C32H34O14
-674.3239651	C31H37N3O10S
-674.3309931	C34H32N4O9
-674.4110355	C38H40N2O7
-674.421766	C35H45NO10
-675.4696122	C37H50O9
-675.5998981	C37H66O8
-676.4374161	C35H47NO10
-676.7591938	C41H81NO3
-677.8596987	C16H13I3N2O3
-679.2455898	C29H30O17
-679.4289758	C34H47NO11
-679.4871884	C32H58NO10P
-681.4067212	C25H48N6O14
-681.5028385	C32H60NO10P
-682.3024518	C21H40N7O15P
-682.3596231	C32H38N6O7S
-682.4924721	C36H54O10
-682.6758581	C41H71NO4
-683.3964453	C32H45NO13
-683.4019266	C37H42O10
-683.590425	C35H69O8P
-684.1795732	C21H27N7O14P2
-684.3181018	C21H42N7O15P
-684.4442916	C34H50O12
-684.6969894	C46H70O
-685.102246	C16H26N5O18P3
-685.1635888	C21H26N6O15P2
-685.2602148	C34H32ClFeN4O4
-685.2913869	C24H36N7O13P
-685.29254	C29H36O17
-685.3286368	C32H40BrN5O5
-685.3375343	C33H36N2O12
-685.4175766	C37H44O10
-685.8577585	C8H22K2O15Sb2
-686.1952233	C21H29N7O14P2
-687.417015	C35H44N2O10
-687.5229833	C32H57N5O9
-687.6273432	C39H68O7
-688.2637166	C32H32O13S
-689.4138287	C37H40N4O7
-689.4164533	C33H44N4O10
-689.4488768	C37H48O10
-689.4695534	C38H45N5O5
-689.4988466	C35H60O7P2
-690.3023745	C24H42O21
-690.3232831	C38H28N4O7
-690.3897384	C36H38N4O8
-690.4166806	C35H45NO11
-690.5271138	C31H53N11O5
-691.4062389	C32H45N5O8S
-691.4456905	C39H44N2O7
-691.5435529	C35H56N6O6
-691.7198493	C45H74O2
-691.7781987	C42H83NO3
-692.2082159	C25H26N9NaO8S2
-692.3127753	C32H36O15
-692.3739813	C38H38O10
-692.7622143	C42H82O4
-692.956869	C10H18N5O20P5
-693.7354994	C45H76O2
-694.3176949	C35H33NO12
-695.4238905	C34H47NO12
-695.482103	C32H58NO11P
-695.8176047	C43H88O3
-696.411902	C33H49N3O7S2
-696.4366886	C36H44N4O8
-697.1541455	C20H29N3O19P2
-697.4977531	C32H60NO11P
-697.5672018	C38H61NO8
-697.7667995	C45H80O2
-698.1997636	C20H34AuO9PS
-698.3697332	C28H38N12O6S
-698.4154502	C33H47NO13
-698.5512174	C38H60O9
-699.1697956	C20H31N3O19P2
-699.2448623	C30H27N3O15
-699.3220481	C25H42N2O19
-700.5030368	C36H56O11
-700.5642428	C42H58O6
-700.691904	C46H70O2
-701.356828	C28H43N5O12S
-701.3962795	C35H42N2O11
-702.4360199	C36H46N2O10
-704.0954163	C17H27N3O20P2S
-704.404051	C36H44O12
-704.4516699	C36H48N2O10
-704.4885583	C39H47N5O5
-704.5576382	C33H61N5O9
-705.5102467	C35H58O12
-705.5658346	C37H65O8P
-706.4252438	C33H47N5O8S
-706.4413123	C38H48CaN2O6
-706.549987	C36H62O11
-707.3317802	C33H38O15
-707.3569511	C31H46Cl2N2O10
-707.5814846	C37H67O8P
-708.2193296	C21H35N7O13P2S
-709.4112609	C35H46O13
-709.4669856	C36H51NO11
-709.5541176	C35H58N6O7
-709.5971347	C37H69O8P
-710.4094556	C25H43N13O10
-710.4428954	C35H49NO12
-711.4907416	C37H54O11
-711.5033124	C37H50N6O6
-711.6127848	C37H71O8P
-714.3546401	C32H42O16
-715.7109089	C47H72O2
-716.4547975	C35H47N5O9
-719.4706748	C37H50N2O10
-719.5766431	C34H63N5O9
-720.1910626	C28H25N6NaO10S2
-721.478219	C36H51N3O10
-722.3455358	C42H32O9
-722.45961	C40H46N2O8
-722.5367958	C35H61NO12
-724.3899684	C44H32N4O4
-724.4439144	C34H50N4O9S
-725.4012369	C34H46ClN3O10
-725.4619003	C36H51NO12
-728.191118	C32H22N6Na2O6S2
-728.3150683	C34H34N2O14
-728.4615659	C36H52O13
-729.1195204	C18H28N5O19P3
-729.2990839	C34H33NO15
-729.6901735	C47H70O3
-730.5033739	C42H48N4O5
-731.3260071	C35H37ClN2O11
-732.3599555	C40H36O11
-732.4740297	C38H50N2O10
-732.5002784	C34H64Cl2N2O6S
-732.5190239	C42H50N4O5
-733.3356333	C26H45NO21
-733.4023205	C37H44O13
-734.0546569	C15H25N5O20P4
-734.4055274	C32H46N8O6S2
-734.433955	C37H47NO12
-734.5634565	C44H50N8
-735.3829225	C37H38N4O10
-736.2432361	C21H35N9O15P2
-736.5160603	C35H59NO13
-737.4786149	C41H48N2O8
-737.4812395	C37H52N2O11
-738.390694	C38H40N2O11
-738.4095303	C36H46O14
-738.4940376	C39H49N5O7
-739.1286908	C24H24N5O15P3
-739.5714507	C36H65NO12
-739.6351445	C39H73O8P
-740.3820264	C35H39N5O11
-740.6399736	C39H67N5O6
-740.666779	C39H76NO7P
-741.4829728	C42H45N5O5
-742.2969575	C30H36N2O18
-742.3769999	C34H44O16
-743.2140122	C21H40O23P2
-743.3340732	C35H36N2O14
-744.7091784	C48H72O3
-745.4272025	C35H46N6O8S
-745.5463276	C34H66NO12P
-745.6877128	C43H74O7
-745.84783	C6H19O27P7
-746.2738675	C21H41N7O17P2
-746.4381603	C34H52N2O12S
-747.4509584	C36H49N5O8S
-747.5380288	C43H52N4O5
-748.3548701	C40H36O12
-748.3793108	C27H47N9O10S2
-748.4689443	C38H50N2O11
-748.4877807	C36H56O14
-749.3972351	C37H44O14
-750.3949608	C27H49N9O10S2
-751.4128852	C37H46O14
-752.1228525	C28H32Cl2O10P2S2
-752.5002444	C38H54N2O11
-754.5321062	C40H58O11
-754.5904556	C37H67NO12
-755.3803547	C35H44O16
-755.5080159	C39H56O12
-755.5663653	C36H65NO13
-756.2762221	C30H34N2O19
-756.6616936	C39H76NO8P
-757.4368891	C37H48N6O5S2
-757.5793908	C40H63NO10
-759.4378127	C41H42N4O8
-759.5016433	C43H48N4O6
-759.6587346	C43H73O6P
-760.3048975	C34H34N2O16
-760.3849399	C38H42O14
-760.4513952	C36H52O15
-760.704093	C48H72O4
-761.2267546	C30H33FeN3O15
-761.5172934	C43H50N4O6
-761.5549661	C39H62O12
-761.7438334	C49H76O3
-762.2687822	C21H41N7O18P2
-762.5782211	C40H68O7P2
-763.5329434	C43H52N4O6
-764.1459036	C21H28N7O17P3
-764.2844322	C21H43N7O18P2
-764.6103565	C40H68O11
-765.1299192	C21H27N6O18P3
-766.1615537	C21H30N7O17P3
-767.402612	C37H42N6O8S
-767.7243283	C51H72O2
-768.4925344	C42H50N2O9
-769.3515134	C34H41NO17
-769.3855452	C28H47N5O18
-769.5511111	C41H60O11
-770.5853702	C37H67NO13
-772.5426709	C40H60O12
-772.5983957	C41H65NO10
-773.208868	C22H35N5O20P2
-773.2169739	C23H36N4O20P2
-773.3270888	C33H40O19
-773.6325179	C38H74NO10P
-773.6963486	C40H80NO8P
-774.3029985	C32H38O20
-775.5980613	C41H66O11
-775.7230979	C49H74O4
-776.1490312	C20H27N10O16P3
-776.3824792	C34H46O18
-776.3912409	C27H51FeN9O12
-776.573971	C40H64O12
-779.304959	C39H32O15
-779.754398	C49H78O4
-780.3761065	C38H38N4O12
-780.3896936	C44H36N2O9
-780.5333347	C37H61NO14
-782.3943813	C34H44N4O15
-783.2724285	C37H30O17
-784.0522308	C17H27N3O23P2S2
-784.5646348	C37H65NO14
-784.570116	C42H62O11
-784.6840533	C41H78NO8P
-785.6043751	C38H69NO13
-786.6360096	C38H72N2O12
-786.6495967	C44H70O9
-787.5616758	C41H62O12
-787.6174006	C42H67NO10
-788.18566	C21H36N7O16P3S
-788.5375855	C40H60O13
-788.6383045	C45H65N3O6
-788.6596287	C40H77O10P
-789.3220034	C33H40O20
-789.5773259	C41H64O12
-790.3617437	C34H44O19
-790.375786	C25H44N13O13P
-790.8059334	C52H82O2
-791.5791152	C37H72O11P2
-791.5929759	C41H66O12
-791.7370024	C15H11I4NO4
-792.4304939	C39H47NO14
-793.6724566	C43H74O10
-793.9111259	C17H22I3N3O8
-794.446144	C39H49NO14
-794.4542498	C40H50O14
-795.5523396	C38H63NO14
-797.7037568	C43H78O10
-798.2721896	C32H38N4O12S3
-799.3720581	C41H38N6O5S2
-799.4264116	C39H44N4O12
-799.7194068	C43H80O10
-801.3438164	C40H41FeN4O6S
-801.6548777	C40H76NO10P
-801.7936382	C53H80O2
-802.1044346	C29H20ClN7O11S3
-802.2765862	C29H36N5O18P
-802.5031262	C35H62NO15P
-802.5806807	C42H64O12
-802.7695479	C52H78O3
-803.2943014	C22H47N5O21S2
-803.3720513	C31H45N6O15P
-803.7343584	C42H84NO8P
-804.2332686	C36H30Cl2N2O13
-804.2922363	C29H38N5O18P
-804.347961	C30H43N6O16P
-804.4553759	C37H49N7O9S
-805.316918	C33H40O21
-805.43933	C45H44O11
-805.5032221	C39H54N6O8S
-805.5722405	C41H64O13
-806.3636111	C30H45N6O16P
-806.9144808	C18H22I3N3O8
-807.5609483	C42H59N3O10
-807.5878906	C41H66O13
-808.0542163	C18H26N4O23P4
-808.3943563	C38H42N8O6S2
-808.5556944	C39H63NO14
-808.9301308	C18H24I3N3O8
-809.6035406	C41H68O13
-809.7119851	C20H10Br4O10S2
-810.5713445	C39H65NO14
-811.3926507	C35H44N4O16
-812.2477151	C27H33N9O15P2
-812.4648145	C40H52O15
-813.7189471	C15H10I4NNaO4
-814.2633651	C27H35N9O15P2
-817.1839294	C22H36N7O17P3S
-817.5784732	C36H72N6O6Tc
-818.1899869	C34H24O22
-818.7644626	C52H78O4
-819.3669659	C31H45N6O16P
-819.6791663	C45H74O10
-820.205637	C34H26O22
-820.3615752	C29H51N3O18P2
-820.655076	C44H72O11
-821.3118326	C33H40O22
-821.3756632	C35H46O20
-821.382616	C31H47N6O16P
-821.5671551	C41H64O14
-821.6784678	C44H76NO8P
-821.8836836	C55H90O
-822.2212871	C34H28O22
-822.6068955	C42H68O13
-822.657139	C38H76N2O14
-823.4337444	C35H48N8O11S
-824.550609	C39H63NO15
-824.9250455	C18H24I3N3O9
-825.3692906	C39H38N4O14
-825.5903494	C40H67NO14
-825.5984552	C41H68O14
-825.7097679	C44H80NO8P
-826.6330078	C42H68N6O6S
-827.3143312	C33H43ClO20
-827.8694278	C49H94O6
-828.5604481	C45H57N3O9
-828.6583106	C41H69N7O8
-828.7706396	C50H83O4P
-829.7410681	C44H84NO8P
-832.1646726	C32H32O16S4
-832.2029343	C23H38N7O17P3S
-832.2351357	C30H44K2O16S2
-834.5624041	C41H63NO14
-834.57051	C42H64O14
-834.6262347	C43H69NO12
-835.2246419	C35H28O22
-835.3618805	C31H45N6O17P
-835.6575955	C45H76O7P2
-835.6740809	C45H74O11
-836.58616	C42H66O14
-836.6499906	C44H72O12
-837.5620697	C41H64O15
-838.5641373	C46H56N4O8
-839.5696139	C40H65NO15
-839.9440504	C19H26I3N3O9
-840.6093543	C41H69NO14
-840.6174601	C42H70O14
-841.3642052	C39H38N4O15
-842.505449	C38H60O18
-842.6331102	C42H72O14
-845.2062892	C24H38N7O17P3S
-845.3150187	C31H45Cl3N6O13
-847.2219392	C24H40N7O17P3S
-847.2547117	C33H34O24
-847.6295895	C44H69NO12
-848.6136051	C44H68O13
-848.8024724	C54H82O4
-849.5895149	C43H66O14
-849.6533455	C45H72O12
-850.4908634	C43H53NO14
-850.5573187	C41H63NO15
-850.6766004	C46H78O7P2
-851.413673	C37H50O20
-852.3330736	C42H30N6O12
-852.5810746	C42H66O15
-854.559052	C46H56N4O9
-854.5886188	C41H67NO15
-854.5967247	C42H68O15
-854.6174014	C43H65N5O10
-854.9630553	C20H28I3N3O9
-856.1153616	C20H28N10O19P4
-856.574702	C46H58N4O9
-858.375327	C30H52O26
-858.4339083	C40H50O18
-860.2252941	C25H40N7O17P3S
-861.2012038	C24H38N7O18P3S
-862.1771135	C23H36N7O19P3S
-862.2328383	C24H41N8O17P3S
-862.2409441	C25H42N7O17P3S
-862.7231556	C44H82O13
-863.2168538	C24H40N7O18P3S
-864.3788495	C31H53N3O19P2
-864.5446891	C42H62O16
-865.3741012	C39H42N2O18
-865.5493814	C43H58N4O12
-865.6401542	C44H71NO13
-866.3581168	C39H41NO19
-866.4983489	C43H49N7O10
-867.6000795	C43H68O15
-868.5383165	C46H54N4O10
-868.6259591	C40H78O13P2
-869.6076237	C42H69NO15
-870.3624747	C40H38N4O16
-870.3899596	C43H42ClN3O12
-870.5539666	C46H56N4O10
-871.6520563	C44H69N5O10
-872.1778846	C23H38N3O25P3
-872.4056096	C43H44ClN3O12
-873.4529132	C41H52O18
-875.244299	C26H42N7O17P3S
-876.2121028	C24H39N8O18P3S
-876.2202087	C25H40N7O18P3S
-876.4094249	C40H44N4O16
-876.4975731	C45H53NO14
-877.1961184	C24H38N7O19P3S
-877.2518432	C25H43N8O17P3S
-877.259949	C26H44N7O17P3S
-877.5098656	C36H65N3O15P2
-877.6621181	C41H76N2O15
-878.2358587	C25H42N7O18P3S
-878.4387236	C38H48N8O12S
-879.3669529	C45H38O16
-879.6857372	C43H81O13P
-880.2515088	C25H44N7O18P3S
-880.3931061	C40H44N2O18
-881.2912492	C26H48N7O17P3S
-883.3344224	C43H36O18
-885.6080196	C47H66O13
-886.3848742	C43H42ClN3O13
-887.2079135	C26H38N7O18P3S
-887.4499979	C33H54N6O20
-887.4960084	C43H56O17
-887.5400501	C49H58FeN4O5
-888.1051908	C20H28N10O21P4
-888.4005243	C43H44ClN3O13
-888.4625589	C48H48N4O6S2
-890.073222	C20H26N8O23P4
-890.2633039	C27H44N7O17P3S
-891.2392136	C26H42N7O18P3S
-892.2151233	C25H40N7O19P3S
-892.2789539	C27H46N7O17P3S
-892.5958314	C46H62N4O11
-893.2548636	C26H44N7O18P3S
-894.4199896	C40H46N4O17
-895.2705137	C26H46N7O18P3S
-896.3880208	C40H44N2O19
-896.5282528	C44H52N8O10
-896.6540738	C45H73NO14
-899.2353586	C28H40N7O17P3S
-900.4886327	C47H51NO14
-900.5658185	C42H66O18
-901.2510086	C28H42N7O17P3S
-901.4085858	C32H55NO26
-901.850014	C55H91O4P
-902.5166217	C34H60N8O18
-903.1850695	C26H38N7O17P3S2
-903.2028281	C26H38N7O19P3S
-903.2666587	C28H44N7O17P3S
-904.3365468	C42H38O20
-904.4317846	C42H46N4O16
-904.6528434	C43H75NO16
-905.2184781	C26H40N7O19P3S
-905.2823088	C28H46N7O17P3S
-905.5065731	C43H58O18
-905.6342343	C47H70O14
-906.2582185	C27H44N7O18P3S
-906.3386098	C36H42N2O23
-906.4105463	C39H49NO21
-906.4474347	C42H48N4O16
-907.2341282	C26H42N7O19P3S
-907.2763412	C28H43N5O23P2
-908.2100379	C25H40N7O20P3S
-908.2738686	C27H46N7O18P3S
-908.73697	C50H84O7P2
-909.4633121	C44H51NO17
-909.4825672	C47H58FeN4O4S2
-911.3567821	C45H38O18
-911.5472577	C45H54N8O10
-912.6489884	C45H73NO15
-913.633004	C45H72O16
-913.6968346	C47H78O14
-914.2462576	C28H41N8O17P3S
-914.2543635	C29H42N7O17P3S
-914.5450831	C42H64O19
-915.2302732	C28H40N7O18P3S
-916.5597168	C36H64N8O17
-917.2259367	C28H39FN7O17P3S
-917.2459233	C28H42N7O18P3S
-917.7004081	C55H62N10
-919.1799841	C26H38N7O18P3S2
-919.2615733	C28H44N7O18P3S
-920.237483	C27H42N7O19P3S
-920.3013137	C29H48N7O17P3S
-920.6532392	C48H72O14
-920.7034828	C44H80N2O15
-921.2691175	C27H45N8O18P3S
-921.2772234	C28H46N7O18P3S
-921.3010328	C28H48N8O17P3S
-921.3863973	C39H42N6O18
-921.4664396	C43H50N4O16
-921.8818468	C59H90O4
-922.2531331	C27H44N7O19P3S
-922.3169637	C29H50N7O17P3S
-923.2290428	C26H42N7O20P3S
-923.3166829	C28H50N8O17P3S
-923.5197624	C39H64O22
-923.5935392	C45H62N6O12
-923.6097509	C47H64N4O12
-923.644799	C47H72O15
-925.2446929	C26H44N7O20P3S
-925.5615704	C45H60N4O14
-926.4209681	C42H52FeN8O6S2
-926.4341364	C43H49NO19
-927.2577183	C30H42N7O17P3S
-928.643903	C45H73NO16
-929.2652625	C29H43N8O17P3S
-929.6279186	C45H72O17
-929.6755375	C45H76N2O15
-929.7069446	C43H78N6O13
-930.2492781	C29H42N7O18P3S
-930.4338664	C34H54Cl2N10O14
-931.6354628	C44H73NO17
-931.6435687	C45H74O17
-932.2568223	C28H43N8O18P3S
-933.1963863	C28H39ClN7O17P3S
-935.2564879	C28H44N7O19P3S
-935.4332023	C45H44Cl2N10O6
-935.6722441	C49H74O14
-936.081692	C20H29N10O22P5
-936.2323977	C27H42N7O20P3S
-936.2962283	C29H48N7O18P3S
-937.272138	C28H46N7O19P3S
-937.3359686	C30H52N7O17P3S
-937.4584976	C34H57N5O23
-937.4613542	C43H50N4O17
-938.2480477	C27H44N7O20P3S
-938.3118784	C29H50N7O18P3S
-938.4425132	C34H56N4O24
-938.4453698	C43H49N3O18
-938.5010946	C44H54N4O16
-938.6638039	C48H74O15
-939.3115975	C28H50N8O18P3S
-940.5167446	C44H56N4O16
-941.4221894	C31H51N12O18P
-942.3571146	C40H42N2O22
-942.6231676	C45H71NO17
-943.2526329	C30H42N7O18P3S
-945.268283	C30H44N7O18P3S
-945.7041794	C55H70MgN4O5
-946.2441927	C29H42N7O19P3S
-946.3080233	C31H48N7O17P3S
-946.6544677	C45H75NO17
-947.7198294	C55H72MgN4O5
-948.3236734	C31H50N7O17P3S
-948.675599	C50H74O14
-949.9680372	C63H98O2
-950.3393235	C31H52N7O17P3S
-951.2514026	C28H44N7O20P3S
-951.3152332	C30H50N7O18P3S
-951.6033281	C47H68O17
-952.3549735	C31H54N7O17P3S
-952.4803591	C44H52N4O17
-953.264428	C32H42N7O17P3S
-953.2670526	C28H46N7O20P3S
-953.6828088	C49H76O15
-954.5420813	C46H60N4O13S
-956.7643571	C56H76N4O6
-957.4850059	C39H54N10O14S
-957.8391456	C57H88O8
-958.3017856	C44H34O22
-958.3510767	C42H44FeN4O16
-958.7800072	C56H78N4O6
-959.2475476	C30H42N7O19P3S
-959.6659284	C47H76O17
-960.383891	C42H46O23
-961.6734726	C46H77NO17
-961.699094	C55H70MgN4O6
-962.302938	C31H48N7O18P3S
-963.714744	C55H72MgN4O6
-964.3104822	C30H49N8O18P3S
-964.318588	C31H50N7O18P3S
-964.7207571	C46H82N2O16
-964.7262384	C51H79NO13
-965.649048	C45H76O19
-965.7303941	C55H74MgN4O6
-966.3342381	C31H52N7O18P3S
-967.1574139	C28H38Cl2N7O17P3S
-967.499364	C45H54N4O17
-968.2222269	C27H42N7O22P3S
-968.3498882	C31H54N7O18P3S
-970.6455273	C47H73NO17
-972.6611774	C47H75NO17
-974.2665525	C31H44N7O19P3S
-974.6849333	C48H78O17
-975.2087794	C41H26O26
-976.5161811	C37H61N7O21
-977.2244294	C41H28O26
-977.3219429	C32H50N7O18P3S
-977.6764931	C47H78O18
-978.3616832	C33H54N7O17P3S
-979.2400795	C41H30O26
-979.6921431	C47H80O18
-980.3135027	C31H50N7O19P3S
-980.3773333	C33H56N7O17P3S
-981.2557296	C41H32O26
-981.4786286	C45H52N4O18
-981.8163444	C55H92O7P2
-982.3929833	C33H58N7O17P3S
-987.2699073	C32H44N7O19P3S
-988.6641979	C48H76O18
-989.2855574	C32H46N7O19P3S
-989.6401076	C47H74O19
-990.2614671	C31H44N7O20P3S
-990.6798479	C48H78O18
-992.2771171	C31H46N7O20P3S
-992.695498	C48H80O18
-993.219344	C41H28O27
-994.711148	C48H82O18
-995.2349941	C41H30O27
-995.3325076	C32H52N7O19P3S
-996.3722479	C33H56N7O18P3S
-996.843592	C56H93O9P
-997.2506442	C41H32O27
-998.387898	C33H58N7O18P3S
-1000.273262	C33H44N7O19P3S
-1003.264822	C32H44N7O20P3S
-1004.402305	C34H58N4O24S2
-1005.280472	C32H46N7O20P3S
-1005.674499	C55H74N4O6Zn
-1008.738032	C48H84N2O17
-1010.415343	C35H60N7O17P3S
-1012.430993	C35H62N7O17P3S
-1012.583553	C60H56O11
-1016.260071	C32H43N8O20P3S
-1017.424828	C34H58N5O26P
-1020.526366	C44H64O24
-1021.403048	C36H58N7O17P3S
-1023.668888	C44H77N5O19
-1023.757036	C49H86N2O17
-1024.296807	C31H50N9O18P3S2
-1025.684265	C46H83N3O15P2
-1026.448279	C36H62O31
-1028.425908	C35H62N7O18P3S
-1031.705562	C51H80O18
-1032.681472	C50H78O19
-1033.657382	C49H76O20
-1036.648942	C48H76O21
-1040.403458	C46H46N2O23
-1040.453353	C37H64N7O17P3S
-1041.298977	C36H46N7O19P3S
-1041.391433	C34H55N7O24P2
-1042.469003	C37H66N7O17P3S
-1043.314627	C36H48N7O19P3S
-1043.713155	C49H74N10O12
-1049.580715	C43H66N12O12S2
-1051.545828	C42H67N5O21S
-1056.448268	C37H64N7O18P3S
-1057.293891	C36H46N7O20P3S
-1057.751512	C54H87NO12P2
-1058.463918	C37H66N7O18P3S
-1058.711346	C50H81N4O15P
-1059.309541	C36H48N7O20P3S
-1060.601823	C43H77N3O20P2
-1066.460063	C39H64N7O17P3S
-1067.604867	C49H66N10O10S2
-1067.718586	C50H83NO20
-1068.475713	C39H66N7O17P3S
-1069.922966	C61H101O9P
-1070.466639	C46H58Cl2N4O18
-1070.491363	C39H68N7O17P3S
-1072.507013	C39H70N7O17P3S
-1072.917288	C55H103NO15
-1074.650967	C53H67N9O10S
-1078.177195	C66H125NO5
-1081.705956	C51H82O21
-1083.713501	C50H83NO21
-1084.632669	C42H74N8O22
-1086.384617	C35H55N7O26P2
-1087.29245	C31H51N10O21P3S2
-1088.860943	C53H93N7O13
-1090.186986	C32H35ClN18O10S6
-1094.482422	C41H66N7O17P3S
-1095.702257	C50H71N13O12
-1096.498072	C41H68N7O17P3S
-1098.676781	C50H80O23
-1099.716521	C51H84O22
-1100.692431	C50H82O23
-1101.505282	C40H70N7O18P3S
-1102.545023	C41H74N7O17P3S
-1102.705456	C54H80O20
-1102.776376	C51H85N7O16
-1107.817088	C52H97NO18S
-1108.744301	C53H85NO20
-1109.72914	C50H73N15O11
-1111.743966	C53H86O21
-1113.695786	C51H82O23
-1114.581278	C46H64N14O12S2
-1115.711436	C51H84O23
-1117.128911	C72H116O4
-1118.539937	C41H74N7O18P3S
-1119.432403	C35H59Al3N10O24
-1126.739588	C52H90CaO20
-1129.592177	C46H65N15O12S2
-1136.647105	C52H76O24
-1144.773536	C54H90O22
-1145.412791	C37H58N8O27P2
-1145.61916	C53H72O24
-1148.730275	C55H83NO21
-1149.889297	C61H102O12P2
-1153.75452	C53H76N14O12
-1154.766495	C58H84N2O18
-1157.71306	C53H84O24
-1159.579091	C20H14I6N2O6
-1164.559855	C55H59N5O20
-1164.812321	C54H90N6O18
-1167.769849	C59H84N2O18
-1168.248701	C48H32O32
-1176.510667	C42H70O35
-1185.497781	C40H68N5O31P
-1185.73542	C55H86O24
-1186.548271	C45H74N7O19P3S
-1186.808918	C52H100N2O20P2
-1189.48579	C40H65N9O26P2
-1190.395167	C49H51N13O8S6
-1191.371077	C48H49N13O9S6
-1192.922556	C63H105NO12P2
-1194.521232	C42H72O36
-1200.416821	C77H150O3
-1200.527536	C45H72N7O20P3S
-1200.907228	C60H92N12O10
-1201.730334	C55H86O25
-1202.543186	C45H74N7O20P3S
-1216.713287	C62H79ClN4O13S
-1219.459969	C40H63N9O28P2
-1228.531039	C42H71N6O31P
-1229.589636	C48H78N7O19P3S
-1231.605286	C48H80N7O19P3S
-1234.478974	C41H65N9O28P2
-1236.757542	C55H75N17O13
-1237.601845	C22H18I6N2O9
-1237.805388	C57H80N16O12
-1239.700659	C57H82O26
-1243.844232	C56H85N17O12
-1245.58455	C48H78N7O20P3S
-1247.6002	C48H80N7O20P3S
-1252.705622	C48H84N8O27
-1252.770469	C56H92O27
-1261.579465	C48H78N7O21P3S
-1263.532968	C43H70N10O27P2
-1263.595115	C48H80N7O21P3S
-1264.049368	C62H111N11O12
-1267.789474	C57H94O27
-1267.843398	C59H84N16O12
-1272.318935	C51H43N13O12S6
-1277.052723	C63H111N11O12
-1277.635438	C24H20I6N4O8
-1280.792828	C58H94O27
-1281.768738	C57H92O28
-1284.760298	C56H92O29
-1285.800038	C57H96O28
-1288.657671	C54H74N8O25
-1291.780533	C59H92O27
-1292.059145	C34H30ClFeN4O4.2H
-1292.646337	C24H21I6N5O8
-1295.811833	C59H96O27
-1298.500022	C54H52N16O16S2
-1313.672779	C26H26I6N2O10
-1314.452581	C54H52N16O16S2
-1316.836475	C62H86N12O16
-1316.989238	C62H114N2O23
-1327.801663	C59H96O29
-1335.876049	C66H87N13O13
-1345.445928	C56H55N15O10S6
-1347.218002	C51H40N6O23S6
-1356.909581	C63H91N17O13
-1358.21462	C36H46N16Na4O21S6
-1360.995508	C69H115NO17P2
-1369.332236	C58H44Cl3N7O21S
-1371.289842	C76H142O15
-1377.744659	C58H85CoN16O14P
-1381.830732	C63H98O29
-1382.745436	C56H94O35
-1387.603909	C86H172O6
-1387.857045	C66H83N17O13
-1388.88868	C66H86N18O12
-1390.772331	C62H88CoN13O14P
-1393.11576	C68H129N2O20P
--- a/databases/bmrb-heavy_nitrogen.tsv	Tue Jul 10 17:58:35 2018 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6076 +0,0 @@
-16.03130013	CH4
-26.01565006	C2H2
-28.00793393	CHN
-28.03130013	C2H4
-30.01056469	CH2O
-32.02621475	CH4O
-32.03923406	CH5N
-34.0218783	CH3F
-42.04695019	C3H6
-44.00284855	CHNO
-44.01586786	CH2N2
-44.02621475	C2H4O
-44.03923406	C2H5N
-46.00547931	CH2O2
-46.01849862	CH3NO
-46.04186481	C2H6O
-46.05488412	C2H7N
-48.00337082	CH4S
-54.01056469	C3H2O
-54.02358399	C3H3N
-56.02621475	C3H4O
-58.00547931	C2H2O2
-58.04186481	C3H6O
-58.05488412	C3H7N
-59.01330434	C2H3O2
-59.98000462	CHNS
-60.02112937	C2H4O2
-60.03414868	C2H5NO
-60.05751488	C3H8O
-60.07053419	C3H9N
-61.99232781	C2H3Cl
-62.00039393	CH2O3
-62.01341324	CH3NO2
-62.01902088	C2H6S
-62.02643255	CH4N2O
-62.03677944	C2H6O2
-62.04979875	C2H7NO
-62.06281805	C2H8N2
-68.02621475	C4H4O
-70.00547931	C3H2O2
-70.03151793	C3H4N2
-70.04186481	C4H6O
-70.05488412	C4H7N
-72.02112937	C3H4O2
-72.03414868	C3H5NO
-72.04716799	C3H6N2
-72.05751488	C4H8O
-72.07053419	C4H9N
-74.00039393	C2H2O3
-74.01565006	C6H2
-74.03677944	C3H6O2
-74.04979875	C3H7NO
-74.07316494	C4H10O
-74.08618425	C4H11N
-75.99828544	C2H4OS
-76.01604399	C2H4O3
-76.0290633	C2H5NO2
-76.03467095	C3H8S
-76.04208261	C2H6N2O
-76.0524295	C3H8O2
-76.05510192	C2H7N3
-76.06544881	C3H9NO
-76.07846812	C3H10N2
-77.03912516	C6H5
-77.98724243	C2H3ClO
-78.00358862	CH4N2S
-78.01170754	C2H3FO2
-78.0139355	C2H6OS
-78.02134717	CH4N2O2
-78.02695481	C2H7NS
-78.03436648	CH5N3O
-78.04695019	C6H6
-80.00289249	C2H5ClO
-80.03923406	C5H5N
-82.03151793	C4H4N2
-83.95335548	CH2Cl2
-83.98233857	CHNaO3
-84.02112937	C4H4O2
-84.04716799	C4H6N2
-84.05751488	C5H8O
-84.07053419	C5H9N
-84.09390039	C6H12
-86.02643255	C3H4N2O
-86.03677944	C4H6O2
-86.03945186	C3H5N3
-86.04979875	C4H7NO
-86.07316494	C5H10O
-86.08618425	C5H11N
-86.10955045	C6H14
-88.01604399	C3H4O3
-88.0290633	C3H5NO2
-88.03173572	C2H4N4
-88.0524295	C4H8O2
-88.06544881	C4H9NO
-88.07846812	C4H10N2
-88.08881501	C5H12O
-88.10183432	C5H13N
-89.98724243	C3H3ClO
-89.99530855	C2H2O4
-90.00832786	C2H3NO3
-90.0139355	C3H6OS
-90.03169406	C3H6O3
-90.04471337	C3H7NO2
-90.05032101	C4H10S
-90.05773268	C3H8N2O
-90.06807957	C4H10O2
-90.09411818	C4H12N2
-91.99320006	C2H4O2S
-92.00289249	C3H5ClO
-92.03699723	C2H6N2O2
-92.04734412	C3H8O3
-92.05001654	C2H7N3O
-92.06036343	C3H9NO2
-92.06260026	C7H8
-92.12157361	C5H13N
-93.93770542	C2Cl2
-93.98215705	C2H3ClO2
-93.99109157	C2H6S2
-94.00885013	C2H6O2S
-94.04186481	C6H6O
-94.05488412	C6H7N
-95.94782193	CH4Se
-95.95335548	C2H2Cl2
-95.98811468	CH4O3S
-96.02112937	C5H4O2
-96.03414868	C5H5NO
-96.03752836	C6H5F
-96.04716799	C5H6N2
-96.05751488	C6H8O
-97.96900555	C2H4Cl2
-97.97701124	C2H3KO2
-98.01341324	C4H3NO2
-98.07316494	C6H10O
-100.0290633	C4H5NO2
-100.0420826	C4H6N2O
-100.0524295	C5H8O2
-100.0551019	C4H7N3
-100.0654488	C5H9NO
-100.088815	C6H12O
-100.1018343	C6H13N
-102.0213472	C3H4N2O2
-102.0316941	C4H6O3
-102.0447134	C4H7NO2
-102.0577327	C4H8N2O
-102.0680796	C5H10O2
-102.0810989	C5H11NO
-102.1174844	C6H15N
-104.0109586	C3H4O4
-104.0192387	C3H6N2S
-104.0239779	C3H5NO3
-104.0369972	C3H6N2O2
-104.0392341	C7H5N
-104.0473441	C4H8O3
-104.0603634	C4H9NO2
-104.0626003	C8H8
-104.0733827	C4H10N2O
-104.1097682	C5H14N2
-105.9821571	C3H3ClO2
-106.0088501	C3H6O2S
-106.0162618	C2H4N2O3
-106.0266087	C3H6O4
-106.0292811	C2H5N3O2
-106.0315179	C6H4N2
-106.039628	C3H7NO3
-106.0418648	C7H6O
-106.0526473	C3H8N2O2
-106.0553197	C2H7N5
-106.0582549	C4H11NS
-106.0760135	C4H11NO2
-106.0782503	C8H10
-108.0211294	C6H4O2
-108.0238018	C5H3N3
-108.0341487	C6H5NO
-108.0352915	C3H6FNO2
-108.0575149	C7H8O
-108.0705342	C7H9N
-109.9351599	C2FeN2
-109.963472	C2H6Se
-109.9690055	C3H4Cl2
-110.0167841	C2H7NO2S
-110.0194565	CH6N4S
-110.0367794	C6H6O2
-110.0497987	C6H7NO
-110.0628181	C6H8N2
-110.062862	C4H12ClN
-110.0861843	C7H11N
-111.9830293	CH4O4S
-111.9925452	CH5O4P
-112.0055645	CH6NO3P
-112.0079779	C6H5Cl
-112.016044	C5H4O3
-112.0290633	C5H5NO2
-112.0420826	C5H6N2O
-112.0454623	C6H6FN
-112.0524295	C6H8O2
-112.0551019	C5H7N3
-113.9953086	C4H2O4
-114.0213472	C4H4N2O2
-114.0316941	C5H6O3
-114.0343665	C4H5N3O
-114.0447134	C5H7NO2
-114.050321	C6H10S
-114.0680796	C6H10O2
-114.070752	C5H9N3
-114.0810989	C6H11NO
-114.1044651	C7H14O
-114.1408506	C8H18
-116.0109586	C4H4O4
-116.0239779	C4H5NO3
-116.0369972	C4H6N2O2
-116.0473441	C5H8O3
-116.0500165	C4H7N3O
-116.0603634	C5H9NO2
-116.0733827	C5H10N2O
-116.0837296	C6H12O2
-117.9143832	CHCl3
-117.9902232	C3H2O5
-118.0032425	C3H3NO4
-118.0266087	C4H6O4
-118.039628	C4H7NO3
-118.0548841	C8H7N
-118.0629942	C5H10O3
-118.0760135	C5H11NO2
-118.0782503	C9H10
-118.0890328	C5H12N2O
-119.0110675	C3H4NO4
-119.9881147	C3H4O3S
-120.0058732	C3H4O5
-120.0067416	C4H8S2
-120.0141533	C3H6N2OS
-120.0188925	C3H5NO4
-120.0245002	C4H8O2S
-120.0319119	C3H6N2O3
-120.0375195	C4H9NOS
-120.0422587	C4H8O4
-120.0449312	C3H7N3O2
-120.047168	C7H6N2
-120.0552781	C4H9NO3
-120.0575149	C8H8O
-120.0682974	C4H10N2O2
-120.0939004	C9H12
-122.0167841	C3H7NO2S
-122.0367794	C7H6O2
-122.0497987	C7H7NO
-122.0579088	C4H10O4
-122.0628181	C7H8N2
-122.0709281	C4H11NO3
-122.0731649	C8H10O
-122.0861843	C8H11N
-123.9505508	CH5AsO2
-123.9830293	C2H4O4S
-123.9925452	C2H5O4P
-124.0016563	C3H8OS2
-124.005741	C3H6ClNO2
-124.0113047	C6H5NS
-124.016044	C6H4O3
-124.0290633	C6H5NO2
-124.0317357	C5H4N4
-124.0420826	C6H6N2O
-124.0524295	C7H8O2
-124.0784681	C7H10N2
-125.9631623	C2H6S3
-125.9718097	CH3O5P
-125.9986794	C2H6O4S
-126.0081952	C2H7O4P
-126.0116987	C2H7NO3S
-126.0212145	C2H8NO3P
-126.0236279	C7H7Cl
-126.0316941	C6H6O3
-126.0343665	C5H5N3O
-126.0447134	C6H7NO2
-126.0577327	C6H8N2O
-126.0680796	C7H10O2
-126.1044651	C8H14O
-126.1174844	C8H15N
-127.9028404	CH2BrCl
-127.9795702	C3H6Cl2O
-128.0028925	C6H5ClO
-128.0159118	C6H6ClN
-128.0239779	C5H5NO3
-128.0369972	C5H6N2O2
-128.0473441	C6H8O3
-128.0500165	C5H7N3O
-128.0603634	C6H9NO2
-128.0626003	C10H8
-128.0837296	C7H12O2
-128.086402	C6H11N3
-128.0967489	C7H13NO
-128.1201151	C8H16O
-128.1331344	C8H17N
-129.9143832	C2HCl3
-130.0162618	C4H4N2O3
-130.0266087	C5H6O4
-130.0292811	C4H5N3O2
-130.039628	C5H7NO3
-130.0423004	C4H6N4O
-130.0526473	C5H8N2O2
-130.0548841	C9H7N
-130.0629942	C6H10O3
-130.0656666	C5H9N3O
-130.0760135	C6H11NO2
-130.0890328	C6H12N2O
-130.0993797	C7H14O2
-130.1020521	C6H13N3
-130.112399	C7H15NO
-130.1357652	C8H18O
-130.1487845	C8H19N
-132.0058732	C4H4O5
-132.0085457	C3H3N3O3
-132.0119253	C4H3FN2O2
-132.0188925	C4H5NO4
-132.021565	C3H4N4O2
-132.0245002	C5H8O2S
-132.0271726	C4H7N3S
-132.0345843	C3H5N5O
-132.0422587	C5H8O4
-132.0476036	C3H6N6
-132.0552781	C5H9NO3
-132.0575149	C9H8O
-132.0682974	C5H10N2O2
-132.0705342	C9H9N
-132.0786443	C6H12O3
-132.0813167	C5H11N3O
-132.0916636	C6H13NO2
-132.0939004	C10H12
-132.1046829	C6H14N2O
-133.96264	C3H3NOS2
-134.0111764	C3H4N2O4
-134.0215233	C4H6O5
-134.0345426	C4H7NO4
-134.0401503	C5H10O2S
-134.0475619	C4H8N2O3
-134.0497987	C8H7NO
-134.0531696	C5H11NOS
-134.0579088	C5H10O4
-134.0605812	C4H9N3O2
-134.0628181	C8H8N2
-134.0731649	C9H10O
-134.0839474	C5H12N2O2
-134.0861843	C9H11N
-134.0866198	C4H11N5
-134.0969667	C5H13N3O
-134.1095504	C10H14
-134.109986	C5H14N4
-134.1333522	C6H17N3
-136.0194148	C4H8O3S
-136.0268265	C3H6N2O4
-136.0317357	C6H4N4
-136.0324341	C4H9NO2S
-136.0371734	C4H8O5
-136.0398458	C3H7N3O3
-136.0501927	C4H9NO4
-136.0524295	C8H8O2
-136.0528651	C3H8N4O2
-136.0551019	C7H7N3
-136.063212	C4H10N2O3
-136.0654488	C8H9NO
-136.0735589	C5H12O4
-136.0818389	C5H14N2S
-136.088815	C9H12O
-136.1018343	C9H13N
-136.1252005	C10H16
-136.9352688	C3FeN3
-138.0081952	C3H7O4P
-138.0316941	C7H6O3
-138.0447134	C7H7NO2
-138.0473858	C6H6N4
-138.0680796	C8H10O2
-138.0810989	C8H11NO
-138.0941182	C8H12N2
-138.1044651	C9H14O
-139.9454654	CH5AsO3
-139.9779439	C2H4O5S
-139.9874598	C2H5O5P
-140.0028925	C7H5ClO
-140.0109586	C6H4O4
-140.0238453	C3H9O4P
-140.0239779	C6H5NO3
-140.0266503	C5H4N4O
-140.0273487	C3H9NO3S
-140.0273576	C7H5FO2
-140.0368646	C3H10NO3P
-140.0369972	C6H6N2O2
-140.0396697	C5H5N5
-140.0402443	C4H10FO2P
-140.0473441	C7H8O3
-140.0500165	C6H7N3O
-140.0603634	C7H9NO2
-140.0630359	C6H8N4
-140.0733827	C7H10N2O
-140.0837296	C8H12O2
-140.0967489	C8H13NO
-140.1331344	C9H17N
-141.9758354	C2H6O3S2
-141.9797436	CH4NO5P
-142.0032425	C5H3NO4
-142.0059149	C4H2N4O2
-142.0088501	C6H6O2S
-142.0161292	C2H8NO4P
-142.0185426	C7H7ClO
-142.0266087	C6H6O4
-142.039628	C6H7NO3
-142.0526473	C6H8N2O2
-142.0629942	C7H10O3
-142.0656666	C6H9N3O
-142.0760135	C7H11NO2
-142.0782503	C11H10
-142.0786859	C6H10N4
-142.0993797	C8H14O2
-142.112399	C8H15NO
-142.1487845	C9H19N
-143.9978071	C6H5ClO2
-144.0319119	C5H6N2O3
-144.0341926	C7H9ClO
-144.0375195	C6H9NOS
-144.0422587	C6H8O4
-144.0552781	C6H9NO3
-144.0575149	C10H8O
-144.0608857	C7H12OS
-144.0682974	C6H10N2O2
-144.0705342	C10H9N
-144.0786443	C7H12O3
-144.0813167	C6H11N3O
-144.0916636	C7H13NO2
-144.1150298	C8H16O2
-144.1280491	C8H17NO
-145.1215121	C6H15N3O
-145.9092978	C2HCl3O
-145.9456833	C3H5Cl3
-145.9690055	C6H4Cl2
-145.990091	C5H4ClNO2
-146.0134572	C6H7ClO2
-146.0167841	C5H7NO2S
-146.0215233	C5H6O5
-146.0223917	C6H10S2
-146.0345426	C5H7NO4
-146.0367794	C9H6O2
-146.0401503	C6H10O2S
-146.0497987	C9H7NO
-146.0579088	C6H10O4
-146.0709281	C6H11NO3
-146.0839474	C6H12N2O2
-146.1306798	C8H18O2
-147.9249478	C2H3Cl3O
-147.9846556	C6H6Cl2
-147.9927217	C5H5ClO3
-148.0007879	C4H4O6
-148.0090679	C4H6N2O2S
-148.0194148	C5H8O3S
-148.0268265	C4H6N2O4
-148.0290633	C8H5NO2
-148.0294989	C3H5N5O2
-148.0324341	C5H9NO2S
-148.0371734	C5H8O5
-148.0420826	C8H6N2O
-148.0501927	C5H9NO4
-148.0524295	C9H8O2
-148.063212	C5H10N2O3
-148.0654488	C9H9NO
-148.0735589	C6H12O4
-148.0762313	C5H11N3O2
-148.0784681	C9H10N2
-148.0865782	C6H13NO3
-148.088815	C10H12O
-148.0892506	C5H12N4O
-148.0995975	C6H14N2O2
-148.1018343	C10H13N
-148.1126168	C6H15N3O
-148.1490023	C7H19N3
-149.9746587	C3H2ClN3O2
-149.9809208	C4H6O2S2
-149.987678	C3H3ClN4O
-150.0006973	C3H4ClN5
-150.0164379	C4H6O6
-150.0213911	C5H8ClNO2
-150.0269548	C8H7NS
-150.0294572	C4H7NO5
-150.0303256	C5H11NS2
-150.0316941	C8H6O3
-150.0424765	C4H8N2O4
-150.0447134	C8H7NO2
-150.0480842	C5H11NO2S
-150.0528234	C5H10O5
-150.0536918	C6H14S2
-150.0554959	C4H9N3O3
-150.0680796	C9H10O2
-150.0810989	C9H11NO
-150.0941182	C9H12N2
-150.1022282	C6H15NO3
-150.1044651	C10H14O
-150.1174844	C10H15N
-150.1412862	C6H18N4
-151.9779439	C3H4O5S
-151.9874598	C3H5O5P
-151.9965709	C4H8O2S2
-152.0159118	C8H6ClN
-152.0239779	C7H5NO3
-152.0449388	C6H9NaO3
-152.0473441	C8H8O3
-152.0603634	C8H9NO2
-152.0684735	C5H12O5
-152.0837296	C9H12O2
-152.0967489	C9H13NO
-152.1201151	C10H16O
-152.1331344	C10H17N
-153.9888547	C3H7NO2S2
-154.0031098	C3H7O5P
-154.0066133	C3H7NO4S
-154.0122209	C4H10O2S2
-154.0185426	C8H7ClO
-154.0266087	C7H6O4
-154.0394954	C4H11O4P
-154.039628	C7H7NO3
-154.0525147	C4H12NO3P
-154.0526473	C7H8N2O2
-154.0553197	C6H7N5
-154.0629942	C8H10O3
-154.0760135	C8H11NO2
-154.0782503	C12H10
-154.0993797	C9H14O2
-154.112399	C9H15NO
-154.1357652	C10H18O
-155.9574628	C6H5Br
-155.9823744	C2H5O6P
-155.9914855	C3H8O3S2
-155.9978071	C7H5ClO2
-156.0038064	C5H4N4S
-156.0058732	C6H4O5
-156.0108264	C7H6ClNO
-156.0187599	C3H9O5P
-156.0188925	C6H5NO4
-156.021565	C5H4N4O2
-156.0238897	C5H11Cl2N
-156.0317792	C3H10NO4P
-156.0319119	C6H6N2O3
-156.0345843	C5H5N5O
-156.0422587	C7H8O4
-156.0575149	C11H8O
-156.0709698	C6H9N5
-156.0813167	C7H11N3O
-156.0916636	C8H13NO2
-156.0939004	C12H12
-156.1150298	C9H16O2
-156.1280491	C9H17NO
-156.1514153	C10H20O
-157.990091	C6H4ClNO2
-158.0111764	C5H4N2O4
-158.0134572	C7H7ClO2
-158.0215233	C6H6O5
-158.0298034	C6H8N2OS
-158.0345426	C6H7NO4
-158.0367794	C10H6O2
-158.0475619	C6H8N2O3
-158.0579088	C7H10O4
-158.0605812	C6H9N3O2
-158.0628181	C10H8N2
-158.0709281	C7H11NO3
-158.0731649	C11H10O
-158.0942943	C8H14O3
-158.1073136	C8H15NO2
-158.1306798	C9H18O2
-158.1670653	C10H22O
-159.953173	C2H6Te
-159.9927217	C6H5ClO3
-160.026658	C7H6NNaO2
-160.0268265	C5H6N2O4
-160.0371734	C6H8O5
-160.0501927	C6H9NO4
-160.0524295	C10H8O2
-160.0528651	C5H8N4O2
-160.063212	C6H10N2O3
-160.0654488	C10H9NO
-160.0658844	C5H9N5O
-160.0735589	C7H12O4
-160.0784681	C10H10N2
-160.0865782	C7H13NO3
-160.1018343	C11H13N
-160.1099444	C8H16O3
-160.1229637	C8H17NO2
-161.9042124	C2HCl3O2
-161.9639202	C6H4Cl2O
-161.9769395	C6H5Cl2N
-162.0164379	C5H6O6
-162.0173063	C6H10OS2
-162.0294572	C5H7NO5
-162.0316941	C9H6O3
-162.0321297	C4H6N4O3
-162.0350649	C6H10O3S
-162.0424765	C5H8N2O4
-162.0447134	C9H7NO2
-162.0469502	C13H6
-162.0528234	C6H10O5
-162.0658427	C6H11NO4
-162.0680796	C10H10O2
-162.078862	C6H12N2O3
-162.0810989	C10H11NO
-162.0892089	C7H14O4
-162.0918814	C6H13N3O2
-162.0941182	C10H12N2
-162.1022282	C7H15NO3
-162.1152476	C7H16N2O2
-162.11792	C6H15N5
-162.1646524	C8H21N3
-163.8754108	C2Cl4
-163.9198625	C2H3Cl3O2
-163.9607266	C3H4Cl2F2O
-164.0273487	C5H9NO3S
-164.032088	C5H8O6
-164.0403681	C5H10N2O2S
-164.0451073	C5H9NO5
-164.0473441	C9H8O3
-164.0603634	C9H9NO2
-164.0626003	C13H8
-164.0630359	C8H8N4
-164.0637343	C6H13NO2S
-164.0644747	C8H9BO3
-164.0684735	C6H12O5
-164.0733827	C9H10N2O
-164.0814928	C6H13NO4
-164.0837296	C10H12O2
-164.0945121	C6H14N2O3
-164.0967489	C10H13NO
-164.1097682	C10H14N2
-164.1201151	C11H16O
-164.1331344	C11H17N
-166.0252403	C5H11NOS2
-166.0266087	C8H6O4
-166.039628	C8H7NO3
-166.0429988	C5H11NO3S
-166.0477381	C5H10O6
-166.0526473	C8H8N2O2
-166.0629942	C9H10O3
-166.0760135	C9H11NO2
-166.0782503	C13H10
-166.0890328	C9H12N2O
-166.0993797	C10H14O2
-166.112399	C10H15NO
-167.9728586	C3H4O6S
-167.9823744	C3H5O6P
-167.9833754	C7H5NS2
-168.0009839	C3H2F6O
-168.0187599	C4H9O5P
-168.0188925	C7H5NO4
-168.021565	C6H4N4O2
-168.0319119	C7H6N2O3
-168.0345843	C6H5N5O
-168.0375195	C8H9NOS
-168.0422587	C8H8O4
-168.0505388	C8H10N2S
-168.0552781	C8H9NO3
-168.0575149	C12H8O
-168.0705342	C12H9N
-168.0709698	C7H9N5
-168.0786443	C9H12O3
-168.0916636	C9H13NO2
-168.1150298	C10H16O2
-168.1644346	C11H21N
-169.9612352	C3H7NO2Se
-169.9690494	C2H8AsNO3
-169.9885086	C3H6O6S
-169.990091	C7H4ClNO2
-169.9980245	C3H7O6P
-170.0015279	C3H7NO5S
-170.0031103	C7H5ClN2O
-170.0110438	C3H8NO5P
-170.0134572	C8H7ClO2
-170.0166514	C4H11O3PS
-170.0194565	C6H6N4S
-170.0215233	C7H6O5
-170.0264765	C8H8ClNO
-170.0275665	C3H9N3O3S
-170.0345426	C7H7NO4
-170.0474293	C4H12NO4P
-170.0502343	C6H7N5O
-170.0579088	C8H10O4
-170.0606252	C5H13ClN2O2
-170.0709281	C8H11NO3
-170.0731649	C12H10O
-170.0839474	C8H12N2O2
-170.0861843	C12H11N
-170.0942943	C9H14O3
-170.0969667	C8H13N3O
-170.1095504	C13H14
-170.1306798	C10H18O2
-170.1436991	C10H19NO
-170.1670653	C11H22O
-170.2034508	C12H26
-171.9459007	C4H4FeO4
-171.9523774	C6H5BrO
-171.9612894	C7H3Cl2N
-171.9814837	C4H5CaNO4
-172.0090679	C6H6N2O2S
-172.0117403	C5H5N5S
-172.0136745	C3H9O6P
-172.0164796	C5H4N4O3
-172.0194148	C7H8O3S
-172.0294989	C5H5N5O2
-172.0324341	C7H9NO2S
-172.0371734	C7H8O5
-172.0454534	C7H10N2OS
-172.0501927	C7H9NO4
-172.0524295	C11H8O2
-172.0528651	C6H8N4O2
-172.0658844	C6H9N5O
-172.0735589	C8H12O4
-172.0762313	C7H11N3O2
-172.0789037	C6H10N6
-172.0865782	C8H13NO3
-172.0995975	C8H14N2O2
-172.1463299	C10H20O2
-173.9719863	C6H3ClO4
-173.9986794	C6H6O4S
-174.0081952	C6H7O4P
-174.0116987	C6H7NO3S
-174.0143711	C5H6N4OS
-174.0150784	C7H7FO2S
-174.0164379	C6H6O6
-174.024718	C6H8N2O2S
-174.0316941	C10H6O3
-174.0321297	C5H6N4O3
-174.0424765	C6H8N2O4
-174.0447134	C10H7NO2
-174.0528234	C7H10O5
-174.0658427	C7H11NO4
-174.0680796	C11H10O2
-174.0685152	C6H10N4O2
-174.078862	C7H12N2O3
-174.0810989	C11H11NO
-174.0892089	C8H14O4
-174.0941182	C11H12N2
-174.1022282	C8H15NO3
-174.1174844	C12H15N
-175.024263	C6H7O6
-175.956248	C4H7Cl3O
-175.9876364	C6H5ClO4
-175.9907948	C7H5NaO2S
-176.0215726	C7H6NNaO3
-176.032088	C6H8O6
-176.0451073	C6H9NO5
-176.0473441	C10H8O3
-176.0581266	C6H10N2O4
-176.0603634	C10H9NO2
-176.0684735	C7H12O5
-176.0711459	C6H11N3O3
-176.0733827	C10H10N2O
-176.0814928	C7H13NO4
-176.0837296	C11H12O2
-176.0945121	C7H14N2O3
-176.104859	C8H16O4
-176.1075314	C7H15N3O2
-176.1097682	C11H14N2
-176.1205507	C7H16N4O
-176.1331344	C12H17N
-177.9588348	C6H4Cl2O2
-178.0266087	C9H6O4
-178.0319975	C5H8ClN5
-178.0373912	C5H8N2O5
-178.0429988	C6H11NO3S
-178.0477381	C6H10O6
-178.0504105	C5H9N3O4
-178.0526473	C9H8N2O2
-178.0607574	C6H11NO5
-178.0629942	C10H10O3
-178.0782503	C14H10
-178.0841236	C7H14O5
-178.086796	C6H13N3O3
-178.0890328	C10H12N2O
-178.0993797	C11H14O2
-178.0998153	C6H14N4O2
-178.1020521	C10H13N3
-178.112399	C11H15NO
-178.1258539	C6H16N6
-178.1357652	C12H18O
-179.047453	C9H8NO3
-179.9300332	C6H3Cl3
-179.9744849	C6H6Cl2O2
-179.9858779	C4H5NO5S
-180.0005235	C6H8Cl2N2
-180.0222634	C5H9NO4S
-180.0352827	C5H10N2O3S
-180.0422587	C9H8O4
-180.0426943	C4H8N4O4
-180.0456296	C6H12O4S
-180.0552781	C9H9NO3
-180.0575149	C13H8O
-180.0586489	C6H13NO3S
-180.0633881	C6H12O6
-180.0682974	C9H10N2O2
-180.0709698	C8H9N5
-180.0764074	C6H13NO5
-180.0786443	C10H12O3
-180.0790798	C5H12N4O3
-180.0894267	C6H14N2O4
-180.0916636	C10H13NO2
-180.1046829	C10H14N2O
-180.1150298	C11H16O2
-180.1280491	C11H17NO
-180.1514153	C12H20O
-180.1644346	C12H21N
-181.9707501	C4H6O4S2
-181.9990255	C8H7NS2
-182.0023963	C5H11NS3
-182.0215233	C8H6O5
-182.03441	C5H11O5P
-182.0345426	C8H7NO4
-182.0367794	C12H6O2
-182.0474293	C5H12NO4P
-182.0475619	C8H8N2O3
-182.0509327	C5H12N2O3S
-182.0579088	C9H10O4
-182.0590517	C6H11FO5
-182.0605812	C8H9N3O2
-182.0628181	C12H8N2
-182.0661889	C9H12N2S
-182.0707955	C6H15O4P
-182.0709281	C9H11NO3
-182.0731649	C13H10O
-182.0790382	C6H14O6
-182.0839474	C9H12N2O2
-182.0839914	C7H16ClNO2
-182.0871945	C7H16FO2P
-182.0942943	C10H14O3
-182.0969667	C9H13N3O
-182.1203329	C10H16N2O
-182.1306798	C11H18O2
-183.9352947	C2H5AsO5
-183.9714334	C3H2ClF5O
-183.9768852	C4H9NO2Se
-183.977289	C3H5O7P
-183.9960486	C7H5NO3S
-184.0007879	C7H4O6
-184.0089353	C4H10NO3PS
-184.0136745	C4H9O6P
-184.0268265	C7H6N2O4
-184.0294989	C6H5N5O2
-184.0371734	C8H8O5
-184.0501927	C8H9NO4
-184.0524295	C12H8O2
-184.0528651	C7H8N4O2
-184.0535635	C5H13NO4S
-184.0630793	C5H14NO4P
-184.066459	C6H14FO3P
-184.0665917	C9H10FNO2
-184.0735589	C9H12O4
-184.0784681	C12H10N2
-184.0785121	C10H14ClN
-184.0807538	C6H12F2N2O2
-184.0865782	C9H13NO3
-184.1099444	C10H16O3
-184.1229637	C10H17NO2
-184.1252005	C14H16
-184.1463299	C11H20O2
-184.1593492	C11H21NO
-184.1827154	C12H24O
-184.2191009	C13H28
-185.8679753	C2H4Br2
-185.9929391	C3H7O7P
-185.9964425	C3H7NO6S
-185.9986794	C7H6O4S
-186.0059584	C3H8NO6P
-186.006091	C6H4N2O5
-186.0083718	C8H7ClO3
-186.0164379	C7H6O6
-186.0294572	C7H7NO5
-186.0316941	C11H6O3
-186.0344104	C8H9ClN2O
-186.0680796	C12H10O2
-186.0685152	C7H10N4O2
-186.078862	C8H12N2O3
-186.0810989	C12H11NO
-186.0892089	C9H14O4
-186.0918814	C8H13N3O2
-186.0941182	C12H12N2
-186.1022282	C9H15NO3
-186.1255944	C10H18O3
-186.16198	C11H22O2
-186.1983655	C12H26O
-187.8916536	C2H4S5
-187.9635562	C3H8O3S3
-187.9872256	C3F8
-188.0113942	C5H4N4O4
-188.0143294	C7H8O4S
-188.032088	C7H8O6
-188.0368646	C7H10NO3P
-188.039278	C12H9Cl
-188.0403681	C7H10N2O2S
-188.0451073	C7H9NO5
-188.0473441	C11H8O3
-188.0581266	C7H10N2O4
-188.060799	C6H9N5O2
-188.0684735	C8H12O5
-188.0733827	C11H10N2O
-188.0734267	C9H14ClNO
-188.0738183	C6H10N6O
-188.0814928	C8H13NO4
-188.0837296	C12H12O2
-188.1001198	C9H17NOS
-188.104859	C9H16O4
-188.1097682	C12H14N2
-188.1098122	C10H18ClN
-188.1178783	C9H17NO3
-188.1331344	C13H17N
-188.1412445	C10H20O3
-188.1542638	C10H21NO2
-189.9588348	C7H4Cl2O2
-189.9718541	C7H5Cl2NO
-189.993594	C6H6O5S
-190.0066133	C6H7NO4S
-190.0113525	C6H6O7
-190.0266087	C10H6O4
-190.039628	C10H7NO3
-190.0477381	C7H10O6
-190.0607574	C7H11NO5
-190.0629942	C11H10O3
-190.0656666	C10H9N3O
-190.0737767	C7H12N2O4
-190.0760135	C11H11NO2
-190.0793843	C8H15NO2S
-190.0841236	C8H14O5
-190.0890328	C11H12N2O
-190.0971429	C8H15NO4
-190.0993797	C12H14O2
-190.1101622	C8H16N2O3
-190.112399	C12H15NO
-190.1157698	C9H19NOS
-190.1254183	C12H16N2
-190.1362008	C8H18N4O
-190.1465477	C9H20N2O2
-190.159567	C9H21N3O
-191.982551	C6H5ClO5
-191.9978071	C10H5ClO2
-192.0270026	C6H8O7
-192.029675	C5H7N3O5
-192.0319119	C9H6N2O3
-192.0375195	C10H9NOS
-192.0400219	C6H9NO6
-192.0400593	C6H12N3PS
-192.0422587	C10H8O4
-192.0476475	C6H10ClN5
-192.0530412	C6H10N2O5
-192.0552781	C10H9NO3
-192.0586489	C7H13NO3S
-192.0633881	C7H12O6
-192.0660605	C6H11N3O4
-192.0716682	C7H14N2O2S
-192.0786443	C11H12O3
-192.0894267	C7H14N2O4
-192.0997736	C8H16O5
-192.102446	C7H15N3O3
-192.1046829	C11H14N2O
-192.1150298	C12H16O2
-192.1154654	C7H16N4O2
-192.1280491	C12H17NO
-192.1514153	C13H20O
-193.1125079	C11H15N2O
-193.998201	C6H7ClO5
-194.0345426	C9H7NO4
-194.0426527	C6H10O7
-194.055672	C6H11NO6
-194.0579088	C10H10O4
-194.0605812	C9H9N3O2
-194.0709281	C10H11NO3
-194.0731649	C14H10O
-194.0790382	C7H14O6
-194.0839474	C10H12N2O2
-194.0861843	C14H11N
-194.0942943	C11H14O3
-194.0947299	C6H14N4O3
-194.1073136	C11H15NO2
-194.1203329	C11H16N2O
-194.1306798	C12H18O2
-195.8902249	C2HBrClF3
-195.9249478	C6H3Cl3O
-195.977289	C4H5O7P
-196.0371734	C9H8O5
-196.0501927	C9H9NO4
-196.0524295	C13H8O2
-196.0583027	C6H12O7
-196.071322	C6H13NO6
-196.0735589	C10H12O4
-196.0785121	C11H14ClN
-196.0865782	C10H13NO3
-196.0995975	C10H14N2O2
-196.1077076	C7H17NO5
-196.1463299	C12H20O2
-197.9405979	C6H5Cl3O
-197.9925353	C5H11NO2Se
-197.9929391	C4H7O7P
-198.0020502	C5H10O4S2
-198.0164379	C8H6O6
-198.0294572	C8H7NO5
-198.0328281	C5H11NO5S
-198.0423439	C5H12NO5P
-198.0528234	C9H10O5
-198.0658427	C9H11NO4
-198.0680796	C13H10O2
-198.0685152	C8H10N4O2
-198.0707959	C10H13ClN2
-198.0892089	C10H14O4
-198.1022282	C10H15NO3
-198.1044651	C14H14O
-198.1152476	C10H16N2O2
-198.1408506	C15H18
-198.16198	C12H22O2
-199.9450552	C3H6BrNO4
-200.0072121	C4H3F7O
-200.0085892	C4H9O7P
-200.0112616	C3H8N3O5P
-200.0113942	C6H4N4O4
-200.0177003	C5H12O4S2
-200.0216085	C4H10NO6P
-200.0240219	C9H9ClO3
-200.032088	C8H8O6
-200.040412	C6H14ClNO2S
-200.0451073	C8H9NO5
-200.0476471	C4H12N3O4P
-200.0581266	C8H10N2O4
-200.0603634	C12H9NO2
-200.060799	C7H9N5O2
-200.0711459	C8H11N3O3
-200.0733827	C12H10N2O
-200.0837296	C13H12O2
-200.086402	C12H11N3
-200.0945121	C9H14N2O3
-200.1097682	C13H14N2
-200.1178783	C10H17NO3
-200.17763	C12H24O2
-200.1906493	C12H25NO
-201.9510644	C3H7NO4Se
-201.9735986	C3H7NO5S2
-201.993594	C7H6O5S
-202.0031098	C7H7O5P
-202.0113525	C7H6O7
-202.0242392	C4H11O7P
-202.0266087	C11H6O4
-202.0270443	C6H6N4O4
-202.0348887	C11H8N2S
-202.0396719	C9H11ClO3
-202.0504105	C7H9N3O4
-202.0537902	C8H9FN2O3
-202.0629942	C12H10O3
-202.0737767	C8H12N2O4
-202.0760135	C12H11NO2
-202.0782503	C16H10
-202.0820567	C8H14N4S
-202.0841236	C9H14O5
-202.086796	C8H13N3O3
-202.0993797	C13H14O2
-202.1020521	C12H13N3
-202.1128346	C8H15N5O
-202.1205091	C10H18O4
-202.1254183	C13H16N2
-202.1335284	C10H19NO3
-202.1357652	C14H18O
-202.159567	C10H21N3O
-202.1721507	C15H22
-202.1725863	C10H22N4
-203.9722041	C6H3ClN2O4
-204.0270026	C7H8O7
-204.0341926	C12H9ClO
-204.0422587	C11H8O4
-204.0552781	C11H9NO3
-204.0682974	C11H10N2O2
-204.0764074	C8H13NO5
-204.0786443	C12H12O3
-204.0894267	C8H14N2O4
-204.0916636	C12H13NO2
-204.0997736	C9H16O5
-204.1127929	C9H17NO4
-204.1150298	C13H16O2
-204.1280491	C13H17NO
-204.1878008	C15H24
-205.0761224	C11H11N2O2
-205.9490102	C7H5Cl2NS
-205.9745256	C2H8O7P2
-205.9779933	C7H4NNaO3S
-205.9901349	C8H8Cl2O2
-205.9942422	C7H11BrO2
-206.0062672	C6H6O8
-206.0219589	C5H6N4O5
-206.0345426	C10H7NO4
-206.0426527	C7H10O7
-206.0435211	C8H14O2S2
-206.0565404	C8H15NOS2
-206.0579088	C11H10O4
-206.0632976	C7H12ClN5
-206.0661889	C11H12N2S
-206.0709281	C11H11NO3
-206.0736005	C10H10N4O
-206.0839474	C11H12N2O2
-206.0942943	C12H14O3
-206.0969667	C11H13N3O
-206.1050768	C8H16N2O4
-206.1073136	C12H15NO2
-206.1095504	C16H14
-206.1203329	C12H16N2O
-206.128443	C9H19NO4
-206.1306798	C13H18O2
-206.1311154	C8H18N4O2
-206.1436991	C13H19NO
-206.1670653	C14H22O
-206.1778478	C10H24N2O2
-206.2038864	C10H26N4
-207.933014	C6H2Cl2O4
-207.9590526	C6H4Cl2N2O2
-208.0007879	C9H4O6
-208.0084135	C9H5ClN4
-208.0371734	C10H8O5
-208.0405442	C7H12O5S
-208.0454534	C10H10N2OS
-208.0501927	C10H9NO4
-208.0524295	C14H8O2
-208.0591711	C8H16O2S2
-208.0721904	C8H17NOS2
-208.0735589	C11H12O4
-208.0818389	C11H14N2S
-208.0865782	C11H13NO3
-208.088815	C15H12O
-208.0995975	C11H14N2O2
-208.1022699	C10H13N5
-208.1077076	C8H17NO5
-208.1099444	C12H16O3
-208.11038	C7H16N4O3
-208.1229637	C12H17NO2
-208.1252005	C16H16
-208.135983	C12H18N2O
-208.1463299	C13H20O2
-208.1593492	C13H21NO
-209.9405979	C7H5Cl3O
-209.948664	C6H4Cl2O4
-210.0241075	C7H11Cl2N3
-210.0375673	C6H10O8
-210.0528234	C10H10O5
-210.0554959	C9H9N3O3
-210.0658427	C10H11NO4
-210.0680796	C14H10O2
-210.0707959	C11H13ClN2
-210.0714504	C11H14O2S
-210.0739528	C7H14O7
-210.078862	C10H12N2O3
-210.0792976	C5H12N6O3
-210.0892089	C11H14O4
-210.0945538	C9H12N6
-210.1022282	C11H15NO3
-210.1044651	C15H14O
-210.1152476	C11H16N2O2
-210.11792	C10H15N5
-210.1255944	C12H18O3
-210.1282669	C11H17N3O
-210.1516331	C12H20N2O
-211.9198625	C6H3Cl3O2
-211.9601854	C8H4O3S2
-212.032088	C9H8O6
-212.0370412	C10H10ClNO2
-212.0451073	C9H9NO5
-212.0603634	C13H9NO2
-212.0684735	C10H12O5
-212.0733827	C13H10N2O
-212.0814928	C10H13NO4
-212.0837296	C14H12O2
-212.0841652	C9H12N4O2
-212.086402	C13H11N3
-212.0896029	C7H16O7
-212.0945121	C10H14N2O3
-212.1178783	C11H17NO3
-212.1201151	C15H16O
-212.1412445	C12H20O3
-212.1542638	C12H21NO2
-212.250401	C15H32
-213.9355125	C6H5Cl3O2
-213.9629421	C8H7BrO2
-213.9874499	C5H11NO3Se
-213.9878537	C4H7O8P
-214.000873	C4H8NO7P
-214.0196326	C8H8N2O3S
-214.0242392	C5H11O7P
-214.0266087	C12H6O4
-214.0269116	C4H10N3O5P
-214.0396719	C10H11ClO3
-214.0477381	C9H10O6
-214.0504105	C8H9N3O4
-214.0526473	C12H8N2O2
-214.0526912	C10H12ClNO2
-214.0607574	C9H11NO5
-214.0629942	C13H10O3
-214.0656666	C12H9N3O
-214.0760135	C13H11NO2
-214.0763165	C5H15N4O3P
-214.086796	C9H13N3O3
-214.0890328	C13H12N2O
-214.0890767	C11H16ClNO
-214.0971429	C10H15NO4
-214.0993797	C14H14O2
-214.1101622	C10H16N2O3
-214.1254183	C14H16N2
-214.1335284	C11H19NO3
-214.1568946	C12H22O3
-215.906711	C6H4Cl4
-215.9811386	C7H6N2O2S2
-215.9857452	C4H9O6PS
-215.9982866	C5H9Cl2N3O2
-216.0035038	C4H9O8P
-216.0067416	C12H8S2
-216.0165231	C4H10NO7P
-216.0245002	C12H8O2S
-216.0245973	C6H9NaO7
-216.0270026	C8H8O7
-216.0398893	C5H13O7P
-216.0422587	C12H8O4
-216.0476475	C8H10ClN5
-216.0481693	C5H15N2O3PS
-216.0529086	C5H14NO6P
-216.0530412	C8H10N2O5
-216.0552781	C12H9NO3
-216.0764074	C9H13NO5
-216.0786443	C13H12O3
-216.0894267	C9H14N2O4
-216.0939004	C17H12
-216.0977068	C9H16N4S
-216.1046829	C13H14N2O
-216.1127929	C10H17NO4
-216.1258122	C10H18N2O3
-216.1361591	C11H20O4
-216.1388315	C10H19N3O2
-216.1411123	C12H22ClN
-216.1725446	C12H24O3
-217.922361	C6H6Cl4
-218.0031542	C9H9Cl2NO
-218.0401503	C12H10O2S
-218.0451566	C9H9N2NaO3
-218.0509327	C8H12N2O3S
-218.055672	C8H11NO6
-218.0579088	C12H10O4
-218.0606252	C9H13ClN2O2
-218.0709281	C12H11NO3
-218.0742989	C9H15NO3S
-218.0769714	C8H14N4OS
-218.0839914	C10H16ClNO2
-218.0866198	C11H11N5
-218.0899907	C8H15N5S
-218.0942943	C13H14O3
-218.1073136	C13H15NO2
-218.1154237	C10H18O5
-218.1203329	C13H16N2O
-218.128443	C10H19NO4
-218.1470699	C11H23NOS
-218.1670653	C15H22O
-219.9385078	C6H5IO
-219.9459006	C4H7Cl2O4P
-219.9693995	C8H6Cl2O3
-219.9903083	C6H6NO6P
-220.0219172	C7H8O8
-220.0291072	C12H9ClO2
-220.0371734	C11H8O5
-220.0501927	C11H9NO4
-220.0658844	C10H9N5O
-220.071322	C8H13NO6
-220.0735589	C12H12O4
-220.0789477	C8H14ClN5
-220.0843414	C8H14N2O5
-220.0865782	C12H13NO3
-220.0973607	C8H15N3O4
-220.0995975	C12H14N2O2
-220.1018343	C16H13N
-220.1077076	C9H17NO5
-220.1099444	C13H16O3
-220.1207269	C9H18N2O4
-220.1229637	C13H17NO2
-220.1337462	C9H19N3O3
-220.135983	C13H18N2O
-220.1463299	C14H20O2
-220.1593492	C14H21NO
-220.1827154	C15H24O
-221.1307887	C13H18NO2
-221.9650102	C6H5ClN2O3S
-221.9680274	C10H7BrO
-221.9834232	C6H6O7S
-221.9875893	C4H11Cl2N2O2P
-222.0003057	C12H8Cl2
-222.0189777	C6H9N2O5P
-222.0294572	C10H7NO5
-222.031997	C6H10N3O4P
-222.0447573	C12H11ClO2
-222.0458474	C7H12N2O4S
-222.0528234	C11H10O5
-222.0566387	C7H10FN3O4
-222.0577327	C14H8N2O
-222.0658427	C11H11NO4
-222.0680796	C15H10O2
-222.0739528	C8H14O7
-222.0766252	C7H13N3O5
-222.078862	C11H12N2O3
-222.0869721	C8H15NO6
-222.0892089	C12H14O4
-222.0941182	C15H12N2
-222.0999914	C8H16N2O5
-222.1022282	C12H15NO3
-222.1152476	C12H16N2O2
-222.1174844	C16H15N
-222.1255944	C13H18O3
-222.1386138	C13H19NO2
-222.1516331	C13H20N2O
-222.16198	C14H22O2
-222.1983655	C15H26O
-223.99446	C6H11BrN2O2
-224.0038499	C6H10NO4PS
-224.0307196	C7H13NO3S2
-224.0451073	C10H9NO5
-224.0473441	C14H8O3
-224.0476471	C6H12N3O4P
-224.0533874	C10H11N3OS
-224.057994	C7H14NO5P
-224.0603634	C14H9NO2
-224.0614974	C7H14N2O4S
-224.0684735	C11H12O5
-224.0814928	C11H13NO4
-224.0819284	C6H13N5O4
-224.0837296	C15H12O2
-224.0922753	C7H15N3O5
-224.0967489	C15H13NO
-224.0971845	C10H13N5O
-224.0978829	C8H18N2O3S
-224.104859	C12H16O4
-224.1178783	C12H17NO3
-224.1201151	C16H16O
-224.1308976	C12H18N2O2
-224.1331344	C16H17N
-224.1412445	C13H20O3
-224.1439169	C12H19N3O
-224.1542638	C13H21NO2
-224.17763	C14H24O2
-225.9435787	C6H4Cl2O5
-225.976271	C4H6N4O3S2
-225.9874499	C6H11NO3Se
-226.0373912	C9H8N2O5
-226.0396719	C11H11ClO3
-226.0477381	C10H10O6
-226.0607574	C10H11NO5
-226.0629942	C14H10O3
-226.0737767	C10H12N2O4
-226.0760135	C14H11NO2
-226.0764491	C9H11N5O2
-226.0841236	C11H14O5
-226.0993797	C15H14O2
-226.0998153	C10H14N4O2
-226.1020521	C14H13N3
-226.1128346	C10H15N5O
-226.1335284	C12H19NO3
-226.1465477	C12H20N2O2
-226.1829332	C13H24N2O
-226.1932801	C14H26O2
-226.2296656	C15H30O
-227.8912783	C2H4Cl3O4P
-227.9955703	C9H6ClNO4
-228.0067416	C13H8S2
-228.0165231	C5H10NO7P
-228.029675	C8H7N3O5
-228.0398893	C6H13O7P
-228.0400219	C9H9NO6
-228.0422587	C13H8O4
-228.0552781	C13H9NO3
-228.0582726	C4H13AlN4O5
-228.0633881	C10H12O6
-228.0764074	C10H13NO5
-228.0786443	C14H12O3
-228.0894267	C10H14N2O4
-228.0916636	C14H13NO2
-228.0939004	C18H12
-228.1046829	C14H14N2O
-228.1047268	C12H18ClNO
-228.1150298	C15H16O2
-228.1177022	C14H15N3
-228.1258122	C11H18N2O3
-228.1361591	C12H20O4
-228.1410684	C15H18N2
-228.1621977	C12H22N2O2
-228.2089301	C14H28O2
-229.9936835	C3H5N3O9
-229.9959203	C7H4N2O7
-229.996656	C5H12NO3PS2
-230.0191538	C5H11O8P
-230.0321731	C5H12NO7P
-230.0345426	C12H7NO4
-230.0451925	C5H13N2O6P
-230.055672	C9H11NO6
-230.0579088	C13H10O4
-230.0590428	C6H15NO6S
-230.0606252	C10H13ClN2O2
-230.0686913	C9H12N2O5
-230.0707955	C10H15O4P
-230.0709281	C13H11NO3
-230.0713637	C8H11N5O3
-230.0817106	C9H13N3O4
-230.0866198	C12H11N5
-230.0942943	C14H14O3
-230.0947299	C9H14N4O3
-230.1050768	C10H16N2O4
-230.1133569	C10H18N4S
-230.1306798	C15H18O2
-230.1436991	C15H19NO
-230.1441347	C10H19N5O
-230.1518092	C12H22O4
-230.201214	C13H27NO2
-230.2245802	C14H30O2
-231.9857457	C8H7ClN2O2S
-231.9954381	C9H8Cl2N2O
-232.0084574	C9H9Cl2N3
-232.0348039	C5H13O8P
-232.0371734	C12H8O5
-232.0432166	C8H11N3O3S
-232.071322	C9H13NO6
-232.0735589	C13H12O4
-232.0865782	C13H13NO3
-232.1077076	C10H17NO5
-232.1099444	C14H16O3
-232.11038	C9H16N4O3
-232.120519	C12H16F3N
-232.1229637	C14H17NO2
-232.135983	C14H18N2O
-232.1440931	C11H21NO4
-232.1463299	C15H20O2
-232.1593492	C15H21NO
-233.8446531	C3H5Br2Cl
-233.9541578	C7H7IO
-233.9850495	C9H8Cl2O3
-234.0007413	C8H8Cl2N4
-234.0173063	C12H10OS2
-234.0328281	C8H11NO5S
-234.0350649	C12H10O3S
-234.0528234	C12H10O5
-234.0541274	C8H14N4S2
-234.0658427	C12H11NO4
-234.078862	C12H12N2O3
-234.0892089	C13H14O4
-234.0941182	C16H12N2
-234.0945977	C9H16ClN5
-234.0999914	C9H16N2O5
-234.1152476	C13H16N2O2
-234.1215717	C9H18N2O5
-234.1282669	C13H17N3O
-234.1363769	C10H20N2O4
-234.1386138	C14H19NO2
-234.1516331	C14H20N2O
-234.1597431	C11H23NO4
-234.16198	C15H22O2
-234.1749993	C15H23NO
-234.1880186	C15H24N2
-235.9981096	C3H11NO7P2
-236.0015379	C8H5F3N2OS
-236.0113942	C9H4N4O4
-236.0159557	C13H10Cl2
-236.0271299	C6H8ClN7O
-236.032088	C11H8O6
-236.0451073	C11H9NO5
-236.0637343	C12H13NO2S
-236.0662367	C8H13NO7
-236.0684735	C12H12O5
-236.1026222	C9H17NO6
-236.104859	C13H16O4
-236.1084096	C8H24O2Si3
-236.1156415	C9H18N2O5
-236.1178783	C13H17NO3
-236.1308976	C13H18N2O2
-236.1412445	C14H20O3
-236.1542638	C14H21NO2
-236.1672831	C14H22N2O
-236.17763	C15H24O2
-236.2036686	C15H26N2
-237.9848734	C11H6Cl2N2
-237.9866179	C6H8N2O4S2
-237.9952203	C12H8Cl2O
-238.0172273	C8H9N2NaO3S
-238.022135	C6H8N2O8
-238.0526473	C14H8N2O2
-238.0629942	C15H10O3
-238.0688674	C8H14O8
-238.0737767	C11H12N2O4
-238.0760135	C15H11NO2
-238.0814953	C8H10BF4N3
-238.0818867	C8H15NO7
-238.0890328	C15H12N2O
-238.0890767	C13H16ClNO
-238.0975785	C7H15N5O4
-238.0998153	C11H14N4O2
-238.1101622	C12H16N2O3
-238.1335284	C13H19NO3
-238.1362008	C12H18N4O
-238.1465477	C13H20N2O2
-238.1487845	C17H19N
-238.159567	C13H21N3O
-238.1932801	C15H26O2
-238.2296656	C16H30O
-239.9737269	C10H8OS3
-239.9919211	C5H8N4O3S2
-240.0295424	C6H11N2O6P
-240.0422587	C14H8O4
-240.0516728	C7H15N3O2S2
-240.0552781	C14H9NO3
-240.0633881	C11H12O6
-240.0682974	C14H10N2O2
-240.0683413	C12H14ClNO2
-240.0786443	C15H12O3
-240.0790798	C10H12N4O3
-240.0894267	C11H14N2O4
-240.0916636	C15H13NO2
-240.0927976	C8H18N2O4S
-240.1047268	C13H18ClNO
-240.1150298	C16H16O2
-240.1154654	C11H16N4O2
-240.1410684	C16H18N2
-240.1491784	C13H21NO3
-240.1514153	C17H20O
-240.1644346	C17H21N
-240.2453156	C16H32O
-240.2817012	C17H36
-241.1215121	C14H15N3O
-241.9200803	C6H3Cl3N2O2
-241.9824009	C6H12N2S4
-242.0013953	C6H11O6PS
-242.0179181	C6H12N2O4S2
-242.0191538	C6H11O8P
-242.0428666	C11H13ClN2S
-242.0509327	C10H12N2O3S
-242.055672	C10H11NO6
-242.0579088	C14H10O4
-242.0583444	C9H10N4O4
-242.0686913	C10H12N2O5
-242.0709281	C14H11NO3
-242.0709721	C12H15ClO3
-242.0713637	C9H11N5O3
-242.0942943	C15H14O3
-242.0947299	C10H14N4O3
-242.1073136	C15H15NO2
-242.1180961	C11H17N3O3
-242.1203329	C15H16N2O
-242.1203769	C13H20ClNO
-242.128443	C12H19NO4
-242.1306798	C16H18O2
-242.1311154	C11H18N4O2
-242.1333522	C15H17N3
-242.1333962	C13H21ClN2
-242.1414623	C12H20N2O3
-242.1567184	C16H20N2
-242.1648285	C13H23NO3
-242.1670653	C17H22O
-242.1800846	C17H23N
-242.2068217	C15H30S
-242.2245802	C15H30O2
-242.2609657	C16H34O
-243.9096917	C6H3Cl3O4
-243.9824188	C10H7Cl2NO2
-244.0221312	C10H11ClN2OS
-244.024457	C5H11N2O7P
-244.0348039	C6H13O8P
-244.0371734	C13H8O5
-244.0501927	C13H9NO4
-244.0608425	C6H15N2O6P
-244.0711894	C7H17O7P
-244.0735589	C14H12O4
-244.0843414	C10H14N2O5
-244.0870138	C9H13N5O3
-244.0973607	C10H15N3O4
-244.1029683	C11H18N2O2S
-244.1099444	C15H16O3
-244.11038	C10H16N4O3
-244.1126168	C14H15N3O
-244.1229637	C15H17NO2
-244.1256361	C14H16N4
-244.135983	C15H18N2O
-244.1463299	C16H20O2
-244.1593492	C16H21NO
-244.1723685	C16H22N2
-244.1827154	C17H24O
-244.1957347	C17H25N
-244.2038448	C14H28O3
-245.8808901	C6H2Cl4O2
-245.9465377	C5H11NS5
-246.0058258	C5H12O7P2
-246.0231796	C6H14O6S2
-246.024718	C12H8N2O2S
-246.0425205	C10H12ClNO4
-246.050454	C6H15O8P
-246.0528234	C13H10O5
-246.0582122	C9H12ClN5O
-246.0636059	C9H12N2O6
-246.0658427	C13H11NO4
-246.0685152	C12H10N4O2
-246.0712315	C9H13ClN6
-246.0766252	C9H13N3O5
-246.0822329	C10H16N2O3S
-246.0892089	C14H14O4
-246.0896445	C9H14N4O4
-246.0952522	C10H17N3O2S
-246.1026638	C9H15N5O3
-246.1049007	C13H14N4O
-246.1152476	C14H16N2O2
-246.1255944	C15H18O3
-246.1386138	C15H19NO2
-246.1467238	C12H22O5
-246.1516331	C15H20N2O
-246.1597431	C12H23NO4
-246.16198	C16H22O2
-246.1727624	C12H24N2O3
-246.1749993	C16H23NO
-246.1880186	C16H24N2
-247.9487048	C3H6O9P2
-247.9643141	C9H6Cl2O4
-247.9773334	C9H7Cl2NO3
-247.9788123	C12H8S3
-248.0006996	C10H10Cl2O3
-248.003372	C9H9Cl2N3O
-248.0159557	C14H10Cl2
-248.0163913	C9H10Cl2N4
-248.0216085	C8H10NO6P
-248.0370412	C13H10ClNO2
-248.0403681	C12H10N2O2S
-248.0501044	C11H15Cl2NO
-248.0592695	C9H11FN2O5
-248.0603634	C16H9NO2
-248.0662367	C9H13NO7
-248.0689091	C8H12N4O5
-248.0697775	C9H16N4S2
-248.079256	C9H14N2O6
-248.086446	C14H15ClN2
-248.0945121	C13H14N2O3
-248.1026222	C10H17NO6
-248.104859	C14H16O4
-248.1052946	C9H16N4O4
-248.1097682	C17H14N2
-248.1178783	C14H17NO3
-248.1308976	C14H18N2O2
-248.1412445	C15H20O3
-248.1542638	C15H21NO2
-248.1672831	C15H22N2O
-248.1906493	C16H25NO
-248.2140155	C17H28O
-248.2144511	C12H28N4O
-249.9355125	C9H5Cl3O2
-249.9490725	C7H7IO2
-249.954839	C3H7O9PS
-249.9929835	C9H9Cl2NO3
-249.9938969	C3H10N3O6PS
-249.9952203	C13H8Cl2O
-250.0060028	C9H10Cl2N2O2
-250.0137597	C4H13NO7P2
-250.0299795	C12H10O4S
-250.0337948	C8H10FN3O3S
-250.0372585	C8H12NO6P
-250.0373912	C11H8N2O5
-250.0441505	C13H8F2O3
-250.0477381	C12H10O6
-250.0502778	C8H13N2O5P
-250.0526473	C15H8N2O2
-250.0537813	C8H13N3O4S
-250.0560181	C12H12N2O2S
-250.0715398	C8H13N3O6
-250.0737767	C12H12N2O4
-250.0760135	C16H11NO2
-250.0827551	C10H19NO2S2
-250.0993797	C17H14O2
-250.0998592	C10H18ClN3O2
-250.1077569	C11H17N2NaO3
-250.1101622	C13H16N2O3
-250.1205091	C14H18O4
-250.1209447	C9H18N4O4
-250.1335284	C14H19NO3
-250.133964	C9H19N5O3
-250.1465477	C14H20N2O2
-250.1568946	C15H22O3
-250.1699139	C15H23NO2
-250.1829332	C15H24N2O
-251.8833887	C6H5Cl5
-251.9629538	CH3ClHg
-251.990831	C11H7ClN2OS
-252.0189365	C12H9ClO4
-252.0422587	C15H8O4
-252.056412	C8H14N2O5S
-252.0710137	C12H13ClN4
-252.0764074	C12H13NO5
-252.0786443	C16H12O3
-252.0939004	C20H12
-252.0975368	C9H17NO7
-252.1046829	C16H14N2O
-252.1127929	C13H17NO4
-252.1150298	C17H16O2
-252.1258122	C13H18N2O3
-252.1262478	C8H18N6O3
-252.1621977	C14H22N2O2
-252.1725446	C15H24O3
-252.1985833	C15H26N2O
-252.2089301	C16H28O2
-252.2349688	C16H30N2
-253.1215121	C15H15N3O
-253.9304272	C8H5Cl3O3
-254.0139367	C8H11Cl2N3O2
-254.0191538	C7H11O8P
-254.0192865	C10H7NO7
-254.0405858	C10H10N4O2S
-254.055672	C11H11NO6
-254.0579088	C15H10O4
-254.0686913	C11H12N2O5
-254.0709281	C15H11NO3
-254.0742989	C12H15NO3S
-254.0839474	C15H12N2O2
-254.0898207	C8H16N2O7
-254.0942943	C16H14O3
-254.1001676	C9H18O8
-254.1050768	C12H16N2O4
-254.1106844	C13H19NO2S
-254.2245802	C16H30O2
-255.9225784	C4H8Cl3O4P
-255.922711	C7H4Cl3NO3
-255.9613334	C12H7Cl3
-255.9889025	C6H8O9S
-256.0041587	C10H8O6S
-256.0147727	C8H10NNaO5S
-256.0165235	C10H8ClN3O3
-256.0188043	C12H11Cl2NO
-256.0335681	C7H14N2O4S2
-256.0349365	C10H9NO7
-256.0371734	C14H8O5
-256.0432166	C10H11N3O3S
-256.0513267	C7H14N2O6S
-256.0630793	C11H14NO4P
-256.0735589	C15H12O4
-256.0739945	C10H12N4O4
-256.0865782	C15H13NO3
-256.0870138	C10H13N5O3
-256.0946882	C12H16O6
-256.0973607	C11H15N3O4
-256.0995975	C15H14N2O2
-256.1029683	C12H18N2O2S
-256.1077076	C12H17NO5
-256.1099444	C16H16O3
-256.1126168	C15H15N3O
-256.1207269	C12H18N2O4
-256.1252005	C20H16
-256.135983	C16H18N2O
-256.1440931	C13H21NO4
-256.1463299	C17H20O2
-256.1467655	C12H20N4O2
-256.1490023	C16H19N3
-256.1593492	C17H21NO
-256.1723685	C17H22N2
-256.1827154	C18H24O
-256.2224717	C16H32S
-256.2402303	C16H32O2
-257.8131163	C4Cl6
-257.9747027	C10H6Cl2N2O2
-258.0040681	C9H8ClN5S
-258.0047226	C9H9N3O2S2
-258.0140685	C6H11O9P
-258.0375673	C10H10O8
-258.0474737	C12H14Cl2N2
-258.0528234	C14H10O5
-258.0611474	C12H16ClNOS
-258.0658427	C14H11NO4
-258.0661457	C6H15N4O5P
-258.0662783	C9H11N5O4
-258.078906	C12H16ClNO3
-258.0892089	C15H14O4
-258.0896445	C10H14N4O4
-258.0945977	C11H16ClN5
-258.1022282	C15H15NO3
-258.1026638	C10H15N5O3
-258.1212908	C11H19N5S
-258.1255944	C16H18O3
-258.1386138	C16H19NO2
-258.1516331	C16H20N2O
-258.16198	C17H22O2
-258.1646524	C16H21N3
-258.1749993	C17H23NO
-258.1831093	C14H26O4
-260.01196	C6H13O7PS
-260.0137189	C11H11Cl2NO2
-260.0202027	C6H12O9S
-260.0297185	C6H13O9P
-260.032088	C13H8O6
-260.033222	C6H13NO8S
-260.0374768	C9H10ClN5O2
-260.0427378	C6H14NO8P
-260.0507149	C14H12O3S
-260.0557571	C6H15N2O7P
-260.057994	C10H14NO5P
-260.0581266	C13H10N2O4
-260.0684735	C14H12O5
-260.079256	C10H14N2O6
-260.0814928	C14H13NO4
-260.0819284	C9H13N5O4
-260.0922753	C10H15N3O5
-260.1026222	C11H17NO6
-260.104859	C15H16O4
-260.1052946	C10H16N4O4
-260.1086743	C11H16FN3O3
-260.1178783	C15H17NO3
-260.1412445	C16H20O3
-260.1542638	C16H21NO2
-260.1753932	C13H25NO4
-260.17763	C17H24O2
-260.2270348	C18H29N
-260.250401	C19H32
-262.0007404	C5H12O8P2
-262.0101101	C9H13BrN2O2
-262.0188895	C7H15Cl2N2O2P
-262.0372585	C9H12NO6P
-262.0453686	C6H15O9P
-262.0477381	C13H10O6
-262.0526912	C14H12ClNO2
-262.0558855	C10H16NO3PS
-262.0607574	C13H11NO5
-262.0715398	C9H13N3O6
-262.0818867	C10H15NO7
-262.0975785	C9H15N5O4
-262.1079254	C10H17N3O5
-262.1101622	C14H16N2O3
-262.1182722	C11H19NO6
-262.1205091	C15H18O4
-262.1287891	C15H20N2S
-262.1335284	C15H19NO3
-262.1465477	C15H20N2O2
-262.1487845	C19H19N
-262.159567	C15H21N3O
-262.1676771	C12H24N2O4
-262.1699139	C16H23NO2
-262.1829332	C16H24N2O
-262.2062994	C17H27NO
-262.2296656	C18H30O
-263.8470032	C6HCl5O
-263.9987645	C8H10NO5PS
-264.0422587	C16H8O4
-264.0427383	C9H12ClN3O4
-264.0505827	C14H14ClNS
-264.0530412	C12H10N2O5
-264.05843	C8H12ClN7O
-264.0660605	C12H11N3O4
-264.0814046	C12H19Cl2NO
-264.0997736	C14H16O5
-264.1105561	C10H18N2O6
-264.121073	C14H19N3S
-264.1258122	C14H18N2O3
-264.1361591	C15H20O4
-264.1490458	C12H25O4P
-264.1621977	C15H22N2O2
-264.1644346	C19H21N
-264.1725446	C16H24O3
-264.1855639	C16H25NO2
-264.1985833	C16H26N2O
-265.8756286	C8Cl4N2
-265.9592695	C3H8O10P2
-266.0265204	C14H12Cl2O
-266.0628669	C9H11F2N3O4
-266.0709281	C16H11NO3
-266.0839474	C16H12N2O2
-266.0942943	C17H14O3
-266.1050768	C13H16N2O4
-266.1073136	C17H15NO2
-266.128443	C14H19NO4
-266.1306798	C18H18O2
-266.1414623	C14H20N2O3
-266.1518092	C15H22O4
-266.1567184	C18H20N2
-266.1646959	C12H27O4P
-266.1778478	C15H24N2O2
-266.1812275	C16H24FNO
-266.1881947	C16H26O3
-266.2245802	C17H30O2
-267.9761792	C10H8BrN3O
-267.9824188	C12H7Cl2NO2
-268.005785	C13H10Cl2O2
-268.0318236	C13H12Cl2N2
-268.0371734	C15H8O5
-268.0488242	C12H14N2OS2
-268.0535635	C12H13NO4S
-268.063212	C15H10N2O3
-268.0665828	C12H14N2O3S
-268.0735589	C16H12O4
-268.0746929	C9H17NO6S
-268.0794321	C9H16O9
-268.0796021	C12H15N3O2S
-268.0821045	C8H15N3O7
-268.088815	C20H12O
-268.0924514	C9H17NO8
-268.1211625	C8H18N6O4
-268.1229637	C17H17NO2
-268.1252005	C21H16
-268.1288369	C10H21NO7
-268.135983	C17H18N2O
-268.1440931	C14H21NO4
-268.1463299	C18H20O2
-268.1490023	C17H19N3
-268.1571124	C14H22N2O3
-268.1597848	C13H21N5O
-268.1723685	C18H22N2
-268.1804786	C15H25NO3
-268.2402303	C17H32O2
-268.2766158	C18H36O
-270.0270878	C7H12NO8P
-270.0424765	C14H8N2O4
-270.0492182	C8H16N2O4S2
-270.0528234	C15H10O5
-270.053259	C10H10N4O5
-270.0588667	C11H13N3O3S
-270.0636059	C11H12N2O6
-270.0658427	C15H11NO4
-270.0662783	C10H11N5O4
-270.078862	C15H12N2O3
-270.0892089	C16H14O4
-270.0896445	C11H14N4O4
-270.0918814	C15H13N3O2
-270.097489	C16H16N2S
-270.1026638	C11H15N5O3
-270.1049007	C15H14N4O
-270.1055991	C13H19NO3S
-270.1130107	C12H17N3O4
-270.1152476	C16H16N2O2
-270.1152915	C14H20ClNO2
-270.1215717	C12H18N2O5
-270.1282669	C16H17N3O
-270.1386138	C17H19NO2
-270.16198	C18H22O2
-270.1646524	C17H21N3
-270.1749993	C18H23NO
-270.2922658	C18H38O
-271.9476456	C6H7ClN2O4S2
-271.956248	C12H7Cl3O
-272.0059485	C7H14N2O4Se
-272.006485	C9H6N2O8
-272.0140501	C10H7KN6O
-272.0455429	C9H9N5O5
-272.0500605	C15H11ClN2O
-272.0501044	C13H15Cl2NO
-272.0556819	C12H9F3N2O2
-272.0637343	C15H13NO2S
-272.0684735	C15H12O5
-272.0689091	C10H12N4O5
-272.0814928	C15H13NO4
-272.0819284	C10H13N5O4
-272.086446	C16H15ClN2
-272.0896029	C12H16O7
-272.0945121	C15H14N2O3
-272.0978829	C12H18N2O3S
-272.1026222	C12H17NO6
-272.104859	C16H16O4
-272.1052946	C11H16N4O4
-272.1075754	C13H19ClN2O2
-272.1156415	C12H18N2O5
-272.1178783	C16H17NO3
-272.1412445	C17H20O3
-272.1416801	C12H20N4O3
-272.1542638	C17H21NO2
-272.1565006	C21H20
-272.17763	C18H24O2
-272.1906493	C18H25NO
-272.2140155	C19H28O
-272.2351449	C16H32O3
-272.250401	C20H32
-273.9299274	C9H7BrO3S
-273.9994672	C6H10O10S
-274.0089831	C6H11O10P
-274.0126565	C9H10N4O2S2
-274.0196766	C11H12ClNO3S
-274.0351543	C9H9N3O7
-274.040762	C10H12N2O5S
-274.0453686	C7H15O9P
-274.0477381	C14H10O6
-274.0607574	C14H11NO5
-274.0610603	C6H15N4O6P
-274.0742123	C9H12N6O4
-274.0771475	C11H16N2O4S
-274.0793843	C15H15NO2S
-274.0827551	C12H19NO2S2
-274.0841236	C15H14O5
-274.0845592	C10H14N4O5
-274.0971429	C15H15NO4
-274.113533	C12H20N2O3S
-274.1205091	C16H18O4
-274.1254183	C19H16N2
-274.1335284	C16H19NO3
-274.1465477	C16H20N2O2
-274.1568946	C17H22O3
-274.1780239	C14H26O5
-274.1829332	C17H24N2O
-274.1932801	C18H26O2
-274.2144095	C15H30O4
-274.2296656	C19H30O
-274.2308084	C16H31FO2
-274.2638143	C16H35NO2
-275.8551738	C7H3Br2NO
-275.9585968	C9H10BrNO2S
-275.998154	C7H13Cl2N2O3P
-276.0246331	C6H13O10P
-276.0256342	C10H13NO4S2
-276.027871	C14H12O2S2
-276.0294098	C6H15NO7P2
-276.0433927	C10H13NO6S
-276.0529086	C10H14NO6P
-276.0552781	C17H9NO3
-276.0580384	C12H16Cl2N2O
-276.0611513	C10H13NO8
-276.0845175	C11H16O8
-276.0939004	C22H12
-276.0975368	C11H17NO7
-276.0997736	C15H16O5
-276.1127929	C15H17NO4
-276.1177022	C18H15N3
-276.1177461	C16H19ClN2
-276.1361591	C16H20O4
-276.1491784	C16H21NO3
-276.1644346	C20H21N
-276.1725446	C17H24O3
-276.1855639	C17H25NO2
-276.1985833	C17H26N2O
-276.2093657	C13H28N4O2
-276.2453156	C19H32O
-277.983045	C8H10IN3
-277.995655	C5H12O9P2
-278.0064811	C13H9ClN2OS
-278.0138041	C7H15Cl2N2O3P
-278.0144146	C9H12NO5PS
-278.0200222	C10H15O3PS2
-278.0276105	C10H13ClN2O3S
-278.0478649	C8H12N5O4P
-278.0662466	C11H11F3N2O3
-278.0794738	C9H14N4O6
-278.0898207	C10H16N2O7
-278.1001676	C11H18O8
-278.1073576	C16H19ClO2
-278.1095504	C22H14
-278.1140553	C12H23NO2S2
-278.1154237	C15H18O5
-278.1158593	C10H18N4O5
-278.1262062	C11H20N2O6
-278.1312033	C10H26Cl2N2O2
-278.1518092	C16H22O4
-278.1544816	C15H21N3O2
-278.1778478	C16H24N2O2
-278.1800846	C20H23N
-278.1881947	C17H26O3
-278.201214	C17H27NO2
-278.2142333	C17H28N2O
-278.2245802	C18H30O2
-279.0097512	C6H5Hg
-280.005785	C14H10Cl2O2
-280.0139775	C4H13N3O7P2
-280.0324781	C14H13ClO2S
-280.0608425	C9H15N2O6P
-280.0769297	C14H16O4S
-280.0821045	C9H15N3O7
-280.0865782	C17H13NO3
-280.0870138	C12H13N5O3
-280.0892945	C14H16ClN3O
-280.0951238	C9H16N4O6
-280.1099444	C18H16O3
-280.1207269	C14H18N2O4
-280.1240977	C11H22N2O4S
-280.1310738	C15H20O5
-280.1440931	C15H21NO4
-280.1463299	C19H20O2
-280.1467655	C14H20N4O2
-280.1593492	C19H21NO
-280.1724124	C17H26ClN
-280.1804786	C16H25NO3
-280.1934979	C16H26N2O2
-280.2038448	C17H28O3
-280.2402303	C18H32O2
-281.8131163	C6Cl6
-281.9769834	C14H9Cl3
-281.9917033	C11H8N2O3S2
-282.0528234	C16H10O5
-282.0531264	C8H14N3O6P
-282.0566387	C12H10FN3O4
-282.0633981	C14H10F3NO2
-282.071886	C12H14N4O2S
-282.0869721	C13H15NO6
-282.0892089	C17H14O4
-282.0950822	C10H18O9
-282.0999914	C13H16N2O5
-282.1022282	C17H15NO3
-282.1026638	C12H15N5O3
-282.1233576	C14H19NO5
-282.1255944	C18H18O3
-282.12603	C13H18N4O3
-282.1467238	C15H22O5
-282.1493962	C14H21N3O3
-282.1597431	C15H23NO4
-282.16198	C19H22O2
-282.1880186	C19H24N2
-282.1983655	C20H26O
-282.2558803	C18H34O2
-283.1215277	C9H14N4O6
-283.9538785	C6H12Cl3O4P
-283.9773334	C12H7Cl2NO3
-283.9926335	C14H11Cl3
-283.9981096	C7H11NO7P2
-284.0137189	C13H11Cl2NO2
-284.0174374	C9H7N7O2S
-284.032088	C15H8O6
-284.0427378	C8H14NO8P
-284.0511505	C11H12N4O3S
-284.0556819	C13H9F3N2O2
-284.0581266	C15H10N2O4
-284.0684735	C16H12O5
-284.0745167	C12H15N3O3S
-284.0945121	C16H14N2O3
-284.104859	C17H16O4
-284.1057302	C7H16N8O4
-284.1178783	C17H17NO3
-284.1286608	C13H19N3O4
-284.1308976	C17H18N2O2
-284.1309416	C15H22ClNO2
-284.1412445	C18H20O3
-284.1472877	C14H23N3OS
-284.1753932	C15H25NO4
-284.17763	C19H24O2
-284.1884125	C15H26N2O3
-284.1906493	C19H25NO
-284.2036686	C19H26N2
-284.2140155	C20H28O
-284.2351449	C17H32O3
-284.2715304	C18H36O2
-284.2845497	C18H37NO
-285.9929835	C12H9Cl2NO3
-286.0060028	C12H10Cl2N2O2
-286.0477381	C15H10O6
-286.0657105	C16H13ClN2O
-286.0715398	C11H13N3O6
-286.0818867	C12H15NO7
-286.0841236	C16H14O5
-286.0845592	C11H14N4O5
-286.0866633	C12H17N2O4P
-286.0971429	C16H15NO4
-286.0975785	C11H15N5O4
-286.1005137	C13H19NO4S
-286.103195	C16H14FN3O
-286.1052529	C13H18O7
-286.1205091	C17H18O4
-286.1209184	C16H22OSi2
-286.1287891	C17H20N2S
-286.1335284	C17H19NO3
-286.1465477	C17H20N2O2
-286.1568946	C18H22O3
-286.1600359	C14H26O4Si
-286.1699139	C18H23NO2
-286.1932801	C19H26O2
-286.2062994	C19H27NO
-286.2296656	C20H30O
-286.250795	C17H34O3
-287.8600665	C6H6Cl6
-287.9511626	C12H7Cl3O2
-287.9555795	C6H8ClN3O4S2
-288.002268	C10H10N2O4S2
-288.0063528	C10H8ClN3O5
-288.0246331	C7H13O10P
-288.0449751	C15H11ClN2O2
-288.0460652	C10H12N4O4S
-288.0490004	C12H16O4S2
-288.0506718	C7H15N2O8P
-288.0529086	C11H14NO6P
-288.0633881	C15H12O6
-288.0638237	C10H12N4O6
-288.076843	C10H13N5O5
-288.0898623	C10H14N6O4
-288.0975368	C12H17NO7
-288.0997736	C16H16O5
-288.1002092	C11H16N4O5
-288.1127929	C16H17NO4
-288.1258122	C16H18N2O3
-288.1361591	C17H20O4
-288.1371247	C12H25NaO4S
-288.1388315	C16H19N3O2
-288.1491784	C17H21NO3
-288.149614	C12H21N5O3
-288.1599609	C13H23N3O4
-288.1644346	C21H21N
-288.1725446	C18H24O3
-288.1752171	C17H23N3O
-288.1833271	C14H26N2O4
-288.1855639	C18H25NO2
-288.2066933	C15H29NO4
-288.2089301	C19H28O2
-288.2219495	C19H29NO
-288.2300595	C16H32O4
-288.2453156	C20H32O
-288.2817012	C21H36
-289.922361	C12H6Cl4
-289.9643634	C12H6Cl2NNaO2
-290.0350221	C10H11ClN4O4
-290.0402832	C7H15O10P
-290.0480415	C10H12ClN5O3
-290.0486959	C10H13N3O5S
-290.0502783	C14H11ClN4O
-290.055672	C14H11NO6
-290.063952	C14H13N3O2S
-290.0646504	C12H18O4S2
-290.0768014	C11H15NO8
-290.0790382	C15H14O6
-290.0866198	C17H11N5
-290.0906891	C12H20N2O2S2
-290.0920575	C15H15NO5
-290.0924931	C10H15N5O5
-290.0942943	C19H14O3
-290.0969667	C18H13N3O
-290.1084476	C12H20N2O4S
-290.1154237	C16H18O5
-290.1180961	C15H17N3O3
-290.128443	C16H19NO4
-290.1392255	C12H21N3O5
-290.1414623	C16H20N2O3
-290.1495724	C13H23NO6
-290.1518092	C17H22O4
-290.1544816	C16H21N3O2
-290.1648285	C17H23NO3
-290.1881947	C18H26O3
-290.201214	C18H27NO2
-290.2142333	C18H28N2O
-290.2245802	C19H30O2
-290.2250158	C14H30N4O2
-290.2609657	C20H34O
-291.9760273	C6H14INO2S
-292.0198943	C10H12ClN3O3S
-292.0227856	C14H12O3S2
-292.0300647	C10H14NO5PS
-292.0335681	C10H14N2O4S2
-292.037609	C12H8N4O5
-292.071322	C14H13NO6
-292.0843414	C14H14N2O5
-292.0924514	C11H17NO8
-292.0946882	C15H16O6
-292.1054707	C11H18N2O7
-292.11038	C14H16N4O3
-292.1126607	C16H19ClN2O
-292.1165596	C19H15BNNa
-292.1229637	C19H17NO2
-292.1297053	C13H25NO2S2
-292.1364186	C14H18N6O
-292.1440931	C16H21NO4
-292.1522031	C13H24O7
-292.1571124	C16H22N2O3
-292.1674593	C17H24O4
-292.1723685	C20H22N2
-292.1804786	C17H25NO3
-292.1957347	C21H25N
-292.2038448	C18H28O3
-292.2168641	C18H29NO2
-292.2402303	C19H32O2
-293.8342017	C6Cl5NO2
-293.8527192	C7H4Br2O3
-293.9554877	C9H10BrClN2O2
-293.9905696	C5H12O10P2
-294.0087187	C7H15Cl2N2O4P
-294.021435	C15H12Cl2O2
-294.0375673	C13H10O8
-294.0424765	C16H8N2O4
-294.0427795	C8H12N5O5P
-294.0611612	C11H11F3N2O4
-294.0811428	C19H15ClO
-294.0847353	C10H16N2O8
-294.0869721	C14H15NO6
-294.0874077	C9H15N5O6
-294.0892089	C18H14O4
-294.0950822	C11H18O9
-294.1022282	C18H15NO3
-294.1026638	C13H15N5O3
-294.1081015	C11H19NO8
-294.1103383	C15H18O6
-294.1107739	C10H18N4O6
-294.1152476	C18H16N2O2
-294.1215717	C14H18N2O5
-294.12603	C14H18N4O3
-294.1386138	C19H19NO2
-294.1493962	C15H21N3O3
-294.1516331	C19H20N2O
-294.1646524	C19H21N3
-294.1727624	C16H24N2O3
-294.1831093	C17H26O4
-294.1961286	C17H27NO3
-294.2194948	C18H30O3
-294.2558803	C19H34O2
-295.9971324	C11H10BrN5
-296.0137189	C14H11Cl2NO2
-296.0532174	C13H12O8
-296.0557571	C9H15N2O7P
-296.0641698	C12H13N5O2S
-296.0684735	C17H12O5
-296.0842092	C14H16ClN3O2
-296.1003854	C10H18N2O8
-296.1026222	C14H17NO6
-296.104859	C18H16O4
-296.1156415	C14H18N2O5
-296.1178783	C18H17NO3
-296.1205507	C17H16N4O
-296.1259884	C15H20O6
-296.1412445	C19H20O3
-296.1439169	C18H19N3O
-296.152027	C15H22N2O4
-296.1623739	C16H24O5
-296.1672831	C19H22N2O
-296.1753932	C16H25NO4
-296.17763	C20H24O2
-296.1803024	C19H23N3
-296.1884125	C16H26N2O3
-296.1987594	C17H28O4
-296.2351449	C18H32O3
-296.2715304	C19H36O2
-296.3079159	C20H40O
-297.9399295	C7H6ClN3O4S2
-298.03278	C14H10MgO6
-298.0450012	C10H20N2S4
-298.0477381	C16H10O6
-298.048041	C8H14N3O7P
-298.0537813	C12H13N3O4S
-298.0553637	C16H11ClN4
-298.066365	C17H14O3S
-298.0668006	C12H14N4O3S
-298.0688674	C13H14O8
-298.0841236	C17H14O5
-298.086796	C16H13N3O3
-298.094906	C13H16N2O6
-298.0971429	C17H15NO4
-298.0998592	C14H18ClN3O2
-298.1052529	C14H18O7
-298.1205091	C18H18O4
-298.1265523	C14H21N3O2S
-298.1287891	C18H20N2S
-298.1335284	C18H19NO3
-298.1492201	C17H19N5
-298.1568946	C19H22O3
-298.1699139	C19H23NO2
-298.1829332	C19H24N2O
-298.1910433	C16H27NO4
-298.1932801	C20H26O2
-298.250795	C18H34O3
-298.2638143	C18H35NO2
-298.2871805	C19H38O2
-298.3001998	C19H39NO
-299.9311672	C9H8Cl3NO2S
-300.0270026	C15H8O7
-300.0364167	C8H15N3O5S2
-300.0481693	C12H15N2O3PS
-300.0516728	C12H15N3O2S2
-300.052776	C9H18O7P2
-300.0586489	C16H13NO3S
-300.0633881	C16H12O6
-300.074038	C9H18NO8P
-300.0764074	C16H13NO5
-300.0796098	C15H17NaO3S
-300.0845175	C13H16O8
-300.0894267	C16H14N2O4
-300.0997736	C17H16O5
-300.1000957	C9H21AlO9
-300.1127929	C17H17NO4
-300.1132285	C12H17N5O4
-300.120903	C14H20O7
-300.1361591	C18H20O4
-300.1388315	C17H19N3O2
-300.1444392	C18H22N2S
-300.1491784	C18H21NO3
-300.1703078	C15H25NO5
-300.1725446	C19H24O3
-300.1855639	C19H25NO2
-300.1985833	C19H26N2O
-300.2089301	C20H28O2
-300.2453156	C21H32O
-300.266445	C18H36O3
-300.2794643	C18H37NO2
-301.9983274	C6H11N3O7P2
-302.0062672	C14H6O8
-302.0112643	C13H12Cl2O4
-302.0323058	C14H8N2O6
-302.0426527	C15H10O7
-302.0437867	C8H15NO9S
-302.0533025	C8H16NO9P
-302.0606252	C16H13ClN2O2
-302.0736445	C16H14ClN3O
-302.0747345	C11H15N5O3S
-302.0768014	C12H15NO8
-302.0790382	C16H14O6
-302.0850814	C12H17N3O4S
-302.0923604	C8H19N4O6P
-302.0924931	C11H15N5O5
-302.1003376	C16H17N3OS
-302.1050768	C16H16N2O4
-302.1055124	C11H16N6O4
-302.1154237	C17H18O5
-302.128443	C17H19NO4
-302.1311594	C14H22ClN3O2
-302.1518092	C18H22O4
-302.1648285	C18H23NO3
-302.1729386	C15H26O6
-302.1881947	C19H26O3
-302.2245802	C20H30O2
-302.2375995	C20H31NO
-302.2609657	C21H34O
-302.2951144	C18H39NO2
-302.3314999	C19H43NO
-303.1003181	C11H16N5O5
-303.9559252	C6H11N2O4PS3
-303.9578684	C4H3ClHgO
-304.0035482	C12H11Cl2NO4
-304.0138511	C15H9ClO5
-304.0325671	C7H14NO10P
-304.0409798	C10H12N4O5S
-304.0432166	C14H11N3O3S
-304.0479559	C14H10N2O6
-304.0562887	C16H12ClFN2O
-304.0570603	C12H19BrN2O2
-304.0583027	C15H12O7
-304.071625	C7H17N4O7P
-304.0735589	C19H12O4
-304.0763192	C14H19Cl2NO2
-304.0924514	C12H17NO8
-304.0946882	C16H16O6
-304.1054707	C12H18N2O7
-304.1126607	C17H19ClN2O
-304.1310738	C17H20O5
-304.1337462	C16H19N3O3
-304.1360269	C18H22ClNO
-304.1440931	C17H21NO4
-304.1548755	C13H23N3O5
-304.2038448	C19H28O3
-304.2402303	C20H32O2
-304.2532496	C20H33NO
-304.2766158	C21H36O
-305.0123359	C2H8N2O3Pt
-305.9086733	C6H6Cl2N2O4S2
-305.9102341	C6H12Br2O4
-305.9172757	C12H6Cl4O
-305.9389017	C9H7IO4
-305.9769834	C16H9Cl3
-306.0021761	C14H12BrNO2
-306.0087918	C8H18O4S4
-306.0255423	C15H15BrO2
-306.0330952	C11H11N4NaO3S
-306.0355444	C11H14ClN3O3S
-306.0375673	C14H10O8
-306.0528234	C18H10O5
-306.0595651	C12H18O5S2
-306.0658427	C18H11NO4
-306.0708399	C17H17Cl2N
-306.0739528	C15H14O7
-306.078906	C16H16ClNO3
-306.0847353	C11H16N2O8
-306.0930242	C15H14FN3O3
-306.0951195	C12H21N2O3PS
-306.0999914	C15H16N2O5
-306.1103383	C16H18O6
-306.1130107	C15H17N3O4
-306.1134463	C10H17N7O4
-306.1152476	C19H16N2O2
-306.1215717	C15H18N2O5
-306.1282669	C19H17N3O
-306.1294097	C16H18FN3O2
-306.1341401	C12H21N3O6
-306.1467238	C17H22O5
-306.1493962	C16H21N3O3
-306.1597431	C17H23NO4
-306.1831093	C18H26O4
-306.1880186	C21H24N2
-306.1961286	C18H27NO3
-306.1961726	C16H31ClO3
-306.1988011	C17H26N4O
-306.2017363	C19H30OS
-306.2091479	C18H28N2O2
-306.2194948	C19H30O3
-306.2558803	C20H34O2
-307.9675711	C9H10INO3
-307.9792039	C9H11BrN2O5
-308.0062197	C6H14O10P2
-308.0193716	C9H11N2O8P
-308.0251119	C13H10N2O5S
-308.0323909	C9H12N3O7P
-308.0370851	C16H14Cl2O2
-308.0614974	C14H14N2O4S
-308.0662367	C14H13NO7
-308.0770192	C10H15N3O8
-308.0814928	C18H13NO4
-308.0848636	C15H17NO4S
-308.0882344	C12H21NO4S2
-308.0896029	C15H16O7
-308.0900385	C10H16N4O7
-308.0922753	C14H15N3O5
-308.104859	C19H16O4
-308.1156415	C15H18N2O5
-308.1178783	C19H17NO3
-308.1259884	C16H20O6
-308.126424	C11H20N4O6
-308.1390077	C16H21NO5
-308.1472877	C16H23N3OS
-308.1623739	C17H24O5
-308.1906493	C21H25NO
-308.1987594	C18H28O4
-308.2117787	C18H29NO3
-308.2715304	C20H36O2
-309.9854842	C5H12O11P2
-310.0251076	C14H15O2PS2
-310.0350217	C9H13N2O8P
-310.0373912	C16H8N2O5
-310.040762	C13H12N2O5S
-310.0477381	C17H10O6
-310.048041	C9H14N3O7P
-310.0749107	C10H17N3O6S
-310.0818867	C14H15NO7
-310.0841236	C18H14O5
-310.094906	C14H16N2O6
-310.0971429	C18H15NO4
-310.1030161	C11H19NO9
-310.1052529	C15H18O7
-310.1128346	C17H15N5O
-310.1416384	C16H22O6
-310.1465477	C19H20N2O2
-310.1469833	C14H20N6O2
-310.1546577	C16H23NO5
-310.1568946	C20H22O3
-310.1573302	C15H22N4O3
-310.159567	C19H21N3O
-310.1676771	C16H24N2O4
-310.1780239	C17H26O5
-310.1829332	C20H24N2O
-310.1910433	C17H27NO4
-310.1932801	C21H26O2
-310.1937157	C16H26N4O2
-310.2062994	C21H27NO
-310.2144095	C18H30O4
-310.2296656	C22H30O
-310.250795	C19H34O3
-310.2638143	C19H35NO2
-310.2871805	C20H38O2
-312.0061889	C12H10Cl2F3NO
-312.0261314	C14H9ClF2N2O2
-312.0539096	C17H14N2S2
-312.05843	C12H12ClN7O
-312.0633881	C17H12O6
-312.0710137	C17H13ClN4
-312.0813606	C18H15ClN2O
-312.0975368	C14H17NO7
-312.0997736	C18H16O5
-312.1056469	C11H20O10
-312.1127929	C18H17NO4
-312.1154654	C17H16N4O2
-312.120903	C15H20O7
-312.1262478	C13H18N6O3
-312.1339223	C15H21NO6
-312.1361591	C19H20O4
-312.1410684	C22H18N2
-312.1491784	C19H21NO3
-312.1552305	C19H20FN3
-312.1621977	C19H22N2O2
-312.1622417	C17H26ClNO2
-312.1725446	C20H24O3
-312.175261	C17H27ClN2O
-312.1855639	C20H25NO2
-312.1985833	C20H26N2O
-312.2089301	C21H28O2
-312.2219495	C21H29NO
-312.2300595	C18H32O4
-312.2327319	C17H31N3O2
-312.3028305	C20H40O2
-313.1215121	C20H15N3O
-313.9142978	C6H4Na2O8S2
-314.0165132	C9H16N2O5Se
-314.0377385	C9H14Cl2N6O2
-314.0426527	C16H10O7
-314.0589102	C10H19O7PS
-314.0612796	C17H14O4S
-314.0617152	C12H14N4O4S
-314.068426	C10H20O7P2
-314.0790382	C17H14O6
-314.0920575	C17H15NO5
-314.0921014	C15H19ClO5
-314.109986	C20H14N4
-314.1180961	C17H17N3O3
-314.1241482	C17H16FN5
-314.128443	C18H19NO4
-314.1518092	C19H22O4
-314.1522185	C18H26OSi2
-314.1648285	C19H23NO3
-314.1778478	C19H24N2O2
-314.1859579	C16H27NO5
-314.1881947	C20H26O3
-314.1989772	C16H28N2O4
-314.2142333	C20H28N2O
-314.2245802	C21H30O2
-314.2457096	C18H34O4
-314.2587289	C18H35NO3
-315.9380111	C14H8Cl4
-315.9824627	C14H11Cl3O2
-316.0244257	C14H9ClF3NO2
-316.0398897	C16H11ClN2O3
-316.0455864	C8H15N2O9P
-316.0562887	C17H12ClFN2O
-316.0583027	C16H12O7
-316.0586057	C8H16N3O8P
-316.0587383	C11H12N4O7
-316.0773741	C16H12FN3O3
-316.0818829	C18H18ClNS
-316.0852098	C17H18N2S2
-316.0892945	C17H16ClN3O
-316.089949	C17H17NO3S
-316.0933287	C18H17FO2S
-316.0946882	C17H16O6
-316.1053023	C15H18NNaO5
-316.1077076	C17H17NO5
-316.1126168	C20H15N3O
-316.1256361	C20H16N4
-316.1290069	C17H20N4S
-316.1310738	C18H20O5
-316.1440931	C18H21NO4
-316.1490462	C19H23ClN2
-316.1571124	C18H22N2O3
-316.1674593	C19H24O4
-316.1757393	C19H26N2S
-316.1804786	C19H25NO3
-316.183151	C18H24N4O
-316.2016079	C16H29NO5
-316.2038448	C20H28O3
-316.2168641	C20H29NO2
-316.2379934	C17H33NO4
-316.2402303	C21H32O2
-316.2613596	C18H36O4
-316.2977452	C19H40O3
-317.9259353	C10H8N2O2S2Zn
-317.9283594	C7H9ClO6P2S
-317.9383611	C12H6Cl3NO3
-317.9536612	C14H10Cl4
-317.9918292	C14H10BrN3O
-317.9956636	C14H10Cl2NNaO2
-318.0321736	C15H10ClN3O3
-318.0351978	C8H15O11P
-318.0375673	C15H10O8
-318.0427795	C10H12N5O5P
-318.0482171	C8H16NO10P
-318.053259	C14H10N4O5
-318.071886	C15H14N4O2S
-318.0739528	C16H14O7
-318.0792976	C14H12N6O3
-318.0822329	C16H16N2O3S
-318.0892089	C20H14O4
-318.1233576	C17H19NO5
-318.1467238	C18H22O5
-318.1597431	C18H23NO4
-318.1646963	C19H25ClN2
-318.1961286	C19H27NO3
-318.2042387	C16H30O6
-318.2113848	C23H27N
-318.2194948	C20H30O3
-318.2558803	C21H34O2
-318.2585528	C20H33N3
-318.2688996	C21H35NO
-318.290029	C18H39NO3
-319.8965402	C12H4Cl4O2
-319.9660586	C10H8O8S2
-319.9968738	C10H12N3O3PS2
-320.0020113	C5H8N4O12
-320.0137189	C16H11Cl2NO2
-320.0305869	C12H17O4PS2
-320.0307196	C15H13NO3S2
-320.0532174	C15H12O8
-320.0533614	C12H19IN2
-320.0534313	C16H15ClN2OS
-320.0534451	C12H10F3N3O4
-320.0581266	C18H10N2O4
-320.067231	C16H19BrN2
-320.0684735	C19H12O5
-320.0896029	C16H16O7
-320.0898168	C17H19ClN2S
-320.0949477	C14H14N6O3
-320.095655	C16H15FN2O4
-320.104859	C20H16O4
-320.1259884	C17H20O6
-320.1390077	C17H21NO5
-320.1450509	C13H24N4O3S
-320.1471177	C14H24O8
-320.1495823	C15H21F3N2O2
-320.152027	C17H22N2O4
-320.1543078	C19H25ClO2
-320.1987594	C19H28O4
-320.2351449	C20H32O3
-320.2715304	C21H36O2
-320.2742028	C20H35N3
-320.3060242	C20H24O2T8
-321.9121903	C12H6Cl4O2
-321.9915711	C14H10ClN3S2
-322.0324819	C14H10O9
-322.0688674	C15H14O8
-322.0821007	C16H18ClN3S
-322.0841236	C19H14O5
-322.0901668	C15H17N3O3S
-322.0926692	C11H17N3O8
-322.1038845	C13H23NO4S2
-322.1101622	C19H16N2O3
-322.1205091	C20H18O4
-322.1243243	C16H18FN3O3
-322.1335284	C20H19NO3
-322.1416384	C17H22O6
-322.1465477	C20H20N2O2
-322.1492201	C19H19N5
-322.1573302	C16H22N4O3
-322.159567	C20H21N3O
-322.1726302	C18H26ClN3
-322.2062994	C22H27NO
-322.2144095	C19H30O4
-322.2170819	C18H29N3O2
-322.9995804	C7H5HgO2
-323.8786633	C8HCl4F3N2
-323.8833887	C12H5Cl5
-323.9805281	C14H9Cl2N3S
-324.0063967	C11H12Cl2N2O5
-324.0246331	C10H13O10P
-324.03515	C14H14NO4PS
-324.0506718	C10H15N2O8P
-324.0633881	C18H12O6
-324.0636911	C10H16N3O7P
-324.0717121	C16H18ClNO2S
-324.0905607	C11H19N3O6S
-324.0997736	C19H16O5
-324.1056469	C12H20O10
-324.1127929	C19H17NO4
-324.1139269	C12H22N2O6S
-324.1161638	C16H21NO4S
-324.1166082	C15H17FN4O3
-324.1186662	C12H21NO9
-324.1235754	C15H19N3O5
-324.1258122	C19H18N2O3
-324.1314199	C20H21NOS
-324.1339223	C16H21NO6
-324.1361591	C20H20O4
-324.1411123	C21H22ClN
-324.1444392	C20H22N2S
-324.1491784	C20H21NO3
-324.1572885	C17H24O6
-324.1621977	C20H22N2O2
-324.1725446	C21H24O3
-324.2066933	C18H29NO4
-326.0123632	C14H9ClFNO5
-326.0212889	C10H16N2O4S3
-326.0268965	C11H19NO2S4
-326.0299363	C9H13N2O9P
-326.0429556	C9H14N3O8P
-326.0543036	C14H16N2O3S2
-326.063782	C14H14O9
-326.0707955	C18H15O4P
-326.0740801	C13H14ClN7O
-326.0768014	C14H15NO8
-326.077237	C9H15N5O8
-326.0790382	C18H14O6
-326.0898207	C14H16N2O7
-326.0970107	C19H17ClN2O
-326.0979307	C11H19NO10
-326.1001676	C15H18O8
-326.1084476	C15H20N2O4S
-326.1157266	C11H22N3O6P
-326.1212969	C12H22O10
-326.1214669	C15H21N3O3S
-326.128443	C19H19NO4
-326.1414623	C19H20N2O3
-326.1473355	C12H24N2O8
-326.1495724	C16H23NO6
-326.150008	C11H23N5O6
-326.1518092	C20H22O4
-326.1578613	C20H21FN2O
-326.1603549	C12H25N3O7
-326.1648285	C20H23NO3
-326.1681993	C17H27NO3S
-326.1733742	C12H26N4O6
-326.1778478	C20H24N2O2
-326.1881947	C21H26O3
-326.1908671	C20H25N3O
-326.2223434	C18H31NO4
-326.2245802	C22H30O2
-326.2375995	C22H31NO
-326.2820951	C20H38O3
-327.2899201	C20H39O3
-327.7734025	C6H3Br3O
-327.97955	C12H12BrN3OS
-327.9868797	C9H12ClN3O4S2
-328.0035482	C14H11Cl2NO4
-328.0255999	C9H12FN2O8P
-328.0335681	C13H14N2O4S2
-328.0455864	C9H15N2O9P
-328.0583027	C17H12O7
-328.0690852	C13H14N2O8
-328.069308	C18H13ClFN3
-328.0780637	C11H21NO6S2
-328.0794321	C14H16O9
-328.0946882	C18H16O6
-328.1054707	C14H18N2O7
-328.1077076	C18H17NO5
-328.1158176	C15H20O8
-328.1310738	C19H20O5
-328.1337901	C16H23ClN2O3
-328.1418562	C15H22N2O6
-328.1440931	C19H21NO4
-328.1522031	C16H24O7
-328.1571124	C19H22N2O3
-328.1571563	C17H26ClNO3
-328.1674593	C20H24O4
-328.1701317	C19H23N3O2
-328.1708301	C17H28O4S
-328.1827154	C24H24O
-328.1934979	C20H26N2O2
-328.2038448	C21H28O3
-328.2168641	C21H29NO2
-328.2402303	C22H32O2
-328.3107645	C20H41NO2
-329.9520349	C13H8Cl2O4S
-329.9981128	C15H13Cl3O2
-330.0247619	C17H12ClNO2S
-330.0247757	C13H7F3N2O5
-330.0360662	C10H19O6PS2
-330.0452368	C14H15Cl2N3O2
-330.0589106	C14H17ClN2O3S
-330.0739528	C17H14O7
-330.0744323	C10H18ClN3O7
-330.0816223	C15H19Cl2N3O
-330.0903429	C14H19NO6S
-330.0919253	C18H17ClN2O2
-330.1049446	C18H18ClN3O
-330.1103383	C18H18O6
-330.1107739	C13H18N4O6
-330.1179639	C18H19ClN4
-330.1186184	C18H20N2O2S
-330.1215717	C17H18N2O5
-330.1233576	C18H19NO5
-330.1267373	C19H19FO4
-330.1283108	C19H21ClN2O
-330.1397566	C19H20FNO3
-330.1467238	C19H22O5
-330.1550039	C19H24N2OS
-330.1597431	C19H23NO4
-330.1678532	C16H26O7
-330.1727624	C19H24N2O3
-330.1808725	C16H27NO6
-330.1831093	C20H26O4
-330.1961286	C20H27NO3
-330.2113848	C24H27N
-330.2194948	C21H30O3
-330.2455334	C21H32N2O
-330.2558803	C22H34O2
-330.2922658	C23H38O
-331.9984628	C13H11Cl2NO5
-332.006485	C14H6N2O8
-332.0228751	C11H11N3O7S
-332.0245014	C13H13Cl2N3O3
-332.0267382	C17H12Cl2N2O
-332.0323597	C14H10ClF3N2O2
-332.0532174	C16H12O8
-332.0642226	C17H13ClFN3O
-332.0684735	C20H12O5
-332.0743467	C13H16O10
-332.0767975	C18H18ClNOS
-332.0896029	C17H16O7
-332.0900385	C12H16N4O7
-332.1026222	C17H17NO6
-332.1075314	C20H15N3O2
-332.1156415	C17H18N2O5
-332.1237515	C14H21NO8
-332.1390077	C18H21NO5
-332.1497902	C14H23N3O6
-332.1542638	C22H21NO2
-332.1623739	C19H24O5
-332.1753932	C19H25NO4
-332.1835033	C16H28O7
-332.1906493	C23H25NO
-332.1987594	C20H28O4
-332.2117787	C20H29NO3
-332.2151584	C21H29FO2
-332.224798	C20H30N2O2
-332.2351449	C21H32O3
-332.2562743	C18H36O5
-332.2742028	C21H35N3
-333.9819364	C8H8F3N3O4S2
-334.022135	C14H8N2O8
-334.0246748	C10H11N4O7P
-334.0333503	C16H14O4S2
-334.0376941	C10H12N5O6P
-334.0424322	C15H18Cl3NO
-334.0537813	C15H13N3O4S
-334.066498	C9H19O11P
-334.0688674	C16H14O8
-334.0841236	C20H14O5
-334.0900342	C13H21N2O4PS
-334.0902107	C14H21ClN2O3S
-334.0971429	C20H15NO4
-334.1052529	C17H18O7
-334.1243243	C17H18FN3O3
-334.1335284	C21H19NO3
-334.1524209	C14H24N2O7
-334.1546577	C18H23NO5
-334.1910433	C19H27NO4
-334.2144095	C20H30O4
-334.250795	C21H34O3
-335.8632839	C9H6Br2O4
-336.0216528	C16H12Cl2N2O2
-336.0376525	C11H14NO9P
-336.0506718	C11H15N2O8P
-336.0533442	C10H14N5O6P
-336.0584988	C15H10F6O2
-336.0633881	C19H12O6
-336.0764074	C19H13NO5
-336.0845175	C16H16O8
-336.0847314	C17H19ClN2OS
-336.0927976	C16H18N2O4S
-336.0955139	C13H21ClN4O2S
-336.0988408	C12H21N5O2S2
-336.0997736	C20H16O5
-336.1213386	C12H20N4O7
-336.1395299	C18H24O4S
-336.1518948	C18H24ClN3O
-336.1599609	C17H23N3O4
-336.1621977	C21H22N2O2
-336.1703078	C18H25NO5
-336.1833271	C18H26N2O4
-336.1855639	C22H25NO2
-336.2066933	C19H29NO4
-336.2157977	C17H38BrN
-336.2300595	C20H32O4
-336.2349688	C23H30N2
-337.8919533	C9H9Br2NO3
-337.9068203	C6H12N2O4Se2
-338.0698253	C11H17N3O7S
-338.0790382	C19H14O6
-338.0866638	C19H15ClN4
-338.0920575	C19H15NO5
-338.1001676	C16H18O8
-338.1003953	C13H16F3N3O4
-338.1131869	C16H19NO7
-338.1154237	C20H18O5
-338.1158593	C15H18N4O5
-338.1239693	C12H21N3O8
-338.1259983	C18H18F3NO2
-338.128443	C20H19NO4
-338.1311154	C19H18N4O2
-338.1343162	C13H23NO9
-338.1365531	C17H22O7
-338.1414623	C20H20N2O3
-338.1518092	C21H22O4
-338.1578524	C17H25N3O2S
-338.1648285	C21H23NO3
-338.1675449	C18H26ClN3O
-338.1729386	C18H26O6
-338.1778478	C21H24N2O2
-338.1859579	C18H27NO5
-338.1881947	C22H26O3
-338.1989772	C18H28N2O4
-338.201214	C22H27NO2
-338.2093241	C19H30O5
-338.2457096	C20H34O4
-338.3184806	C22H42O2
-339.0308805	C8H9HgO2
-339.8783033	C12H5Cl5O
-339.9900365	C6H13NO11S2
-339.9960489	C6H14O12P2
-340.0045943	C12H8N4O6S
-340.006875	C14H11ClN2O4S
-340.0102019	C13H11N3O4S2
-340.0269144	C16H14Cl2O4
-340.0295868	C15H13Cl2N3O2
-340.0352037	C14H9N4NaO5
-340.0455864	C10H15N2O9P
-340.0482588	C9H14N5O7P
-340.0586057	C10H16N3O8P
-340.0762752	C19H15ClN2O2
-340.0794321	C15H16O9
-340.0854754	C11H19N3O7S
-340.0946882	C19H16O6
-340.0958222	C12H21NO8S
-340.1005615	C12H20O11
-340.1041112	C16H19FN2O3S
-340.1077076	C19H17NO5
-340.1207269	C19H18N2O4
-340.1310738	C20H20O5
-340.1337462	C19H19N3O3
-340.134889	C16H20FN3O4
-340.136947	C13H24O10
-340.1440931	C20H21NO4
-340.1445287	C15H21N5O4
-340.1571124	C20H22N2O3
-340.1674593	C21H24O4
-340.1701317	C20H23N3O2
-340.1804786	C21H25NO3
-340.1934979	C21H26N2O2
-340.2038448	C22H28O3
-340.2168641	C22H29NO2
-340.2402303	C23H32O2
-340.3341307	C22H44O2
-341.0300452	C9H13N3O9P
-341.1496813	C16H23N2O6
-341.8850091	C6H10Ge2O7
-341.9828127	C14H9Cl2NO5
-342.0037216	C12H9N2O8P
-342.0378703	C9H14N3O9P
-342.0505866	C17H11NO7
-342.0508896	C9H15N4O8P
-342.0739528	C18H14O7
-342.0847353	C14H16N2O8
-342.0872392	C15H15N4NaO4
-342.0950822	C15H18O9
-342.0952961	C16H21ClN2O2S
-342.0977546	C14H17N3O7
-342.1103383	C19H18O6
-342.1162115	C12H22O11
-342.1163815	C15H21N3O4S
-342.1233576	C19H19NO5
-342.1314677	C16H22O8
-342.1363769	C19H20N2O4
-342.1467238	C20H22O5
-342.1550039	C20H24N2OS
-342.1597431	C20H23NO4
-342.1601787	C15H23N5O4
-342.1705256	C16H25N3O5
-342.1727624	C20H24N2O3
-342.1961286	C21H27NO3
-342.2194948	C22H30O3
-342.2221672	C21H29N3O
-342.2325141	C22H31NO2
-342.3133952	C21H42O3
-343.9567061	C12H12BrN3S2
-344.0137629	C16H15Cl3O2
-344.0271738	C13H12Cl2N6O
-344.0532174	C17H12O8
-344.0608869	C15H17Cl2N3O2
-344.0719414	C12H17NaO10
-344.0743467	C14H16O10
-344.0824942	C11H22NO7PS
-344.0875888	C19H16ClFN2O
-344.0896029	C18H16O7
-344.0931437	C18H19N3S2
-344.1259884	C19H20O6
-344.1318616	C12H24O11
-344.1320316	C15H23N3O4S
-344.1471177	C16H24O8
-344.1673271	C21H26ClNO
-344.1753932	C20H25NO4
-344.1780656	C19H24N4O2
-344.1884125	C20H26N2O3
-344.1987594	C21H28O4
-344.2144511	C20H28N4O
-344.2351449	C22H32O3
-344.2481642	C22H33NO2
-344.2715304	C23H36O2
-344.3290453	C21H44O3
-346.0326959	C17H13ClN2O2S
-346.0337859	C12H14N4O4S2
-346.0587345	C17H15ClN4S
-346.0688674	C17H14O8
-346.0821007	C18H18ClN3S
-346.0982769	C14H20N2O6S
-346.1020961	C22H17ClN2
-346.1052529	C18H18O7
-346.1134004	C15H24NO4PS
-346.1182722	C18H19NO6
-346.1263823	C15H22O9
-346.1416384	C19H22O6
-346.1443109	C18H21N3O4
-346.1546577	C19H23NO5
-346.1676771	C19H24N2O4
-346.167721	C17H28ClNO4
-346.1780239	C20H26O5
-346.1991533	C17H30O7
-346.2040626	C20H28N2O3
-346.2144095	C21H30O4
-346.2170819	C20H29N3O2
-346.250795	C22H34O3
-346.2638143	C22H35NO2
-346.2871805	C23H38O2
-346.3001998	C23H39NO
-347.9278403	C14H8Cl4O2
-348.0457625	C9H17O12P
-348.0694842	C18H15ClFNO3
-348.0764074	C20H13NO5
-348.1058169	C17H19N3O3S
-348.1105561	C17H18N2O6
-348.1339223	C18H21NO6
-348.1491784	C22H21NO3
-348.1572885	C19H24O6
-348.1703078	C19H25NO5
-348.193674	C20H28O5
-348.2197126	C20H30N2O3
-348.2300595	C21H32O4
-348.266445	C22H36O3
-348.2794643	C22H37NO2
-349.9201242	C13H7Cl4NO2
-349.9233184	C9H11Cl3NO3PS
-349.9897685	C11H13BrN2O6
-349.992441	C10H12BrN5O4
-350.0326087	C10H12N5O7P
-350.0373029	C17H14Cl2N2O2
-350.0533025	C12H16NO9P
-350.0790382	C20H14O6
-350.0850814	C16H17N3O4S
-350.0920575	C20H15NO5
-350.0981007	C16H18N4O3S
-350.1050768	C20H16N2O4
-350.11814	C18H21ClN2O3
-350.1187945	C18H22O5S
-350.128443	C21H19NO4
-350.1414623	C21H20N2O3
-350.1495724	C18H23NO6
-350.1625917	C18H24N2O5
-350.1729386	C19H26O6
-350.1881947	C23H26O3
-350.2038864	C22H26N4
-350.2045848	C20H31NO2S
-350.2093241	C20H30O5
-350.2146689	C18H28N6O
-350.2457096	C21H34O4
-350.2951144	C22H39NO2
-350.2976733	C18H43AlO4
-351.9146888	C14H9Cl5
-352.0269144	C17H14Cl2O4
-352.0352395	C10H13N4O8P
-352.0455864	C11H15N2O9P
-352.0482588	C10H14N5O7P
-352.0559333	C12H17O10P
-352.0583027	C19H12O7
-352.0612781	C10H15N6O6P
-352.064176	C12H16O12
-352.0666267	C17H18ClNO3S
-352.071366	C17H17ClO6
-352.0794321	C16H16O9
-352.080745	C16H16FN3O3S
-352.0877122	C16H18N2O5S
-352.0946882	C20H16O6
-352.0951238	C15H16N4O6
-352.1007315	C16H19N3O4S
-352.1135808	C13H21NO10
-352.1207708	C18H22ClNO4
-352.1263345	C21H21NO2S
-352.1310738	C21H20O5
-352.1337462	C20H19N3O3
-352.1344446	C18H24O5S
-352.1440931	C21H21NO4
-352.1571124	C21H22N2O3
-352.1652224	C18H25NO6
-352.1804786	C22H25NO3
-352.1934979	C22H26N2O2
-352.2016079	C19H29NO5
-352.2249741	C20H32O5
-352.2613596	C21H36O4
-353.884261	C12H6Cl4O2S
-354.0191982	C16H13Cl2NO4
-354.025852	C14H13N3O4S2
-354.0273907	C6H16N4O9P2
-354.0561943	C19H14O5S
-354.0586967	C15H14O10
-354.0613691	C14H13N3O8
-354.0869721	C19H15NO6
-354.0930154	C15H18N4O4S
-354.0950822	C16H18O9
-354.1002192	C16H14F3N5O
-354.1103383	C20H18O6
-354.1233576	C20H19NO5
-354.1305526	C17H19F2N3O3
-354.1397477	C17H24N2O4S
-354.1467238	C21H22O5
-354.1493962	C20H21N3O3
-354.1597431	C21H23NO4
-354.1727624	C21H24N2O3
-354.1808725	C18H27NO6
-354.1831093	C22H26O4
-354.1880625	C23H28ClN
-354.1961286	C22H27NO3
-354.2091479	C22H28N2O2
-354.2325141	C23H31NO2
-354.2370367	C21H32F2O2
-354.2406242	C20H34O5
-354.2770097	C21H38O4
-354.3497807	C23H46O2
-355.8944079	C12H8Br2N2O
-355.9519228	C10H16Br2N2O2
-355.9525988	C14H9Cl2N3S2
-355.9984628	C15H11Cl2NO5
-356.0018336	C12H15Cl2NO5S
-356.0478676	C16H16Cl2N2O3
-356.0582145	C17H18Cl2O4
-356.0664945	C17H20Cl2N2S
-356.0720721	C16H14F3N3OS
-356.0826268	C15H18N2O6S
-356.0882433	C20H17FO3S
-356.0896029	C19H16O7
-356.095655	C19H15FN2O4
-356.1107322	C16H20O9
-356.1134047	C15H19N3O7
-356.1259884	C20H20O6
-356.1390077	C20H21NO5
-356.1394433	C15H21N5O5
-356.152027	C20H22N2O4
-356.1546994	C19H21N5O2
-356.1553978	C17H26N2O4S
-356.1623739	C21H24O5
-356.1753932	C21H25NO4
-356.1884125	C21H26N2O3
-356.2014318	C21H27N3O2
-356.2117787	C22H29NO3
-356.224798	C22H30N2O2
-356.2327002	C21H31F3O
-356.2351449	C23H32O3
-356.2562743	C20H36O5
-356.3290453	C22H44O3
-357.8444164	C12H4Cl6
-357.9684331	C7H5ClHgO2
-358.0207666	C13H13N3O5S2
-358.0458042	C9H15N4O9P
-358.0588235	C9H16N5O8P
-358.0616835	C16H14F3NO3S
-358.0738206	C19H16ClNO4
-358.0924614	C16H15F3N2O4
-358.113533	C19H20N2O3S
-358.1231815	C22H17N3O2
-358.1263823	C16H22O9
-358.1362447	C20H22ClN3O
-358.1394016	C16H23NO8
-358.1416384	C20H22O6
-358.1676771	C20H24N2O4
-358.1757871	C17H27NO7
-358.1780239	C21H26O5
-358.1910433	C21H27NO4
-358.2040626	C21H28N2O3
-358.2144095	C22H30O4
-358.2274288	C22H31NO3
-358.2768775	C21H40ClNO
-358.3083098	C21H42O4
-358.3132191	C24H40N2
-359.9733909	C14H8Cl2FNO5
-359.9934598	C7H11N5O8P2
-360.0118905	C13H15IN2O2
-360.030654	C16H10ClF4NO2
-360.0483459	C18H15ClN2O2S
-360.0614542	C9H17N4O9P
-360.0661045	C18H15ClN2O4
-360.0741706	C17H14N2O7
-360.0775414	C14H18N2O7S
-360.0822807	C14H17NO10
-360.0845175	C18H16O8
-360.0870573	C14H19N2O7P
-360.0904281	C11H23N2O7PS
-360.0905607	C14H19N3O6S
-360.1056469	C15H20O10
-360.1127929	C22H17NO4
-360.1128369	C20H21ClO4
-360.120903	C19H20O7
-360.1258562	C20H22ClNO3
-360.1348573	C18H20F4O3
-360.1420324	C16H24O9
-360.1503124	C16H26N2O5S
-360.1572885	C20H24O6
-360.1833271	C20H26N2O4
-360.193674	C21H28O5
-360.1963464	C20H27N3O3
-360.2430788	C22H33NO3
-360.2538613	C18H35N3O4
-360.266445	C23H36O3
-361.8757165	C12H8Cl6
-361.9479073	C9H11Cl2N3O4S2
-362.0144585	C14H16ClO5PS
-362.0150268	C12H12ClN5O4S
-362.0299051	C15H11ClF3NO4
-362.061768	C18H14ClFN2O3
-362.0687352	C18H16ClNO5
-362.0981096	C21H14FN3O2
-362.1051207	C19H20ClNO4
-362.1062108	C14H21N3O6S
-362.11095	C14H20N2O9
-362.1158593	C17H18N4O5
-362.1212969	C15H22O10
-362.1214669	C18H21N3O3S
-362.1262062	C18H20N2O6
-362.128443	C22H19NO4
-362.1365531	C19H22O7
-362.1403683	C15H22FN3O6
-362.1426052	C19H21FN2O4
-362.1448331	C19H24N2O3S
-362.1495724	C19H23NO6
-362.1556245	C19H22FN3O3
-362.1586768	C17H32BrNO2
-362.1729386	C20H26O6
-362.1778918	C21H28ClNO2
-362.1859579	C20H27NO5
-362.1863935	C15H27N5O5
-362.1989772	C20H28N2O4
-362.2093241	C21H30O5
-362.3215886	C18H41N7
-364.0255552	C13H12N3NaO6S
-364.0430665	C15H8F6N2O2
-364.052953	C18H16Cl2N2O2
-364.0608425	C16H15N2O6P
-364.0877122	C17H18N2O5S
-364.0946882	C21H16O6
-364.1077076	C21H17NO5
-364.1211625	C16H18N6O4
-364.134889	C18H20FN3O4
-364.1522031	C19H24O7
-364.1604832	C19H26N2O3S
-364.1674593	C23H24O4
-364.1804786	C23H25NO3
-364.1885886	C20H28O6
-364.2146272	C20H30N2O4
-364.2172997	C19H29N5O2
-364.2195365	C23H28N4
-364.2249741	C21H32O5
-364.2379934	C21H33NO4
-364.2402303	C25H32O2
-364.2470978	C19H42BrN
-364.2532496	C25H33NO
-364.2613596	C22H36O4
-364.2777498	C19H41NO3S
-364.3107645	C23H41NO2
-365.9381204	C8H16N2O4Se2
-366.0169614	C13H14Cl2N2O6
-366.0634733	C16H16NO7P
-366.0715833	C13H19O10P
-366.0739528	C20H14O7
-366.079996	C16H17N3O5S
-366.0869721	C20H15NO6
-366.096395	C17H18FN3O3S
-366.1022722	C22H19ClO3
-366.1033622	C17H20N2O5S
-366.104514	C18H17F2NO5
-366.1134903	C13H21ClN6O4
-366.1373409	C11H26O13
-366.1375109	C14H25N3O6S
-366.1422502	C14H24N2O9
-366.1678532	C19H26O7
-366.1727624	C22H24N2O3
-366.1808725	C19H27NO6
-366.2042387	C20H30O6
-366.2406242	C21H34O5
-366.3497807	C24H46O2
-367.9096035	C14H9Cl5O
-367.9838985	C12H15ClNO4PS2
-368.0123956	C10H13N4O7PS
-368.0301541	C10H13N4O9P
-368.0431734	C10H14N5O8P
-368.0461168	C7H11BiO4
-368.0722799	C15H16N4O5S
-368.0896029	C20H16O7
-368.0945561	C21H18ClNO3
-368.0956461	C16H19N3O5S
-368.1026222	C20H17NO6
-368.1107322	C17H20O9
-368.1259884	C21H20O6
-368.136563	C19H20F3NO3
-368.1472877	C21H23N3OS
-368.152027	C21H22N2O4
-368.1524626	C16H22N6O4
-368.1601371	C18H25NO7
-368.1657447	C19H28O5S
-368.1884125	C22H26N2O3
-368.2117787	C23H29NO3
-368.2198888	C20H32O6
-368.2562743	C21H36O5
-368.2611835	C24H34N2O
-368.3654308	C24H48O2
-369.3521264	C27H45
-369.8210941	C10H5Cl7
-370.0066136	C7H16O13P2
-370.0150478	C15H12Cl2F4O2
-370.0197656	C10H13N2O11P
-370.030459	C15H14ClN3O4S
-370.038837	C10H13FN5O7P
-370.0458042	C10H15N4O9P
-370.0747407	C12H18O13
-370.0805183	C16H20N2O4S2
-370.0846031	C16H18ClN3O5
-370.0850891	C18H19NaO5S
-370.0899968	C16H18O10
-370.0982769	C16H20N2O6S
-370.1052529	C20H18O7
-370.1160354	C16H20N2O8
-370.1182722	C20H19NO6
-370.1362887	C19H26Cl2N2O
-370.1416384	C21H22O6
-370.1546577	C21H23NO5
-370.1550933	C16H23N5O5
-370.1676771	C21H24N2O4
-370.1780239	C22H26O5
-370.1910433	C22H27NO4
-370.2193187	C26H28N2
-370.2251919	C19H32N2O5
-370.2334809	C23H30FN3
-370.2355388	C20H34O6
-370.250795	C24H34O3
-370.3083098	C22H42O4
-370.3599515	C27H46
-372.048132	C18H12O9
-372.0661045	C19H15ClN2O4
-372.0692614	C15H16O11
-372.0824946	C16H20ClN3O3S
-372.0894707	C20H18ClNO4
-372.0975368	C19H17NO7
-372.0997736	C23H16O5
-372.1051624	C19H18ClN5O
-372.120903	C20H20O7
-372.1211307	C17H18F3N3O3
-372.1420324	C17H24O9
-372.1572885	C21H24O6
-372.1599609	C20H23N3O4
-372.1703078	C21H25NO5
-372.1833271	C21H26N2O4
-372.193674	C22H28O5
-372.2197126	C22H30N2O3
-372.2219495	C26H29NO
-372.2511889	C20H36O6
-373.839331	C12H4Cl6O
-373.9569	C5H13O13P3
-373.9712296	C13H10ClN3O4S2
-374.0264637	C9H15N5O7S2
-374.0275406	C14H17IN2O2
-374.0790382	C22H14O6
-374.0817545	C19H17ClN2O4
-374.0826761	C16H18N3NaO4S
-374.0979307	C15H19NO10
-374.1001676	C19H18O8
-374.1212969	C16H22O10
-374.1365531	C20H22O7
-374.1495724	C20H23NO6
-374.1576824	C17H26O9
-374.1652641	C19H23N5O3
-374.1729386	C21H26O6
-374.1756549	C18H29ClN2O4
-374.1859579	C21H27NO5
-374.2016496	C20H27N5O2
-374.2119965	C21H29N3O3
-374.2409703	C23H35NOS
-374.2587289	C23H35NO3
-374.2614013	C22H34N4O
-374.2820951	C24H38O3
-374.3445192	C25H44N2
-375.9438404	C14H8Cl3NO5
-375.9895521	C12H11ClN6O2S2
-376.0323031	C15H16Cl3N5
-376.0455551	C16H13ClF3NO4
-376.0513267	C17H14N2O6S
-376.0854754	C14H19N3O7S
-376.0946882	C22H16O6
-376.1054707	C18H18N2O7
-376.1207269	C22H18N2O4
-376.1290509	C20H24ClN3S
-376.1297053	C20H25NO2S2
-376.1364625	C19H22ClN5O
-376.136947	C16H24O10
-376.1371698	C21H23ClFNO2
-376.1522031	C20H24O7
-376.1701756	C21H27ClN2O2
-376.1712657	C16H28N4O4S
-376.1804786	C24H25NO3
-376.1885886	C21H28O6
-376.1890242	C16H28N4O6
-376.2038448	C25H28O3
-376.2049876	C22H29FO4
-376.2379934	C22H33NO4
-376.2977452	C24H40O3
-376.3107645	C24H41NO2
-377.8706311	C12H8Cl6O
-378.0163383	C17H14BrFN2O2
-378.0219146	C15H16Cl3N3O2
-378.0420721	C10H19NO10S2
-378.0506305	C18H15ClO7
-378.0930682	C19H18ClFN2O3
-378.1103383	C22H18O6
-378.1233576	C22H19NO5
-378.1314677	C19H22O8
-378.1316816	C20H25ClN2OS
-378.1467238	C23H22O5
-378.1505391	C19H22FN3O4
-378.1516331	C26H20N2O
-378.1678532	C20H26O7
-378.1831093	C24H26O4
-378.1842522	C21H27FO5
-378.1938918	C20H28N2O5
-378.1961286	C24H27NO3
-378.2042387	C21H30O6
-378.2406242	C22H34O5
-378.2536435	C22H35NO4
-378.2770097	C23H38O4
-379.9176696	C14H8Cl4O4
-380.0389556	C17H18BrNO4
-380.0532174	C20H12O8
-380.0826268	C17H18N2O6S
-380.0896029	C21H16O7
-380.1026222	C21H17NO6
-380.1084954	C14H21NO11
-380.1107521	C17H16F6N2O
-380.1179223	C23H21ClO3
-380.126424	C17H20N4O6
-380.1293592	C19H24O6S
-380.1390077	C22H21NO5
-380.1753932	C23H25NO4
-380.1835033	C20H28O7
-380.1987594	C24H28O4
-380.1999022	C21H29FO5
-380.2457947	C18H38NO5P
-381.893285	C8H8Cl3N3O4S2
-381.9994672	C15H10O10S
-382.0006012	C8H15NO12S2
-382.019066	C18H15Cl3N2O
-382.0196329	C8H17NO12P2
-382.0338299	C13H18ClN3O4S2
-382.0571521	C16H17N3O4S2
-382.0688674	C20H14O8
-382.0818867	C20H15NO7
-382.0868399	C21H17ClN2O3
-382.09604	C13H21N3O8S
-382.0982769	C17H20N2O6S
-382.1052529	C21H18O7
-382.1187078	C16H19N5O6
-382.1241455	C14H23NO11
-382.1310263	C15H28O7P2
-382.142074	C17H22N4O6
-382.1450093	C19H26O6S
-382.1607098	C22H22FN3O2
-382.1676771	C22H24N2O4
-382.1757871	C19H27NO7
-382.2121726	C20H31NO6
-382.2144095	C24H30O4
-382.2170819	C23H29N3O2
-382.250795	C25H34O3
-382.2614448	C18H40NO5P
-382.323566	C27H42O
-382.4174664	C26H54O
-383.9045181	C14H9Cl5O2
-383.9360549	C15H14Br2O2
-384.0250687	C10H13N4O10P
-384.0364606	C13H19ClN2O5S2
-384.0586229	C17H21IO2
-384.0669867	C17H14F3N3O2S
-384.0791677	C18H20Cl2N2O3
-384.0800438	C12H18N2O12
-384.0845175	C20H16O8
-384.0859221	C24H21As
-384.0883239	C12H20N4O8S
-384.0975368	C20H17NO7
-384.1034116	C18H20N3NaO3S
-384.1056469	C17H20O10
-384.1066412	C18H26BrNO3
-384.1106	C18H22ClNO6
-384.120903	C21H20O7
-384.1215885	C14H20N6O5S
-384.1267762	C14H24O12
-384.1314776	C19H20F3NO4
-384.1339223	C21H21NO6
-384.1397955	C14H25NO11
-384.1518948	C22H24ClN3O
-384.1572885	C22H24O6
-384.1606593	C19H28O6S
-384.1833271	C22H26N2O4
-384.2300595	C24H32O4
-384.2902468	C21H39N3O3
-384.3158498	C26H41NO
-384.339216	C27H44O
-385.8160088	C10H5Cl7O
-385.9201681	C14H11Cl5O2
-385.9884248	C18H15ClSn
-385.9962359	C13H10Cl2F3N3O3
-386.0325686	C12H14ClF2N5O3S
-386.0390474	C15H16N2O6S2
-386.0496309	C17H12F4N2O2S
-386.0554376	C12H21N3O5S3
-386.0594784	C14H15N5O6S
-386.0662378	C16H15F2N3O4S
-386.0849114	C16H18O11
-386.1001676	C20H18O8
-386.1212969	C17H22O10
-386.1320794	C13H24N2O11
-386.1365531	C21H22O7
-386.1495724	C21H23NO6
-386.150008	C16H23N5O6
-386.1578524	C21H25N3O2S
-386.1625917	C21H24N2O5
-386.1729386	C22H26O6
-386.1989772	C22H28N2O4
-386.2093241	C23H30O5
-386.2304534	C20H34O7
-386.2387335	C20H36N2O3S
-386.2457096	C24H34O4
-386.2587289	C24H35NO3
-386.266839	C21H38O6
-386.2695114	C20H37N3O4
-386.3445192	C26H44N2
-386.3548661	C27H46O
-386.3553017	C22H46N4O
-387.9754867	C16H13Cl3N2OS
-388.0208294	C17H11ClF4N2S
-388.0209844	C13H13N5O5S2
-388.092887	C14H17N5O8
-388.1115668	C17H21ClFN3O4
-388.11849	C19H19N3O6
-388.136947	C17H24O10
-388.1427246	C21H26N2OS2
-388.1445287	C19H21N5O4
-388.1522031	C21H24O7
-388.165658	C16H25N5O6
-388.1733325	C18H28O9
-388.1788124	C18H36OSn
-388.1885886	C22H28O6
-388.1968687	C22H30N2O2S
-388.2168641	C26H29NO2
-388.2487759	C19H35N3O5
-388.2613596	C24H36O4
-388.274379	C24H37NO3
-388.3237838	C25H42N2O
-388.34715	C26H45NO
-388.3705162	C27H48O
-389.9518147	C5H13O14P3
-389.9700123	C11H10Cl2F2N4O3S
-390.0013521	C9H14N2O11P2
-390.0025297	C14H14ClN3O4S2
-390.0143714	C9H15N3O10P2
-390.0693465	C11H20NO12P
-390.0789499	C21H20Cl2O3
-390.0847353	C18H16N2O8
-390.0907785	C14H19N5O6S
-390.1037978	C14H20N6O5S
-390.1072303	C17H20ClF2N3O3
-390.1162115	C16H22O11
-390.1211208	C19H20N2O7
-390.1233576	C23H19NO5
-390.1314677	C20H22O8
-390.144487	C20H23NO7
-390.1494402	C21H25ClN2O3
-390.1525971	C17H26O10
-390.1575063	C20H24N2O6
-390.1624595	C21H26ClN3O2
-390.1678532	C21H26O7
-390.1831093	C25H26O4
-390.1938918	C21H28N2O5
-390.2042387	C22H30O6
-390.2217805	C20H32F2O5
-390.2329497	C21H31N5O2
-390.2406242	C23H34O5
-390.2770097	C24H38O4
-391.9992712	C6H11AuO5S
-392.015899	C12H13N5O6S2
-392.0181798	C14H16ClN3O4S2
-392.0526052	C13H13F2N6O4P
-392.0956461	C18H19N3O5S
-392.1003854	C18H18N2O8
-392.1237515	C19H21NO8
-392.126424	C18H20N4O6
-392.1286608	C22H19N3O4
-392.1320316	C19H23N3O4S
-392.1394433	C18H21N5O5
-392.1448809	C16H25NO10
-392.1471177	C20H24O8
-392.1650902	C21H27ClN2O3
-392.1661892	C20H24FN3O4
-392.1753932	C24H25NO4
-392.1758288	C19H25N5O4
-392.1803464	C25H27ClN2
-392.1835033	C21H28O7
-392.1987594	C25H28O4
-392.1999022	C22H29FO5
-392.2122143	C20H29N5O3
-392.2198888	C22H32O6
-392.2329081	C22H33NO5
-392.2926598	C24H40O4
-393.721229	CHI3
-394.0288767	C13H16N2O8S2
-394.0588235	C12H16N5O8P
-394.0688674	C21H14O8
-394.0872755	C17H17ClN6O3
-394.1052529	C22H18O7
-394.1182722	C22H19NO6
-394.1263823	C19H22O9
-394.1312915	C22H20N2O5
-394.1416384	C23H22O6
-394.159567	C26H21N3O
-394.1627678	C20H26O8
-394.168811	C16H29N3O6S
-394.1757871	C20H27NO7
-394.1910433	C24H27NO4
-394.2040626	C24H28N2O3
-394.2144095	C25H30O4
-394.250795	C26H34O3
-394.2719243	C23H38O5
-394.323566	C28H42O
-395.9379469	C15H10BrClN4S
-396.0145507	C12H19Cl3O8
-396.0718011	C13H19N2O10P
-396.0751649	C21H20BrN3
-396.0845175	C21H16O8
-396.1058169	C21H19N3O3S
-396.1222158	C22H20FN3OS
-396.1339223	C22H21NO6
-396.1541366	C19H22F2N4O3
-396.1572885	C23H24O6
-396.1833271	C23H26N2O4
-396.2066933	C24H29NO4
-396.2300595	C25H32O4
-396.2691174	C25H35N3O
-396.2875744	C23H40O5
-396.3028305	C27H40O2
-396.339216	C28H44O
-397.8430847	C9H5I2NO
-397.9873893	C10H16KNO9S2
-397.9962221	C18H15Cl3N2S
-398.0390474	C16H16N2O6S2
-398.0768014	C20H15NO8
-398.1001676	C21H18O8
-398.1132308	C19H23ClO7
-398.1365531	C22H22O7
-398.1544816	C25H21N3O2
-398.1556245	C22H22FN3O3
-398.175611	C22H25N3O4
-398.19201	C23H26FN3O2
-398.1950623	C21H36BrNO
-398.1989772	C23H28N2O4
-398.2070872	C20H31NO7
-398.2433401	C18H39O7P
-398.3314999	C27H43NO
-398.3548661	C28H46O
-399.9937858	C15H14INO4
-399.9974856	C10H14N5O6PS2
-400.0203005	C12H14AlMgNO11
-400.0209844	C14H13N5O5S2
-400.0359461	C7H11BiO6
-400.0535638	C9H22O13P2
-400.0751285	C15H17N5O6S
-400.0794321	C20H16O9
-400.1054707	C20H18N2O7
-400.1158176	C21H20O8
-400.1288369	C21H21NO7
-400.1501452	C25H20FN3O
-400.1522031	C22H24O7
-400.153516	C22H24FN3OS
-400.1652224	C22H25NO6
-400.1885886	C23H28O6
-400.2146272	C23H30N2O4
-400.2227373	C20H33NO7
-400.2249741	C24H32O5
-400.2379934	C24H33NO4
-400.2613596	C25H36O4
-400.274379	C25H37NO3
-400.2977452	C26H40O3
-400.3188745	C23H44O5
-400.3318938	C23H45NO4
-400.3341307	C27H44O2
-400.35526	C24H48O4
-400.3705162	C28H48O
-402.0566298	C18H14N4O5S
-402.0950822	C20H18O9
-402.1009928	C13H25N2O8PS
-402.1215717	C23H18N2O5
-402.1305526	C21H19F2N3O3
-402.1314677	C21H22O8
-402.171394	C22H29N3S2
-402.1938918	C22H28N2O5
-402.198845	C23H30ClN3O
-402.2042387	C23H30O6
-402.2406242	C24H34O5
-402.2617536	C21H38O7
-402.2774453	C20H38N4O4
-402.290029	C25H39NO3
-402.3497807	C27H46O2
-402.3758193	C27H48N2
-402.3861662	C28H50O
-403.816881	C9H6Cl6O3S
-403.8498957	C13H6Cl6O2
-403.9786813	C12H15AsN6OS2
-404.0170022	C10H16N2O11P2
-404.0300215	C10H17N3O10P2
-404.0601867	C13H18F3N3O4S2
-404.0624614	C12H20O13S
-404.0792999	C20H18ClNO6
-404.0802573	C12H23N2O9PS
-404.0956461	C19H19N3O5S
-404.1156415	C23H18N2O5
-404.1194479	C15H22N6O5S
-404.1216847	C19H21N5O3S
-404.1318616	C17H24O11
-404.1471177	C21H24O8
-404.1524626	C19H22N6O4
-404.1623739	C25H24O5
-404.1661892	C21H24FN3O4
-404.1684171	C21H27N3O3S
-404.1754371	C23H29ClO4
-404.1835033	C22H28O7
-404.1884564	C23H30ClNO3
-404.2198888	C23H32O6
-404.225932	C19H35N3O4S
-404.2562743	C24H36O5
-404.2749012	C25H40O2S
-404.3654308	C27H48O2
-405.7977719	C10H6Cl8
-405.9962667	C9H14N2O12P2
-406.0053898	C14H13AlCaN2O8
-406.009286	C9H15N3O11P2
-406.0138433	C15H15ClFN3O3S2
-406.0207666	C17H13N3O5S2
-406.0412415	C14H16ClN5O5S
-406.0899968	C19H18O10
-406.1052529	C23H18O7
-406.1057764	C14H26Cl2N2O7
-406.113533	C23H20N2O3S
-406.1263823	C20H22O9
-406.1312915	C23H20N2O5
-406.1324255	C16H25N3O7S
-406.1396156	C21H26ClN3OS
-406.1475117	C17H26O11
-406.1524209	C20H24N2O7
-406.1546577	C24H23NO5
-406.1654402	C20H25N3O6
-406.1757871	C21H27NO7
-406.1780239	C25H26O5
-406.1829771	C26H28ClNO
-406.1991533	C22H30O7
-406.2121726	C22H31NO6
-406.2170819	C25H29N3O2
-406.2251919	C22H32N2O5
-406.2426849	C30H31N
-406.250795	C27H34O3
-406.2719243	C24H38O5
-406.2849436	C24H39NO4
-407.8003587	C12H3Cl7O
-408.0744736	C13H18N5O8P
-408.0845175	C22H16O8
-408.0905607	C18H19N3O6S
-408.1056469	C19H20O10
-408.1081114	C20H17F3N2O4
-408.1242738	C20H24O7S
-408.1420324	C20H24O9
-408.1503124	C20H26N2O5S
-408.168071	C20H26N2O7
-408.1703518	C22H29ClO5
-408.1784179	C21H28O8
-408.1810903	C20H27N3O6
-408.1833271	C24H26N2O4
-408.193674	C25H28O5
-408.2066933	C25H29NO4
-408.2078273	C18H34N2O6S
-408.2148034	C22H32O7
-408.2276901	C19H37O7P
-408.2511889	C23H36O6
-408.2642082	C23H37NO5
-408.2875744	C24H40O5
-408.3005937	C24H41NO4
-408.4695019	C29H60
-409.9446118	C17H12BrFO2S2
-410.002929	C13H12N5NaO5S2
-410.0909547	C14H21N3O9S
-410.1001676	C22H18O8
-410.1077932	C22H19ClN4O2
-410.1118184	C19H24N2O4S2
-410.1365531	C23H22O7
-410.1392694	C20H25ClN2O5
-410.1459848	C24H21F2NO3
-410.1554078	C21H24F3N3S
-410.1554456	C16H27NO11
-410.1576824	C20H26O9
-410.1625917	C23H24N2O5
-410.1659625	C20H28N2O5S
-410.1729386	C24H26O6
-410.1886303	C23H26N4O3
-410.1904804	C22H28F2O5
-410.2093241	C25H30O5
-410.2304534	C22H34O7
-410.2331259	C21H33N3O5
-410.2433401	C19H39O7P
-410.266839	C23H38O6
-410.2820951	C27H38O3
-410.2951144	C27H39NO2
-410.3184806	C28H42O2
-410.3548661	C29H46O
-410.3912516	C30H50
-410.4487665	C28H58O
-412.0118722	C19H17Cl3N2S
-412.0915802	C19H18ClF2N3O3
-412.1158176	C22H20O8
-412.1288809	C20H25ClO7
-412.1467655	C25H20N4O2
-412.1553111	C17H23N7O5
-412.169745	C21H26F2O6
-412.1758723	C16H31N2O8P
-412.1816126	C20H30N2O5S
-412.1816214	C24H26FNO4
-412.2038448	C28H28O3
-412.2069528	C22H27N7O
-412.2146272	C24H30N2O4
-412.2227373	C21H33NO7
-412.2379934	C25H33NO4
-412.2406659	C24H32N4O2
-412.2461035	C22H36O7
-412.2977452	C27H40O3
-412.3107645	C27H41NO2
-412.3341307	C28H44O2
-412.3705162	C29H48O
-413.999089	C15H14IN3O3
-414.0236152	C15H14N4O6S2
-414.027536	C15H14Cl2F3N3O3
-414.0777592	C16H18N4O7S
-414.0850382	C12H20N5O9P
-414.0950822	C21H18O9
-414.1162115	C18H22O11
-414.1314677	C22H22O8
-414.1327805	C22H22FN3O2S
-414.1401833	C17H24N6O4S
-414.144487	C22H23NO7
-414.1678532	C23H26O7
-414.1891526	C23H29N3O2S
-414.2042387	C24H30O6
-414.2746044	C24H39NaO4
-414.2770097	C26H38O4
-414.3133952	C27H42O3
-414.3264145	C27H43NO2
-414.3497807	C28H46O2
-414.3861662	C29H50O
-415.8943473	C14H9Cl5O4
-416.0066553	C10H14N4O10P2
-416.0196746	C10H15N5O9P2
-416.0496121	C16H18N2O7S2
-416.0673707	C16H18N2O9S
-416.0712338	C22H19Cl2NO3
-416.0792999	C21H18ClNO6
-416.0830624	C15H18N6O6S
-416.0954761	C17H20O12
-416.1005993	C21H21ClN4OS
-416.1107322	C21H20O9
-416.1190123	C21H22N2O5S
-416.1318815	C17H20F6N2O3
-416.1471177	C22H24O8
-416.1553978	C22H26N2O4S
-416.1623739	C26H24O5
-416.1754371	C24H29ClO4
-416.1780656	C25H24N4O2
-416.1835033	C23H28O7
-416.1965226	C23H29NO6
-416.2021302	C24H32O4S
-416.2095419	C23H30N2O5
-416.2129127	C20H34N2O5S
-416.2198888	C24H32O6
-416.2692936	C25H37NO4
-416.3056791	C26H41NO3
-416.3290453	C27H44O3
-416.3420646	C27H45NO2
-416.3654308	C28H48O2
-417.1917639	C18H29N4O7
-418.0282222	C15H15ClN4O6S
-418.0570548	C17H14ClF7O2
-418.0571521	C19H17N3O4S2
-418.0748942	C18H21KN2O5S
-418.09604	C16H21N3O8S
-418.1146758	C21H21FN2O4S
-418.1182722	C24H19NO6
-418.1263823	C21H22O9
-418.1268179	C16H22N4O9
-418.1627678	C22H26O8
-418.214845	C22H30N4O4
-418.2355388	C24H34O6
-418.3083098	C26H42O4
-418.3213291	C26H43NO3
-418.323566	C30H42O
-418.3446953	C27H46O3
-418.370734	C27H48N2O
-418.3810808	C28H50O2
-418.9085435	C9H18FeN3S6
-419.9623793	C6H15O15P3
-420.0209921	C16H15N2NaO6S2
-420.0249361	C10H17N3O11P2
-420.0589145	C18H14N2O10
-420.0866547	C21H23BrFNO2
-420.0883239	C15H20N4O8S
-420.0977645	C20H15F3N4O3
-420.1108591	C15H22N5O7P
-420.1258562	C25H22ClNO3
-420.1267762	C17H24O12
-420.1420324	C21H24O9
-420.1572885	C25H24O6
-420.1631617	C18H28O11
-420.168071	C21H26N2O7
-420.1784179	C22H28O8
-420.1810903	C21H27N3O6
-420.266445	C28H36O3
-420.3005937	C25H41NO4
-420.3028305	C29H40O2
-420.3603454	C27H48O3
-421.9153195	C17H12Br2O3
-422.0462512	C19H12F3N3O3S
-422.0745645	C18H16N2O10
-422.0771043	C14H19N4O9P
-422.082542	C12H23O14P
-422.0849114	C19H18O11
-422.0907862	C17H21N2NaO7S
-422.1001676	C23H18O8
-422.1212969	C20H22O10
-422.1260423	C23H22ClF3O2
-422.1424263	C17H26O12
-422.1473355	C20H24N2O8
-422.1603549	C20H25N3O7
-422.1940679	C22H30O8
-422.2001112	C18H33N3O6S
-422.2104669	C23H31FO6
-422.2223434	C26H31NO4
-422.2250158	C25H30N4O2
-422.2304534	C23H34O7
-422.2338243	C20H38O7S
-422.2357983	C21H32N6O3
-422.2798583	C24H39NO5
-422.4487665	C29H58O
-424.0224407	C15H16Cl2N2O8
-424.0288866	C15H14F3N3O4S2
-424.0313313	C17H15N3O6S2
-424.0465161	C17H16N2Na2O6S
-424.0726838	C15H16F3N5O4S
-424.1219137	C21H23ClFNO5
-424.136947	C20H24O10
-424.1548755	C23H23N3O5
-424.1652224	C24H25NO6
-424.1710957	C17H29NO11
-424.1733325	C21H28O9
-424.1912611	C24H27N3O4
-424.209718	C22H32O8
-424.2379934	C26H33NO4
-424.2461035	C23H36O7
-424.282489	C24H40O6
-424.3188745	C25H44O5
-424.3341307	C29H44O2
-424.361215	C25H37NO3
-424.4644165	C29H60O
-426.0469814	C17H17N3O6S2
-426.0613691	C20H13N3O8
-426.1211208	C22H20N2O7
-426.1364648	C22H28Cl2O4
-426.1397477	C23H24N2O4S
-426.1493962	C26H21N3O3
-426.1552695	C19H25N3O8
-426.1633795	C16H28N2O11
-426.1678532	C24H26O7
-426.1739404	C18H33ClN2O5S
-426.1938918	C24H28N2O5
-426.2091479	C28H28N2O2
-426.2325141	C29H31NO2
-426.2536435	C26H35NO4
-426.2666628	C26H36N2O3
-426.2770097	C27H38O4
-426.290029	C27H39NO3
-426.3861662	C30H50O
-427.9431213	C10H11BrN5O7P
-428.0252822	C12H18N4O7P2S
-428.0570238	C16H16N4O8S
-428.0770192	C20H15N3O8
-428.0789907	C18H22O8P2
-428.1107322	C22H20O9
-428.1237955	C20H25ClO8
-428.1367709	C22H22N2O7
-428.1443965	C22H23ClN6O
-428.1448809	C19H25NO10
-428.1471177	C23H24O8
-428.1682471	C20H28O10
-428.1835033	C24H28O7
-428.2926598	C27H40O4
-428.3290453	C28H44O3
-428.363194	C25H49NO4
-428.3654308	C29H48O2
-428.4018163	C30H52O
-429.9723776	C18H13Cl4N3O
-430.0029367	C15H14N2Na2O6S2
-430.041896	C16H17N3O7S2
-430.0760447	C13H22N4O8S2
-430.0879135	C19H22KN3O4S
-430.1263823	C22H22O9
-430.1416384	C26H22O6
-430.1470272	C22H24ClN5O2
-430.1476817	C22H25N3O4S
-430.1573302	C25H22N4O3
-430.1627678	C23H26O8
-430.1658758	C17H25N7O6
-430.1788951	C17H26N8O5
-430.1888064	C23H28N2O6
-430.1991533	C24H30O7
-430.2061563	C22H38O4Zn
-430.2251919	C24H32N2O5
-430.2301012	C27H30N4O
-430.2355388	C25H34O6
-430.2638143	C29H35NO2
-430.306073	C23H43NO6
-430.3083098	C27H42O4
-430.3213291	C27H43NO3
-430.3446953	C28H46O3
-430.3810808	C29H50O2
-431.8355447	C9H6I2O4
-431.9717557	C14H10N2O10S2
-432.0015699	C10H14N4O11P2
-432.0050734	C10H14N5O10PS
-432.0145892	C10H15N5O10P2
-432.037829	C20H14ClNO8
-432.0471992	C15H17N5O6S2
-432.0551102	C18H14F4N2O4S
-432.1056469	C21H20O10
-432.13415	C22H19F3N4O2
-432.1788535	C18H28N4O8
-432.1867068	C27H26FNO3
-432.193674	C27H28O5
-432.1990188	C25H26N6O
-432.2044565	C23H30N2O6
-432.2148034	C24H32O7
-432.2304951	C23H32N4O4
-432.2511889	C25H36O6
-432.2776631	C20H38N6O4
-432.3239599	C27H44O4
-432.3369792	C27H45NO3
-432.3499985	C27H46N2O2
-432.3603454	C28H48O3
-433.8511947	C9H8I2O4
-433.8642141	C9H9I2NO3
-433.9746004	C15H14ClN3O4S3
-434.0161696	C15H13ClFN5O5S
-434.0536055	C11H20N4O10P2
-434.061812	C22H18Cl2FNO3
-434.0899085	C19H24Cl2O7
-434.1001676	C24H18O8
-434.1006031	C19H18N4O8
-434.103974	C16H22N4O8S
-434.1167943	C22H17F4N3O2
-434.1212969	C21H22O10
-434.1576824	C22H26O9
-434.165308	C22H27ClN4O3
-434.1789818	C22H29N3O4S
-434.2070872	C23H31NO7
-434.2104669	C24H31FO6
-434.2146689	C25H28N6O
-434.2272966	C28H33ClN2
-434.2304534	C24H34O7
-434.2433401	C21H39O7P
-434.3162438	C26H43NO4
-434.33961	C27H46O4
-434.3656486	C27H48N2O2
-434.3759955	C28H50O3
-435.9129315	C10H14Cl6N4O2
-436.0421138	C14H17N5O7S2
-436.0832385	C15H20N4O9S
-436.1005615	C20H20O11
-436.1007754	C21H23ClN2O4S
-436.1057737	C15H22N5O8P
-436.136947	C21H24O10
-436.1580385	C23H25F3N2OS
-436.2016079	C26H29NO5
-436.209718	C23H32O8
-436.2195365	C29H28N4
-436.2379934	C27H33NO4
-436.2487759	C23H35N3O5
-436.2589902	C21H41O7P
-436.3341307	C30H44O2
-436.35526	C27H48O4
-436.5008021	C31H64
-438.0482489	C14H20N6O5Se
-438.0566738	C19H18ClN3O5S
-438.1525971	C21H26O10
-438.189597	C24H25FN6O
-438.217258	C26H31NO5
-438.2667068	C25H40ClNO3
-438.3861662	C31H50O
-438.4800666	C30H62O
-439.8804957	C12H14As2Cl2N2O2
-439.9268457	C12H4Cl2F6N4OS
-440.0148529	C19H16Cl2N2O4S
-440.0370284	C13H17N5O8S2
-440.1141031	C20H24O9S
-440.1318616	C20H24O11
-440.1428669	C21H25ClFN3O4
-440.1623739	C28H24O5
-440.1651342	C23H31Cl2NO3
-440.1659724	C22H26F3N3OS
-440.1731564	C24H26N2O6
-440.1763994	C20H35N3Sn
-440.1895465	C21H31N3O5S
-440.1990623	C21H32N3O5P
-440.2046326	C22H32O9
-440.2095419	C25H30N2O5
-440.2133483	C17H34N6O5S
-440.2225612	C25H31N3O4
-440.2329081	C26H33NO5
-440.2362789	C23H37NO5S
-440.2540374	C23H37NO7
-440.3056791	C28H41NO3
-440.3061147	C23H41N5O3
-440.3290453	C29H44O3
-440.3654308	C30H48O2
-440.4018163	C31H52O
-441.7502981	C10H4Br3ClN2O
-441.961985	C11H13ClF3N3O4S3
-442.0513806	C20H16ClF3N2O2S
-442.1169478	C21H28ClNO3S2
-442.1373436	C26H19FN4O2
-442.1627678	C24H26O8
-442.1661386	C21H30O8S
-442.1838972	C21H30O10
-442.2285628	C22H36N2O5S
-442.2664867	C29H34N4
-442.3810808	C30H50O2
-444.1056469	C22H20O10
-444.1303171	C19H27N3O5S2
-444.1316855	C22H22N2O8
-444.1582146	C22H27F3O4S
-444.166057	C24H26ClFN4O
-444.2278227	C25H33NO6
-444.2640756	C23H41O6P
-444.3113762	C23H43N3O5
-444.3603454	C29H48O3
-444.3967309	C30H52O2
-446.0043853	C15H15Cl2N2NaO8
-446.0117438	C18H16Cl3N3O4
-446.0849114	C21H18O11
-446.0882822	C18H22O11S
-446.1212969	C22H22O10
-446.1418979	C24H20N6O3
-446.1473355	C22H24N2O8
-446.1707017	C23H27NO8
-446.1811927	C21H36INO
-446.1940679	C24H30O8
-446.2201066	C24H32N2O6
-446.2304534	C25H34O7
-446.33961	C28H46O4
-447.8798641	C10H11I2NO3
-447.9917453	C10H15N5O9P2S
-447.9964845	C10H14N4O12P2
-448.0095038	C10H15N5O11P2
-448.028926	C17H16N3NaO6S2
-448.1005615	C21H20O11
-448.1189256	C19H19N7O6
-448.1319449	C19H20N8O5
-448.1885886	C27H28O6
-448.1890242	C22H28N4O6
-448.209718	C24H32O8
-448.3188745	C27H44O5
-448.35526	C28H48O4
-450.0389684	C16H15N4NaO8S
-450.0447445	C15H18N4O8S2
-450.0485201	C11H20N4O11P2
-450.0550914	C16H20N2O9S2
-450.0975907	C23H19ClF3NO3
-450.0988886	C16H22N4O9S
-450.1011254	C20H21N3O7S
-450.1067331	C21H24N2O5S2
-450.1162115	C21H22O11
-450.1214237	C16H24N5O8P
-450.1345757	C19H21N7O6
-450.1391372	C23H27Cl2N3O2
-450.1397477	C25H24N2O4S
-450.1402361	C22H24ClFN4O3
-450.1494402	C26H25ClN2O3
-450.1525971	C22H26O10
-450.1936265	C20H36O7P2
-450.1938918	C26H28N2O5
-450.2042387	C27H30O6
-450.2314113	C20H37N3O6S
-450.2617536	C25H38O7
-450.2747729	C25H39NO6
-450.3111584	C26H43NO5
-450.3345246	C27H46O5
-450.3497807	C31H46O2
-450.3709101	C28H50O4
-450.4800666	C31H62O
-452.0238406	C16H16N3NaO7S2
-452.0828477	C12H28FeO14
-452.0859976	C20H22N2O6S2
-452.1107322	C24H20O9
-452.1471177	C25H24O8
-452.1502258	C19H23N7O6
-452.1965226	C26H29NO6
-452.2010451	C24H30F2O6
-452.2252336	C25H30N6O2
-452.2436906	C23H35N3O6
-452.254473	C19H37N5O7
-452.2567099	C23H36N4O5
-452.3501747	C27H48O5
-452.3654308	C31H48O2
-452.4957167	C31H64O
-453.0305565	C12H22CuO14
-454.030102	C12H22O14Zn
-454.0795491	C15H24N6O5Se
-454.1394456	C22H27ClO8
-454.1416384	C28H22O6
-454.1818304	C21H30N4O5S
-454.19223	C24H32ClFO5
-454.1991533	C26H30O7
-454.2051966	C22H33N3O5S
-454.2404481	C30H32N2O2
-454.2566682	C24H38O8
-454.2615774	C27H36N2O4
-454.2664867	C30H34N4
-454.2696875	C24H39NO7
-454.2701231	C19H39N5O7
-454.306073	C25H43NO6
-455.9362386	C16H10N2O6S4
-455.9903827	C17H14N2O7S3
-456.047252	C19H17ClFN3O5S
-456.0744736	C17H18N5O8P
-456.0953	C22H18N2O9
-456.1139269	C23H22N2O6S
-456.1350563	C20H26N2O8S
-456.1420324	C24H24O9
-456.1707434	C23H25N5O5
-456.1729802	C27H24N4O3
-456.196826	C21H31ClN6O3
-456.2311935	C23H37NO6S
-456.2405767	C20H42O7P2
-456.2511889	C27H36O6
-456.2545597	C24H40O6S
-456.2772275	C27H38N2O4
-456.2776631	C22H38N6O4
-456.2798999	C26H37N5O2
-456.3603454	C30H48O3
-458.0264637	C16H15N5O7S2
-458.0618482	C13H19N4O12P
-458.0795617	C20H22Cl2N2O6
-458.0849114	C22H18O11
-458.1554456	C20H27NO11
-458.1576775	C20H28Cl2N8
-458.1681734	C22H35IO2
-458.2146689	C27H28N6O
-458.2156329	C17H34N4O10
-458.2201066	C25H32N2O6
-458.2304534	C26H34O7
-458.266839	C27H38O6
-458.3759955	C30H50O3
-460.0421138	C16H17N5O7S2
-460.06531	C14H21NO14S
-460.0927544	C17H21N4O9P
-460.1034478	C22H22ClN5O2S
-460.138251	C19H28N4O5S2
-460.1580764	C20H28O12
-460.1630295	C21H30ClNO8
-460.1733325	C24H28O9
-460.1760049	C23H27N3O7
-460.209718	C25H32O8
-460.2287806	C21H36N4O5S
-460.2391363	C26H34FNO5
-460.2591228	C26H37NO6
-460.2613596	C30H36O4
-460.282489	C27H40O6
-461.8465675	C15H13Br3O2
-461.9562818	C15H10O13S2
-462.0062922	C14H14N8O4S3
-462.079826	C21H18O12
-462.0973567	C15H29O10P3
-462.1084044	C17H23N4O9P
-462.1141447	C21H22N4O6S
-462.1162115	C22H22O11
-462.1422502	C22H24N2O9
-462.1472473	C21H30Cl2N2O5
-462.147595	C20H22N8O5
-462.1506181	C18H34Cl2N2O5S
-462.173242	C23H28ClN5O3
-462.1765688	C22H28N6O3S
-462.1950697	C18H37ClN2O7S
-462.2101119	C21H34O11
-462.217258	C28H31NO5
-462.2253681	C25H34O8
-462.2363294	C28H31FN4O
-462.2417671	C26H35FO6
-462.2796821	C29H37N3O2
-462.2981391	C27H42O6
-462.3322878	C24H47NO7
-464.0641702	C12H22N4O11P2
-464.0743467	C24H16O10
-464.0780205	C13H24N3O11PS
-464.0954761	C21H20O12
-464.096789	C21H20FN3O6S
-464.106126	C14H26NO14P
-464.1103796	C22H30Cl4N2
-464.1502258	C20H23N7O6
-464.1682471	C23H28O10
-464.1731564	C26H26N2O6
-464.1866113	C21H27N7O5
-464.2046326	C24H32O9
-464.2189736	C28H29F2N3O
-464.2410181	C25H36O8
-464.2926598	C30H40O4
-464.3137891	C27H44O6
-464.3479378	C24H49NO7
-464.3501747	C28H48O5
-464.4593312	C31H60O2
-464.5321022	C33H68
-466.050006	C16H20N2O10S2
-466.066234	C22H21Cl3N4O
-466.076537	C25H19Cl2N3O2
-466.1111262	C21H22O12
-466.1220787	C20H23N5O6S
-466.1263823	C25H22O9
-466.1475117	C22H26O11
-466.1658758	C20H25N7O6
-466.168811	C22H29N3O6S
-466.1758311	C24H31ClO7
-466.19223	C25H32ClFO5
-466.2202827	C24H34O9
-466.2566682	C25H38O8
-466.2615774	C28H36N2O4
-466.306073	C26H43NO6
-466.3446953	C31H46O3
-466.3658247	C28H50O5
-468.0592174	C14H18N5O11P
-468.0602185	C18H18N6O5S2
-468.0692614	C23H16O11
-468.110644	C23H26Cl2O6
-468.1420324	C25H24O9
-468.1480756	C21H27N3O7S
-468.174167	C23H29ClFN3O4
-468.1963464	C29H27N3O3
-468.1995472	C23H32O10
-468.2174758	C26H31N3O5
-468.2511889	C28H36O6
-468.2772275	C28H38N2O4
-468.2853376	C25H41NO7
-468.2857732	C20H41N5O7
-468.2982242	C22H46NO7P
-468.3005937	C29H41NO4
-468.3239599	C30H44O4
-468.3603454	C31H48O3
-468.3967309	C32H52O2
-469.9676825	C9H15N2O14P3
-469.9807018	C9H16N3O13P3
-470.0957313	C19H23N4O6PS
-470.1190601	C20H23NO12
-470.1424263	C21H26O12
-470.1554456	C21H27NO11
-470.1886303	C28H26N4O3
-470.1940679	C26H30O8
-470.266839	C28H38O6
-470.2951144	C32H39NO2
-470.3009876	C25H43NO7
-470.3058969	C28H41N3O3
-470.33961	C30H46O4
-470.3607393	C27H50O6
-470.3759955	C31H50O3
-470.3786679	C30H49N3O
-470.412381	C32H54O2
-472.0177015	C19H17Cl2N3O5S
-472.0824075	C17H19N6O8P
-472.1005615	C23H20O11
-472.1092771	C18H22N6O7S
-472.1663564	C21H30N2O8S
-472.1688588	C17H30N2O13
-472.1894598	C19H28N8O6
-472.209718	C26H32O8
-472.2258453	C20H32N8O5
-472.231283	C18H36N4O10
-472.2443023	C18H37N5O9
-472.3107645	C32H41NO2
-472.35526	C30H48O4
-472.3916455	C31H52O3
-474.079826	C22H18O12
-474.1108618	C21H26Cl2N2O6
-474.1503602	C20H27NO12
-474.1631139	C28H27NO4S
-474.1651319	C27H25ClN6
-474.1889826	C25H30O9
-474.2020019	C25H31NO8
-474.2096275	C25H32ClN5O2
-474.2253681	C26H34O8
-474.2617536	C27H38O7
-474.3709101	C30H50O4
-476.00455	C19H18Cl3N3O3S
-476.0393092	C18H20ClN3O6S2
-476.0949221	C20H27AlCl2O7
-476.1102917	C27H22Cl2N4
-476.1862196	C25H31ClN2O5
-476.2046326	C25H32O9
-476.2410181	C26H36O8
-476.2574171	C27H37FO6
-478.024573	C15H17N7O5S3
-478.0491831	C19H19ClN3NaO6S
-478.0536113	C24H14O11
-478.070437	C16H19N5O10S
-478.0958716	C23H21N2NaO6S
-478.1294903	C20H21N7O7
-478.1324255	C22H25N3O7S
-478.19223	C26H32ClFO5
-478.2002962	C25H31FO8
-478.2022613	C22H29N7O5
-478.2171258	C29H33ClN2O2
-478.2202827	C25H34O9
-478.2355388	C29H34O6
-478.2489937	C24H35N5O5
-478.2530807	C27H36F2O5
-478.2571038	C21H38N4O8
-478.2615774	C29H36N2O4
-478.2745967	C29H37N3O3
-479.9495245	C10H14N5O10PSe
-479.9727715	C18H15Cl4N3O4
-480.0447939	C17H18N5NaO6S2
-480.0460655	C12H21N3O13P2
-480.0692614	C24H16O11
-480.0903907	C21H20O13
-480.1083632	C22H23ClN2O8
-480.1451404	C20H23N7O7
-480.1572885	C30H24O6
-480.1581597	C20H24N8O6
-480.1631617	C23H28O11
-480.1871335	C22H30N6O4S
-480.1963904	C28H31ClN2O3
-480.2642082	C29H37NO5
-480.2772275	C29H38N2O4
-480.2821367	C32H36N4
-480.2853376	C26H41NO7
-480.2857732	C21H41N5O7
-480.3087038	C27H44O7
-480.3450893	C28H48O6
-480.3711279	C28H50N2O4
-480.4906313	C32H64O2
-482.0240584	C16H16N5NaO7S2
-482.0570269	C12H26FeO16
-482.0682869	C17H23NO11S2
-482.074699	C17H20N4NaO9P
-482.1212969	C25H22O10
-482.1240133	C22H25ClN2O8
-482.1424263	C22H26O12
-482.150008	C24H23N5O6
-482.1940679	C27H30O8
-482.1967404	C26H29N3O6
-482.2468436	C25H39NO6S
-482.2468524	C29H35FO5
-482.2564921	C28H36N2O5
-482.2879683	C26H42O8
-482.2928776	C29H40N2O4
-482.3014232	C21H43N5O7
-482.3502598	C24H52NO6P
-483.9833326	C10H17N2O14P3
-484.0426795	C13H26NO10PS3
-484.0853054	C20H20O14
-484.1005615	C24H20O11
-484.1074731	C21H27N3O4S3
-484.1218609	C24H23N3O6S
-484.1535599	C27H28ClFN2OS
-484.282489	C29H40O6
-484.2988791	C26H45NO5S
-484.3134369	C32H40N4
-484.3188745	C30H44O5
-485.6834417	C10Cl10O
-485.9625971	C9H15N2O15P3
-485.9756164	C9H16N3O14P3
-486.0883717	C15H21N3O15
-486.106859	C24H26BrN3O3
-486.1071687	C19H24N6O5S2
-486.1525971	C25H26O10
-486.1889826	C26H30O9
-486.2877922	C28H40N2O5
-486.2981391	C29H42O6
-486.3345246	C30H46O5
-486.3735825	C30H49N3O2
-487.0810732	C13H18HgNO6
-487.6990918	C10H2Cl10O
-488.0464116	C14H22N4O9P2S
-488.0643028	C17H18N5O10P
-488.1318616	C24H24O11
-488.1401417	C24H26N2O7S
-488.1460149	C17H30N2O12S
-488.1623739	C32H24O5
-488.1731564	C28H26N2O6
-488.200159	C18H34N2O13
-488.2046326	C26H32O9
-488.2261976	C18H36N4O11
-488.2392169	C18H37N5O10
-488.2774036	C28H40O7
-488.3501747	C30H48O5
-490.0421631	C18H17N6NaO5S2
-490.1573741	C28H26ClN3O3
-490.3195279	C23H44N6O5
-490.3658247	C30H50O5
-492.0903907	C22H20O13
-492.0954703	C14H26N4O11P2
-492.1267762	C23H24O12
-492.1682849	C28H29ClN4S
-492.1761811	C24H29NO10
-492.2359328	C26H36O9
-492.267579	C27H41NO5S
-492.4906313	C33H64O2
-493.6885271	C12Cl10
-493.9650554	C18H14Cl4N4O4
-494.0849114	C25H18O11
-494.1212969	C26H22O10
-494.1589864	C23H30N4O4S2
-494.1788118	C24H30O11
-494.1837211	C27H28N2O7
-494.2116098	C26H32F2O7
-494.2131305	C24H34N4O5S
-494.2151973	C25H34O10
-494.2282166	C25H35NO9
-494.2304534	C29H34O7
-494.2468436	C26H39NO6S
-494.2479953	C27H36F2O6
-494.3009876	C27H43NO7
-494.3189162	C30H42N4O2
-494.3196146	C28H47NO4S
-494.3243538	C28H46O7
-495.9729857	C10H15N4O13P3
-495.986005	C10H16N5O12P3
-496.0888462	C21H23N3O7S2
-496.1035369	C16H23N6O10P
-496.1349241	C23H28ClN3O5S
-496.1526827	C23H28ClN3O7
-496.1585998	C14H36Cl2N2O12
-496.2308474	C25H36O10
-496.2406659	C31H32N4O2
-496.2617952	C28H36N4O4
-496.2806878	C21H41N5O8
-496.282489	C30H40O6
-496.2907691	C30H42N2O2S
-496.3036184	C27H44O8
-496.3400039	C28H48O7
-498.1189279	C22H25ClN2O9
-498.1482934	C21H27N5O7S
-498.1786556	C25H24F6N4
-498.2078751	C20H35NO13
-498.2101119	C24H34O11
-498.2253681	C28H34O8
-498.2255958	C25H32F3N3O4
-498.2547775	C25H40N2O6S
-498.280825	C29H38FN3O3
-498.2981391	C30H42O6
-498.3290869	C33H42N4
-499.9287098	C6H16O18P4
-499.9809196	C9H16N5O13P3
-499.9912665	C10H18N3O14P3
-500.0065177	C15H16N7NaO5S3
-500.0771895	C15H23N5O10P2
-500.1137076	C19H23N6O8P
-500.1626895	C26H30Cl2F3NO
-500.1660103	C22H29NO12
-500.1812664	C26H29NO9
-500.1844294	C25H31F3O5S
-500.2261976	C19H36N4O11
-500.2306712	C27H34N2O7
-500.2385735	C26H35F3O6
-500.2670567	C28H38N2O6
-500.2937938	C26H45NO6S
-500.298533	C26H44O9
-500.3137891	C30H44O6
-502.0693909	C21H22Cl2N2O8
-502.097174	C16H26N4O10S2
-502.1533849	C18H30O16
-502.1557917	C25H28N2O7S
-502.1730658	C28H26ClN7
-502.2202827	C27H34O9
-502.2366817	C28H35FO7
-502.2849436	C32H39NO4
-502.3083098	C33H42O4
-502.4174664	C36H54O
-503.9702036	C22H19Br2NO3
-504.0845175	C30H16O8
-504.1211747	C26H22ClF3N2O3
-504.1247533	C21H28ClN3O7S
-504.142468	C23H24N4O9
-504.1577241	C27H24N4O6
-504.1631617	C25H28O11
-504.169035	C18H32O16
-504.2523317	C28H37FO7
-504.2723183	C28H40O8
-504.3239599	C33H44O4
-504.3243955	C28H44N4O4
-506.1001676	C30H18O8
-506.1062108	C26H21N3O6S
-506.1402708	C18H34ClN2O8PS
-506.184024	C20H32N5O8P
-506.1918311	C25H31NO10
-506.1940679	C29H30O8
-506.197176	C23H29N7O6
-506.2151973	C26H34O10
-507.9916126	C12H19N4O10P3S
-508.064176	C25H16O12
-508.2123904	C28H31N3O6
-508.2157612	C25H35N3O6S
-508.2272598	C27H34F2O7
-508.2617952	C29H36N4O4
-508.2624936	C27H41NO6S
-508.2802522	C27H41NO8
-509.9652696	C10H14N5O13P3
-510.0016551	C11H18N5O12P3
-510.1319033	C25H22N4O8
-510.2101119	C25H34O11
-510.2301447	C29H36NO5P
-510.2774453	C29H38N4O4
-510.2959023	C27H43NO8
-510.3322878	C28H47NO7
-510.4778298	C32H63NO3
-511.9679003	C10H15N4O14P3
-511.9714038	C10H15N5O13P2S
-511.9809196	C10H16N5O13P3
-512.0102108	C19H18Cl2N3NaO6S
-512.1300604	C17H25N5O13
-512.1354024	C26H27N3O4S2
-512.1765272	C27H30N2O6S
-512.2210228	C25H37NO8S
-512.2515091	C27H45IO
-512.2774036	C30H40O7
-512.293531	C24H40N8O4
-513.9667555	C14H14N3O12PS2
-514.0938032	C20H22N4O10S
-514.160531	C26H27NO10
-514.1735454	C22H30Cl2N10
-514.1969165	C27H31NO9
-514.2099358	C27H32N2O8
-514.214845	C30H30N4O4
-514.2202827	C28H34O9
-514.2289983	C23H36N6O5S
-514.254867	C20H39N5O10
-514.2930537	C30H42O7
-515.9673807	C12H12N6Na2O10S2
-516.0221245	C12H21NO17S2
-516.0721041	C15H23N5O11P2
-516.1092316	C26H27ClN2O3S2
-516.1216415	C19H24N7O8P
-516.1267762	C25H24O12
-516.1761811	C26H29NO10
-516.1784179	C30H28O8
-516.1995472	C27H32O10
-516.2723183	C29H40O8
-516.2853376	C29H41NO7
-516.2887084	C26H45NO7S
-516.2934476	C26H44O10
-516.2982242	C26H46NO7P
-516.3087038	C30H44O7
-516.3095722	C31H48O2S2
-516.3450893	C31H48O6
-517.8875803	C17H12I2O3
-517.9914843	C9H18N5O14P3
-518.0370777	C19H17N6NaO6S2
-518.0850817	C16H26N2O13P2
-518.0920815	C20H21CaN7O7
-518.1060408	C24H22O13
-518.1271717	C26H25N2NaO6S
-518.1788118	C26H30O11
-518.1940679	C30H30O8
-518.2151973	C27H34O10
-518.2156329	C22H34N4O10
-518.2250158	C33H30N4O2
-518.2439083	C26H35N5O6
-518.2562268	C25H44O7P2
-518.2679729	C25H43NO8S
-518.2679818	C29H39FO7
-518.3032245	C33H42O5
-518.3243538	C30H46O7
-518.3818687	C28H54O8
-518.412381	C36H54O2
-520.0306332	C13H19N5O13P2
-520.0794321	C30H16O9
-520.0915186	C22H22N6O5S2
-520.0985386	C24H24ClN3O6S
-520.1419441	C27H30Cl2O6
-520.1580764	C25H28O12
-520.1944619	C26H32O11
-520.212826	C24H31N7O6
-520.2227813	C28H37ClO7
-520.3036184	C29H44O8
-520.3400039	C30H48O7
-522.1355298	C30H26CaO6
-522.1373409	C24H26O13
-522.1417218	C32H18N8
-522.1471594	C30H22N4O5
-522.1482934	C23H27N5O7S
-522.1737264	C25H30O12
-522.2101119	C26H34O11
-522.2464974	C27H38O10
-522.2774453	C30H38N4O4
-524.0527201	C19H17N9O5S2
-524.0722802	C14H25N3O14P2
-524.2023958	C25H33NO11
-524.225762	C26H36O11
-524.2725143	C27H38F6O3
-524.2980046	C33H38N6
-524.4593312	C36H60O2
-525.8904288	C15H13I2NO4
-525.9965697	C11H18N5O13P3
-526.0787171	C20H21N7O6S2
-526.0834563	C20H20N6O9S
-526.1686411	C24H30O13
-526.1695496	C14H33N10O7PS
-526.2593406	C29H37N3O6
-526.2908169	C27H43NO9
-526.3272024	C28H47NO8
-527.9580757	C10H16N5O12P3S
-527.9628149	C10H15N4O15P3
-527.9758342	C10H16N5O14P3
-528.0122198	C11H20N5O13P3
-528.1420324	C30H24O9
-528.1631617	C27H28O11
-528.1761811	C27H29NO10
-528.1842911	C24H32O13
-528.2148034	C32H32O7
-528.2159462	C29H33FO8
-528.2386052	C28H35N3O7
-528.2723183	C30H40O8
-530.0486962	C16H22N2O14P2
-530.0569763	C16H24N4O10P2S
-530.086651	C19H22N8O6S2
-530.1918311	C27H31NO10
-530.223743	C20H37N3O13
-530.2497816	C20H39N5O11
-530.2515828	C29H38O9
-530.272935	C31H41ClFNO3
-530.2879683	C30H42O8
-530.3090977	C27H46O10
-530.4698959	C35H62O3
-531.2728628	C24H40N5O8
-531.9707489	C9H16N5O15P3
-532.0643463	C16H24N2O14P2
-532.0773656	C16H25N3O13P2
-532.1035369	C19H23N6O10P
-532.1216909	C25H24O13
-532.2205005	C27H34N2O9
-532.2308474	C28H36O10
-532.2438667	C28H37NO9
-532.2672329	C29H40O9
-532.2836319	C30H41FO7
-532.3036184	C30H44O8
-532.3069892	C27H48O8S
-532.428031	C37H56O2
-534.0566302	C15H23N3O14P2
-534.0799964	C16H26N2O14P2
-534.0930157	C16H27N3O13P2
-534.1009554	C24H22O14
-534.1373409	C25H26O13
-534.1525971	C29H26O10
-534.1737264	C26H30O12
-534.2101119	C27H34O11
-534.2253681	C31H34O8
-534.2828829	C29H42O9
-534.3192685	C30H46O8
-534.4225517	C40H54
-536.0603946	C22H20N4O8S2
-536.0722802	C15H25N3O14P2
-536.1084954	C27H21NO11
-536.1166055	C24H24O14
-536.126424	C30H20N4O6
-536.1655698	C26H31Cl2N5O3
-536.2046326	C30H32O9
-536.298533	C29H44O9
-536.3865602	C35H52O4
-536.3995795	C35H53NO3
-536.4382018	C40H56
-537.9385429	C16H9N4Na3O9S2
-538.0385255	C14H22N2O16P2
-538.0899968	C30H18O10
-538.1030161	C30H19NO9
-538.1111262	C27H22O12
-538.1877125	C25H30FN3O9
-538.2930537	C32H42O7
-538.3087454	C31H42N4O4
-538.4538519	C40H58
-538.5091299	C34H67NO3
-539.6262325	C10Cl12
-539.75708	C15H12Br4O2
-540.0671948	C14H25N3O15P2
-540.1631617	C28H28O11
-540.1842911	C25H32O13
-540.2071289	C31H29N5O4
-540.2983569	C31H42N2O6
-540.3087038	C32H44O7
-540.386384	C37H50N2O
-540.4695019	C40H60
-541.9130963	C15H10O16S3
-542.1212969	C30H22O10
-542.1995007	C26H36Cl2N4O4
-542.1999412	C25H34O13
-542.2891023	C24H47NO10S
-542.3009876	C31H43NO7
-542.4020341	C37H52N2O
-543.9529903	C10H16N5O13P3S
-544.0996287	C21H25N5O8S2
-544.130238	C23H26N5NaO7S
-544.1580764	C27H28O12
-544.1710957	C27H29NO11
-544.1971343	C27H31N3O9
-544.2021314	C26H37Cl2N3O5
-544.2308474	C29H36O10
-544.2461035	C33H36O7
-544.2654317	C21H41N5O11
-544.3085276	C34H42N2O4
-544.5008021	C40H64
-545.9863989	C10H18N5O15P3
-546.0462833	C15H21N5O13P2
-546.0799964	C17H26N2O14P2
-546.0930157	C17H27N3O13P2
-546.1012584	C17H26N3O15P
-546.1068287	C18H26O19
-546.1525971	C30H26O10
-546.1892855	C23H34N3O10P
-546.192619	C20H35NO16
-546.2828829	C30H42O9
-546.3403978	C28H50O10
-546.4072956	C37H54O3
-546.5164521	C40H66
-548.017033	C18H18N6O8S3
-548.0592609	C16H24N2O15P2
-548.0956464	C17H28N2O14P2
-548.1086657	C17H29N3O13P2
-548.1729219	C23H36N4O5S3
-548.1917836	C20H39NO12P2
-548.2028314	C22H33N5O11
-548.225762	C28H36O11
-548.2306712	C31H34N2O7
-548.2621475	C29H40O10
-548.298533	C30H44O9
-548.4076895	C33H56O6
-548.5321022	C40H68
-549.9961291	C19H16N5NaO7S3
-550.0385255	C15H22N2O16P2
-550.0515448	C15H23N3O15P2
-550.074911	C16H26N2O15P2
-550.0879303	C16H27N3O14P2
-550.09587	C24H22O15
-550.1137986	C27H21N3O10
-550.1241455	C28H23NO11
-550.1556168	C22H31Cl2N7O5
-550.2050266	C27H34O12
-550.2184815	C22H35N5O11
-550.2674507	C28H40N2O9
-550.2777976	C29H42O10
-550.2853792	C31H39N5O4
-550.4174664	C40H54O
-550.4961106	C35H66O4
-552.0541755	C15H24N2O16P2
-552.0813478	C22H22N6O7S2
-552.0813918	C20H26ClN5O7S2
-552.10341	C27H21NO12
-552.1375587	C24H26N2O13
-552.2547874	C29H38F3N3O2S
-552.2619714	C31H38N2O7
-552.2646438	C30H37N5O5
-552.2934476	C29H44O10
-552.4331164	C40H56O
-554.2515828	C31H38O9
-554.2879683	C32H42O8
-554.3243538	C33H46O7
-554.4546397	C33H62O6
-556.136947	C31H24O10
-556.1509606	C32H31BrN2O2
-556.1792057	C25H32O14
-556.1930934	C26H37NO8S2
-556.2070846	C28H39Cl3N4O
-556.2074812	C29H33NO10
-556.2155912	C26H36O13
-556.2461035	C34H36O7
-556.2617952	C33H36N4O4
-556.3036184	C32H44O8
-556.3193101	C31H44N4O5
-557.745207	C9H6I3NO3
-558.0423392	C22H19N4NaO8S2
-558.1064723	C25H29BrF2O7
-558.1179511	C21H26N8O6S2
-558.1322062	C21H26N7O9P
-558.1646835	C23H32N6O6S2
-558.1867457	C28H31NO11
-558.1948558	C25H34O14
-558.2325453	C22H42N4O8S2
-558.2774453	C33H38N4O4
-558.2778809	C28H38N8O4
-558.3192685	C32H46O8
-558.3457427	C27H48N6O6
-559.9158549	C10H15N5O13P2Se
-560.1224787	C19H28O19
-560.1475533	C29H24N4O8
-560.225762	C29H36O11
-560.2470702	C33H35FN2O5
-560.3115523	C31H45NO8
-560.3349185	C32H48O8
-560.4229457	C38H56O3
-562.0223362	C18H18N8O7S3
-562.074911	C17H26N2O15P2
-562.1101933	C21H27N5O9S2
-562.1243158	C18H31N3O13P2
-562.1475117	C30H26O11
-562.1627678	C34H26O8
-562.173778	C27H26F3N5O5
-562.2337376	C27H35N5O8
-562.2360623	C27H42Cl2N2O6
-562.2414121	C29H38O11
-562.2616214	C34H40ClNO4
-562.2674507	C29H40N2O9
-562.3505686	C32H50O8
-562.3810808	C40H50O2
-562.4022102	C37H54O4
-564.056848	C15H23N5O14P2
-564.090561	C17H28N2O15P2
-564.0953539	C23H30Cl2NNa2O6P
-564.1035804	C17H29N3O14P2
-564.1085293	C20H25FN8O6S2
-564.1479056	C26H28O14
-564.1529852	C18H34N4O12P2
-564.1842911	C27H32O13
-564.2048921	C29H30N6O6
-564.240842	C35H34N2O5
-564.2556937	C26H45NO8S2
-564.2934476	C30H44O10
-564.2982242	C30H46NO7P
-564.3967309	C40H52O2
-566.0334401	C15H22N2O17P2
-566.0698256	C16H26N2O16P2
-566.1190601	C28H23NO12
-566.1212969	C32H22O10
-566.2129605	C27H35NO12
-566.2151973	C31H34O10
-566.2461452	C34H34N4O4
-566.2727122	C29H42O11
-566.2802939	C31H39N5O5
-566.3036601	C32H42N4O5
-566.3090977	C30H46O10
-566.3355719	C25H48N6O8
-566.3378087	C29H47N5O6
-566.3537633	C31H52N2O5S
-566.412381	C40H54O2
-566.54043	C36H71NO3
-568.0490902	C15H24N2O17P2
-568.0621095	C15H25N3O16P2
-568.1052802	C22H32ClN3O6S3
-568.1461926	C27H31N2NaO6S2
-568.2087852	C26H37N5O5S2
-568.2160268	C22H36N4O13
-568.2883623	C29H44O11
-568.2981807	C35H40N4O3
-568.3036184	C33H44O8
-568.3400039	C34H48O7
-568.3741526	C31H53NO8
-568.4001912	C31H55N3O6
-568.428031	C40H56O2
-570.0781501	C17H30Cl2N5O8PS
-570.1633795	C28H28N2O11
-570.1948558	C26H34O14
-570.2231312	C30H35NO10
-570.2759069	C28H44N2O8S
-570.3041823	C32H45N3O4S
-570.3192685	C33H46O8
-571.7972425	C11H12I3NO2
-572.1478563	C22H28N7O9P
-572.2499994	C21H39N7O11
-572.2930954	C34H40N4O4
-572.3349185	C33H48O8
-572.3380265	C27H47N7O6
-574.0410603	C14H23N8NaO9S3
-574.2777976	C31H42O10
-574.3141831	C32H46O9
-576.0710888	C19H28Cl2N6O6S2
-576.1267762	C30H24O12
-576.1528588	C28H30ClNO10
-576.2152829	C29H36ClN3O7
-576.2831007	C30H42N2O9
-576.4178603	C38H56O4
-578.072498	C16H25N5O14P2
-578.1192304	C18H31N3O14P2
-578.1424263	C30H26O12
-578.1635557	C27H30O14
-578.1999412	C28H34O13
-578.2001112	C31H33N3O6S
-578.2108937	C27H35N5O7S
-578.2282166	C32H35NO9
-578.2564921	C36H36N2O5
-578.2650377	C28H39N5O8
-578.3166794	C33H43N5O4
-578.3607393	C36H50O6
-578.3818687	C33H54O8
-578.4546397	C35H62O6
-579.8950402	C6H17O21P5
-580.0435199	C15H24N5O13P3
-580.0490902	C16H24N2O17P2
-580.119927	C20H28N7O9PS
-580.1347102	C29H25NO12
-580.136947	C33H24O10
-580.1428202	C26H28O15
-580.166836	C23H34ClN5O8S
-580.1733325	C34H28O9
-580.1792057	C27H32O14
-580.2155912	C28H36O13
-580.256886	C32H38N2O8
-580.2617952	C35H36N4O4
-580.2959439	C32H41N5O5
-580.3458771	C28H52O12
-580.3611333	C32H52O9
-580.5430608	C37H72O4
-581.9813876	C17H17N7O8S4
-582.0283547	C15H22N2O18P2
-582.0674126	C15H25N5O15P2
-582.1584703	C26H30O15
-582.1898537	C24H30N8O9
-582.2514067	C35H36N2O6
-582.3192685	C34H46O8
-582.4342982	C30H62O10
-584.2670567	C35H38N2O6
-584.2832769	C29H44O12
-584.3349185	C34H48O8
-584.4229457	C40H56O3
-584.4288189	C33H60O8
-586.1635064	C23H30N7O9P
-586.1686411	C29H30O13
-586.1935768	C18H38N4O15S
-586.2074773	C35H36ClNO3S
-586.2359744	C33H34N4O6
-586.2414121	C31H38O11
-586.2489937	C33H35N5O5
-586.2723599	C34H38N4O5
-586.2759963	C23H43N5O12
-586.3038362	C32H44N2O8
-586.3141831	C33H46O9
-586.318827	C30H52O7P2
-586.3505686	C34H50O8
-586.3869541	C35H54O7
-588.1267762	C31H24O12
-588.1842911	C29H32O13
-588.215537	C34H32MgN4O4
-588.244914	C21H39N7O12
-588.2516245	C33H36N4O6
-588.2646438	C33H37N5O5
-588.2884456	C29H40N8O5
-588.3032661	C38H40N4O2
-588.3194863	C32H46N2O8
-588.3298331	C33H48O9
-589.9221645	C15H17I2N5O4
-590.0468947	C26H14N8O7S
-590.1060408	C30H22O13
-590.1685089	C29H32ClNO10
-590.2605641	C21H41N7O12
-590.2650377	C29H39N5O8
-590.2672745	C33H38N4O6
-590.270911	C22H43N5O13
-590.5124526	C36H70MgO4
-591.9342307	C10H16N4O17P4
-591.94725	C10H17N5O16P4
-591.9809223	C18H16N6Na2O8S3
-592.0517626	C16H23N5O15P2
-592.0621095	C17H25N3O16P2
-592.098495	C18H29N3O15P2
-592.1348805	C19H33N3O14P2
-592.1792057	C28H32O14
-592.256886	C33H38N2O8
-592.2829246	C33H40N4O6
-592.3247478	C32H48O10
-592.3611333	C33H52O9
-594.0674126	C16H25N5O15P2
-594.0907788	C17H28N4O15P2
-594.1584703	C27H30O15
-594.1948558	C28H34O14
-594.2774453	C36H38N4O4
-594.2985747	C33H42N4O6
-594.3017376	C32H44F3N3O2S
-594.5223254	C37H70O5
-596.0384345	C15H24N5O14P3
-596.1377349	C26H28O16
-596.1741204	C27H32O15
-596.2670567	C36H38N2O6
-596.298533	C34H44O9
-596.3142247	C33H44N4O6
-596.3658664	C38H48N4O2
-596.3865602	C40H52O4
-598.1897704	C27H34O15
-598.2566682	C36H38O8
-598.2827068	C36H40N2O6
-598.2853792	C35H39N5O4
-598.3298748	C33H46N4O6
-598.3483318	C31H51NO10
-598.3505686	C35H50O8
-599.9969636	C13H20N5O16P3
-600.2054205	C27H36O15
-600.2206766	C31H36O12
-600.3064669	C33H45NO9
-600.3298331	C34H48O9
-600.3455249	C33H48N4O6
-600.3662186	C35H52O8
-600.4178603	C40H56O4
-601.9968843	C28H10O16
-602.1207997	C22H27N9O7S2
-602.2311871	C35H34MgN4O4
-602.2672745	C34H38N4O6
-602.3378087	C32H47N5O6
-602.3454832	C34H50O9
-602.3607393	C38H50O6
-602.4335104	C40H58O4
-604.0386106	C14H26N3O17P3
-604.1011411	C26H27IN6O3
-604.2357566	C37H34N2O6
-604.2883623	C32H44O11
-604.3588964	C30H53NO11
-604.3975188	C35H56O8
-606.0301819	C18H25Cl2N9O4S3
-606.0966353	C24H27KN4O10S
-606.1786668	C17H39N5O14S2
-606.2312413	C30H38O13
-606.2676268	C31H42O12
-606.3166071	C32H47F5O3S
-607.9421647	C10H17N5O17P4
-608.1654372	C33H32FeN4O4
-608.1741204	C28H32O15
-608.2306712	C36H34N2O7
-608.2670567	C37H38N2O6
-608.298533	C35H44O9
-608.4489843	C42H58N2O
-610.0623273	C16H25N5O16P2
-610.0726742	C17H27N3O17P2
-610.1322555	C30H26O14
-610.1533849	C27H30O16
-610.1847684	C25H30N8O10
-610.1897704	C28H34O15
-610.1900734	C20H38N3O16P
-610.2674507	C33H40N2O9
-610.2827068	C37H40N2O6
-612.1892004	C34H30N2O9
-612.2516245	C35H36N4O6
-612.2749907	C36H39N3O6
-612.3662186	C36H52O8
-614.184685	C27H34O16
-614.1948016	C35H30MgN4O5
-614.2259798	C31H36N2O11
-614.2802939	C35H39N5O5
-614.2910763	C31H41N7O6
-614.3818687	C36H54O8
-615.7637056	C11H9I3N2O4
-616.2069081	C36H36FeN4O2
-616.2104516	C35H32MgN4O5
-616.2361922	C33H34N6O6
-616.2937071	C31H42N6O7
-616.3013816	C33H45NO10
-616.3534588	C33H49N5O6
-616.3611333	C35H52O9
-616.3905427	C32H58N2O7S
-616.3975188	C36H56O8
-618.0588978	C22H24N6O9S3
-618.1341713	C20H32N6O12S2
-618.1354071	C20H31N4O16P
-618.2261017	C35H34MgN4O5
-618.2265021	C31H39NO10S
-618.2676268	C32H42O12
-618.3479795	C36H47N5O4
-620.1654372	C34H32FeN4O4
-620.2814756	C23H45N5O14
-620.2832769	C32H44O12
-620.294495	C23H46N6O13
-620.3658664	C40H48N4O2
-622.4808545	C37H66O7
-622.5688816	C43H74O2
-622.6030303	C40H79NO3
-623.9402275	C20H20I2N2O5
-624.0415918	C16H23N5O17P2
-624.0519387	C17H25N3O18P2
-624.0779773	C17H27N5O16P2
-624.2054205	C29H36O15
-624.2983569	C38H42N2O6
-624.5845317	C43H76O2
-625.9452768	C17H15N7Na2O8S4
-626.1003687	C25H28N6O7S3
-626.1482995	C27H30O17
-626.3140069	C38H44N2O6
-626.3666126	C33H54O11
-628.0540302	C19H24N8O10S3
-628.1596417	C34H32N4O4Zn
-628.2286106	C32H37NO12
-628.2308474	C36H36O10
-628.2672329	C37H40O9
-628.2944055	C30H47N3O9S
-628.3036184	C38H44O8
-629.7793556	C12H11I3N2O4
-630.2756441	C30H39N9O6
-630.3170316	C34H47NO10
-630.3353958	C32H46N8O5
-630.4295678	C38H59FO6
-632.0943733	C24H26N2O16S
-632.1507981	C27H33ClO15
-632.2962962	C33H45NO11
-632.3093155	C33H46N2O10
-632.3506102	C37H48N4O5
-632.3924334	C36H56O9
-632.5770333	C40H75N3O2
-634.0806139	C27H22O18
-634.1303217	C20H31N4O17P
-634.1322555	C32H26O14
-634.2058977	C24H34N8O12
-634.208663	C23H39NO19
-634.2755607	C32H43NO12
-634.3195279	C35H44N6O5
-634.3332456	C33H50N4O6S
-636.096264	C27H24O18
-636.2079244	C31H35N2NaO11
-636.2597785	C32H43ClN2O9
-636.2831007	C35H42N2O9
-636.360781	C40H48N4O3
-636.6186804	C41H81NO3
-638.111914	C27H26O18
-638.1332134	C27H29N3O13S
-638.2776214	C38H40N2O7
-638.3351363	C36H48N2O8
-638.3454832	C37H50O9
-638.4757691	C37H66O8
-638.5426669	C46H70O
-640.1792057	C32H32O14
-640.2003351	C29H36O16
-640.3013816	C35H45NO10
-641.0863752	C18H33FeO21
-642.0791603	C25H23N8NaO7S2
-642.1341713	C22H32N6O12S2
-642.1948558	C32H34O14
-642.3170316	C35H47NO10
-642.3380284	C29H55O13P
-642.5353447	C41H71NO4
-644.0231784	C15H24N5O17P3
-644.2050682	C34H32N4O9
-646.0207147	C25H29I2NO3
-646.1854668	C26H35N5O12S
-646.2110698	C31H37N3O10S
-646.2450485	C25H43NO18
-646.2777976	C37H42O10
-646.3049702	C30H49N3O10S
-646.3119463	C34H47NO11
-646.371698	C36H54O10
-646.3774784	C29H52N10O6
-646.5688816	C45H74O2
-648.2215478	C25H36N8O12
-648.2934476	C37H44O10
-648.3768685	C32H58NO10P
-648.4730057	C35H69O8P
-648.4965045	C39H68O7
-648.5845317	C45H76O2
-649.7584024	C15H9I3O5
-650.1482995	C29H30O17
-650.3302271	C34H50O12
-650.3925186	C32H60NO10P
-650.6213111	C42H82O4
-650.6343304	C42H83NO3
-651.7870718	C15H12I3NO4
-652.2163298	C21H40N7O14P
-652.2861254	C32H45NO13
-652.3247478	C37H48O10
-652.6158318	C45H80O2
-652.6733467	C43H88O3
-654.1157143	C25H27N9O8S2
-654.2208944	C33H36N2O12
-654.2464974	C38H38O10
-654.2936654	C35H44N2O10
-654.3089216	C39H44N2O7
-654.3814273	C35H60O7P2
-654.5375815	C46H70O2
-655.1342899	C34H32ClFeN4O4
-656.1563618	C32H32O13S
-656.1839388	C38H28N4O7
-656.1952497	C29H36O17
-656.2344777	C32H38N6O7S
-656.2778392	C37H40N4O7
-656.2962962	C35H45NO11
-656.327244	C38H45N5O5
-657.3543044	C26H45N020
-658.2064565	C32H40BrN5O5
-658.2571038	C36H38N4O8
-658.4233396	C42H58O6
-659.8613706	C6H18O24P6
-660.1973104	C35H33NO12
-660.2054205	C32H36O15
-660.2938832	C33H44N4O10
-660.4008029	C32H57N5O9
-660.4237335	C38H60O9
-660.4367528	C38H61NO8
-662.3050596	C25H48N6O14
-662.3068609	C34H47NO12
-662.4083429	C35H56N6O6
-663.8000911	C16H13I3N2O3
-664.2840586	C32H45N5O8S
-664.304054	C36H44N4O8
-664.3717831	C32H58NO11P
-664.3822626	C36H56O11
-666.2218584	C24H42O21
-666.292297	C33H49N3O7S2
-666.3017755	C33H47NO13
-666.3874332	C32H60NO11P
-668.190115	C24H36N7O13P
-668.2112444	C21H40N7O15P
-668.27293	C35H42N2O11
-668.2832769	C36H44O12
-668.3093155	C36H46N2O10
-668.4417056	C37H65O8P
-668.5532316	C47H72O2
-670.0753466	C21H26N6O15P2
-670.0883659	C21H27N7O14P2
-670.2268945	C21H42N7O15P
-670.3078983	C38H48CaN2O6
-670.3249656	C36H48N2O10
-670.3428941	C39H47N5O5
-670.3904977	C31H53N11O5
-670.3928273	C35H58O12
-670.4292128	C36H62O11
-670.4573556	C37H67O8P
-672.1040159	C21H29N7O14P2
-672.1353219	C30H27N3O15
-672.4730057	C37H69O8P
-674.0337431	C16H26N5O18P3
-674.2210706	C33H38O15
-674.2938416	C35H46O13
-674.3432464	C36H51NO11
-674.3666126	C37H54O11
-674.4886558	C37H71O8P
-676.0976589	C25H26N9NaO8S2
-676.232247	C25H42N2O19
-676.3225109	C35H49NO12
-676.432103	C33H61N5O9
-677.8309198	C8H22K2O15Sb2
-678.1326669	C20H34AuO9PS
-678.2470209	C31H46Cl2N2O10
-678.248067	C28H43N5O12S
-678.2997087	C33H47N5O8S
-680.0781535	C20H29N3O19P2
-680.2046326	C42H32O9
-680.3613927	C37H50N6O6
-680.4189076	C35H58N6O7
-682.0938035	C20H31N3O19P2
-682.2402164	C28H38N12O6S
-682.2472853	C32H42O16
-682.5324961	C47H70O3
-684.2304951	C44H32N4O4
-684.3194863	C40H46N2O8
-684.3406156	C37H50N2O10
-686.3225526	C35H47N5O9
-687.9084951	C10H18N5O20P5
-688.3485496	C36H51N3O10
-688.4164113	C35H61NO12
-690.0294887	C17H27N3O20P2S
-690.338161	C36H51NO12
-690.4477531	C34H63N5O9
-692.225762	C40H36O11
-692.3407918	C36H52O13
-692.3506102	C42H48N4O5
-694.1281222	C21H35N7O13P2S
-694.2782771	C34H46ClN3O10
-694.3179895	C34H50N4O9S
-694.3662603	C42H50N4O5
-696.1820543	C34H33NO15
-696.1950736	C34H34N2O14
-696.2781915	C37H44O13
-696.3406156	C38H50N2O10
-696.5481462	C48H72O3
-698.0793365	C28H25N6NaO10S2
-698.2026575	C35H37ClN2O11
-698.2870383	C25H43N13O10
-698.3068609	C37H47NO12
-698.3351363	C41H48N2O8
-698.3921228	C44H50N8
-700.3802837	C34H64Cl2N2O6S
-700.5043058	C39H73O8P
-702.0659725	C32H22N6Na2O6S2
-702.246933	C37H38N4O10
-702.2572799	C38H40N2O11
-702.2887562	C36H46O14
-702.3511803	C37H52N2O11
-702.3956759	C35H59NO13
-702.5329752	C39H76NO7P
-702.5434547	C43H74O7
-704.327244	C42H45N5O5
-704.3483734	C39H49N5O7
-704.4477115	C36H65NO12
-706.4943094	C39H67N5O6
-708.2206766	C40H36O12
-708.2454424	C26H45NO21
-708.2629354	C34H44O16
-708.3819104	C43H52N4O5
-710.2107237	C35H36N2O14
-710.2497816	C35H39N5O11
-710.2744518	C32H46N8O6S2
-712.2731061	C37H44O14
-712.3355302	C38H50N2O11
-712.3670065	C36H56O14
-712.429298	C34H66NO12P
-712.5430608	C48H72O4
-712.5794463	C49H76O3
-714.1903822	C30H36N2O18
-714.2887562	C37H46O14
-714.3181656	C34H52N2O12S
-714.3979127	C40H58O11
-716.0443077	C18H28N5O19P3
-716.2919925	C35H46N6O8S
-716.3153587	C36H49N5O8S
-716.3668304	C38H54N2O11
-716.3771773	C39H56O12
-716.5144766	C43H73O6P
-716.5532316	C51H72O2
-718.4422321	C40H63NO10
-718.4633615	C37H67NO12
-718.5278898	C39H76NO8P
-720.0333491	C24H24N5O15P3
-720.2629354	C35H44O16
-720.3455249	C43H48N4O6
-720.4426261	C36H65NO13
-722.1435606	C21H40O23P2
-722.2574561	C38H42O14
-722.2884039	C41H42N4O8
-722.3611749	C43H50N4O6
-722.4241275	C39H62O12
-722.4440276	C40H68O7P2
-723.9895088	C15H25N5O20P4
-724.0289171	C28H32Cl2O10P2S2
-724.1460986	C21H35N9O15P2
-724.330621	C36H52O15
-724.376825	C43H52N4O6
-724.476163	C40H68O11
-726.2949694	C37H48N6O5S2
-726.5587109	C49H74O4
-728.1696467	C30H34N2O19
-728.1849028	C34H34N2O16
-728.345701	C42H50N2O9
-728.4135628	C41H60O11
-730.2620442	C27H47N9O10S2
-730.590011	C49H78O4
-732.1826602	C21H41N7O17P2
-732.2776943	C27H49N9O10S2
-732.4084774	C40H60O12
-732.4578822	C41H65NO10
-734.1172142	C30H33FeN3O15
-734.4582761	C37H67NO13
-734.460513	C41H66O11
-734.55919	C40H80NO8P
-736.2344838	C34H41NO17
-736.2606924	C37H42N6O8S
-736.4397775	C40H64O12
-736.502069	C38H74NO10P
-738.2361506	C44H36N2O9
-738.6314819	C52H82O2
-739.827701	C6H19O27P7
-740.1741204	C39H32O15
-740.2163791	C33H40O19
-742.1956437	C32H38O20
-742.2684147	C34H46O18
-742.4292128	C42H62O11
-742.5019838	C44H70O9
-744.4062406	C37H61NO14
-744.5435399	C41H78NO8P
-746.1482995	C37H30O17
-746.2367623	C38H38N4O12
-746.2767842	C28H47N5O18
-746.4241275	C41H62O12
-746.4735323	C42H67NO10
-746.4784415	C45H65N3O6
-748.1775748	C21H41N7O18P2
-748.403392	C40H60O13
-748.4375407	C37H65NO14
-748.4397775	C41H64O12
-748.4739262	C38H69NO13
-748.5254352	C40H77O10P
-748.6158318	C53H80O2
-750.041677	C21H27N6O18P3
-750.0546963	C21H28N7O17P3
-750.1932249	C21H43N7O18P2
-750.4554276	C41H66O12
-750.5025956	C38H72N2O12
-750.5281986	C43H74O10
-750.5950964	C52H78O3
-752.0703464	C21H30N7O17P3
-752.2684563	C34H44N4O15
-754.1279522	C23H36N4O20P2
-754.2966901	C39H47NO14
-754.3200563	C40H50O14
-754.4549862	C37H72O11P2
-754.5594987	C43H78O10
-756.1202361	C22H35N5O20P2
-756.2112937	C33H40O20
-756.2476792	C34H44O19
-756.3123402	C39H49NO14
-756.5751488	C43H80O10
-758.2739743	C27H51FeN9O12
-758.4218906	C38H63NO14
-760.2883623	C45H44O11
-760.4397775	C42H64O12
-762.5177191	C40H76NO10P
-762.5904901	C42H84NO8P
-764.2167191	C41H38N6O5S2
-764.2837125	C39H44N4O12
-764.4346921	C41H64O13
-765.1977624	C40H41FeN4O6S
-766.0522833	C20H27N10O16P3
-766.4503422	C41H66O13
-766.590011	C52H78O4
-766.6991675	C55H90O
-768.3827417	C35H62NO15P
-768.4111498	C42H59N3O10
-768.4659923	C41H68O13
-769.9863033	C17H27N3O23P2S2
-770.1065643	C36H30Cl2N2O13
-770.1529743	C32H38N4O12S3
-770.4218906	C39H63NO14
-772.2062083	C33H40O21
-772.330621	C40H52O15
-772.3545928	C39H54N6O8S
-772.4375407	C39H65NO14
-774.0944526	C21H36N7O16P3S
-774.3104912	C37H49N7O9S
-774.5281986	C45H74O10
-776.5074632	C44H72O11
-777.6837147	C15H11I4NO4
-778.1644704	C29H36N5O18P
-778.2431516	C38H42N8O6S2
-778.2502607	C31H45N6O15P
-778.2533687	C25H44N13O13P
-778.5278898	C44H76NO8P
-778.6028977	C50H83O4P
-778.7050408	C49H94O6
-779.8451984	C17H22I3N3O8
-779.9863886	C29H20ClN7O11S3
-780.1801204	C29H38N5O18P
-780.2295252	C30H43N6O16P
-780.263371	C35H44N4O16
-780.4296068	C41H64O14
-780.4659923	C42H68O13
-782.2451753	C30H45N6O16P
-782.55919	C44H80NO8P
-784.0759225	C34H24O22
-784.4609069	C41H68O14
-786.0915725	C34H26O22
-786.2056694	C22H47N5O21S2
-786.2582439	C35H46O20
-786.4005851	C45H57N3O9
-786.4168053	C39H63NO15
-786.4531908	C40H67NO14
-786.5237249	C38H76N2O14
-786.5904901	C44H84NO8P
-787.4399084	C36H72N6O6Tc
-788.1072226	C34H28O22
-788.201123	C33H40O22
-789.6448883	C20H10Br4O10S2
-790.2265915	C39H38N4O14
-790.474314	C42H68N6O6S
-790.5066278	C45H76O7P2
-790.5231132	C45H74O11
-791.8451984	C18H22I3N3O8
-792.4296068	C42H64O14
-792.4790116	C43H69NO12
-792.5023778	C44H72O12
-793.8608484	C18H24I3N3O8
-793.9819688	C18H26N4O23P4
-794.1304485	C27H33N9O15P2
-794.2036215	C33H43ClO20
-794.2451753	C31H45N6O16P
-794.2553896	C29H51N3O18P2
-794.4218906	C41H63NO14
-794.4452568	C42H66O14
-794.5000065	C41H69N7O8
-794.6213111	C54H82O4
-796.1460986	C27H35N9O15P2
-796.2608254	C31H47N6O16P
-796.2926043	C35H48N8O11S
-796.3979544	C46H56N4O8
-796.4245214	C41H64O15
-798.476557	C42H70O14
-799.6656594	C15H10I4NNaO4
-800.0573177	C32H32O16S4
-800.1072226	C35H28O22
-800.4324553	C40H65NO15
-800.4688408	C41H69NO14
-800.492207	C42H72O14
-802.0893672	C22H36N7O17P3S
-802.1344905	C30H44K2O16S2
-804.3779651	C38H60O18
-804.4659923	C44H68O13
-804.4790116	C44H69NO12
-804.5023778	C45H72O12
-804.5222779	C46H78O7P2
-806.2215061	C39H38N4O15
-806.4452568	C43H66O14
-808.3436403	C43H53NO14
-809.8557631	C18H24I3N3O9
-810.2400899	C31H45N6O17P
-810.4168053	C41H63NO15
-810.4401715	C42H66O15
-812.392869	C46H56N4O9
-812.4558215	C42H68O15
-814.144002	C33H34O24
-814.289544	C37H50O20
-814.4085191	C46H58N4O9
-814.4481054	C41H67NO15
-816.1050173	C23H38N7O17P3S
-816.1743798	C42H30N6O12
-816.4583178	C43H65N5O10
-818.2997148	C40H50O18
-818.5755427	C44H82O13
-820.1932281	C31H45Cl3N6O13
-822.4037859	C42H62O16
-822.4895763	C44H71NO13
-823.8714131	C19H26I3N3O9
-824.4558215	C43H68O15
-826.3721335	C46H54N4O10
-826.3932629	C43H58N4O12
-828.1050173	C24H38N7O17P3S
-828.224313	C39H41NO19
-828.2373323	C39H42N2O18
-828.2746818	C30H52O26
-828.3877836	C46H56N4O10
-828.4637554	C42H69NO15
-828.4917656	C40H78O13P2
-830.1206674	C24H40N7O17P3S
-830.2368062	C43H42ClN3O12
-830.3333351	C43H49N7O10
-832.2524563	C43H44ClN3O12
-832.3153649	C41H52O18
-832.3436403	C45H53NO14
-832.4896179	C44H69N5O10
-834.2159852	C45H38O16
-834.2164208	C40H38N4O16
-836.2659542	C31H53N3O19P2
-836.5414792	C43H81O13P
-837.8870632	C20H28I3N3O9
-838.4503422	C47H66O13
-838.5186396	C41H76N2O15
-840.1901644	C43H36O18
-840.263371	C40H44N4O16
-842.1206674	C25H40N7O17P3S
-842.2529824	C40H44N2O18
-842.3638027	C49H58FeN4O5
-844.0999319	C24H38N7O18P3S
-844.1363174	C25H42N7O17P3S
-844.2896662	C48H48N4O6S2
-844.3517504	C43H56O17
-844.3801961	C36H65N3O15P2
-846.0186137	C20H28N10O19P4
-846.0791965	C23H36N7O19P3S
-846.115582	C24H40N7O18P3S
-846.1286013	C24H41N8O17P3S
-846.2317208	C43H42ClN3O13
-846.6654979	C55H91O4P
-848.2473709	C43H44ClN3O13
-848.2875189	C38H48N8O12S
-850.4296484	C46H62N4O11
-852.091828	C23H38N3O25P3
-852.500141	C45H73NO14
-854.3279902	C47H51NO14
-856.1363174	C26H42N7O17P3S
-858.115582	C25H40N7O18P3S
-858.1519675	C26H44N7O17P3S
-858.247897	C40H44N2O19
-858.2739356	C40H46N4O17
-858.4249153	C42H66O18
-858.476557	C47H70O14
-858.5692281	C50H84O7P2
-860.0948465	C24H38N7O19P3S
-860.1078659	C24H39N8O18P3S
-860.1312321	C25H42N7O18P3S
-860.1442514	C25H43N8O17P3S
-860.3214976	C33H54N6O20
-860.3569191	C44H52N8O10
-862.1468821	C25H44N7O18P3S
-862.1832676	C26H48N7O17P3S
-862.1956437	C42H38O20
-862.3623151	C43H58O18
-862.5056203	C43H75NO16
-862.6839114	C59H90O4
-866.2058144	C45H38O18
-866.279021	C42H46N4O16
-866.3127341	C44H51NO17
-866.3130294	C47H58FeN4O4S2
-866.5391572	C47H78O14
-868.0999319	C26H38N7O18P3S
-868.2767425	C39H49NO21
-868.2946711	C42H48N4O16
-868.4820363	C45H72O16
-868.4950556	C45H73NO15
-870.1519675	C27H44N7O17P3S
-870.2982658	C32H55NO26
-872.1312321	C26H42N7O18P3S
-872.1676176	C27H46N7O17P3S
-872.2119055	C36H42N2O23
-872.4041799	C42H64O19
-872.486241	C55H62N10
-872.492207	C48H72O14
-874.1104966	C25H40N7O19P3S
-874.1468821	C26H44N7O18P3S
-874.3725691	C45H54N8O10
-876.1625322	C26H46N7O18P3S
-876.3788363	C34H60N8O18
-876.4871216	C47H72O15
-877.9824044	C20H26N8O23P4
-878.008443	C20H28N10O21P4
-878.1206674	C28H40N7O17P3S
-878.5499397	C44H80N2O15
-880.1363174	C28H42N7O17P3S
-880.4402131	C47H64N4O12
-882.1519675	C28H44N7O17P3S
-882.3103212	C43H50N4O16
-884.077088	C26H38N7O17P3S2
-884.0948465	C26H38N7O19P3S
-884.1675802	C28H43N5O23P2
-884.1676176	C28H46N7O17P3S
-884.2869133	C43H49NO19
-884.3889237	C39H64O22
-884.3987422	C45H60N4O14
-884.4247808	C45H62N6O12
-884.4769509	C45H72O17
-884.4899702	C45H73NO16
-886.1104966	C26H40N7O19P3S
-886.1468821	C27H44N7O18P3S
-886.492601	C45H74O17
-886.5078571	C49H74O14
-886.5186396	C45H76N2O15
-886.7566824	C63H98O2
-888.1261467	C26H42N7O19P3S
-888.1625322	C27H46N7O18P3S
-888.2377679	C39H42N6O18
-888.4152218	C36H64N8O17
-888.4848848	C44H73NO17
-890.1054112	C25H40N7O20P3S
-890.5027717	C48H74O15
-892.1363174	C29H42N7O17P3S
-892.2563441	C42H52FeN8O6S2
-892.544896	C43H78N6O13
-894.115582	C28H40N7O18P3S
-894.1286013	C28H41N8O17P3S
-894.5078029	C55H70MgN4O5
-896.1112455	C28H39FN7O17P3S
-896.1312321	C28H42N7O18P3S
-896.5234529	C55H72MgN4O5
-898.1468821	C28H44N7O18P3S
-898.1832676	C29H48N7O17P3S
-898.2922165	C43H49N3O18
-898.3052358	C43H50N4O17
-898.3416213	C44H54N4O16
-898.4692348	C45H71NO17
-898.5078571	C50H74O14
-900.0720026	C26H38N7O18P3S2
-900.1261467	C27H42N7O19P3S
-900.1625322	C28H46N7O18P3S
-900.1989177	C29H50N7O17P3S
-900.2525835	C45H44Cl2N10O6
-900.3572713	C44H56N4O16
-900.6479198	C57H88O8
-901.1833765	C28H48N8O17P3S
-902.1417967	C27H44N7O19P3S
-902.1548161	C27H45N8O18P3S
-902.5005349	C45H75NO17
-903.1990266	C28H50N8O17P3S
-904.1210613	C26H42N7O20P3S
-904.1363174	C30H42N7O17P3S
-904.2169908	C40H42N2O22
-904.4456508	C47H68O17
-904.5184218	C49H76O15
-904.5646258	C56H76N4O6
-906.1367114	C26H44N7O20P3S
-906.2901508	C34H54Cl2N10O14
-906.5802758	C56H78N4O6
-908.1312321	C29H42N7O18P3S
-908.1442514	C29H43N8O17P3S
-908.3165883	C34H56N4O24
-908.3296076	C34H57N5O23
-910.5027175	C55H70MgN4O6
-912.081695	C28H39ClN7O17P3S
-912.139166	C28H43N8O18P3S
-912.3208858	C44H52N4O17
-912.3758983	C46H60N4O13S
-912.508251	C47H76O17
-912.5183675	C55H72MgN4O6
-914.1417967	C28H44N7O19P3S
-914.1541728	C44H34O22
-914.1781822	C29H48N7O18P3S
-914.2145678	C30H52N7O17P3S
-914.5340176	C55H74MgN4O6
-914.5521765	C51H79NO13
-916.1210613	C27H42N7O20P3S
-916.1574468	C28H46N7O19P3S
-916.1938323	C29H50N7O18P3S
-916.5161849	C46H77NO17
-918.1367114	C27H44N7O20P3S
-918.2429878	C42H46O23
-919.1939412	C28H50N8O18P3S
-920.1312321	C30H42N7O18P3S
-920.1983131	C42H44FeN4O16
-920.4980803	C45H76O19
-920.5605044	C46H82N2O16
-922.1468821	C30H44N7O18P3S
-922.1832676	C31H48N7O17P3S
-922.2826081	C31H51N12O18P
-924.1261467	C29H42N7O19P3S
-924.1989177	C31H50N7O17P3S
-924.4848848	C47H73NO17
-925.9849442	C20H29N10O22P5
-926.2145678	C31H52N7O17P3S
-926.3365359	C45H54N4O17
-926.5005349	C47H75NO17
-926.5239011	C48H78O17
-926.6318283	C55H92O7P2
-928.1363174	C32H42N7O17P3S
-928.1938323	C30H50N7O18P3S
-928.2302178	C31H54N7O17P3S
-928.3245161	C39H54N10O14S
-930.1367114	C28H44N7O20P3S
-930.5188157	C47H78O18
-932.1523614	C28H46N7O20P3S
-932.5344658	C47H80O18
-934.071231	C41H26O26
-936.0868811	C41H28O26
-936.1261467	C30H42N7O19P3S
-938.1025311	C41H30O26
-938.1781822	C31H48N7O18P3S
-940.1181812	C41H32O26
-940.1938323	C31H50N7O18P3S
-940.3158005	C45H52N4O18
-940.5031656	C48H76O18
-940.6557211	C56H93O9P
-942.1861162	C30H49N8O18P3S
-942.2094824	C31H52N7O18P3S
-942.4824302	C47H74O19
-942.5188157	C48H78O18
-944.2251324	C31H54N7O18P3S
-944.5344658	C48H80O18
-946.0427227	C28H38Cl2N7O17P3S
-946.3712963	C37H61N7O21
-946.5501158	C48H82O18
-948.1108905	C27H42N7O22P3S
-950.1417967	C31H44N7O19P3S
-952.0817957	C41H28O27
-952.1938323	C32H50N7O18P3S
-952.2302178	C33H54N7O17P3S
-952.3822626	C60H56O11
-954.0974458	C41H30O27
-954.2458679	C33H56N7O17P3S
-954.4781223	C55H74N4O6Zn
-956.1130958	C41H32O27
-956.1887469	C31H50N7O19P3S
-956.2615179	C33H58N7O17P3S
-962.1417967	C32H44N7O19P3S
-962.5710691	C48H84N2O17
-964.1574468	C32H46N7O19P3S
-966.1367114	C31H44N7O20P3S
-968.1523614	C31H46N7O20P3S
-970.204397	C32H52N7O19P3S
-970.2407825	C33H56N7O18P3S
-972.2564326	C33H58N7O18P3S
-974.1417967	C33H44N7O19P3S
-974.2763798	C34H58N4O24S2
-976.378753	C44H64O24
-976.5867191	C49H86N2O17
-978.1367114	C32H44N7O20P3S
-980.1523614	C32H46N7O20P3S
-980.5344658	C51H80O18
-982.277168	C35H60N7O17P3S
-982.5137303	C50H78O19
-982.5210467	C46H83N3O15P2
-984.2928181	C35H62N7O17P3S
-984.4929949	C49H76O20
-984.5064498	C44H77N5O19
-988.295938	C34H58N5O26P
-988.4879095	C48H76O21
-990.3275053	C36H62O31
-992.1289952	C32H43N8O20P3S
-992.2615179	C36H58N7O17P3S
-996.2432056	C46H46N2O23
-1000.287733	C35H62N7O18P3S
-1002.166121	C31H50N9O18P3S2
-1004.519117	C49H74N10O12
-1004.567385	C54H87NO12P2
-1008.718321	C61H101O9P
-1010.308468	C37H64N7O17P3S
-1012.157447	C36H46N7O19P3S
-1012.324118	C37H66N7O17P3S
-1012.531744	C50H81N4O15P
-1012.952811	C66H125NO5
-1014.173097	C36H48N7O19P3S
-1014.256613	C34H55N7O24P2
-1014.390099	C42H67N5O21S
-1018.400876	C43H66N12O12S2
-1018.547879	C50H83NO20
-1018.729807	C55H103NO15
-1020.44867	C43H77N3O20P2
-1026.303383	C37H64N7O18P3S
-1028.152361	C36H46N7O20P3S
-1028.300456	C46H58Cl2N4O18
-1028.319033	C37H66N7O18P3S
-1028.410829	C49H66N10O10S2
-1030.168011	C36H48N7O20P3S
-1030.446474	C53H67N9O10S
-1030.53486	C51H82O21
-1034.308468	C39H64N7O17P3S
-1034.542794	C50H83NO21
-1036.324118	C39H66N7O17P3S
-1038.339768	C39H68N7O17P3S
-1040.355418	C39H70N7O17P3S
-1042.66238	C53H93N7O13
-1044.887362	C72H116O4
-1048.509039	C50H80O23
-1048.524295	C54H80O20
-1048.545424	C51H84O22
-1050.468045	C42H74N8O22
-1050.524689	C50H82O23
-1056.563529	C53H85NO20
-1056.639671	C52H97NO18S
-1058.246442	C35H55N7O26P2
-1058.495968	C50H71N13O12
-1058.56616	C53H86O21
-1058.584524	C51H85N7O16
-1060.324118	C41H66N7O17P3S
-1062.339768	C41H68N7O17P3S
-1062.524689	C51H82O23
-1064.540339	C51H84O23
-1066.158799	C31H51N10O21P3S2
-1068.350333	C40H70N7O18P3S
-1068.386718	C41H74N7O17P3S
-1074.516922	C50H73N15O11
-1074.565137	C52H90CaO20
-1076.026259	C32H35ClN18O10S6
-1082.385443	C46H64N14O12S2
-1084.381633	C41H74N7O18P3S
-1084.472653	C52H76O24
-1088.684652	C61H102O12P2
-1090.592375	C54H90O22
-1092.441353	C53H72O24
-1094.285332	C35H59Al3N10O24
-1094.542794	C55H83NO21
-1098.393377	C46H65N15O12S2
-1098.565984	C58H84N2O18
-1104.535254	C53H84O24
-1110.565984	C59H84N2O18
-1114.360514	C55H59N5O20
-1114.535202	C53H76N14O12
-1116.264941	C37H58N8O27P2
-1116.613369	C54H90N6O18
-1120.087669	C48H32O32
-1123.158499	C77H150O3
-1130.550904	C55H86O24
-1130.708236	C63H105NO12P2
-1134.369764	C42H70O35
-1136.628536	C52H100N2O20P2
-1141.506064	C20H14I6N2O6
-1146.545818	C55H86O25
-1148.376548	C45H74N7O19P3S
-1150.348761	C40H68N5O31P
-1152.380329	C42H72O36
-1152.670356	C60H92N12O10
-1154.192233	C49H51N13O8S6
-1156.171498	C48H49N13O9S6
-1158.32491	C40H65N9O26P2
-1158.493427	C62H79ClN4O13S
-1162.355812	C45H72N7O20P3S
-1164.371462	C45H74N7O20P3S
-1182.509433	C57H82O26
-1188.29909	C40H63N9O28P2
-1188.407848	C48H78N7O19P3S
-1190.423498	C48H80N7O19P3S
-1192.372345	C42H71N6O31P
-1196.56672	C57H80N16O12
-1196.582598	C56H92O27
-1198.522619	C55H75N17O13
-1202.31474	C41H65N9O28P2
-1204.402762	C48H78N7O20P3S
-1204.605954	C56H85N17O12
-1206.418413	C48H80N7O20P3S
-1210.598248	C57H94O27
-1212.520869	C48H84N8O27
-1212.808752	C62H111N11O12
-1215.434083	C48H80N7O21P3S
-1215.528038	C22H18I6N2O9
-1217.522108	C22H18I6N2O9
-1220.397677	C48H78N7O21P3S
-1222.413327	C48H80N7O21P3S
-1222.598248	C58H94O27
-1224.577512	C57H92O28
-1224.598021	C59H84N16O12
-1224.808752	C63H111N11O12
-1228.572427	C56H92O29
-1228.608813	C57H96O28
-1230.359059	C43H70N10O27P2
-1232.582598	C59H92O27
-1234.109292	C51H43N13O12S6
-1236.613898	C59H96O27
-1242.452789	C54H74N8O25
-1256.775308	C62H114N2O23
-1257.543061	C24H20I6N4O8
-1260.271419	C54H52N16O16S2
-1261.933221	C34H30ClFeN4O4.2H
-1266.592893	C62H86N12O16
-1268.603727	C59H96O29
-1273.550995	C24H21I6N5O8
-1282.616084	C66H87N13O13
-1289.579623	C26H26I6N2O10
-1292.761059	C69H115NO17P2
-1295.034874	C76H142O15
-1301.315393	C86H172O6
-1302.029115	C51H40N6O23S6
-1304.213581	C56H55N15O10S6
-1310.647819	C63H91N17O13
-1318.1169	C58H44Cl3N7O21S
-1318.619377	C63H98O29
-1326.557565	C56H94O35
-1326.881701	C68H129N2O20P
-1334.784643	C71H118N2O17P2
-1335.502637	C58H85CoN16O14P
-1338.046404	C36H46N16Na4O21S6
-1338.585219	C66H83N17O13
-1340.613888	C66H86N18O12
-1341.525785	C62H88CoN13O14P
-1370.265337	C55H74IN3O21S4
-1380.656157	C65H104O31
--- a/databases/bmrb-light.tsv	Tue Jul 10 17:58:35 2018 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6078 +0,0 @@
-16.03130013	CH4
-26.01565006	C2H2
-27.01089904	CHN
-28.03130013	C2H4
-30.01056469	CH2O
-31.04219917	CH5N
-32.02621475	CH4O
-34.0218783	CH3F
-42.02179807	CH2N2
-42.04695019	C3H6
-43.00581366	CHNO
-43.04219917	C2H5N
-44.02621475	C2H4O
-45.02146372	CH3NO
-45.05784923	C2H7N
-46.00547931	CH2O2
-46.04186481	C2H6O
-48.00337082	CH4S
-53.0265491	C3H3N
-54.01056469	C3H2O
-56.02621475	C3H4O
-57.05784923	C3H7N
-58.00547931	C2H2O2
-58.04186481	C3H6O
-58.98296973	CHNS
-59.01330434	C2H3O2
-59.03711379	C2H5NO
-59.07349929	C3H9N
-60.02112937	C2H4O2
-60.03236276	CH4N2O
-60.05751488	C3H8O
-60.06874827	C2H8N2
-61.01637835	CH3NO2
-61.05276385	C2H7NO
-61.99232781	C2H3Cl
-62.00039393	CH2O3
-62.01902088	C2H6S
-62.03677944	C2H6O2
-68.02621475	C4H4O
-68.03744814	C3H4N2
-69.05784923	C4H7N
-70.00547931	C3H2O2
-70.04186481	C4H6O
-70.0530982	C3H6N2
-71.03711379	C3H5NO
-71.07349929	C4H9N
-72.02112937	C3H4O2
-72.05751488	C4H8O
-73.05276385	C3H7NO
-73.06399724	C2H7N3
-73.08914936	C4H11N
-74.00039393	C2H2O3
-74.01565006	C6H2
-74.03677944	C3H6O2
-74.04801283	C2H6N2O
-74.07316494	C4H10O
-74.08439833	C3H10N2
-75.03202841	C2H5NO2
-75.0432618	CH5N3O
-75.06841392	C3H9NO
-75.99828544	C2H4OS
-76.00951883	CH4N2S
-76.01604399	C2H4O3
-76.02727738	CH4N2O2
-76.03467095	C3H8S
-76.0524295	C3H8O2
-77.02991992	C2H7NS
-77.03912516	C6H5
-77.98724243	C2H3ClO
-78.01170754	C2H3FO2
-78.0139355	C2H6OS
-78.04695019	C6H6
-79.04219917	C5H5N
-80.00289249	C2H5ClO
-80.03744814	C4H4N2
-82.0530982	C4H6N2
-83.04834718	C3H5N3
-83.07349929	C5H9N
-83.95335548	CH2Cl2
-83.98233857	CHNaO3
-84.02112937	C4H4O2
-84.03236276	C3H4N2O
-84.04359615	C2H4N4
-84.05751488	C5H8O
-84.09390039	C6H12
-85.05276385	C4H7NO
-85.08914936	C5H11N
-86.03677944	C4H6O2
-86.07316494	C5H10O
-86.08439833	C4H10N2
-86.10955045	C6H14
-87.03202841	C3H5NO2
-87.06841392	C4H9NO
-87.10479942	C5H13N
-88.01604399	C3H4O3
-88.0524295	C4H8O2
-88.06366289	C3H8N2O
-88.08881501	C5H12O
-88.1000484	C4H12N2
-89.01129297	C2H3NO3
-89.04767847	C3H7NO2
-89.05891186	C2H7N3O
-89.98724243	C3H3ClO
-89.99530855	C2H2O4
-90.0139355	C3H6OS
-90.03169406	C3H6O3
-90.04292745	C2H6N2O2
-90.05032101	C4H10S
-90.06807957	C4H10O2
-91.06332854	C3H9NO2
-91.99320006	C2H4O2S
-92.00289249	C3H5ClO
-92.04734412	C3H8O3
-92.06260026	C7H8
-93.05784923	C6H7N
-93.93770542	C2Cl2
-93.98215705	C2H3ClO2
-93.99109157	C2H6S2
-94.00885013	C2H6O2S
-94.04186481	C6H6O
-94.0530982	C5H6N2
-95.03711379	C5H5NO
-95.94782193	CH4Se
-95.95335548	C2H2Cl2
-95.98811468	CH4O3S
-96.02112937	C5H4O2
-96.03752836	C6H5F
-96.05751488	C6H8O
-97.01637835	C4H3NO2
-97.06399724	C4H7N3
-97.96900555	C2H4Cl2
-97.97701124	C2H3KO2
-98.04801283	C4H6N2O
-98.07316494	C6H10O
-99.03202841	C4H5NO2
-99.06841392	C5H9NO
-99.10479942	C6H13N
-100.0272774	C3H4N2O2
-100.0524295	C5H8O2
-100.0636629	C4H8N2O
-100.088815	C6H12O
-101.0476785	C4H7NO2
-101.0701453	C2H7N5
-101.084064	C5H11NO
-101.1204495	C6H15N
-102.0251689	C3H6N2S
-102.0316941	C4H6O3
-102.0429274	C3H6N2O2
-102.0680796	C5H10O2
-102.079313	C4H10N2O
-102.1156985	C5H14N2
-103.026943	C3H5NO3
-103.0381764	C2H5N3O2
-103.0421992	C7H5N
-103.0633285	C4H9NO2
-104.0109586	C3H4O4
-104.022192	C2H4N2O3
-104.0374481	C6H4N2
-104.0473441	C4H8O3
-104.0585775	C3H8N2O2
-104.0626003	C8H8
-105.0326971	C5H3N3
-105.0425931	C3H7NO3
-105.06122	C4H11NS
-105.0789786	C4H11NO2
-105.9821571	C3H3ClO2
-106.0088501	C3H6O2S
-106.0266087	C3H6O4
-106.0313169	CH6N4S
-106.0418648	C7H6O
-106.0782503	C8H10
-107.0371138	C6H5NO
-107.0382566	C3H6FNO2
-107.0734993	C7H9N
-107.9410901	C2FeN2
-108.0211294	C6H4O2
-108.0575149	C7H8O
-108.0687483	C6H8N2
-109.0197492	C2H7NO2S
-109.0527639	C6H7NO
-109.0639972	C5H7N3
-109.0658271	C4H12ClN
-109.0891494	C7H11N
-109.963472	C2H6Se
-109.9690055	C3H4Cl2
-110.0367794	C6H6O2
-110.0480128	C5H6N2O
-111.0085296	CH6NO3P
-111.0320284	C5H5NO2
-111.0432618	C4H5N3O
-111.0484274	C6H6FN
-111.0796473	C5H9N3
-111.9830293	CH4O4S
-111.9925452	CH5O4P
-112.0079779	C6H5Cl
-112.016044	C5H4O3
-112.0272774	C4H4N2O2
-112.0524295	C6H8O2
-113.0476785	C5H7NO2
-113.0589119	C4H7N3O
-113.084064	C6H11NO
-113.9953086	C4H2O4
-114.0316941	C5H6O3
-114.0429274	C4H6N2O2
-114.050321	C6H10S
-114.0680796	C6H10O2
-114.079313	C5H10N2O
-114.1044651	C7H14O
-114.1408506	C8H18
-115.026943	C4H5NO3
-115.0633285	C5H9NO2
-116.0109586	C4H4O4
-116.0473441	C5H8O3
-116.0837296	C6H12O2
-116.094963	C5H12N2O
-117.0062076	C3H3NO4
-117.0425931	C4H7NO3
-117.0538265	C3H7N3O2
-117.0578492	C8H7N
-117.0789786	C5H11NO2
-117.9143832	CHCl3
-117.9902232	C3H2O5
-118.0140326	C3H4NO4
-118.0200835	C3H6N2OS
-118.0266087	C4H6O4
-118.0378421	C3H6N2O3
-118.0530982	C7H6N2
-118.0629942	C5H10O3
-118.0742276	C4H10N2O2
-118.0782503	C9H10
-119.0218577	C3H5NO4
-119.0404846	C4H9NOS
-119.0582432	C4H9NO3
-119.9881147	C3H4O3S
-120.0058732	C3H4O5
-120.0067416	C4H8S2
-120.0245002	C4H8O2S
-120.0422587	C4H8O4
-120.0435961	C5H4N4
-120.0575149	C8H8O
-120.0687483	C7H8N2
-120.0939004	C9H12
-121.0197492	C3H7NO2S
-121.0527639	C7H7NO
-121.0738932	C4H11NO3
-121.0891494	C8H11N
-122.0367794	C7H6O2
-122.0480128	C6H6N2O
-122.0579088	C4H10O4
-122.0731649	C8H10O
-122.0843983	C7H10N2
-123.0087062	C3H6ClNO2
-123.0142699	C6H5NS
-123.0320284	C6H5NO2
-123.0432618	C5H5N3O
-123.9505508	CH5AsO2
-123.9830293	C2H4O4S
-123.9925452	C2H5O4P
-124.0016563	C3H8OS2
-124.016044	C6H4O3
-124.0524295	C7H8O2
-124.0636629	C6H8N2O
-125.0146638	C2H7NO3S
-125.0241796	C2H8NO3P
-125.0476785	C6H7NO2
-125.0589119	C5H7N3O
-125.0952974	C6H11N3
-125.1204495	C8H15N
-125.9631623	C2H6S3
-125.9718097	CH3O5P
-125.9986794	C2H6O4S
-126.0081952	C2H7O4P
-126.0212145	C2H8NO3P
-126.0236279	C7H7Cl
-126.0316941	C6H6O3
-126.0429274	C5H6N2O2
-126.0541608	C4H6N4O
-126.0653942	C3H6N6
-126.0680796	C7H10O2
-126.1044651	C8H14O
-127.0188769	C6H6ClN
-127.026943	C5H5NO3
-127.0381764	C4H5N3O2
-127.0494098	C3H5N5O
-127.0633285	C6H9NO2
-127.0745619	C5H9N3O
-127.099714	C7H13NO
-127.1109474	C6H13N3
-127.1360996	C8H17N
-127.9028404	CH2BrCl
-127.9795702	C3H6Cl2O
-128.0028925	C6H5ClO
-128.022192	C4H4N2O3
-128.0334254	C3H4N4O2
-128.0473441	C6H8O3
-128.0585775	C5H8N2O2
-128.0626003	C10H8
-128.0837296	C7H12O2
-128.094963	C6H12N2O
-128.1201151	C8H16O
-129.017441	C3H3N3O3
-129.0360679	C4H7N3S
-129.0425931	C5H7NO3
-129.0578492	C9H7N
-129.0789786	C6H11NO2
-129.090212	C5H11N3O
-129.1014454	C4H11N5
-129.1153641	C7H15NO
-129.1517496	C8H19N
-129.9143832	C2HCl3
-130.0178556	C4H3FN2O2
-130.0266087	C5H6O4
-130.0629942	C6H10O3
-130.0742276	C5H10N2O2
-130.0993797	C7H14O2
-130.1106131	C6H14N2O
-130.1218465	C5H14N4
-130.1357652	C8H18O
-131.0218577	C4H5NO4
-131.0582432	C5H9NO3
-131.0694765	C4H9N3O2
-131.0734993	C9H9N
-131.0946287	C6H13NO2
-131.1058621	C5H13N3O
-131.1422476	C6H17N3
-132.0058732	C4H4O5
-132.0171066	C3H4N2O4
-132.0245002	C5H8O2S
-132.0422587	C5H8O4
-132.0435961	C6H4N4
-132.0534921	C4H8N2O3
-132.0575149	C9H8O
-132.0647255	C3H8N4O2
-132.0687483	C8H8N2
-132.0786443	C6H12O3
-132.0898776	C5H12N2O2
-132.0939004	C10H12
-132.9656051	C3H3NOS2
-133.0375077	C4H7NO4
-133.0487411	C3H7N3O3
-133.0527639	C8H7NO
-133.0561347	C5H11NOS
-133.0639972	C7H7N3
-133.0891494	C9H11N
-133.9441641	C3FeN3
-134.0215233	C4H6O5
-134.0327567	C3H6N2O4
-134.0401503	C5H10O2S
-134.0579088	C5H10O4
-134.0592462	C6H6N4
-134.0691422	C4H10N2O3
-134.0731649	C9H10O
-134.0877692	C5H14N2S
-134.1095504	C10H14
-135.0353992	C4H9NO2S
-135.0531578	C4H9NO4
-135.0544952	C5H5N5
-135.0684139	C8H9NO
-135.1047994	C9H13N
-136.0194148	C4H8O3S
-136.0371734	C4H8O5
-136.0385108	C5H4N4O
-136.0524295	C8H8O2
-136.0735589	C5H12O4
-136.0748963	C6H8N4
-136.088815	C9H12O
-136.1000484	C8H12N2
-136.1252005	C10H16
-137.0476785	C7H7NO2
-137.0589119	C6H7N3O
-137.084064	C8H11NO
-138.0081952	C3H7O4P
-138.0177753	C4H2N4O2
-138.0316941	C7H6O3
-138.0429274	C6H6N2O2
-138.0680796	C8H10O2
-138.079313	C7H10N2O
-138.0905463	C6H10N4
-138.1044651	C9H14O
-139.026943	C6H5NO3
-139.0303139	C3H9NO3S
-139.0398297	C3H10NO3P
-139.0633285	C7H9NO2
-139.0745619	C6H9N3O
-139.099714	C8H13NO
-139.1360996	C9H17N
-139.9454654	CH5AsO3
-139.9779439	C2H4O5S
-139.9874598	C2H5O5P
-140.0028925	C7H5ClO
-140.0109586	C6H4O4
-140.0238453	C3H9O4P
-140.0273576	C7H5FO2
-140.0402443	C4H10FO2P
-140.0473441	C7H8O3
-140.0585775	C6H8N2O2
-140.0837296	C8H12O2
-140.9827088	CH4NO5P
-141.0062076	C5H3NO4
-141.0190943	C2H8NO4P
-141.0425931	C6H7NO3
-141.0789786	C7H11NO2
-141.090212	C6H11N3O
-141.1153641	C8H15NO
-141.1517496	C9H19N
-141.9758354	C2H6O3S2
-142.0088501	C6H6O2S
-142.0185426	C7H7ClO
-142.0266087	C6H6O4
-142.0378421	C5H6N2O3
-142.0629942	C7H10O3
-142.0742276	C6H10N2O2
-142.0782503	C11H10
-142.0993797	C8H14O2
-143.0404846	C6H9NOS
-143.0443244	C3H5N5O2
-143.0582432	C6H9NO3
-143.0734993	C10H9N
-143.0946287	C7H13NO2
-143.1310142	C8H17NO
-143.9978071	C6H5ClO2
-144.0341926	C7H9ClO
-144.0422587	C6H8O4
-144.0575149	C10H8O
-144.0608857	C7H12OS
-144.0786443	C7H12O3
-144.0898776	C6H12N2O2
-144.101111	C5H12N4O
-144.1150298	C8H16O2
-144.9930561	C5H4ClNO2
-145.0155229	C3H4ClN5
-145.0197492	C5H7NO2S
-145.0375077	C5H7NO4
-145.0527639	C9H7NO
-145.0738932	C6H11NO3
-145.0851266	C5H11N3O2
-145.1215121	C6H15N3O
-145.1578976	C7H19N3
-145.9092978	C2HCl3O
-145.9456833	C3H5Cl3
-145.9690055	C6H4Cl2
-145.9995384	C3H3ClN4O
-146.0134572	C6H7ClO2
-146.0149981	C4H6N2O2S
-146.0215233	C5H6O5
-146.0223917	C6H10S2
-146.0327567	C4H6N2O4
-146.0367794	C9H6O2
-146.0401503	C6H10O2S
-146.0480128	C8H6N2O
-146.0579088	C6H10O4
-146.0691422	C5H10N2O3
-146.0843983	C9H10N2
-146.1055277	C6H14N2O2
-146.1306798	C8H18O2
-146.1531466	C6H18N4
-146.983554	C3H2ClN3O2
-147.0320284	C8H5NO2
-147.0353992	C5H9NO2S
-147.0531578	C5H9NO4
-147.0643912	C4H9N3O3
-147.0684139	C9H9NO
-147.0895433	C6H13NO3
-147.1047994	C10H13N
-147.9249478	C2H3Cl3O
-147.9846556	C6H6Cl2
-147.9927217	C5H5ClO3
-148.0007879	C4H4O6
-148.0194148	C5H8O3S
-148.0371734	C5H8O5
-148.0484068	C4H8N2O4
-148.0524295	C9H8O2
-148.0735589	C6H12O4
-148.088815	C10H12O
-148.1000484	C9H12N2
-149.0243562	C5H8ClNO2
-149.0299199	C8H7NS
-149.0324223	C4H7NO5
-149.0332907	C5H11NS2
-149.0476785	C8H7NO2
-149.0510493	C5H11NO2S
-149.0701453	C6H7N5
-149.084064	C9H11NO
-149.1051934	C6H15NO3
-149.1204495	C10H15N
-149.9809208	C4H6O2S2
-150.0164379	C4H6O6
-150.0316941	C8H6O3
-150.0528234	C5H10O5
-150.0536918	C6H14S2
-150.0680796	C9H10O2
-150.1044651	C10H14O
-151.0188769	C8H6ClN
-151.026943	C7H5NO3
-151.0494098	C5H5N5O
-151.0633285	C8H9NO2
-151.0857953	C6H9N5
-151.099714	C9H13NO
-151.1360996	C10H17N
-151.9779439	C3H4O5S
-151.9874598	C3H5O5P
-151.9965709	C4H8O2S2
-152.0156668	C5H4N4S
-152.0334254	C5H4N4O2
-152.0449388	C6H9NaO3
-152.0473441	C8H8O3
-152.0585775	C7H8N2O2
-152.0684735	C5H12O5
-152.0837296	C9H12O2
-152.1201151	C10H16O
-152.9918199	C3H7NO2S2
-153.0095784	C3H7NO4S
-153.0425931	C7H7NO3
-153.0554798	C4H12NO3P
-153.0789786	C8H11NO2
-153.090212	C7H11N3O
-153.1153641	C9H15NO
-154.0031098	C3H7O5P
-154.0122209	C4H10O2S2
-154.0185426	C8H7ClO
-154.0266087	C7H6O4
-154.0378421	C6H6N2O3
-154.0394954	C4H11O4P
-154.0629942	C8H10O3
-154.0782503	C12H10
-154.0993797	C9H14O2
-154.1357652	C10H18O
-155.0137915	C7H6ClNO
-155.0218577	C6H5NO4
-155.0268548	C5H11Cl2N
-155.0347443	C3H10NO4P
-155.0694765	C6H9N3O2
-155.0807099	C5H9N5O
-155.0946287	C8H13NO2
-155.1310142	C9H17NO
-155.9574628	C6H5Br
-155.9823744	C2H5O6P
-155.9914855	C3H8O3S2
-155.9978071	C7H5ClO2
-156.0058732	C6H4O5
-156.0171066	C5H4N2O4
-156.0187599	C3H9O5P
-156.0357336	C6H8N2OS
-156.0422587	C7H8O4
-156.0534921	C6H8N2O3
-156.0575149	C11H8O
-156.0647255	C5H8N4O2
-156.0687483	C10H8N2
-156.0939004	C12H12
-156.1150298	C9H16O2
-156.1514153	C10H20O
-156.9930561	C6H4ClNO2
-157.0375077	C6H7NO4
-157.0738932	C7H11NO3
-157.1102787	C8H15NO2
-157.1327455	C6H15N5
-158.0134572	C7H7ClO2
-158.0215233	C6H6O5
-158.0327567	C5H6N2O4
-158.0367794	C10H6O2
-158.0439901	C4H6N4O3
-158.0579088	C7H10O4
-158.0691422	C6H10N2O3
-158.0731649	C11H10O
-158.0843983	C10H10N2
-158.0942943	C8H14O3
-158.1306798	C9H18O2
-158.1670653	C10H22O
-159.0296231	C7H6NNaO2
-159.0531578	C6H9NO4
-159.0684139	C10H9NO
-159.0895433	C7H13NO3
-159.1007767	C6H13N3O2
-159.1047994	C11H13N
-159.1259288	C8H17NO2
-159.1735477	C8H21N3
-159.953173	C2H6Te
-159.9927217	C6H5ClO3
-160.0371734	C6H8O5
-160.0484068	C5H8N2O4
-160.0524295	C10H8O2
-160.0735589	C7H12O4
-160.0748963	C8H8N4
-160.0847923	C6H12N2O3
-160.1000484	C10H12N2
-160.1099444	C8H16O3
-160.1211778	C7H16N2O2
-160.9799046	C6H5Cl2N
-161.0324223	C5H7NO5
-161.0476785	C9H7NO2
-161.0688078	C6H11NO4
-161.084064	C10H11NO
-161.1051934	C7H15NO3
-161.9042124	C2HCl3O2
-161.9639202	C6H4Cl2O
-162.0164379	C5H6O6
-162.0173063	C6H10OS2
-162.0316941	C9H6O3
-162.0350649	C6H10O3S
-162.0462983	C5H10N2O2S
-162.0469502	C13H6
-162.0528234	C6H10O5
-162.0680796	C10H10O2
-162.079313	C9H10N2O
-162.0892089	C7H14O4
-162.1004423	C6H14N2O3
-162.1156985	C10H14N2
-163.0303139	C5H9NO3S
-163.0480724	C5H9NO5
-163.0494098	C6H5N5O
-163.0633285	C9H9NO2
-163.0666994	C6H13NO2S
-163.0844579	C6H13NO4
-163.0857953	C7H9N5
-163.099714	C10H13NO
-163.1214674	C8H13NO2
-163.1360996	C11H17N
-163.8754108	C2Cl4
-163.9198625	C2H3Cl3O2
-163.9607266	C3H4Cl2F2O
-164.032088	C5H8O6
-164.0334254	C6H4N4O2
-164.0473441	C9H8O3
-164.0585775	C8H8N2O2
-164.0626003	C13H8
-164.0644747	C8H9BO3
-164.0684735	C6H12O5
-164.0837296	C10H12O2
-164.094963	C9H12N2O
-164.1201151	C11H16O
-165.0282054	C5H11NOS2
-165.0425931	C8H7NO3
-165.0459639	C5H11NO3S
-165.0650599	C6H7N5O
-165.0789786	C9H11NO2
-165.1153641	C10H15NO
-166.0266087	C8H6O4
-166.0313169	C6H6N4S
-166.0378421	C7H6N2O3
-166.0477381	C5H10O6
-166.056469	C8H10N2S
-166.0629942	C9H10O3
-166.0782503	C13H10
-166.0966944	C6H10N6
-166.0993797	C10H14O2
-166.9863405	C7H5NS2
-167.0218577	C7H5NO4
-167.0265659	C5H5N5S
-167.0364619	C3H9N3O3S
-167.0404846	C8H9NOS
-167.0443244	C5H5N5O2
-167.0582432	C8H9NO3
-167.0734993	C12H9N
-167.0807099	C6H9N5O
-167.0946287	C9H13NO2
-167.1058621	C8H13N3O
-167.1673997	C11H21N
-167.9728586	C3H4O6S
-167.9823744	C3H5O6P
-168.0009839	C3H2F6O
-168.0090405	C7H5ClN2O
-168.0187599	C4H9O5P
-168.02834	C5H4N4O3
-168.0422587	C8H8O4
-168.0575149	C12H8O
-168.0647255	C6H8N4O2
-168.0665554	C5H13ClN2O2
-168.0786443	C9H12O3
-168.0898776	C8H12N2O2
-168.1150298	C10H16O2
-168.9642003	C3H7NO2Se
-168.9720145	C2H8AsNO3
-168.9930561	C7H4ClNO2
-169.004493	C3H7NO5S
-169.0140089	C3H8NO5P
-169.0294416	C8H8ClNO
-169.0375077	C7H7NO4
-169.0503944	C4H12NO4P
-169.0738932	C8H11NO3
-169.0851266	C7H11N3O2
-169.0891494	C12H11N
-169.1466642	C10H19NO
-169.9885086	C3H6O6S
-169.9980245	C3H7O6P
-170.0134572	C8H7ClO2
-170.0149981	C6H6N2O2S
-170.0166514	C4H11O3PS
-170.0215233	C7H6O5
-170.0262315	C5H6N4OS
-170.0439901	C5H6N4O3
-170.0513836	C7H10N2OS
-170.0579088	C8H10O4
-170.0731649	C12H10O
-170.0803756	C6H10N4O2
-170.0942943	C9H14O3
-170.1055277	C8H14N2O2
-170.1095504	C13H14
-170.1306798	C10H18O2
-170.1670653	C11H22O
-170.2034508	C12H26
-170.9642545	C7H3Cl2N
-170.9844489	C4H5CaNO4
-171.0353992	C7H9NO2S
-171.0531578	C7H9NO4
-171.0895433	C8H13NO3
-171.9459007	C4H4FeO4
-171.9523774	C6H5BrO
-172.0136745	C3H9O6P
-172.0194148	C7H8O3S
-172.0306482	C6H8N2O2S
-172.0371734	C7H8O5
-172.0484068	C6H8N2O4
-172.0524295	C11H8O2
-172.0735589	C8H12O4
-172.0847923	C7H12N2O3
-172.1000484	C11H12N2
-172.1324112	C7H16N4O
-172.1436445	C6H16N6
-172.1463299	C10H20O2
-173.0146638	C6H7NO3S
-173.046823	C5H8ClN5
-173.0476785	C10H7NO2
-173.0688078	C7H11NO4
-173.0800412	C6H11N3O3
-173.084064	C11H11NO
-173.1051934	C8H15NO3
-173.1164267	C7H15N3O2
-173.1204495	C12H15N
-173.9719863	C6H3ClO4
-173.9986794	C6H6O4S
-174.0081952	C6H7O4P
-174.0150784	C7H7FO2S
-174.0164379	C6H6O6
-174.0316941	C10H6O3
-174.0528234	C7H10O5
-174.0640568	C6H10N2O4
-174.0680796	C11H10O2
-174.079313	C10H10N2O
-174.0892089	C8H14O4
-174.1004423	C7H14N2O3
-174.1116757	C6H14N4O2
-174.1156985	C11H14N2
-175.024263	C6H7O6
-175.0245377	C7H6NNaO3
-175.0480724	C6H9NO5
-175.0593058	C5H9N3O4
-175.0633285	C10H9NO2
-175.0844579	C7H13NO4
-175.0857953	C8H9N5
-175.0956913	C6H13N3O3
-175.1109474	C10H13N3
-175.1360996	C12H17N
-175.956248	C4H7Cl3O
-175.9876364	C6H5ClO4
-175.9907948	C7H5NaO2S
-176.032088	C6H8O6
-176.0433214	C5H8N2O5
-176.0473441	C10H8O3
-176.0545548	C4H8N4O4
-176.0585775	C9H8N2O2
-176.0684735	C7H12O5
-176.0837296	C11H12O2
-176.0909403	C5H12N4O3
-176.094963	C10H12N2O
-176.104859	C8H16O4
-177.0459639	C6H11NO3S
-177.0637225	C6H11NO5
-177.1153641	C11H15NO
-177.9588348	C6H4Cl2O2
-178.0064537	C6H8Cl2N2
-178.0266087	C9H6O4
-178.0412129	C5H10N2O3S
-178.0477381	C6H10O6
-178.0504181	C9H8NO3
-178.0629942	C10H10O3
-178.0742276	C9H10N2O2
-178.0782503	C14H10
-178.0841236	C7H14O5
-178.0953569	C6H14N2O4
-178.0993797	C11H14O2
-178.1106131	C10H14N2O
-178.1357652	C12H18O
-178.988843	C4H5NO5S
-179.0252285	C5H9NO4S
-179.0443244	C6H5N5O2
-179.0582432	C9H9NO3
-179.061614	C6H13NO3S
-179.0694765	C8H9N3O2
-179.0793725	C6H13NO5
-179.0946287	C10H13NO2
-179.1058621	C9H13N3O
-179.1310142	C11H17NO
-179.1673997	C12H21N
-179.9300332	C6H3Cl3
-179.9744849	C6H6Cl2O2
-180.0422587	C9H8O4
-180.0456296	C6H12O4S
-180.0534921	C8H8N2O3
-180.056863	C5H12N2O3S
-180.0575149	C13H8O
-180.0633881	C6H12O6
-180.0647255	C7H8N4O2
-180.0687483	C12H8N2
-180.0721191	C9H12N2S
-180.0786443	C10H12O3
-180.0898776	C9H12N2O2
-180.1150298	C11H16O2
-180.1262631	C10H16N2O
-180.1514153	C12H20O
-181.0019906	C8H7NS2
-181.0053614	C5H11NS3
-181.0375077	C8H7NO4
-181.0503944	C5H12NO4P
-181.0738932	C9H11NO3
-181.0869565	C7H16ClNO2
-181.9707501	C4H6O4S2
-182.0215233	C8H6O5
-182.0327567	C7H6N2O4
-182.03441	C5H11O5P
-182.0367794	C12H6O2
-182.0579088	C9H10O4
-182.0590517	C6H11FO5
-182.0707955	C6H15O4P
-182.0731649	C13H10O
-182.0790382	C6H14O6
-182.0803756	C7H10N4O2
-182.0843983	C12H10N2
-182.086684	C6H12F2N2O2
-182.0871945	C7H16FO2P
-182.091609	C6H10N6O
-182.0942943	C10H14O3
-182.1306798	C11H18O2
-182.9798503	C4H9NO2Se
-182.9990137	C7H5NO3S
-183.0119004	C4H10NO3PS
-183.0531578	C8H9NO4
-183.0565286	C5H13NO4S
-183.0660445	C5H14NO4P
-183.0695568	C9H10FNO2
-183.0756246	C6H9N5O2
-183.0814772	C10H14ClN
-183.0895433	C9H13NO3
-183.1007767	C8H13N3O2
-183.1259288	C10H17NO2
-183.1623143	C11H21NO
-183.9352947	C2H5AsO5
-183.9714334	C3H2ClF5O
-183.977289	C3H5O7P
-184.0007879	C7H4O6
-184.0120212	C6H4N2O5
-184.0136745	C4H9O6P
-184.0232546	C5H4N4O4
-184.0371734	C8H8O5
-184.0403406	C8H9ClN2O
-184.0524295	C12H8O2
-184.066459	C6H14FO3P
-184.0735589	C9H12O4
-184.0847923	C8H12N2O3
-184.1000484	C12H12N2
-184.1099444	C10H16O3
-184.1252005	C14H16
-184.1463299	C11H20O2
-184.1827154	C12H24O
-184.2191009	C13H28
-184.9994077	C3H7NO6S
-185.0089235	C3H8NO6P
-185.0324223	C7H7NO5
-185.084064	C12H11NO
-185.1051934	C9H15NO3
-185.8679753	C2H4Br2
-185.9929391	C3H7O7P
-185.9986794	C7H6O4S
-186.0083718	C8H7ClO3
-186.0164379	C7H6O6
-186.0316941	C11H6O3
-186.0462983	C7H10N2O2S
-186.0640568	C7H10N2O4
-186.0680796	C12H10O2
-186.079313	C11H10N2O
-186.0892089	C9H14O4
-186.1156985	C12H14N2
-186.1255944	C10H18O3
-186.1480612	C8H18N4O
-186.16198	C11H22O2
-186.1983655	C12H26O
-187.0398297	C7H10NO3P
-187.0480724	C7H9NO5
-187.0624731	C6H10ClN5
-187.0745619	C10H9N3O
-187.0763918	C9H14ClNO
-187.0844579	C8H13NO4
-187.1030849	C9H17NOS
-187.1127773	C10H18ClN
-187.1208434	C9H17NO3
-187.1360996	C13H17N
-187.1572289	C10H21NO2
-187.1684623	C9H21N3O
-187.8916536	C2H4S5
-187.9635562	C3H8O3S3
-187.9872256	C3F8
-188.0143294	C7H8O4S
-188.032088	C7H8O6
-188.039278	C12H9Cl
-188.0473441	C11H8O3
-188.0684735	C8H12O5
-188.0797069	C7H12N2O4
-188.0837296	C12H12O2
-188.094963	C11H12N2O
-188.104859	C9H16O4
-188.1160924	C8H16N2O3
-188.1273258	C7H16N4O2
-188.1313485	C12H16N2
-188.1412445	C10H20O3
-188.1524779	C9H20N2O2
-188.9748192	C7H5Cl2NO
-189.0095784	C6H7NO4S
-189.0385704	C5H7N3O5
-189.0425931	C10H7NO3
-189.0489546	C6H12N3PS
-189.0637225	C7H11NO5
-189.0749559	C6H11N3O4
-189.0789786	C11H11NO2
-189.0823494	C8H15NO2S
-189.100108	C8H15NO4
-189.1113414	C7H15N3O3
-189.1153641	C12H15NO
-189.1187349	C9H19NOS
-189.9588348	C7H4Cl2O2
-189.993594	C6H6O5S
-190.0113525	C6H6O7
-190.0266087	C10H6O4
-190.0378421	C9H6N2O3
-190.0477381	C7H10O6
-190.0589714	C6H10N2O5
-190.0629942	C11H10O3
-190.0775984	C7H14N2O2S
-190.0841236	C8H14O5
-190.0953569	C7H14N2O4
-190.0993797	C12H14O2
-190.1065903	C6H14N4O3
-190.1106131	C11H14N2O
-191.0404846	C10H9NOS
-191.042987	C6H9NO6
-191.0582432	C10H9NO3
-191.061614	C7H13NO3S
-191.0694765	C9H9N3O2
-191.1184381	C11H15N2O
-191.1310142	C12H17NO
-191.982551	C6H5ClO5
-191.9978071	C10H5ClO2
-192.0270026	C6H8O7
-192.0422587	C10H8O4
-192.0633881	C7H12O6
-192.0786443	C11H12O3
-192.0898776	C10H12N2O2
-192.0997736	C8H16O5
-192.1150298	C12H16O2
-192.1262631	C11H16N2O
-192.1514153	C13H20O
-193.0375077	C9H7NO4
-193.0586371	C6H11NO6
-193.0738932	C10H11NO3
-193.0891494	C14H11N
-193.1102787	C11H15NO2
-193.998201	C6H7ClO5
-194.0426527	C6H10O7
-194.0579088	C10H10O4
-194.0731649	C14H10O
-194.0790382	C7H14O6
-194.0803756	C8H10N4O2
-194.0942943	C11H14O3
-194.1055277	C10H14N2O2
-194.1306798	C12H18O2
-195.0531578	C9H9NO4
-195.0742872	C6H13NO6
-195.0756246	C7H9N5O2
-195.0814772	C11H14ClN
-195.0895433	C10H13NO3
-195.1106727	C7H17NO5
-195.8902249	C2HBrClF3
-195.9249478	C6H3Cl3O
-195.977289	C4H5O7P
-196.0232546	C6H4N4O4
-196.0371734	C9H8O5
-196.0524295	C13H8O2
-196.0583027	C6H12O7
-196.0735589	C10H12O4
-196.0767261	C10H13ClN2
-196.1211778	C10H16N2O2
-196.1463299	C12H20O2
-196.9955004	C5H11NO2Se
-197.0201569	C3H8N3O5P
-197.0324223	C8H7NO5
-197.0357932	C5H11NO5S
-197.045309	C5H12NO5P
-197.0565424	C4H12N3O4P
-197.0688078	C9H11NO4
-197.0800412	C8H11N3O3
-197.0952974	C12H11N3
-197.1051934	C10H15NO3
-197.1276601	C8H15N5O
-197.9405979	C6H5Cl3O
-197.9929391	C4H7O7P
-198.0020502	C5H10O4S2
-198.0164379	C8H6O6
-198.0389047	C6H6N4O4
-198.0528234	C9H10O5
-198.0640568	C8H10N2O4
-198.0680796	C13H10O2
-198.079313	C12H10N2O
-198.0892089	C10H14O4
-198.0939172	C8H14N4S
-198.1004423	C9H14N2O3
-198.1044651	C14H14O
-198.1156985	C13H14N2
-198.1408506	C15H18
-198.16198	C12H22O2
-198.1844467	C10H22N4
-198.9480203	C3H6BrNO4
-199.0245736	C4H10NO6P
-199.0433771	C6H14ClNO2S
-199.0480724	C8H9NO5
-199.0593058	C7H9N3O4
-199.0633285	C12H9NO2
-199.0956913	C8H13N3O3
-199.1109474	C12H13N3
-199.1208434	C10H17NO3
-199.1684623	C10H21N3O
-199.1936144	C12H25NO
-200.0072121	C4H3F7O
-200.0085892	C4H9O7P
-200.0177003	C5H12O4S2
-200.0240219	C9H9ClO3
-200.032088	C8H8O6
-200.040819	C11H8N2S
-200.0597204	C8H9FN2O3
-200.0797069	C8H12N2O4
-200.0837296	C13H12O2
-200.1313485	C13H16N2
-200.17763	C12H24O2
-200.9540295	C3H7NO4Se
-200.9765637	C3H7NO5S2
-201.0781231	C7H12ClN5
-201.0789786	C12H11NO2
-201.1364935	C10H19NO3
-201.9781343	C6H3ClN2O4
-201.993594	C7H6O5S
-202.0031098	C7H7O5P
-202.0113525	C7H6O7
-202.0242392	C4H11O7P
-202.0266087	C11H6O4
-202.0338193	C5H6N4O5
-202.0396719	C9H11ClO3
-202.0629942	C12H10O3
-202.0742276	C11H10N2O2
-202.0782503	C16H10
-202.0841236	C9H14O5
-202.085461	C10H10N4O
-202.0953569	C8H14N2O4
-202.0993797	C13H14O2
-202.1205091	C10H18O4
-202.1357652	C14H18O
-202.1429758	C8H18N4O2
-202.1721507	C15H22
-202.2157469	C10H26N4
-203.0582432	C11H9NO3
-203.0793725	C8H13NO5
-203.0820526	C11H11N2O2
-203.0946287	C12H13NO2
-203.1058621	C11H13N3O
-203.115758	C9H17NO4
-203.1170954	C10H13N5
-203.1310142	C13H17NO
-204.0202739	C9H5ClN4
-204.0270026	C7H8O7
-204.0341926	C12H9ClO
-204.0422587	C11H8O4
-204.0721191	C11H12N2S
-204.0786443	C12H12O3
-204.0898776	C11H12N2O2
-204.0970883	C5H12N6O3
-204.0997736	C9H16O5
-204.111007	C8H16N2O4
-204.1123444	C9H12N6
-204.1150298	C13H16O2
-204.1222404	C7H16N4O3
-204.1262631	C12H16N2O
-204.183778	C10H24N2O2
-204.1878008	C15H24
-204.9519753	C7H5Cl2NS
-204.9809584	C7H4NNaO3S
-205.0375077	C10H7NO4
-205.0595055	C8H15NOS2
-205.0738932	C11H11NO3
-205.1102787	C12H15NO2
-205.1314081	C9H19NO4
-205.1327455	C10H15N5
-205.1466642	C13H19NO
-205.9649828	C6H4Cl2N2O2
-205.9745256	C2H8O7P2
-205.9901349	C8H8Cl2O2
-205.9942422	C7H11BrO2
-206.0062672	C6H6O8
-206.0426527	C7H10O7
-206.0435211	C8H14O2S2
-206.0513836	C10H10N2OS
-206.0579088	C11H10O4
-206.0877692	C11H14N2S
-206.0942943	C12H14O3
-206.1055277	C11H14N2O2
-206.1095504	C16H14
-206.1306798	C13H18O2
-206.1419132	C12H18N2O
-206.1670653	C14H22O
-207.0330028	C7H11Cl2N3
-207.0531578	C10H9NO4
-207.0643912	C9H9N3O3
-207.0751556	C8H17NOS2
-207.0895433	C11H13NO3
-207.1106727	C8H17NO5
-207.1259288	C12H17NO2
-207.1371622	C11H17N3O
-207.1623143	C13H21NO
-207.933014	C6H2Cl2O4
-208.0007879	C9H4O6
-208.0371734	C10H8O5
-208.0405442	C7H12O5S
-208.0524295	C14H8O2
-208.0591711	C8H16O2S2
-208.0735589	C11H12O4
-208.0767261	C11H13ClN2
-208.0847923	C10H12N2O3
-208.088815	C15H12O
-208.0960257	C9H12N4O2
-208.1099444	C12H16O3
-208.1211778	C11H16N2O2
-208.1252005	C16H16
-208.1463299	C13H20O2
-208.1575633	C12H20N2O
-209.0688078	C10H11NO4
-209.0952974	C13H11N3
-209.1051934	C11H15NO3
-209.9405979	C7H5Cl3O
-209.948664	C6H4Cl2O4
-210.0375673	C6H10O8
-210.0528234	C10H10O5
-210.0680796	C14H10O2
-210.0714504	C11H14O2S
-210.0739528	C7H14O7
-210.079313	C13H10N2O
-210.0881769	C5H15N4O3P
-210.0892089	C11H14O4
-210.1004423	C10H14N2O3
-210.1044651	C15H14O
-210.1255944	C12H18O3
-211.035807	C4H10N3O5P
-211.0400063	C10H10ClNO2
-211.0480724	C9H9NO5
-211.0593058	C8H9N3O4
-211.0624731	C8H10ClN5
-211.0633285	C13H9NO2
-211.0745619	C12H9N3O
-211.0844579	C10H13NO4
-211.0956913	C9H13N3O3
-211.1208434	C11H17NO3
-211.1572289	C12H21NO2
-211.9198625	C6H3Cl3O2
-211.9601854	C8H4O3S2
-212.0255628	C8H8N2O3S
-212.032088	C9H8O6
-212.0585775	C12H8N2O2
-212.0684735	C10H12O5
-212.0837296	C14H12O2
-212.0896029	C7H16O7
-212.094963	C13H12N2O
-212.1095672	C9H16N4S
-212.1160924	C10H16N2O3
-212.1201151	C15H16O
-212.1313485	C14H16N2
-212.1412445	C12H20O3
-212.250401	C15H32
-212.990415	C5H11NO3Se
-213.0038381	C4H8NO7P
-213.007182	C5H9Cl2N3O2
-213.0556563	C10H12ClNO2
-213.0637225	C9H11NO5
-213.0789786	C13H11NO2
-213.0920419	C11H16ClNO
-213.100108	C10H15NO4
-213.1014454	C11H11N5
-213.1048162	C8H15N5S
-213.1364935	C11H19NO3
-213.1477269	C10H19N3O2
-213.9355125	C6H5Cl3O2
-213.9629421	C8H7BrO2
-213.9870688	C7H6N2O2S2
-213.9878537	C4H7O8P
-214.0242392	C5H11O7P
-214.0266087	C12H6O4
-214.0396719	C10H11ClO3
-214.0477381	C9H10O6
-214.0540996	C5H15N2O3PS
-214.0589714	C8H10N2O5
-214.0629942	C13H10O3
-214.0888318	C8H14N4OS
-214.0953569	C9H14N2O4
-214.0993797	C14H14O2
-214.1106131	C13H14N2O
-214.1317425	C10H18N2O3
-214.1568946	C12H22O3
-215.0194882	C4H10NO7P
-215.0558737	C5H14NO6P
-215.0582432	C12H9NO3
-215.0793725	C9H13NO5
-215.0807099	C10H9N5O
-215.0937732	C8H14ClN5
-215.115758	C10H17NO4
-215.1440774	C12H22ClN
-215.906711	C6H4Cl4
-215.9857452	C4H9O6PS
-216.0035038	C4H9O8P
-216.0067416	C12H8S2
-216.0245002	C12H8O2S
-216.0245973	C6H9NaO7
-216.0270026	C8H8O7
-216.0398893	C5H13O7P
-216.0422587	C12H8O4
-216.0510868	C9H9N2NaO3
-216.056863	C8H12N2O3S
-216.0665554	C9H13ClN2O2
-216.0786443	C13H12O3
-216.0939004	C17H12
-216.1262631	C13H16N2O
-216.1361591	C11H20O4
-216.1725446	C12H24O3
-217.0061193	C9H9Cl2NO
-217.0586371	C8H11NO6
-217.0738932	C12H11NO3
-217.077264	C9H15NO3S
-217.0869565	C10H16ClNO2
-217.106256	C8H15N3O4
-217.1102787	C13H15NO2
-217.1314081	C10H19NO4
-217.1426415	C9H19N3O3
-217.1500351	C11H23NOS
-217.922361	C6H6Cl4
-218.0401503	C12H10O2S
-218.0579088	C12H10O4
-218.0902716	C8H14N2O5
-218.0942943	C13H14O3
-218.1055277	C12H14N2O2
-218.1154237	C10H18O5
-218.1266571	C9H18N2O4
-218.1419132	C13H18N2O
-218.1670653	C15H22O
-218.9932734	C6H6NO6P
-219.0408923	C6H10N3O4P
-219.0531578	C11H9NO4
-219.065534	C7H10FN3O4
-219.0742872	C8H13NO6
-219.0855205	C7H13N3O5
-219.0895433	C12H13NO3
-219.0967539	C6H13N5O4
-219.1047994	C16H13N
-219.1106727	C9H17NO5
-219.1120101	C10H13N5O
-219.1259288	C13H17NO2
-219.1623143	C14H21NO
-219.9385078	C6H5IO
-219.9459006	C4H7Cl2O4P
-219.9693995	C8H6Cl2O3
-219.9709404	C6H5ClN2O3S
-219.9935195	C4H11Cl2N2O2P
-220.0219172	C7H8O8
-220.0249079	C6H9N2O5P
-220.0291072	C12H9ClO2
-220.0371734	C11H8O5
-220.0517776	C7H12N2O4S
-220.0636629	C14H8N2O
-220.0735589	C12H12O4
-220.0847923	C11H12N2O3
-220.1000484	C15H12N2
-220.1059216	C8H16N2O5
-220.1099444	C13H16O3
-220.1211778	C12H16N2O2
-220.1337538	C13H18NO2
-220.1463299	C14H20O2
-220.1575633	C13H20N2O
-220.1827154	C15H24O
-221.0324223	C10H7NO5
-221.0565424	C6H12N3O4P
-221.0622827	C10H11N3OS
-221.0688078	C11H11NO4
-221.0899372	C8H15NO6
-221.0912746	C9H11N5O2
-221.1011706	C7H15N3O5
-221.1051934	C12H15NO3
-221.1204495	C16H15N
-221.1276601	C10H15N5O
-221.1415789	C13H19NO2
-221.1528122	C12H19N3O
-221.9680274	C10H7BrO
-221.9834232	C6H6O7S
-221.9881315	C4H6N4O3S2
-222.0003057	C12H8Cl2
-222.0003902	C6H11BrN2O2
-222.0447573	C12H11ClO2
-222.0528234	C11H10O5
-222.0674276	C7H14N2O4S
-222.0680796	C15H10O2
-222.0739528	C8H14O7
-222.0892089	C12H14O4
-222.1038131	C8H18N2O3S
-222.1116757	C10H14N4O2
-222.1255944	C13H18O3
-222.1368278	C12H18N2O2
-222.16198	C14H22O2
-222.1983655	C15H26O
-223.006815	C6H10NO4PS
-223.0336847	C7H13NO3S2
-223.0480724	C10H9NO5
-223.0609591	C7H14NO5P
-223.0633285	C14H9NO2
-223.0844579	C11H13NO4
-223.099714	C15H13NO
-223.1109474	C14H13N3
-223.1208434	C12H17NO3
-223.1360996	C16H17N
-223.1572289	C13H21NO2
-224.0433214	C9H8N2O5
-224.0473441	C14H8O3
-224.0684735	C11H12O5
-224.070133	C4H13AlN4O5
-224.0797069	C10H12N2O4
-224.0837296	C15H12O2
-224.104859	C12H16O4
-224.1201151	C16H16O
-224.1412445	C13H20O3
-224.1524779	C12H20N2O2
-224.17763	C14H24O2
-224.1888634	C13H24N2O
-224.990415	C6H11NO3Se
-225.0385704	C8H7N3O5
-225.0637225	C10H11NO5
-225.0789786	C14H11NO2
-225.0861892	C8H11N5O3
-225.1014454	C12H11N5
-225.1265975	C14H15N3
-225.1364935	C12H19NO3
-225.1589603	C10H19N5O
-225.9435787	C6H4Cl2O5
-226.0396719	C11H11ClO3
-226.0477381	C10H10O6
-226.0629942	C14H10O3
-226.0841236	C11H14O5
-226.0953569	C10H14N2O4
-226.0993797	C15H14O2
-226.1065903	C9H14N4O3
-226.1106131	C14H14N2O
-226.1252173	C10H18N4S
-226.1317425	C11H18N2O3
-226.1469986	C15H18N2
-226.168128	C12H22N2O2
-226.1932801	C14H26O2
-226.2296656	C15H30O
-226.9985354	C9H6ClNO4
-227.0025788	C3H5N3O9
-227.0194882	C5H10NO7P
-227.042987	C9H9NO6
-227.0582432	C13H9NO3
-227.0793725	C10H13NO5
-227.0906059	C9H13N3O4
-227.0946287	C14H13NO2
-227.1076919	C12H18ClNO
-227.8912783	C2H4Cl3O4P
-228.0018505	C7H4N2O7
-228.0067416	C13H8S2
-228.0398893	C6H13O7P
-228.0422587	C13H8O4
-228.0511227	C5H13N2O6P
-228.0633881	C10H12O6
-228.0665554	C10H13ClN2O2
-228.0746215	C9H12N2O5
-228.0786443	C14H12O3
-228.0939004	C18H12
-228.111007	C10H16N2O4
-228.1150298	C15H16O2
-228.1222404	C9H16N4O3
-228.1361591	C12H20O4
-228.2089301	C14H28O2
-228.9996211	C5H12NO3PS2
-229.0173527	C9H9Cl2N3
-229.0351383	C5H12NO7P
-229.0375077	C12H7NO4
-229.0478856	C6H8ClN7O
-229.0521119	C8H11N3O3S
-229.0586371	C9H11NO6
-229.0620079	C6H15NO6S
-229.0738932	C13H11NO3
-229.1094233	C9H16ClN5
-229.1466642	C15H19NO
-229.2041791	C13H27NO2
-229.9916759	C8H7ClN2O2S
-230.0013683	C9H8Cl2N2O
-230.0126017	C8H8Cl2N4
-230.0191538	C5H11O8P
-230.0579088	C13H10O4
-230.0659879	C8H14N4S2
-230.0707955	C10H15O4P
-230.0942943	C14H14O3
-230.1214682	C9H11N5O2
-230.1306798	C15H18O2
-230.1419132	C14H18N2O
-230.1518092	C12H22O4
-230.201214	C13H27NO2
-230.2245802	C14H30O2
-231.0742872	C9H13NO6
-231.0895433	C13H13NO3
-231.1106727	C10H17NO5
-231.1234841	C12H16F3N
-231.1259288	C14H17NO2
-231.1371622	C13H17N3O
-231.1470582	C11H21NO4
-231.1623143	C15H21NO
-232.0232546	C9H4N4O4
-232.0348039	C5H13O8P
-232.0371734	C12H8O5
-232.0735589	C13H12O4
-232.0847923	C12H12N2O3
-232.1000484	C16H12N2
-232.1059216	C9H16N2O5
-232.1099444	C14H16O3
-232.1211778	C13H16N2O2
-232.1423071	C10H20N2O4
-232.1463299	C15H20O2
-232.1575633	C14H20N2O
-232.1939488	C15H24N2
-233.0357932	C8H11NO5S
-233.0688078	C12H11NO4
-233.112404	C7H15N5O4
-233.1415789	C14H19NO2
-233.1627082	C11H23NO4
-233.1779644	C15H23NO
-233.8446531	C3H5Br2Cl
-233.9541578	C7H7IO
-233.9850495	C9H8Cl2O3
-234.0074681	C8H5F3N2OS
-234.0173063	C12H10OS2
-234.0350649	C12H10O3S
-234.0528234	C12H10O5
-234.0892089	C13H14O4
-234.1116757	C11H14N4O2
-234.1215717	C9H18N2O5
-234.1368278	C13H18N2O2
-234.1480612	C12H18N4O
-234.16198	C15H22O2
-234.1732133	C14H22N2O
-234.2095988	C15H26N2
-235.0010747	C3H11NO7P2
-235.0480724	C11H9NO5
-235.0666994	C12H13NO2S
-235.0692018	C8H13NO7
-235.0903906	C8H10BF4N3
-235.1055873	C9H17NO6
-235.1208434	C13H17NO3
-235.1572289	C14H21NO2
-235.1684623	C13H21N3O
-235.9908036	C11H6Cl2N2
-235.9925481	C6H8N2O4S2
-236.0037815	C5H8N4O3S2
-236.0159557	C13H10Cl2
-236.0231575	C8H9N2NaO3S
-236.0280652	C6H8N2O8
-236.032088	C11H8O6
-236.0585775	C14H8N2O2
-236.0684735	C12H12O5
-236.0797069	C11H12N2O4
-236.0909403	C10H12N4O3
-236.094963	C15H12N2O
-236.104859	C13H16O4
-236.1084096	C8H24O2Si3
-236.1160924	C12H16N2O3
-236.1273258	C11H16N4O2
-236.1412445	C14H20O3
-236.1524779	C13H20N2O2
-236.17763	C15H24O2
-237.0605681	C7H15N3O2S2
-237.0789786	C15H11NO2
-237.0848518	C8H15NO7
-237.0861892	C9H11N5O3
-237.0920419	C13H16ClNO
-237.1364935	C13H19NO3
-237.1517496	C17H19N
-237.9952203	C12H8Cl2O
-238.0354726	C6H11N2O6P
-238.0629942	C15H10O3
-238.0688674	C8H14O8
-238.0702048	C9H10N4O4
-238.0742276	C14H10N2O2
-238.0953569	C11H14N2O4
-238.0987278	C8H18N2O4S
-238.1065903	C10H14N4O3
-238.1429758	C11H18N4O2
-238.1469986	C16H18N2
-238.1932801	C15H26O2
-238.2296656	C16H30O
-239.0582432	C14H9NO3
-239.0713064	C12H14ClNO2
-239.0946287	C15H13NO2
-239.1018393	C9H13N5O3
-239.1076919	C13H18ClNO
-239.1269914	C11H17N3O3
-239.1422476	C15H17N3
-239.1521435	C13H21NO3
-239.1673997	C17H21N
-239.9260105	C6H3Cl3N2O2
-239.9737269	C10H8OS3
-239.9883312	C6H12N2S4
-240.0238483	C6H12N2O4S2
-240.0422587	C14H8O4
-240.0487968	C11H13ClN2S
-240.056863	C10H12N2O3S
-240.0633881	C11H12O6
-240.0746215	C10H12N2O5
-240.0786443	C15H12O3
-240.0890222	C9H13ClN6
-240.1150298	C16H16O2
-240.1222404	C10H16N4O3
-240.1262631	C15H16N2O
-240.1374965	C14H16N4
-240.1393264	C13H21ClN2
-240.1473925	C12H20N2O3
-240.1514153	C17H20O
-240.1626487	C16H20N2
-240.2453156	C16H32O
-240.2817012	C17H36
-241.0586371	C10H11NO6
-241.0730377	C9H12ClN5O
-241.0738932	C14H11NO3
-241.106256	C10H15N3O4
-241.1102787	C15H15NO2
-241.1174894	C9H15N5O3
-241.1215121	C14H15N3O
-241.123342	C13H20ClNO
-241.1314081	C12H19NO4
-241.1677936	C13H23NO3
-241.1830497	C17H23N
-242.0013953	C6H11O6PS
-242.0191538	C6H11O8P
-242.0280614	C10H11ClN2OS
-242.0303872	C5H11N2O7P
-242.0579088	C14H10O4
-242.0667727	C6H15N2O6P
-242.0709721	C12H15ClO3
-242.0803756	C12H10N4O2
-242.0902716	C10H14N2O5
-242.0942943	C15H14O3
-242.101505	C9H14N4O4
-242.1088985	C11H18N2O2S
-242.1167611	C13H14N4O
-242.1306798	C16H18O2
-242.1419132	C15H18N2O
-242.1670653	C17H22O
-242.1782987	C16H22N2
-242.2068217	C15H30S
-242.2245802	C15H30O2
-242.2609657	C16H34O
-242.9853839	C10H7Cl2NO2
-243.0531578	C13H9NO4
-243.0855205	C9H13N3O5
-243.1041475	C10H17N3O2S
-243.1259288	C15H17NO2
-243.1623143	C16H21NO
-243.1986998	C17H25N
-243.9096917	C6H3Cl3O4
-244.0282518	C9H10Cl2N4
-244.0306482	C12H8N2O2S
-244.0348039	C6H13O8P
-244.0371734	C13H8O5
-244.0695361	C9H12N2O6
-244.0711894	C7H17O7P
-244.0735589	C14H12O4
-244.0807695	C8H12N4O5
-244.0816379	C9H16N4S2
-244.0881631	C10H16N2O3S
-244.1099444	C15H16O3
-244.117155	C9H16N4O4
-244.1211778	C14H16N2O2
-244.1463299	C16H20O2
-244.1575633	C15H20N2O
-244.1786926	C12H24N2O3
-244.1827154	C17H24O
-244.1939488	C16H24N2
-244.2038448	C14H28O3
-244.2263115	C12H28N4O
-244.9495028	C5H11NS5
-245.0122673	C9H9Cl2N3O
-245.0454856	C10H12ClNO4
-245.0688078	C13H11NO4
-245.1415789	C15H19NO2
-245.1487895	C9H19N5O3
-245.1627082	C12H23NO4
-245.1779644	C16H23NO
-245.8808901	C6H2Cl4O2
-246.0058258	C5H12O7P2
-246.0231796	C6H14O6S2
-246.0462983	C12H10N2O2S
-246.050454	C6H15O8P
-246.0528234	C13H10O5
-246.0651997	C9H11FN2O5
-246.0851862	C9H14N2O6
-246.0892089	C14H14O4
-246.0923762	C14H15ClN2
-246.1004423	C13H14N2O3
-246.1156985	C17H14N2
-246.1255944	C15H18O3
-246.1328051	C9H18N4O4
-246.1368278	C14H18N2O2
-246.1440385	C8H18N6O3
-246.1467238	C12H22O5
-246.16198	C16H22O2
-246.1732133	C15H22N2O
-246.9802985	C9H7Cl2NO3
-247.0027923	C3H10N3O6PS
-247.0245736	C8H10NO6P
-247.0400063	C13H10ClNO2
-247.0426901	C8H10FN3O3S
-247.0530695	C11H15Cl2NO
-247.0626766	C8H13N3O4S
-247.0633285	C16H9NO2
-247.0692018	C9H13NO7
-247.0804352	C8H13N3O6
-247.1055873	C10H17NO6
-247.1087545	C10H18ClN3O2
-247.1208434	C14H17NO3
-247.1572289	C15H21NO2
-247.1936144	C16H25NO
-247.9487048	C3H6O9P2
-247.9643141	C9H6Cl2O4
-247.9788123	C12H8S3
-248.0006996	C10H10Cl2O3
-248.011933	C9H10Cl2N2O2
-248.0159557	C14H10Cl2
-248.0433214	C11H8N2O5
-248.056208	C8H13N2O5P
-248.0585775	C15H8N2O2
-248.0619483	C12H12N2O2S
-248.0797069	C12H12N2O4
-248.0828741	C12H13ClN4
-248.104859	C14H16O4
-248.1136871	C11H17N2NaO3
-248.1160924	C13H16N2O3
-248.1412445	C15H20O3
-248.1524779	C14H20N2O2
-248.1888634	C15H24N2O
-248.2140155	C17H28O
-248.9959486	C9H9Cl2NO3
-249.0167248	C4H13NO7P2
-249.0402236	C8H12NO6P
-249.0789786	C16H11NO2
-249.0857202	C10H19NO2S2
-249.1364935	C14H19NO3
-249.172879	C15H23NO2
-249.9355125	C9H5Cl3O2
-249.9490725	C7H7IO2
-249.954839	C3H7O9PS
-249.9952203	C13H8Cl2O
-249.9967613	C11H7ClN2OS
-250.0299795	C12H10O4S
-250.0441505	C13H8F2O3
-250.0477381	C12H10O6
-250.0524463	C10H10N4O2S
-250.0623423	C8H14N2O5S
-250.0993797	C17H14O2
-250.1106131	C16H14N2O
-250.1205091	C14H18O4
-250.1317425	C13H18N2O3
-250.1568946	C15H22O3
-250.168128	C14H22N2O2
-250.2045135	C15H26N2O
-250.240899	C16H30N2
-251.022832	C8H11Cl2N3O2
-251.0793725	C12H13NO5
-251.1005019	C9H17NO7
-251.1018393	C10H13N5O3
-251.115758	C13H17NO4
-251.8833887	C6H5Cl5
-251.9629538	CH3ClHg
-252.0189365	C12H9ClO4
-252.0422587	C15H8O4
-252.0746215	C11H12N2O5
-252.0786443	C16H12O3
-252.0858549	C10H12N4O4
-252.0898776	C15H12N2O2
-252.0939004	C20H12
-252.0957509	C8H16N2O7
-252.111007	C12H16N2O4
-252.1150298	C17H16O2
-252.1586259	C12H20N4O2
-252.1725446	C15H24O3
-252.2089301	C16H28O2
-253.0188937	C9H8ClN5S
-253.0222516	C10H7NO7
-253.0254188	C10H8ClN3O3
-253.0521119	C10H11N3O3S
-253.0586371	C11H11NO6
-253.0738932	C15H11NO3
-253.077264	C12H15NO3S
-253.0811039	C9H11N5O4
-253.106256	C11H15N3O4
-253.1094233	C11H16ClN5
-253.1136495	C13H19NO2S
-253.1174894	C10H15N5O3
-253.1215121	C15H15N3O
-253.1361163	C11H19N5S
-253.1578976	C16H19N3
-253.9304272	C8H5Cl3O3
-254.0191538	C7H11O8P
-254.0394983	C7H14N2O4S2
-254.0572569	C7H14N2O6S
-254.0579088	C15H10O4
-254.0780061	C6H15N4O5P
-254.0942943	C16H14O3
-254.1001676	C9H18O8
-254.101505	C10H14N4O4
-254.1055277	C15H14N2O2
-254.1088985	C12H18N2O2S
-254.1266571	C12H18N2O4
-254.1419132	C16H18N2O
-254.1782987	C17H22N2
-254.2245802	C16H30O2
-254.9256761	C7H4Cl3NO3
-255.0136179	C9H9N3O2S2
-255.0177378	C8H10NNaO5S
-255.0217694	C12H11Cl2NO
-255.0379016	C10H9NO7
-255.0523023	C9H10ClN5O2
-255.0660445	C11H14NO4P
-255.0895433	C15H13NO3
-255.0967539	C9H13N5O4
-255.1106727	C12H17NO5
-255.1470582	C13H21NO4
-255.1623143	C17H21NO
-255.1735477	C16H21N3
-255.9225784	C4H8Cl3O4P
-255.9613334	C12H7Cl3
-255.9806329	C10H6Cl2N2O2
-255.9889025	C6H8O9S
-256.0041587	C10H8O6S
-256.0371734	C14H8O5
-256.0534039	C12H14Cl2N2
-256.0735589	C15H12O4
-256.0946882	C12H16O6
-256.1099444	C16H16O3
-256.117155	C10H16N4O4
-256.1252005	C20H16
-256.1463299	C17H20O2
-256.1575633	C16H20N2O
-256.1827154	C18H24O
-256.2224717	C16H32S
-256.2402303	C16H32O2
-257.0641125	C12H16ClNOS
-257.0688078	C14H11NO4
-257.0791858	C8H12ClN7O
-257.0818711	C12H16ClNO3
-257.1011706	C10H15N3O5
-257.1051934	C15H15NO3
-257.112404	C9H15N5O4
-257.1175696	C11H16FN3O3
-257.1415789	C16H19NO2
-257.1779644	C17H23NO
-257.8131163	C4Cl6
-258.0140685	C6H11O9P
-258.0375673	C10H10O8
-258.0528234	C14H10O5
-258.0616874	C6H15N2O7P
-258.0640568	C13H10N2O4
-258.0851862	C10H14N2O6
-258.0892089	C15H14O4
-258.1255944	C16H18O3
-258.16198	C17H22O2
-258.1831093	C14H26O4
-259.016684	C11H11Cl2NO2
-259.0361871	C6H13NO8S
-259.0457029	C6H14NO8P
-259.0609591	C10H14NO5P
-259.0804352	C9H13N3O6
-259.0844579	C14H13NO4
-259.1055873	C11H17NO6
-259.1168207	C10H17N3O5
-259.1208434	C15H17NO3
-259.1572289	C16H21NO2
-259.1684623	C15H21N3O
-259.1783583	C13H25NO4
-259.2299999	C18H29N
-260.01196	C6H13O7PS
-260.0160403	C9H13BrN2O2
-260.0202027	C6H12O9S
-260.0248197	C7H15Cl2N2O2P
-260.0297185	C6H13O9P
-260.032088	C13H8O6
-260.0507149	C14H12O3S
-260.0684735	C14H12O5
-260.104859	C15H16O4
-260.1160924	C14H16N2O3
-260.1347193	C15H20N2S
-260.1412445	C16H20O3
-260.1524779	C15H20N2O2
-260.1736073	C12H24N2O4
-260.17763	C17H24O2
-260.1888634	C16H24N2O
-260.250401	C19H32
-261.0402236	C9H12NO6P
-261.0516336	C9H12ClN3O4
-261.0556563	C14H12ClNO2
-261.0588506	C10H16NO3PS
-261.0637225	C13H11NO5
-261.0749559	C12H11N3O4
-261.0848518	C10H15NO7
-261.1212373	C11H19NO6
-261.1299683	C14H19N3S
-261.1364935	C15H19NO3
-261.1517496	C19H19N
-261.172879	C16H23NO2
-261.2092645	C17H27NO
-262.0007404	C5H12O8P2
-262.0453686	C6H15O9P
-262.0477381	C13H10O6
-262.0589714	C12H10N2O5
-262.1164863	C10H18N2O6
-262.1205091	C15H18O4
-262.1317425	C14H18N2O3
-262.1389531	C8H18N6O4
-262.168128	C15H22N2O2
-262.2045135	C16H26N2O
-262.2296656	C18H30O
-263.0017296	C8H10NO5PS
-263.0535479	C14H14ClNS
-263.0717623	C9H11F2N3O4
-263.0843697	C12H19Cl2NO
-263.1673997	C19H21N
-263.1746103	C13H21N5O
-263.1885291	C16H25NO2
-263.8470032	C6HCl5O
-263.8815589	C8Cl4N2
-264.0422587	C16H8O4
-264.0898776	C16H12N2O2
-264.0997736	C14H16O5
-264.111007	C13H16N2O4
-264.1361591	C15H20O4
-264.1473925	C14H20N2O3
-264.1490458	C12H25O4P
-264.1626487	C18H20N2
-264.1725446	C16H24O3
-264.183778	C15H24N2O2
-264.9850745	C10H8BrN3O
-265.0738932	C16H11NO3
-265.0811039	C10H11N5O4
-265.0884974	C12H15N3O2S
-265.0909999	C8H15N3O7
-265.1102787	C17H15NO2
-265.1174894	C11H15N5O3
-265.1314081	C14H19NO4
-265.1578976	C17H19N3
-265.1841926	C16H24FNO
-265.9592695	C3H8O10P2
-266.0265204	C14H12Cl2O
-266.0318408	C10H7KN6O
-266.0377538	C13H12Cl2N2
-266.0547545	C12H14N2OS2
-266.0651195	C10H10N4O5
-266.0691422	C15H10N2O3
-266.072513	C12H14N2O3S
-266.0942943	C17H14O3
-266.101505	C11H14N4O4
-266.1167611	C15H14N4O
-266.1306798	C18H18O2
-266.1419132	C17H18N2O
-266.1518092	C15H22O4
-266.1630426	C14H22N2O3
-266.1646959	C12H27O4P
-266.1782987	C18H22N2
-266.1881947	C16H26O3
-266.2245802	C17H30O2
-266.9853839	C12H7Cl2NO2
-267.0565286	C12H13NO4S
-267.0603684	C9H9N5O5
-267.067762	C11H13N3O3S
-267.077658	C9H17NO6S
-267.0954165	C9H17NO8
-267.0967539	C10H13N5O4
-267.1007767	C15H13N3O2
-267.1219061	C12H17N3O4
-267.1259288	C17H17NO2
-267.131802	C10H21NO7
-267.1371622	C16H17N3O
-267.1470582	C14H21NO4
-267.1735477	C17H21N3
-267.1834437	C15H25NO3
-268.005785	C13H10Cl2O2
-268.0371734	C15H8O5
-268.0484068	C14H8N2O4
-268.0551484	C8H16N2O4S2
-268.0695361	C11H12N2O6
-268.0735589	C16H12O4
-268.0794321	C9H16O9
-268.0807695	C10H12N4O5
-268.0847923	C15H12N2O3
-268.088815	C20H12O
-268.0920029	C9H12N6O4
-268.1034192	C16H16N2S
-268.117155	C11H16N4O4
-268.1211778	C16H16N2O2
-268.1252005	C21H16
-268.1463299	C18H20O2
-268.1535405	C12H20N4O3
-268.2402303	C17H32O2
-268.2766158	C18H36O
-269.0300529	C7H12NO8P
-269.0688078	C15H11NO4
-269.1085642	C13H19NO3S
-269.1182566	C14H20ClNO2
-269.1415789	C17H19NO2
-269.1779644	C18H23NO
-269.9535758	C6H7ClN2O4S2
-270.0118787	C7H14N2O4Se
-270.0124152	C9H6N2O8
-270.024517	C9H10N4O2S2
-270.0528234	C15H10O5
-270.0559907	C15H11ClN2O
-270.0616121	C12H9F3N2O2
-270.0729207	C6H15N4O6P
-270.0892089	C16H14O4
-270.0923762	C16H15ClN2
-270.0964196	C10H14N4O5
-270.1004423	C15H14N2O3
-270.1038131	C12H18N2O3S
-270.1135056	C13H19ClN2O2
-270.1215717	C12H18N2O5
-270.16198	C18H22O2
-270.2922658	C18H38O
-271.0440497	C9H9N3O7
-271.0530695	C13H15Cl2NO
-271.0666994	C15H13NO2S
-271.0844579	C15H13NO4
-271.1055873	C12H17NO6
-271.1208434	C16H17NO3
-271.1572289	C17H21NO2
-271.1936144	C18H25NO
-271.956248	C12H7Cl3O
-272.0466922	C10H12N2O5S
-272.0684735	C15H12O5
-272.0830777	C11H16N2O4S
-272.0896029	C12H16O7
-272.104859	C16H16O4
-272.1194632	C12H20N2O3S
-272.1313485	C19H16N2
-272.1412445	C17H20O3
-272.1524779	C16H20N2O2
-272.1565006	C21H20
-272.17763	C18H24O2
-272.1888634	C17H24N2O
-272.2140155	C19H28O
-272.2212262	C13H28N4O2
-272.2351449	C16H32O3
-272.250401	C20H32
-273.0226417	C11H12ClNO3S
-273.0626904	C8H12N5O4P
-273.0637225	C14H11NO5
-273.0823494	C15H15NO2S
-273.0857202	C12H19NO2S2
-273.100108	C15H15NO4
-273.1265975	C18H15N3
-273.1364935	C16H19NO3
-273.2667794	C16H35NO2
-273.9299274	C9H7BrO3S
-273.9994672	C6H10O10S
-274.0040842	C7H13Cl2N2O3P
-274.0089831	C6H11O10P
-274.0453686	C7H15O9P
-274.0477381	C14H10O6
-274.0639686	C12H16Cl2N2O
-274.0841236	C15H14O5
-274.0913342	C9H14N4O6
-274.1205091	C16H18O4
-274.1236763	C16H19ClN2
-274.1277197	C10H18N4O5
-274.1568946	C17H22O3
-274.1780239	C14H26O5
-274.1932801	C18H26O2
-274.2045135	C17H26N2O
-274.2144095	C15H30O4
-274.2296656	C19H30O
-274.2308084	C16H31FO2
-274.8581389	C7H3Br2NO
-274.9615619	C9H10BrNO2S
-274.9919403	C8H10IN3
-275.0285993	C10H13NO4S2
-275.0323749	C6H15NO7P2
-275.0463578	C10H13NO6S
-275.0558737	C10H14NO6P
-275.0582432	C17H9NO3
-275.0641164	C10H13NO8
-275.1005019	C11H17NO7
-275.1018393	C12H13N5O3
-275.115758	C15H17NO4
-275.1521435	C16H21NO3
-275.1633769	C15H21N3O2
-275.1673997	C20H21N
-275.1885291	C17H25NO2
-276.0124113	C13H9ClN2OS
-276.0197343	C7H15Cl2N2O3P
-276.0246331	C6H13O10P
-276.027871	C14H12O2S2
-276.0335407	C10H13ClN2O3S
-276.0721768	C11H11F3N2O3
-276.0845175	C11H16O8
-276.0939004	C22H12
-276.0957509	C10H16N2O7
-276.0997736	C15H16O5
-276.1069843	C9H16N4O6
-276.129451	C7H16N8O4
-276.1321364	C11H20N2O6
-276.1361591	C16H20O4
-276.1371335	C10H26Cl2N2O2
-276.1586259	C14H20N4O2
-276.1725446	C17H24O3
-276.183778	C16H24N2O2
-276.2201635	C17H28N2O
-276.2453156	C19H32O
-277.0173797	C9H12NO5PS
-277.0228728	C4H13N3O7P2
-277.0381932	C9H7N7O2S
-277.0909999	C9H15N3O7
-277.0981899	C14H16ClN3O
-277.1170204	C12H23NO2S2
-277.1174894	C12H15N5O3
-277.1830497	C20H23N
-277.2041791	C17H27NO2
-277.995655	C5H12O9P2
-278.0200222	C10H15O3PS2
-278.0667727	C9H15N2O6P
-278.0837464	C12H14N4O2S
-278.1001676	C11H18O8
-278.1073576	C16H19ClO2
-278.1095504	C22H14
-278.1154237	C15H18O5
-278.1266571	C14H18N2O4
-278.1300279	C11H22N2O4S
-278.1378905	C13H18N4O3
-278.1518092	C16H22O4
-278.1881947	C17H26O3
-278.1994281	C16H26N2O2
-278.201214	C17H27NO2
-278.2245802	C18H30O2
-279.0097512	C6H5Hg
-279.0620217	C8H14N3O6P
-279.065534	C12H10FN3O4
-279.0895433	C17H13NO3
-279.1470582	C15H21NO4
-279.1582916	C14H21N3O3
-279.1623143	C19H21NO
-279.1753776	C17H26ClN
-279.1834437	C16H25NO3
-279.9976335	C11H8N2O3S2
-280.005785	C14H10Cl2O2
-280.0324781	C14H13ClO2S
-280.063011	C11H12N4O3S
-280.0769297	C14H16O4S
-280.1059216	C13H16N2O5
-280.1099444	C18H16O3
-280.1310738	C15H20O5
-280.1463299	C19H20O2
-280.1939488	C19H24N2
-280.2038448	C17H28O3
-280.2402303	C18H32O2
-281.0663632	C14H10F3NO2
-281.0834121	C12H15N3O3S
-281.0899372	C13H15NO6
-281.1051934	C17H15NO3
-281.112404	C11H15N5O4
-281.1263227	C14H19NO5
-281.1375561	C13H19N3O4
-281.1561831	C14H23N3OS
-281.1627082	C15H23NO4
-281.8131163	C6Cl6
-281.9769834	C14H9Cl3
-282.0528234	C16H10O5
-282.0616121	C13H9F3N2O2
-282.0640568	C15H10N2O4
-282.0892089	C17H14O4
-282.0950822	C10H18O9
-282.0964196	C11H14N4O5
-282.1004423	C16H14N2O3
-282.107653	C10H14N6O4
-282.1255944	C18H18O3
-282.1368278	C17H18N2O2
-282.1467238	C15H22O5
-282.16198	C19H22O2
-282.1943427	C15H26N2O3
-282.1983655	C20H26O
-282.2095988	C19H26N2
-282.2558803	C18H34O2
-282.9802985	C12H7Cl2NO3
-283.0010747	C7H11NO7P2
-283.016684	C13H11Cl2NO2
-283.0457029	C8H14NO8P
-283.0804352	C11H13N3O6
-283.0916686	C10H13N5O5
-283.1120903	C16H14FN3O
-283.1208434	C17H17NO3
-283.1339067	C15H22ClNO2
-283.1644396	C12H21N5O3
-283.1783583	C15H25NO4
-283.1936144	C19H25NO
-283.2875148	C18H37NO
-283.9538785	C6H12Cl3O4P
-283.9926335	C14H11Cl3
-284.011933	C12H10Cl2N2O2
-284.032088	C15H8O6
-284.0579256	C10H12N4O4S
-284.0684735	C16H12O5
-284.0716408	C16H13ClN2O
-284.0756841	C10H12N4O6
-284.0925936	C12H17N2O4P
-284.104859	C17H16O4
-284.1120696	C11H16N4O5
-284.1347193	C17H20N2S
-284.1412445	C18H20O3
-284.1524779	C17H20N2O2
-284.17763	C19H24O2
-284.2140155	C20H28O
-284.2351449	C17H32O3
-284.2715304	C18H36O2
-284.9644749	C6H8ClN3O4S2
-284.9959486	C12H9Cl2NO3
-285.0152481	C10H8ClN3O5
-285.062867	C10H12ClN5O3
-285.0848518	C12H15NO7
-285.100108	C16H15NO4
-285.1014454	C17H11N5
-285.1034788	C13H19NO4S
-285.1073186	C10H15N5O5
-285.1364935	C17H19NO3
-285.1477269	C16H19N3O2
-285.1688562	C13H23N3O4
-285.172879	C18H23NO2
-285.1841124	C17H23N3O
-285.2092645	C19H27NO
-286.0081982	C10H10N2O4S2
-286.0468826	C10H11ClN4O4
-286.0477381	C15H10O6
-286.0509053	C15H11ClN2O2
-286.056602	C7H15N2O8P
-286.0621387	C14H11ClN4O
-286.0841236	C16H14O5
-286.1052529	C13H18O7
-286.1205091	C17H18O4
-286.1209184	C16H22OSi2
-286.1317425	C16H18N2O3
-286.1542092	C14H18N6O
-286.1568946	C18H22O3
-286.1600359	C14H26O4Si
-286.1892573	C14H26N2O4
-286.1932801	C19H26O2
-286.2296656	C20H30O
-286.2368762	C14H30N4O2
-286.250795	C17H34O3
-287.0558737	C11H14NO6P
-287.0575912	C10H13N3O5S
-287.0728474	C14H13N3O2S
-287.1005019	C12H17NO7
-287.1058621	C18H13N3O
-287.115758	C16H17NO4
-287.1214207	C11H16O8
-287.1214207	C11H16O8
-287.1269914	C15H17N3O3
-287.1481208	C12H21N3O5
-287.1521435	C17H21NO3
-287.1633769	C16H21N3O2
-287.1673997	C21H21N
-287.1885291	C18H25NO2
-287.2096584	C15H29NO4
-287.2249146	C19H29NO
-287.8600665	C6H6Cl6
-287.9511626	C12H7Cl3O2
-288.0246331	C7H13O10P
-288.0490004	C12H16O4S2
-288.0494694	C12H8N4O5
-288.0633881	C15H12O6
-288.0966193	C12H20N2O2S2
-288.0997736	C16H16O5
-288.1143778	C12H20N2O4S
-288.1222404	C14H16N4O3
-288.1361591	C17H20O4
-288.1371247	C12H25NaO4S
-288.1473925	C16H20N2O3
-288.1725446	C18H24O3
-288.2089301	C19H28O2
-288.2201635	C18H28N2O
-288.2300595	C16H32O4
-288.2453156	C20H32O
-288.2817012	C21H36
-288.9673285	C12H6Cl2NNaO2
-289.0287897	C10H12ClN3O3S
-289.057605	C8H12N5O5P
-289.0586371	C14H11NO6
-289.0797665	C11H15NO8
-289.0950226	C15H15NO5
-289.1022332	C9H15N5O6
-289.1174894	C13H15N5O3
-289.1314081	C16H19NO4
-289.1525375	C13H23NO6
-289.1677936	C17H23NO3
-289.2041791	C18H27NO2
-289.922361	C12H6Cl4
-290.0394983	C10H14N2O4S2
-290.0402832	C7H15O10P
-290.0646504	C12H18O4S2
-290.0790382	C15H14O6
-290.0902716	C14H14N2O5
-290.0942943	C19H14O3
-290.1114009	C11H18N2O7
-290.1154237	C16H18O5
-290.118591	C16H19ClN2O
-290.1226343	C10H18N4O6
-290.1378905	C14H18N4O3
-290.1518092	C17H22O4
-290.1630426	C16H22N2O3
-290.1782987	C20H22N2
-290.1881947	C18H26O3
-290.201214	C18H27NO2
-290.2245802	C19H30O2
-290.2609657	C20H34O
-290.9789924	C6H14INO2S
-291.0119579	C11H10BrN5
-291.0330298	C10H14NO5PS
-291.0742872	C14H13NO6
-291.0789954	C12H13N5O2S
-291.0954165	C11H17NO8
-291.1195247	C19H15BNNa
-291.1259288	C19H17NO2
-291.1326704	C13H25NO2S2
-291.1470582	C16H21NO4
-291.1582916	C15H21N3O3
-291.1735477	C19H21N3
-291.1834437	C17H25NO3
-291.1986998	C21H25N
-291.2198292	C18H29NO2
-291.9614179	C9H10BrClN2O2
-292.0146489	C7H15Cl2N2O4P
-292.0227856	C14H12O3S2
-292.0484068	C16H8N2O4
-292.0670915	C11H11F3N2O4
-292.0906655	C10H16N2O8
-292.0946882	C15H16O6
-292.1211778	C18H16N2O2
-292.1324112	C17H16N4O
-292.1522031	C13H24O7
-292.1575633	C19H20N2O
-292.1674593	C17H24O4
-292.1786926	C16H24N2O3
-292.2038448	C18H28O3
-292.2402303	C19H32O2
-292.8371668	C6Cl5NO2
-293.0899372	C14H15NO6
-293.0931045	C14H16ClN3O2
-293.1051934	C18H15NO3
-293.1110666	C11H19NO8
-293.1415789	C19H19NO2
-293.1528122	C18H19N3O
-293.1640456	C17H19N5
-293.1891978	C19H23N3
-293.1990937	C17H27NO3
-293.8527192	C7H4Br2O3
-293.9905696	C5H12O10P2
-294.021435	C15H12Cl2O2
-294.0375673	C13H10O8
-294.0616874	C9H15N2O7P
-294.0672241	C16H11ClN4
-294.078661	C12H14N4O3S
-294.0811428	C19H15ClO
-294.0892089	C18H14O4
-294.0950822	C11H18O9
-294.1063156	C10H18N2O8
-294.1103383	C15H18O6
-294.112144	C12H14N4O2S
-294.1215717	C14H18N2O5
-294.1579572	C15H22N2O4
-294.1732133	C19H22N2O
-294.1831093	C17H26O4
-294.1943427	C16H26N2O3
-294.2194948	C18H30O3
-294.2558803	C19H34O2
-294.9488248	C7H6ClN3O4S2
-295.016684	C14H11Cl2NO2
-295.0569363	C8H14N3O7P
-295.0626766	C12H13N3O4S
-295.0956913	C16H13N3O3
-295.1055873	C14H17NO6
-295.1087545	C14H18ClN3O2
-295.1208434	C18H17NO3
-295.1280541	C12H17N5O4
-295.1354476	C14H21N3O2S
-295.1783583	C16H25NO4
-296.0509314	C10H20N2S4
-296.0532174	C13H12O8
-296.0684735	C17H12O5
-296.1008363	C13H16N2O6
-296.104859	C18H16O4
-296.123303	C11H16N6O4
-296.1259884	C15H20O6
-296.1347193	C18H20N2S
-296.1412445	C19H20O3
-296.1623739	C16H24O5
-296.17763	C20H24O2
-296.1888634	C19H24N2O
-296.1987594	C17H28O4
-296.2351449	C18H32O3
-296.2715304	C19H36O2
-296.3079159	C20H40O
-296.9991214	C6H14INO2S
-297.045312	C8H15N3O5S2
-297.0605681	C12H15N3O2S2
-297.0895601	C11H15N5O3S
-297.100108	C17H15NO4
-297.1073186	C11H15N5O5
-297.1214624	C11H14N4O5
-297.1364935	C18H19NO3
-297.1477269	C17H19N3O2
-297.172879	C19H23NO2
-297.1940084	C16H27NO4
-297.2667794	C18H35NO2
-297.3031649	C19H39NO
-298.03278	C14H10MgO6
-298.0477381	C16H10O6
-298.0540996	C12H15N2O3PS
-298.066365	C17H14O3S
-298.0688674	C13H14O8
-298.0841236	C17H14O5
-298.0953569	C16H14N2O4
-298.1042209	C8H19N4O6P
-298.1052529	C14H18O7
-298.1151437	C11H16N5O5
-298.1205091	C18H18O4
-298.1503694	C18H22N2S
-298.1568946	C19H22O3
-298.1932801	C20H26O2
-298.2045135	C19H26N2O
-298.250795	C18H34O3
-298.2871805	C19H38O2
-298.9341323	C9H8Cl3NO2S
-299.0072227	C6H11N3O7P2
-299.061614	C16H13NO3S
-299.0770031	C9H18NO8P
-299.0793725	C16H13NO5
-299.0825398	C16H14ClN3O
-299.0939767	C12H17N3O4S
-299.1092329	C16H17N3OS
-299.115758	C17H17NO4
-299.1342021	C10H17N7O4
-299.1400547	C14H22ClN3O2
-299.1521435	C18H21NO3
-299.1732729	C15H25NO5
-299.1885291	C19H25NO2
-299.2824294	C18H37NO2
-300.0270026	C15H8O7
-300.038236	C14H8N2O6
-300.052776	C9H18O7P2
-300.0528402	C10H12N4O5S
-300.0633881	C16H12O6
-300.0665554	C16H13ClN2O2
-300.0796098	C15H17NaO3S
-300.0834854	C7H17N4O7P
-300.0845175	C13H16O8
-300.0997736	C17H16O5
-300.1000957	C9H21AlO9
-300.111007	C16H16N2O4
-300.120903	C14H20O7
-300.1361591	C18H20O4
-300.1725446	C19H24O3
-300.2089301	C20H28O2
-300.2453156	C21H32O
-300.266445	C18H36O3
-301.0467518	C8H15NO9S
-301.0521119	C14H11N3O3S
-301.0562676	C8H16NO9P
-301.0797665	C12H15NO8
-301.1314081	C17H19NO4
-301.1426415	C16H19N3O3
-301.1637709	C13H23N3O5
-301.1677936	C18H23NO3
-301.2405646	C20H31NO
-301.2980795	C18H39NO2
-301.334465	C19H43NO
-301.9618554	C6H11N2O4PS3
-302.0062672	C14H6O8
-302.0112643	C13H12Cl2O4
-302.0426527	C15H10O7
-302.0449556	C11H11N4NaO3S
-302.0538861	C14H10N2O6
-302.0622189	C16H12ClFN2O
-302.0629905	C12H19BrN2O2
-302.0790382	C16H14O6
-302.1114009	C12H18N2O7
-302.1154237	C17H18O5
-302.118591	C17H19ClN2O
-302.1518092	C18H22O4
-302.1729386	C15H26O6
-302.1881947	C19H26O3
-302.2106615	C17H26N4O
-302.2245802	C20H30O2
-302.2609657	C21H34O
-303.0065133	C12H11Cl2NO4
-303.0182661	C2H8N2O3Pt
-303.0355322	C7H14NO10P
-303.0444397	C11H14ClN3O3S
-303.0792843	C14H19Cl2NO2
-303.0954165	C12H17NO8
-303.1019195	C15H14FN3O3
-303.1219061	C15H17N3O4
-303.1371622	C19H17N3O
-303.138305	C16H18FN3O2
-303.138992	C18H22ClNO
-303.1430354	C12H21N3O6
-303.1470582	C17H21NO4
-303.1582916	C16H21N3O3
-303.2562147	C20H33NO
-303.9146035	C6H6Cl2N2O4S2
-303.9578684	C4H3ClHgO
-304.0138511	C15H9ClO5
-304.0583027	C15H12O7
-304.0735589	C19H12O4
-304.0906655	C11H16N2O8
-304.0946882	C16H16O6
-304.1010498	C12H21N2O3PS
-304.1018989	C10H16N4O7
-304.1059216	C15H16N2O5
-304.1211778	C19H16N2O2
-304.1310738	C17H20O5
-304.1382844	C11H20N4O6
-304.1647739	C14H20N6O2
-304.1939488	C21H24N2
-304.2038448	C19H28O3
-304.2150782	C18H28N2O2
-304.2402303	C20H32O2
-304.2766158	C21H36O
-305.0051412	C14H12BrNO2
-305.0412863	C9H12N3O7P
-305.0688078	C18H11NO4
-305.073805	C17H17Cl2N
-305.0791858	C12H12ClN7O
-305.0818711	C16H16ClNO3
-305.0859145	C10H15N3O8
-305.1011706	C14H15N3O5
-305.1276601	C17H15N5O
-305.1561831	C16H23N3OS
-305.1627082	C17H23NO4
-305.1990937	C18H27NO3
-305.9102341	C6H12Br2O4
-305.9172757	C12H6Cl4O
-305.9389017	C9H7IO4
-305.9769834	C16H9Cl3
-305.9851341	C9H11BrN2O5
-306.0087918	C8H18O4S4
-306.0253019	C9H11N2O8P
-306.0255423	C15H15BrO2
-306.0310421	C13H10N2O5S
-306.0375673	C14H10O8
-306.0528234	C18H10O5
-306.0595651	C12H18O5S2
-306.0674276	C14H14N2O4S
-306.0739528	C15H14O7
-306.1103383	C16H18O6
-306.1215717	C15H18N2O5
-306.1440385	C13H18N6O3
-306.1467238	C17H22O5
-306.1691906	C15H22N4O3
-306.1831093	C18H26O4
-306.1961726	C16H31ClO3
-306.2017363	C19H30OS
-306.2055761	C16H26N4O2
-306.2194948	C19H30O3
-306.2558803	C20H34O2
-306.9705362	C9H10INO3
-307.0569363	C9H14N3O7P
-307.0692018	C14H13NO7
-307.083806	C10H17N3O6S
-307.0844579	C18H13NO4
-307.0878287	C15H17NO4S
-307.0911995	C12H21NO4S2
-307.1208434	C19H17NO3
-307.1419728	C16H21NO5
-307.1684623	C19H21N3O
-307.1936144	C21H25NO
-307.2147438	C18H29NO3
-308.0062197	C6H14O10P2
-308.0370851	C16H14Cl2O2
-308.0409519	C9H13N2O8P
-308.0433214	C16H8N2O5
-308.0466922	C13H12N2O5S
-308.0555291	C9H14Cl2N6O2
-308.0828741	C17H13ClN4
-308.0896029	C15H16O7
-308.1008363	C14H16N2O6
-308.104859	C19H16O4
-308.1259884	C16H20O6
-308.1273258	C17H16N4O2
-308.1524779	C19H20N2O2
-308.1623739	C17H24O5
-308.1736073	C16H24N2O4
-308.1888634	C20H24N2O
-308.1987594	C18H28O4
-308.2715304	C20H36O2
-309.0848518	C14H15NO7
-309.100108	C18H15NO4
-309.1059812	C11H19NO9
-309.1389737	C17H16FN5
-309.1576229	C16H23NO5
-309.1641259	C19H20FN3
-309.1940084	C17H27NO4
-309.2092645	C21H27NO
-309.2416273	C17H31N3O2
-309.2667794	C19H35NO2
-309.9854842	C5H12O11P2
-310.0251076	C14H15O2PS2
-310.0320617	C14H9ClF2N2O2
-310.0477381	C17H10O6
-310.0598398	C17H14N2S2
-310.0735756	C12H14N4O4S
-310.0841236	C18H14O5
-310.0872908	C18H15ClN2O
-310.1052529	C15H18O7
-310.1218465	C20H14N4
-310.1416384	C16H22O6
-310.1469986	C22H18N2
-310.1568946	C20H22O3
-310.168128	C19H22N2O2
-310.1780239	C17H26O5
-310.1811912	C17H27ClN2O
-310.1932801	C21H26O2
-310.2045135	C20H26N2O
-310.2144095	C18H30O4
-310.2296656	C22H30O
-310.250795	C19H34O3
-310.2871805	C20H38O2
-311.009154	C12H10Cl2F3NO
-311.1005019	C14H17NO7
-311.115758	C18H17NO4
-311.1269914	C17H17N3O3
-311.1368874	C15H21NO6
-311.1521435	C19H21NO3
-311.1652068	C17H26ClNO2
-311.1885291	C20H25NO2
-311.2249146	C21H29NO
-312.0224434	C9H16N2O5Se
-312.0633881	C17H12O6
-312.0705988	C11H12N4O7
-312.0970883	C14H12N6O3
-312.0997736	C18H16O5
-312.1056469	C11H20O10
-312.120903	C15H20O7
-312.1361591	C19H20O4
-312.1374965	C20H16N4
-312.1408674	C17H20N4S
-312.1725446	C20H24O3
-312.183778	C19H24N2O2
-312.1950114	C18H24N4O
-312.2049074	C16H28N2O4
-312.2089301	C21H28O2
-312.2201635	C20H28N2O
-312.2300595	C18H32O4
-312.3028305	C20H40O2
-313.057605	C10H12N5O5P
-313.067501	C8H16N3O8P
-313.0862695	C16H12FN3O3
-313.0950226	C17H15NO5
-313.0981899	C17H16ClN3O
-313.1215121	C20H15N3O
-313.1314081	C18H19NO4
-313.1677936	C19H23NO3
-313.188923	C16H27NO5
-313.261694	C18H35NO3
-313.9142978	C6H4Na2O8S2
-314.0426527	C16H10O7
-314.0458199	C16H11ClN2O3
-314.0515166	C8H15N2O9P
-314.0589102	C10H19O7PS
-314.0612796	C17H14O4S
-314.0622189	C17H12ClFN2O
-314.0651195	C14H10N4O5
-314.068426	C10H20O7P2
-314.0790382	C17H14O6
-314.0837464	C15H14N4O2S
-314.09114	C17H18N2S2
-314.0921014	C15H19ClO5
-314.1127383	C14H14N6O3
-314.1518092	C19H22O4
-314.1522185	C18H26OSi2
-314.1549765	C19H23ClN2
-314.1630426	C18H22N2O3
-314.1816695	C19H26N2S
-314.1881947	C20H26O3
-314.2245802	C21H30O2
-314.2457096	C18H34O4
-315.0007246	C14H10BrN3O
-315.0273908	C14H9ClF3NO2
-315.0410689	C15H10ClN3O3
-315.084848	C18H18ClNS
-315.0929141	C17H17NO3S
-315.1082674	C15H18NNaO5
-315.1106727	C17H17NO5
-315.1470582	C18H21NO4
-315.1834437	C19H25NO3
-315.204573	C16H29NO5
-315.2198292	C20H29NO2
-315.2409586	C17H33NO4
-315.2674481	C20H33N3
-315.9318655	C10H8N2O2S2Zn
-315.9380111	C14H8Cl4
-315.9824627	C14H11Cl3O2
-316.0138717	C5H8N4O12
-316.0583027	C16H12O7
-316.0881631	C16H16N2O3S
-316.0933287	C18H17FO2S
-316.0946882	C17H16O6
-316.1310738	C18H20O5
-316.1569113	C13H24N4O3S
-316.1674593	C19H24O4
-316.1706265	C19H25ClN2
-316.2038448	C20H28O3
-316.2402303	C21H32O2
-316.2613596	C18H36O4
-316.2977452	C19H40O3
-316.9413262	C12H6Cl3NO3
-316.9986287	C14H10Cl2NNaO2
-317.0057692	C10H12N3O3PS2
-317.0511823	C8H16NO10P
-317.0623404	C12H10F3N3O4
-317.1263227	C17H19NO5
-317.1627082	C18H23NO4
-317.1640456	C19H19N5
-317.1990937	C19H27NO3
-317.2143499	C23H27N
-317.2718648	C21H35NO
-317.2830981	C20H35N3
-317.2929941	C18H39NO3
-317.9283594	C7H9ClO6P2S
-317.9536612	C14H10Cl4
-318.0351978	C8H15O11P
-318.0375673	C15H10O8
-318.0592916	C12H19IN2
-318.0593615	C16H15ClN2OS
-318.0640568	C18H10N2O4
-318.0731612	C16H19BrN2
-318.0739528	C16H14O7
-318.0892089	C20H14O4
-318.095747	C17H19ClN2S
-318.1015852	C16H15FN2O4
-318.1467238	C18H22O5
-318.1555125	C15H21F3N2O2
-318.1579572	C17H22N2O4
-318.1691906	C16H22N4O3
-318.2042387	C16H30O6
-318.2194948	C20H30O3
-318.2558803	C21H34O2
-319.0004664	C14H10ClN3S2
-319.016684	C16H11Cl2NO2
-319.0336847	C15H13NO3S2
-319.090996	C16H18ClN3S
-319.0948358	C13H14ClN7O
-319.0990621	C15H17N3O3S
-319.1015645	C11H17N3O8
-319.1332197	C16H18FN3O3
-319.1419728	C17H21NO5
-319.1684623	C20H21N3O
-319.1815256	C18H26ClN3
-319.2259772	C18H29N3O2
-319.8965402	C12H4Cl4O2
-319.9660586	C10H8O8S2
-320.0305869	C12H17O4PS2
-320.0532174	C15H12O8
-320.0684735	C19H12O5
-320.0896029	C16H16O7
-320.104859	C20H16O4
-320.1160924	C19H16N2O3
-320.1259884	C17H20O6
-320.1284686	C15H17FN4O3
-320.1471177	C14H24O8
-320.1524779	C20H20N2O2
-320.1543078	C19H25ClO2
-320.1987594	C19H28O4
-320.2351449	C20H32O3
-320.2715304	C21H36O2
-320.3060242	C20H24O2T8
-320.9894234	C14H9Cl2N3S
-321.0725864	C10H16N3O7P
-321.0920625	C9H15N5O8
-321.099456	C11H19N3O6S
-321.1068496	C13H23NO4S2
-321.1324707	C15H19N3O5
-321.1364935	C20H19NO3
-321.1648335	C11H23N5O6
-321.2092645	C22H27NO
-321.8845935	C8HCl4F3N2
-321.9121903	C12H6Cl4O2
-322.0123269	C11H12Cl2N2O5
-322.0324819	C14H10O9
-322.056602	C10H15N2O8P
-322.0688674	C15H14O8
-322.0841236	C19H14O5
-322.1198571	C12H22N2O6S
-322.1205091	C20H18O4
-322.1317425	C19H18N2O3
-322.1416384	C17H22O6
-322.1503694	C20H22N2S
-322.168128	C20H22N2O2
-322.1852346	C12H26N4O6
-322.2144095	C19H30O4
-322.9995804	C7H5HgO2
-323.0381151	C14H14NO4PS
-323.051851	C9H14N3O8P
-323.0746772	C16H18ClNO2S
-323.115758	C19H17NO4
-323.1191289	C16H21NO4S
-323.1216313	C12H21NO9
-323.124622	C11H22N3O6P
-323.1303622	C15H21N3O3S
-323.134385	C20H21NOS
-323.1368874	C16H21NO6
-323.1440774	C21H22ClN
-323.1521435	C20H21NO3
-323.1692502	C12H25N3O7
-323.1997624	C20H25N3O
-323.2096584	C18H29NO4
-323.8833887	C12H5Cl5
-324.0246331	C10H13O10P
-324.0272191	C10H16N2O4S3
-324.0358665	C9H13N2O9P
-324.0602338	C14H16N2O3S2
-324.0633881	C18H12O6
-324.0957509	C14H16N2O7
-324.0997736	C19H16O5
-324.1029409	C19H17ClN2O
-324.1056469	C12H20O10
-324.1143778	C15H20N2O4S
-324.1361591	C20H20O4
-324.1473925	C19H20N2O3
-324.1532658	C12H24N2O8
-324.1572885	C17H24O6
-324.1637915	C20H21FN2O
-324.1725446	C21H24O3
-324.183778	C20H24N2O2
-324.9884453	C12H12BrN3OS
-324.995775	C9H12ClN3O4S2
-325.0153283	C14H9ClFNO5
-325.0298616	C11H19NO2S4
-325.0782033	C18H13ClFN3
-325.0797665	C14H15NO8
-325.1008958	C11H19NO10
-325.1314081	C19H19NO4
-325.1525375	C16H23NO6
-325.1677936	C20H23NO3
-325.1711644	C17H27NO3S
-325.179027	C19H23N3O2
-325.2253085	C18H31NO4
-325.2405646	C22H31NO
-326.0315301	C9H12FN2O8P
-326.0394983	C13H14N2O4S2
-326.0515166	C9H15N2O9P
-326.063782	C14H14O9
-326.0707955	C18H15O4P
-326.0750154	C13H14N2O8
-326.0790382	C18H14O6
-326.1001676	C15H18O8
-326.1114009	C14H18N2O7
-326.1212969	C12H22O10
-326.1214669	C15H21N3O3S
-326.1226343	C13H18N4O6
-326.1298243	C18H19ClN4
-326.1397203	C16H23ClN2O3
-326.1477864	C15H22N2O6
-326.1518092	C20H22O4
-326.1630426	C19H22N2O3
-326.1881947	C21H26O3
-326.1994281	C20H26N2O2
-326.2245802	C22H30O2
-326.2820951	C20H38O3
-327.0065133	C14H11Cl2NO4
-327.0541322	C14H15Cl2N3O2
-327.0810288	C11H21NO6S2
-327.0833277	C10H18ClN3O7
-327.0905177	C15H19Cl2N3O
-327.1106727	C18H17NO5
-327.1138399	C18H18ClN3O
-327.1470582	C19H21NO4
-327.1601214	C17H26ClNO3
-327.2198292	C21H29NO2
-327.2899201	C20H39O3
-327.3137296	C20H41NO2
-327.7734025	C6H3Br3O
-328.0307059	C13H7F3N2O5
-328.0583027	C17H12O7
-328.0648408	C14H17ClN2O3S
-328.0794321	C14H16O9
-328.0946882	C18H16O6
-328.0978555	C18H17ClN2O2
-328.1018989	C12H16N4O7
-328.1158176	C15H20O8
-328.1245486	C18H20N2O2S
-328.1310738	C19H20O5
-328.134241	C19H21ClN2O
-328.1522031	C16H24O7
-328.1609341	C19H24N2OS
-328.1674593	C20H24O4
-328.1708301	C17H28O4S
-328.1786926	C19H24N2O3
-328.1827154	C24H24O
-328.2038448	C21H28O3
-328.2402303	C22H32O2
-328.2514637	C21H32N2O
-329.027727	C17H12ClNO2S
-329.0317704	C11H11N3O7S
-329.0333967	C13H13Cl2N3O3
-329.0525197	C10H12N5O6P
-329.073118	C17H13ClFN3O
-329.093308	C14H19NO6S
-329.1164267	C20H15N3O2
-329.1263227	C18H19NO5
-329.1427217	C19H20FNO3
-329.1586855	C14H23N3O6
-329.1627082	C19H23NO4
-329.1838376	C16H27NO6
-329.1990937	C20H27NO3
-329.2143499	C24H27N
-329.2830981	C21H35N3
-329.9520349	C13H8Cl2O4S
-329.9981128	C15H13Cl3O2
-330.0124152	C14H6N2O8
-330.0326684	C17H12Cl2N2O
-330.0360662	C10H19O6PS2
-330.0365352	C10H11N4O7P
-330.0382899	C14H10ClF3N2O2
-330.0739528	C17H14O7
-330.1103383	C18H18O6
-330.1215717	C17H18N2O5
-330.1267373	C19H19FO4
-330.1467238	C19H22O5
-330.1678532	C16H26O7
-330.1831093	C20H26O4
-330.2194948	C21H30O3
-330.2307282	C20H30N2O2
-330.2558803	C22H34O2
-330.2922658	C23H38O
-330.9908317	C8H8F3N3O4S2
-331.0014279	C13H11Cl2NO5
-331.0626766	C15H13N3O4S
-331.0681697	C10H14N5O6P
-331.0797626	C18H18ClNOS
-331.1055873	C17H17NO6
-331.1136663	C12H21N5O2S2
-331.1267167	C14H21NO8
-331.1332197	C17H18FN3O3
-331.1419728	C18H21NO5
-331.1572289	C22H21NO2
-331.1783583	C19H25NO4
-331.1936144	C23H25NO
-331.2147438	C20H29NO3
-332.0280652	C14H8N2O8
-332.0532174	C16H12O8
-332.0684735	C20H12O5
-332.0743467	C13H16O10
-332.0896029	C17H16O7
-332.0959644	C13H21N2O4PS
-332.096141	C14H21ClN2O3S
-332.1073743	C13H21ClN4O2S
-332.133199	C12H20N4O7
-332.1583511	C14H24N2O7
-332.1623739	C19H24O5
-332.1835033	C16H28O7
-332.1987594	C20H28O4
-332.2151584	C21H29FO2
-332.2351449	C21H32O3
-332.2562743	C18H36O5
-333.0453973	C15H18Cl3NO
-333.100108	C20H15NO4
-333.1364935	C21H19NO3
-333.1576229	C18H23NO5
-333.1607901	C18H24ClN3O
-333.1688562	C17H23N3O4
-333.1940084	C19H27NO4
-334.0275831	C16H12Cl2N2O2
-334.0333503	C16H14O4S2
-334.056602	C11H15N2O8P
-334.066498	C9H19O11P
-334.0688674	C16H14O8
-334.0841236	C20H14O5
-334.0906616	C17H19ClN2OS
-334.0985242	C19H15ClN4
-334.0987278	C16H18N2O4S
-334.1052529	C17H18O7
-334.1277197	C15H18N4O5
-334.1429758	C19H18N4O2
-334.168128	C21H22N2O2
-334.1892573	C18H26N2O4
-334.2144095	C20H30O4
-334.240899	C23H30N2
-334.250795	C21H34O3
-335.0406176	C11H14NO9P
-335.0630843	C9H14N5O7P
-335.0787206	C11H17N3O7S
-335.0793725	C19H13NO5
-335.1092906	C13H16F3N3O4
-335.1328647	C12H21N3O8
-335.1593542	C15H21N5O4
-335.1667478	C17H25N3O2S
-335.1732729	C18H25NO5
-335.1764402	C18H26ClN3O
-335.1885291	C22H25NO2
-335.2096584	C19H29NO4
-335.2187628	C17H38BrN
-335.8632839	C9H6Br2O4
-335.9127505	C6H12N2O4Se2
-336.0164547	C12H8N4O6S
-336.0470641	C14H9N4NaO5
-336.0584988	C15H10F6O2
-336.0633881	C19H12O6
-336.0845175	C16H16O8
-336.0997736	C20H16O5
-336.1395299	C18H24O4S
-336.1473925	C20H20N2O3
-336.183778	C21H24N2O2
-336.2049074	C18H28N2O4
-336.2300595	C20H32O4
-336.8949184	C9H9Br2NO3
-337.0190972	C13H11N3O4S2
-337.0384821	C15H13Cl2N3O2
-337.067501	C10H16N3O8P
-337.0943707	C11H19N3O7S
-337.0950226	C19H15NO5
-337.116152	C16H19NO7
-337.1289634	C18H18F3NO2
-337.1314081	C20H19NO4
-337.1372813	C13H23NO9
-337.1426415	C19H19N3O3
-337.1437843	C16H20FN3O4
-337.1677936	C21H23NO3
-337.1750043	C15H23N5O4
-337.179027	C20H23N3O2
-337.188923	C18H27NO5
-337.2041791	C22H27NO2
-338.0128053	C14H11ClN2O4S
-338.0389405	C9H13N3O9P
-338.0449645	C13H12Cl2N6O
-338.0515166	C10H15N2O9P
-338.06275	C9H15N4O8P
-338.0790382	C19H14O6
-338.0822054	C19H15ClN2O2
-338.0990997	C15H15N4NaO4
-338.1001676	C16H18O8
-338.1100414	C16H19FN2O3S
-338.1154237	C20H18O5
-338.1266571	C19H18N2O4
-338.1365531	C17H22O7
-338.1518092	C21H22O4
-338.1630426	C20H22N2O3
-338.1729386	C18H26O6
-338.1881947	C22H26O3
-338.1994281	C21H26N2O2
-338.201214	C22H27NO2
-338.2093241	C19H30O5
-338.2457096	C20H34O4
-338.3184806	C22H42O2
-338.9930016	C6H13NO11S2
-339.0308805	C8H9HgO2
-339.0467656	C9H14N3O9P
-339.0987873	C12H21NO8S
-339.1066499	C14H17N3O7
-339.1106727	C19H17NO5
-339.1252769	C15H21N3O4S
-339.1470582	C20H21NO4
-339.1556115	C16H23N2O6
-339.1794209	C16H25N3O5
-339.1834437	C21H25NO3
-339.2198292	C22H29NO2
-339.2310626	C21H29N3O
-339.8783033	C12H5Cl5O
-339.9960489	C6H14O12P2
-340.0096518	C12H9N2O8P
-340.0269144	C16H14Cl2O4
-340.0794321	C15H16O9
-340.0906655	C14H16N2O8
-340.0946882	C19H16O6
-340.1005615	C12H20O11
-340.1012263	C16H21ClN2O2S
-340.1310738	C20H20O5
-340.136947	C13H24O10
-340.1423071	C19H20N2O4
-340.1609341	C20H24N2OS
-340.1674593	C21H24O4
-340.1786926	C20H24N2O3
-340.189926	C19H24N4O2
-340.2038448	C22H28O3
-340.2263115	C20H28N4O
-340.2402303	C23H32O2
-340.3341307	C22H44O2
-340.9656014	C12H12BrN3S2
-340.9857778	C14H9Cl2NO5
-341.0535517	C17H11NO7
-341.0697822	C15H17Cl2N3O2
-341.102039	C18H19N3S2
-341.1263227	C19H19NO5
-341.1409269	C15H23N3O4S
-341.1627082	C20H23NO4
-341.1990937	C21H27NO3
-341.2354792	C22H31NO2
-341.8850091	C6H10Ge2O7
-342.0456463	C12H14N4O4S2
-342.0705949	C17H15ClN4S
-342.0739528	C18H14O7
-342.0935191	C19H16ClFN2O
-342.0950822	C15H18O9
-342.1103383	C19H18O6
-342.1162115	C12H22O11
-342.1314677	C16H22O8
-342.1467238	C20H22O5
-342.1943427	C20H26N2O3
-342.2194948	C22H30O3
-342.3133952	C21H42O3
-343.0854593	C11H22NO7PS
-343.090996	C18H18ClN3S
-343.1532062	C18H21N3O4
-343.1702922	C21H26ClNO
-343.1783583	C20H25NO4
-343.2259772	C20H29N3O2
-343.2511293	C22H33NO2
-344.0137629	C16H15Cl3O2
-344.0386261	C17H13ClN2O2S
-344.0532174	C17H12O8
-344.0719414	C12H17NaO10
-344.0743467	C14H16O10
-344.0896029	C18H16O7
-344.1042071	C14H20N2O6S
-344.1080263	C22H17ClN2
-344.1259884	C19H20O6
-344.1318616	C12H24O11
-344.1471177	C16H24O8
-344.1736073	C19H24N2O4
-344.1987594	C21H28O4
-344.2099928	C20H28N2O3
-344.2324596	C18H28N6O
-344.2351449	C22H32O3
-344.2715304	C23H36O2
-344.3290453	C21H44O3
-345.0072665	C10H12BrN5O4
-345.0474343	C10H12N5O7P
-345.1147122	C17H19N3O3S
-345.1163655	C15H24NO4PS
-345.1212373	C18H19NO6
-345.1576229	C19H23NO5
-345.1706861	C17H28ClNO4
-345.2667794	C22H35NO2
-345.3031649	C23H39NO
-346.0688674	C17H14O8
-346.0790688	C10H15N6O6P
-346.1052529	C18H18O7
-346.1099612	C16H18N4O3S
-346.1164863	C17H18N2O6
-346.1263823	C15H22O9
-346.1416384	C19H22O6
-346.1780239	C20H26O5
-346.1991533	C17H30O7
-346.2144095	C21H30O4
-346.2157469	C22H26N4
-346.2256428	C20H30N2O3
-346.250795	C22H34O3
-346.2871805	C23H38O2
-347.0630843	C10H14N5O7P
-347.0724493	C18H15ClFNO3
-347.0793725	C20H13NO5
-347.0939767	C16H17N3O4S
-347.1368874	C18H21NO6
-347.1521435	C22H21NO3
-347.1732729	C19H25NO5
-347.2824294	C22H37NO2
-347.9278403	C14H8Cl4O2
-347.9956988	C11H13BrN2O6
-348.0432331	C17H14Cl2N2O2
-348.0457625	C9H17O12P
-348.0470999	C10H13N4O8P
-348.1069843	C15H16N4O6
-348.111007	C20H16N2O4
-348.1240703	C18H21ClN2O3
-348.1473925	C21H20N2O3
-348.1572885	C19H24O6
-348.1685219	C18H24N2O5
-348.193674	C20H28O5
-348.2300595	C21H32O4
-348.266445	C22H36O3
-348.9230893	C13H7Cl4NO2
-348.9262836	C9H11Cl3NO3PS
-349.0562676	C12H16NO9P
-349.0896403	C16H16FN3O3S
-349.0950226	C20H15NO5
-349.1096268	C16H19N3O4S
-349.1150447	C16H14F3N5O
-349.1314081	C21H19NO4
-349.1426415	C20H19N3O3
-349.1525375	C18H23NO6
-349.2075499	C20H31NO2S
-349.2980795	C22H39NO2
-350.0392512	C6H16N4O9P2
-350.0515166	C11H15N2O9P
-350.0790382	C20H14O6
-350.0936424	C16H18N2O5S
-350.1048758	C15H18N4O4S
-350.1187945	C18H22O5S
-350.1630426	C21H22N2O3
-350.1729386	C19H26O6
-350.1881947	C23H26O3
-350.1994281	C22H26N2O2
-350.2093241	C20H30O5
-350.2457096	C21H34O4
-350.2976733	C18H43AlO4
-351.0347473	C14H13N3O4S2
-351.0695918	C17H18ClNO3S
-351.0702644	C14H13N3O8
-351.1165459	C13H21NO10
-351.1237359	C18H22ClNO4
-351.1292996	C21H21NO2S
-351.1394479	C17H19F2N3O3
-351.1470582	C21H21NO4
-351.1542688	C15H21N5O5
-351.1582916	C20H21N3O3
-351.1681875	C18H25NO6
-351.1695249	C19H21N5O2
-351.1834437	C22H25NO3
-351.204573	C19H29NO5
-351.9146888	C14H9Cl5
-352.0269144	C17H14Cl2O4
-352.0559333	C12H17O10P
-352.0583027	C19H12O7
-352.064176	C12H16O12
-352.071366	C17H17ClO6
-352.0794321	C16H16O9
-352.0946882	C20H16O6
-352.1310738	C21H20O5
-352.1344446	C18H24O5S
-352.145678	C17H24N2O4S
-352.1786926	C21H24N2O3
-352.2150782	C22H28N2O2
-352.2249741	C20H32O5
-352.2613596	C21H36O4
-352.9614941	C14H9Cl2N3S2
-353.0221633	C16H13Cl2NO4
-353.073649	C9H16N5O8P
-353.0809674	C16H14F3N3OS
-353.0899372	C19H15NO6
-353.1223	C15H19N3O7
-353.1263227	C20H19NO5
-353.1627082	C21H23NO4
-353.1838376	C18H27NO6
-353.1910276	C23H28ClN
-353.1990937	C22H27NO3
-353.2103271	C21H27N3O2
-353.2354792	C23H31NO2
-353.884261	C12H6Cl4O2S
-353.9003381	C12H8Br2N2O
-353.957853	C10H16Br2N2O2
-354.0537978	C16H16Cl2N2O3
-354.0561943	C19H14O5S
-354.0576646	C9H15N4O9P
-354.0586967	C15H14O10
-354.0724248	C17H20Cl2N2S
-354.088557	C15H18N2O6S
-354.0950822	C16H18O9
-354.1015852	C19H15FN2O4
-354.1103383	C20H18O6
-354.1467238	C21H22O5
-354.1579572	C20H22N2O4
-354.161328	C17H26N2O4S
-354.1831093	C22H26O4
-354.1943427	C21H26N2O3
-354.2307282	C22H30N2O2
-354.2370367	C21H32F2O2
-354.2406242	C20H34O5
-354.2770097	C21H38O4
-354.3497807	C23H46O2
-355.0014279	C15H11Cl2NO5
-355.0047987	C12H15Cl2NO5S
-355.0082854	C7H11N5O8P2
-355.0296619	C13H13N3O5S2
-355.1320768	C22H17N3O2
-355.1419728	C20H21NO5
-355.1451401	C20H22ClN3O
-355.1783583	C21H25NO4
-355.2147438	C22H29NO3
-355.3423444	C18H41N7
-356.0582145	C17H18Cl2O4
-356.0733147	C9H17N4O9P
-356.0882433	C20H17FO3S
-356.0896029	C19H16O7
-356.0983916	C16H15F3N2O4
-356.1107322	C16H20O9
-356.1194632	C19H20N2O3S
-356.1259884	C20H20O6
-356.1623739	C21H24O5
-356.1736073	C20H24N2O4
-356.2099928	C21H28N2O3
-356.2327002	C21H31F3O
-356.2351449	C23H32O3
-356.2562743	C20H36O5
-356.3191493	C24H40N2
-356.3290453	C22H44O3
-357.0298523	C12H12ClN5O4S
-357.0646486	C16H14F3NO3S
-357.0767857	C19H16ClNO4
-357.099456	C14H19N3O6S
-357.1423667	C16H23NO8
-357.1787522	C17H27NO7
-357.1940084	C21H27NO4
-357.201219	C15H27N5O5
-357.2052417	C20H27N3O3
-357.2303939	C22H31NO3
-357.2627566	C18H35N3O4
-357.2798426	C21H40ClNO
-357.8444164	C12H4Cl6
-357.9684331	C7H5ClHgO2
-358.0178207	C13H15IN2O2
-358.0542761	C18H15ClN2O2S
-358.0720347	C18H15ClN2O4
-358.0801008	C17H14N2O7
-358.0834716	C14H18N2O7S
-358.0929875	C14H19N2O7P
-358.0963583	C11H23N2O7PS
-358.1263823	C16H22O9
-358.1277197	C17H18N4O5
-358.1389531	C16H18N6O4
-358.1416384	C20H22O6
-358.1562426	C16H26N2O5S
-358.1780239	C21H26O5
-358.1892573	C20H26N2O4
-358.2144095	C22H30O4
-358.3083098	C21H42O4
-358.9568027	C9H11Cl2N3O4S2
-358.976356	C14H8Cl2FNO5
-359.0336191	C16H10ClF4NO2
-359.0852458	C14H17NO10
-359.1070049	C21H14FN3O2
-359.1151061	C14H21N3O6S
-359.115758	C22H17NO4
-359.1288213	C20H22ClNO3
-359.1303622	C18H21N3O3S
-359.1492637	C15H22FN3O6
-359.1645198	C19H22FN3O3
-359.2321252	C19H29N5O2
-359.2460439	C22H33NO3
-360.0676982	C18H14ClFN2O3
-360.0845175	C18H16O8
-360.1056469	C15H20O10
-360.1128369	C20H21ClO4
-360.1168803	C14H20N2O9
-360.120903	C19H20O7
-360.1312809	C13H21ClN6O4
-360.1321364	C18H20N2O6
-360.1348573	C18H20F4O3
-360.1420324	C16H24O9
-360.1485354	C19H21FN2O4
-360.1507633	C19H24N2O3S
-360.1572885	C20H24O6
-360.193674	C21H28O5
-360.2049074	C20H28N2O4
-360.2313969	C23H28N4
-360.266445	C23H36O3
-361.0328702	C15H11ClF3NO4
-361.0344505	C13H12N3NaO6S
-361.0717003	C18H16ClNO5
-361.1080858	C19H20ClNO4
-361.1314081	C22H19NO4
-361.1437843	C18H20FN3O4
-361.1525375	C19H23NO6
-361.1616419	C17H32BrNO2
-361.1808569	C21H28ClNO2
-361.188923	C20H27NO5
-361.8757165	C12H8Cl6
-362.0144585	C14H16ClO5PS
-362.0489967	C15H8F6N2O2
-362.0588832	C18H16Cl2N2O2
-362.0667727	C16H15N2O6P
-362.0936424	C17H18N2O5S
-362.1212969	C15H22O10
-362.1214669	C18H21N3O3S
-362.1365531	C19H22O7
-362.1664134	C19H26N2O3S
-362.1702532	C16H22N6O4
-362.1729386	C20H26O6
-362.2093241	C21H30O5
-362.2205575	C20H30N2O4
-363.057999	C10H14N5O8P
-363.0888914	C16H17N3O5S
-363.1052904	C17H18FN3O3S
-363.1106727	C21H17NO5
-363.1464062	C14H25N3O6S
-363.1834437	C23H25NO3
-363.2409586	C21H33NO4
-363.250063	C19H42BrN
-363.2562147	C25H33NO
-363.2807149	C19H41NO3S
-363.3137296	C23H41NO2
-363.9440506	C8H16N2O4Se2
-364.0228916	C13H14Cl2N2O6
-364.024256	C10H13N4O7PS
-364.0420145	C10H13N4O9P
-364.0841403	C15H16N4O5S
-364.0946882	C21H16O6
-364.1092925	C17H20N2O5S
-364.1481804	C14H24N2O9
-364.1522031	C19H24O7
-364.1674593	C23H24O4
-364.1786926	C22H24N2O3
-364.1885886	C20H28O6
-364.2249741	C21H32O5
-364.2402303	C25H32O2
-364.2613596	C22H36O4
-365.0536625	C10H13FN5O7P
-365.0664384	C16H16NO7P
-365.0899372	C20H15NO6
-365.1045414	C16H19N3O5S
-365.1074791	C18H17F2NO5
-365.1561831	C21H23N3OS
-365.1699189	C16H23N5O5
-365.1838376	C19H27NO6
-366.0576646	C10H15N4O9P
-366.0715833	C13H19O10P
-366.0739528	C20H14O7
-366.1022722	C22H19ClO3
-366.1373409	C11H26O13
-366.1579572	C21H22N2O4
-366.1678532	C19H26O7
-366.1943427	C22H26N2O3
-366.2042387	C20H30O6
-366.2406242	C21H34O5
-366.2671137	C24H34N2O
-366.3497807	C24H46O2
-366.9868636	C12H15ClNO4PS2
-367.0393544	C15H14ClN3O4S
-367.0934984	C16H18ClN3O5
-367.0975212	C21H18ClNO3
-367.1055873	C20H17NO6
-367.1199879	C19H18ClN5O
-367.1395281	C19H20F3NO3
-367.1631022	C18H25NO7
-367.2147438	C23H29NO3
-367.2423762	C23H30FN3
-367.9096035	C14H9Cl5O
-368.0256958	C10H13N2O11P
-368.0461168	C7H11BiO4
-368.0864485	C16H20N2O4S2
-368.0896029	C20H16O7
-368.1042071	C16H20N2O6S
-368.1107322	C17H20O9
-368.1219656	C16H20N2O8
-368.1259884	C21H20O6
-368.1422189	C19H26Cl2N2O
-368.1657447	C19H28O5S
-368.1736073	C21H24N2O4
-368.2198888	C20H32O6
-368.2252489	C26H28N2
-368.2311221	C19H32N2O5
-368.2562743	C21H36O5
-368.3654308	C24H48O2
-369.0412892	C9H15N5O7S2
-369.0913899	C16H20ClN3O3S
-369.1212373	C20H19NO6
-369.1300261	C17H18F3N3O3
-369.1576229	C21H23NO5
-369.1688562	C20H23N3O4
-369.1800896	C19H23N5O3
-369.1940084	C22H27NO4
-369.2164751	C20H27N5O2
-369.3521264	C27H45
-369.8210941	C10H5Cl7
-370.0066136	C7H16O13P2
-370.0073427	C12H11ClN6O2S2
-370.0150478	C15H12Cl2F4O2
-370.0720347	C19H15ClN2O4
-370.0747407	C12H18O13
-370.0850891	C18H19NaO5S
-370.0899968	C16H18O10
-370.1052529	C20H18O7
-370.1416384	C21H22O6
-370.1780239	C22H26O5
-370.1892573	C21H26N2O4
-370.2256428	C22H30N2O3
-370.2355388	C20H34O6
-370.250795	C24H34O3
-370.2732617	C22H34N4O
-370.3083098	C22H42O4
-370.3599515	C27H46
-370.9801249	C13H10ClN3O4S2
-371.0471287	C15H16Cl3N5
-371.0915714	C16H18N3NaO4S
-371.0924358	C20H18ClNO4
-371.1005019	C19H17NO7
-371.1512881	C19H22ClN5O
-371.1732729	C21H25NO5
-371.2208918	C21H29N3O3
-371.2249146	C26H29NO
-372.0334708	C14H17IN2O2
-372.048132	C18H12O9
-372.0692614	C15H16O11
-372.0876848	C19H17ClN2O4
-372.0997736	C23H16O5
-372.120903	C20H20O7
-372.1420324	C17H24O9
-372.1572885	C21H24O6
-372.1815851	C18H29ClN2O4
-372.1831261	C16H28N4O4S
-372.193674	C22H28O5
-372.2008847	C16H28N4O6
-372.2511889	C20H36O6
-372.3504494	C25H44N2
-373.0943707	C14H19N3O7S
-373.1008958	C15H19NO10
-373.1379462	C20H24ClN3S
-373.1525375	C20H23NO6
-373.188923	C21H27NO5
-373.2439354	C23H35NOS
-373.261694	C23H35NO3
-373.839331	C12H4Cl6O
-373.9569	C5H13O13P3
-374.0572569	C17H14N2O6S
-374.0790382	C22H14O6
-374.1001676	C19H18O8
-374.1114009	C18H18N2O7
-374.1212969	C16H22O10
-374.1266571	C22H18N2O4
-374.1365531	C20H22O7
-374.1576824	C17H26O9
-374.1729386	C21H26O6
-374.1761058	C21H27ClN2O2
-374.2820951	C24H38O3
-374.9468055	C14H8Cl3NO5
-375.0308099	C15H16Cl3N3O2
-375.0485202	C16H13ClF3NO4
-375.1326704	C20H25NO2S2
-375.1401349	C21H23ClFNO2
-375.1594344	C19H22FN3O4
-375.1834437	C24H25NO3
-375.2409586	C22H33NO4
-375.3137296	C24H41NO2
-376.0222685	C17H14BrFN2O2
-376.0946882	C22H16O6
-376.0989984	C19H18ClFN2O3
-376.136947	C16H24O10
-376.1376118	C20H25ClN2OS
-376.1382844	C17H20N4O6
-376.1522031	C20H24O7
-376.1575633	C26H20N2O
-376.1885886	C21H28O6
-376.199822	C20H28N2O5
-376.2038448	C25H28O3
-376.2049876	C22H29FO4
-376.2977452	C24H40O3
-377.0450372	C10H19NO10S2
-377.1263227	C22H19NO5
-377.1335334	C16H19N5O6
-377.1990937	C24H27NO3
-377.2566086	C22H35NO4
-377.8706311	C12H8Cl6O
-378.0506305	C18H15ClO7
-378.088557	C17H18N2O6S
-378.1103383	C22H18O6
-378.1166823	C17H16F6N2O
-378.1314677	C19H22O8
-378.1467238	C23H22O5
-378.1539345	C17H22N4O6
-378.1678532	C20H26O7
-378.1831093	C24H26O4
-378.1842522	C21H27FO5
-378.2042387	C21H30O6
-378.2406242	C22H34O5
-378.2770097	C23H38O4
-378.9021803	C8H8Cl3N3O4S2
-379.0419207	C17H18BrNO4
-379.0427252	C13H18ClN3O4S2
-379.0660474	C16H17N3O4S2
-379.1049354	C13H21N3O8S
-379.1055873	C21H17NO6
-379.1114605	C14H21NO11
-379.1419728	C22H21NO5
-379.1696052	C22H22FN3O2
-379.1783583	C23H25NO4
-379.2259772	C23H29N3O2
-379.2487598	C18H38NO5P
-379.9176696	C14H8Cl4O4
-380.0249962	C18H15Cl3N2O
-380.0369292	C10H13N4O10P
-380.0532174	C20H12O8
-380.0896029	C21H16O7
-380.0927701	C21H17ClN2O3
-380.1001843	C12H20N4O8S
-380.1042071	C17H20N2O6S
-380.1179223	C23H21ClO3
-380.1293592	C19H24O6S
-380.1736073	C22H24N2O4
-380.1835033	C20H28O7
-380.1987594	C24H28O4
-380.1999022	C21H29FO5
-381.0035663	C8H15NO12S2
-381.022598	C8H17NO12P2
-381.0473941	C12H14ClF2N5O3S
-381.0743039	C14H15N5O6S
-381.075882	C17H14F3N3O2S
-381.0848518	C20H15NO7
-381.1123069	C18H20N3NaO3S
-381.1271106	C14H23NO11
-381.1607901	C22H24ClN3O
-381.1648335	C16H23N5O6
-381.1787522	C19H27NO7
-381.2151377	C20H31NO6
-381.2644099	C18H40NO5P
-381.2991421	C21H39N3O3
-381.9994672	C15H10O10S
-382.0423908	C13H19ClN2O5S2
-382.0688674	C20H14O8
-382.0850979	C18H20Cl2N2O3
-382.0859741	C12H18N2O12
-382.1052529	C21H18O7
-382.1310263	C15H28O7P2
-382.1450093	C19H26O6S
-382.1892573	C22H26N2O4
-382.2144095	C24H30O4
-382.250795	C25H34O3
-382.323566	C27H42O
-382.3671621	C22H46N4O
-382.4174664	C26H54O
-383.0051312	C13H10Cl2F3N3O3
-383.0358099	C13H13N5O5S2
-383.0643329	C12H21N3O5S3
-383.0751331	C16H15F2N3O4S
-383.1005019	C20H17NO7
-383.1077125	C14H17N5O8
-383.1096063	C18H26BrNO3
-383.1135652	C18H22ClNO6
-383.1344427	C19H20F3NO4
-383.1368874	C21H21NO6
-383.1427607	C14H25NO11
-383.1593542	C19H21N5O4
-383.1667478	C21H25N3O2S
-383.1804836	C16H25N5O6
-383.2784067	C20H37N3O4
-383.3188149	C26H41NO
-383.9045181	C14H9Cl5O2
-383.9360549	C15H14Br2O2
-384.0449776	C15H16N2O6S2
-384.0555611	C17H12F4N2O2S
-384.0586229	C17H21IO2
-384.0845175	C20H16O8
-384.0859221	C24H21As
-384.1056469	C17H20O10
-384.120903	C21H20O7
-384.1215885	C14H20N6O5S
-384.1267762	C14H24O12
-384.1380096	C13H24N2O11
-384.1572885	C22H24O6
-384.1606593	C19H28O6S
-384.1685219	C21H24N2O5
-384.2049074	C22H28N2O4
-384.2300595	C24H32O4
-384.2446637	C20H36N2O3S
-384.339216	C27H44O
-384.3504494	C26H44N2
-385.1056041	C14H19N5O6S
-385.1204621	C17H21ClFN3O4
-385.1273854	C19H19N3O6
-385.1525375	C21H23NO6
-385.2477753	C21H31N5O2
-385.2576713	C19H35N3O5
-385.261694	C24H35NO3
-385.8160088	C10H5Cl7O
-385.9201681	C14H11Cl5O2
-385.9814169	C16H13Cl3N2OS
-385.9818727	C11H10Cl2F2N4O3S
-385.9884248	C18H15ClSn
-386.0267596	C17H11ClF4N2S
-386.0703958	C13H13F2N6O4P
-386.0849114	C16H18O11
-386.1001676	C20H18O8
-386.1212969	C17H22O10
-386.1365531	C21H22O7
-386.1486548	C21H26N2OS2
-386.1729386	C22H26O6
-386.2027989	C22H30N2O2S
-386.2093241	C23H30O5
-386.2304534	C20H34O7
-386.2457096	C24H34O4
-386.266839	C21H38O6
-386.329714	C25H42N2O
-386.3548661	C27H46O
-387.011425	C14H14ClN3O4S2
-387.0232667	C9H15N3O10P2
-387.0307246	C12H13N5O6S2
-387.1161256	C17H20ClF2N3O3
-387.1542688	C18H21N5O5
-387.1713548	C21H26ClN3O2
-387.1906543	C19H25N5O4
-387.2198292	C26H29NO2
-387.2270398	C20H29N5O3
-387.2773441	C24H37NO3
-387.3501151	C26H45NO
-388.0072823	C9H14N2O11P2
-388.0906655	C18H16N2O8
-388.1050662	C17H17ClN6O3
-388.127051	C19H20N2O7
-388.136947	C17H24O10
-388.1382844	C18H20N4O6
-388.1522031	C21H24O7
-388.1553704	C21H25ClN2O3
-388.1634365	C20H24N2O6
-388.1733325	C18H28O9
-388.1788124	C18H36OSn
-388.1885886	C22H28O6
-388.199822	C21H28N2O5
-388.2613596	C24H36O4
-388.3705162	C27H48O
-389.0270751	C14H16ClN3O4S2
-389.0723116	C11H20NO12P
-389.073649	C12H16N5O8P
-389.1045414	C18H19N3O5S
-389.1263227	C23H19NO5
-389.1375561	C22H19N3O4
-389.1409269	C19H23N3O4S
-389.1474521	C20H23NO7
-389.1750845	C20H24FN3O4
-389.9518147	C5H13O14P3
-390.0789499	C21H20Cl2O3
-390.1063156	C18H18N2O8
-390.1162115	C16H22O11
-390.1314677	C20H22O8
-390.1525971	C17H26O10
-390.1678532	C21H26O7
-390.1710205	C21H27ClN2O3
-390.1831093	C25H26O4
-390.1862766	C25H27ClN2
-390.2042387	C22H30O6
-390.2217805	C20H32F2O5
-390.2406242	C23H34O5
-390.2770097	C24H38O4
-391.1267167	C19H21NO8
-391.147846	C16H25NO10
-391.1684623	C26H21N3O
-391.1777064	C16H29N3O6S
-391.1783583	C24H25NO4
-391.2358732	C22H33NO5
-391.9498073	C15H10BrClN4S
-391.9992712	C6H11AuO5S
-392.0348069	C13H16N2O8S2
-392.1372218	C22H20N2O5
-392.1471177	C20H24O8
-392.165997	C19H22F2N4O3
-392.1835033	C21H28O7
-392.1987594	C25H28O4
-392.1999022	C22H29FO5
-392.2099928	C24H28N2O3
-392.2198888	C22H32O6
-392.2926598	C24H40O4
-393.0840603	C21H20BrN3
-393.1147122	C21H19N3O3S
-393.1212373	C22H19NO6
-393.1311112	C22H20FN3OS
-393.1787522	C20H27NO7
-393.1940084	C24H27NO4
-393.2780128	C25H35N3O
-393.721229	CHI3
-394.0688674	C21H14O8
-394.0777314	C13H19N2O10P
-394.1052529	C22H18O7
-394.1263823	C19H22O9
-394.1416384	C23H22O6
-394.1627678	C20H26O8
-394.1892573	C23H26N2O4
-394.2144095	C25H30O4
-394.250795	C26H34O3
-394.2719243	C23H38O5
-394.323566	C28H42O
-395.0123111	C10H14N5O6PS2
-395.0358099	C14H13N5O5S2
-395.089954	C15H17N5O6S
-395.1368874	C22H21NO6
-395.1633769	C25H21N3O2
-395.1645198	C22H22FN3O3
-395.1845063	C22H25N3O4
-395.2009053	C23H26FN3O2
-395.2096584	C24H29NO4
-396.0021523	C18H15Cl3N2S
-396.0145507	C12H19Cl3O8
-396.0449776	C16H16N2O6S2
-396.0845175	C21H16O8
-396.1572885	C23H24O6
-396.2049074	C23H28N2O4
-396.2300595	C25H32O4
-396.2875744	C23H40O5
-396.3028305	C27H40O2
-396.339216	C28H44O
-396.8460498	C9H5I2NO
-396.9903544	C10H16KNO9S2
-397.0797665	C20H15NO8
-397.1590405	C25H20FN3O
-397.1624113	C22H24FN3OS
-397.1980274	C21H36BrNO
-397.2100524	C20H31NO7
-397.3121403	C26H29NO
-397.334465	C27H43NO
-397.9964719	C12H15AsN6OS2
-398.0684903	C18H14N4O5S
-398.1001676	C21H18O8
-398.1114009	C20H18N2O7
-398.1132308	C19H23ClO7
-398.1365531	C22H22O7
-398.1372385	C15H22N6O5S
-398.1702532	C19H22N6O4
-398.2205575	C23H30N2O4
-398.2433401	C18H39O7P
-398.2893057	C20H38N4O4
-398.3548661	C28H46O
-398.9967509	C15H14INO4
-399.0232656	C12H14AlMgNO11
-399.131802	C21H21NO7
-399.1365103	C19H21N5O3S
-399.1394479	C21H19F2N3O3
-399.1681875	C22H25NO6
-399.1802893	C22H29N3S2
-399.2077403	C23H30ClN3O
-399.2257024	C20H33NO7
-399.2409586	C24H33NO4
-399.2773441	C25H37NO3
-399.3348589	C23H45NO4
-400.0359461	C7H11BiO6
-400.0535638	C9H22O13P2
-400.0794321	C20H16O9
-400.106923	C13H25N2O8PS
-400.1158176	C21H20O8
-400.1522031	C22H24O7
-400.1885886	C23H28O6
-400.199822	C22H28N2O5
-400.2249741	C24H32O5
-400.2613596	C25H36O4
-400.2977452	C26H40O3
-400.3188745	C23H44O5
-400.3341307	C27H44O2
-400.35526	C24H48O4
-400.3705162	C28H48O
-400.3817496	C27H48N2
-401.0389168	C10H17N3O10P2
-401.0560671	C14H16ClN5O5S
-401.0690821	C13H18F3N3O4S2
-401.1045414	C19H19N3O5S
-401.1750845	C21H24FN3O4
-401.1773124	C21H27N3O3S
-401.2348273	C19H35N3O4S
-401.2929941	C25H39NO3
-402.0229324	C10H16N2O11P2
-402.0861875	C12H23N2O9PS
-402.0950822	C20H18O9
-402.1215717	C23H18N2O5
-402.1314677	C21H22O8
-402.2042387	C23H30O6
-402.2406242	C24H34O5
-402.2617536	C21H38O7
-402.3497807	C27H46O2
-402.3861662	C28H50O
-403.0181814	C9H15N3O11P2
-403.0227387	C15H15ClFN3O3S2
-403.0296619	C17H13N3O5S2
-403.082265	C20H18ClNO6
-403.0892991	C13H18N5O8P
-403.1413209	C16H25N3O7S
-403.1485109	C21H26ClN3OS
-403.1743356	C20H25N3O6
-403.1914215	C23H30ClNO3
-403.2259772	C25H29N3O2
-403.816881	C9H6Cl6O3S
-403.8498957	C13H6Cl6O2
-404.0021969	C9H14N2O12P2
-404.01132	C14H13AlCaN2O8
-404.0624614	C12H20O13S
-404.1117066	C14H26Cl2N2O7
-404.1194632	C23H20N2O3S
-404.1318616	C17H24O11
-404.1372218	C23H20N2O5
-404.1471177	C21H24O8
-404.1583511	C20H24N2O7
-404.1623739	C25H24O5
-404.1754371	C23H29ClO4
-404.1835033	C22H28O7
-404.2198888	C23H32O6
-404.2311221	C22H32N2O5
-404.2562743	C24H36O5
-404.2749012	C25H40O2S
-404.3654308	C27H48O2
-405.0177546	C13H12N5NaO5S2
-405.099456	C18H19N3O6S
-405.1576229	C24H23NO5
-405.1760669	C17H23N7O5
-405.1787522	C21H27NO7
-405.1859422	C26H28ClNO
-405.1899856	C20H27N3O6
-405.2151377	C22H31NO6
-405.2277085	C22H27N7O
-405.24565	C30H31N
-405.2879087	C24H39NO4
-405.7977719	C10H6Cl8
-406.0899968	C19H18O10
-406.1052529	C23H18O7
-406.1140416	C20H17F3N2O4
-406.1196536	C22H19ClN4O2
-406.1263823	C20H22O9
-406.1475117	C17H26O11
-406.1562426	C20H26N2O5S
-406.1740012	C20H26N2O7
-406.1780239	C25H26O5
-406.1892573	C24H26N2O4
-406.1991533	C22H30O7
-406.2004907	C23H26N4O3
-406.2137575	C18H34N2O6S
-406.250795	C27H34O3
-406.2719243	C24H38O5
-407.09985	C14H21N3O9S
-407.1643031	C21H24F3N3S
-407.2096584	C25H29NO4
-407.2420212	C21H33N3O5
-407.2671733	C23H37NO5
-407.3035588	C24H41NO4
-407.8003587	C12H3Cl7O
-408.0845175	C22H16O8
-408.1056469	C19H20O10
-408.1177486	C19H24N2O4S2
-408.1242738	C20H24O7S
-408.1420324	C20H24O9
-408.1451996	C20H25ClN2O5
-408.157974	C17H24N6O4S
-408.1586259	C25H20N4O2
-408.1685219	C23H24N2O5
-408.1703518	C22H29ClO5
-408.1718927	C20H28N2O5S
-408.1784179	C21H28O8
-408.193674	C25H28O5
-408.2148034	C22H32O7
-408.2276901	C19H37O7P
-408.2511889	C23H36O6
-408.2525263	C24H32N4O2
-408.2875744	C24H40O5
-408.4695019	C29H60
-409.0998638	C12H20N5O9P
-409.1004756	C19H18ClF2N3O3
-409.1489499	C24H21F2NO3
-409.1584107	C16H27NO11
-409.2980795	C27H39NO2
-409.9446118	C17H12BrFO2S2
-410.0178024	C19H17Cl3N2S
-410.0354756	C15H14N4O6S2
-410.0896196	C16H18N4O7S
-410.1001676	C22H18O8
-410.100853	C15H18N6O6S
-410.1365531	C23H22O7
-410.1576824	C20H26O9
-410.1729386	C24H26O6
-410.1818025	C16H31N2O8P
-410.1875428	C20H30N2O5S
-410.1904804	C22H28F2O5
-410.2093241	C25H30O5
-410.2205575	C24H30N2O4
-410.2304534	C22H34O7
-410.2433401	C19H39O7P
-410.266839	C23H38O6
-410.2820951	C27H38O3
-410.3184806	C28H42O2
-410.3548661	C29H46O
-410.3912516	C30H50
-410.4487665	C28H58O
-411.0079843	C15H14IN3O3
-411.0345001	C10H15N5O9P2
-411.0364314	C15H14Cl2F3N3O3
-411.1416759	C22H22FN3O2S
-411.1845865	C24H26FNO4
-411.1980479	C23H29N3O2S
-411.2257024	C21H33NO7
-411.2409586	C25H33NO4
-411.3137296	C27H41NO2
-412.0185157	C10H14N4O10P2
-412.1124597	C21H21ClN4OS
-412.1158176	C22H20O8
-412.1288809	C20H25ClO7
-412.169745	C21H26F2O6
-412.189926	C25H24N4O2
-412.2038448	C28H28O3
-412.2461035	C22H36O7
-412.2977452	C27H40O3
-412.3341307	C28H44O2
-412.3705162	C29H48O
-413.1474521	C22H23NO7
-413.2036243	C18H29N4O7
-413.3293796	C27H43NO2
-414.0400826	C15H15ClN4O6S
-414.0555423	C16H18N2O7S2
-414.0733009	C16H18N2O9S
-414.0950822	C21H18O9
-414.1162115	C18H22O11
-414.1249425	C21H22N2O5S
-414.1314677	C22H22O8
-414.1378117	C17H20F6N2O3
-414.1386783	C16H22N4O9
-414.161328	C22H26N2O4S
-414.1678532	C23H26O7
-414.2042387	C24H30O6
-414.2154721	C23H30N2O5
-414.2188429	C20H34N2O5S
-414.2267055	C22H30N4O4
-414.2746044	C24H39NaO4
-414.2770097	C26H38O4
-414.3133952	C27H42O3
-414.3497807	C28H46O2
-414.3861662	C29H50O
-415.0660474	C19H17N3O4S2
-415.0741989	C22H19Cl2NO3
-415.082265	C21H18ClNO6
-415.1049354	C16H21N3O8S
-415.1256846	C15H22N5O7P
-415.1994877	C23H29NO6
-415.2722587	C25H37NO4
-415.3086442	C26H41NO3
-415.3450297	C27H45NO2
-415.8943473	C14H9Cl5O4
-415.9174388	C9H18FeN3S6
-416.0808244	C18H21KN2O5S
-416.0954761	C17H20O12
-416.1001843	C15H20N4O8S
-416.109625	C20H15F3N4O3
-416.1107322	C21H20O9
-416.1206061	C21H21FN2O4S
-416.1471177	C22H24O8
-416.1623739	C26H24O5
-416.1754371	C24H29ClO4
-416.1835033	C23H28O7
-416.2021302	C24H32O4S
-416.2198888	C24H32O6
-416.2535889	C21H32N6O3
-416.3290453	C27H44O3
-416.3654308	C28H48O2
-416.3766642	C27H48N2O
-417.0338314	C10H17N3O11P2
-417.1212373	C24H19NO6
-417.1899856	C21H27N3O6
-417.3242943	C26H43NO3
-418.0269223	C16H15N2NaO6S2
-418.0570548	C17H14ClF7O2
-418.0648447	C18H14N2O10
-418.0889647	C14H19N4O9P
-418.1263823	C21H22O9
-418.1627678	C22H26O8
-418.1740012	C21H26N2O7
-418.2355388	C24H34O6
-418.2368762	C25H30N4O2
-418.3083098	C26H42O4
-418.323566	C30H42O
-418.3446953	C27H46O3
-418.3810808	C28H50O2
-419.0551466	C19H12F3N3O3S
-419.0875093	C15H16F3N5O4S
-419.0896198	C21H23BrFNO2
-419.1288213	C25H22ClNO3
-419.1692502	C20H25N3O7
-419.2090065	C18H33N3O6S
-419.3035588	C25H41NO4
-419.9623793	C6H15O15P3
-420.0804947	C18H16N2O10
-420.0967164	C17H21N2NaO7S
-420.1267762	C17H24O12
-420.1420324	C21H24O9
-420.1532658	C20H24N2O8
-420.1572885	C25H24O6
-420.1631617	C18H28O11
-420.1784179	C22H28O8
-420.266445	C28H36O3
-420.3028305	C29H40O2
-420.3603454	C27H48O3
-421.0377819	C15H14F3N3O4S2
-421.0402266	C17H15N3O6S2
-421.1637709	C23H23N3O5
-421.2001564	C24H27N3O4
-421.2253085	C26H31NO4
-421.2828234	C24H39NO5
-421.9153195	C17H12Br2O3
-422.0283709	C15H16Cl2N2O8
-422.0524463	C17H16N2Na2O6S
-422.082542	C12H23O14P
-422.0849114	C19H18O11
-422.1001676	C23H18O8
-422.1212969	C20H22O10
-422.1260423	C23H22ClF3O2
-422.1424263	C17H26O12
-422.1621871	C22H23ClN6O
-422.1940679	C22H30O8
-422.202616	C17H26N8O5
-422.2104669	C23H31FO6
-422.2304534	C23H34O7
-422.2338243	C20H38O7S
-422.4487665	C29H58O
-422.9579468	C10H11BrN5O7P
-423.0558767	C17H17N3O6S2
-423.0702644	C20H13N3O8
-423.1248788	C21H23ClFNO5
-423.1582916	C26H21N3O3
-423.1641648	C19H25N3O8
-423.1681875	C24H25NO6
-423.1740608	C17H29NO11
-423.1866316	C17H25N7O6
-423.2409586	C26H33NO4
-424.0371427	C12H18N4O7P2S
-424.0688842	C16H16N4O8S
-424.127051	C22H20N2O7
-424.136947	C20H24O10
-424.145678	C23H24N2O4S
-424.1693098	C16H28N2O11
-424.1733325	C21H28O9
-424.1798706	C18H33ClN2O5S
-424.199822	C24H28N2O5
-424.209718	C22H32O8
-424.2150782	C28H28N2O2
-424.2461035	C23H36O7
-424.272593	C26H36N2O3
-424.282489	C24H40O6
-424.3188745	C25H44O5
-424.3341307	C29H44O2
-424.4644165	C29H60O
-425.0859145	C20H15N3O8
-425.1618528	C22H24ClN5O2
-425.2354792	C29H31NO2
-425.2566086	C26H35NO4
-425.2929941	C27H39NO3
-426.0879051	C13H22N4O8S2
-426.1364648	C22H28Cl2O4
-426.1427011	C22H22N2O7
-426.1678532	C24H26O7
-426.1691906	C25H22N4O3
-426.2168095	C25H26N6O
-426.2419616	C27H30N4O
-426.2770097	C27H38O4
-426.2954537	C20H38N6O4
-426.3861662	C30H50O
-426.9812729	C18H13Cl4N3O
-427.0198989	C10H14N5O10PS
-427.0294147	C10H15N5O10P2
-427.0507913	C16H17N3O7S2
-427.0620247	C15H17N5O6S2
-427.0968088	C19H22KN3O4S
-427.147846	C19H25NO10
-427.156577	C22H25N3O4S
-427.3661591	C25H49NO4
-428.0088669	C15H14N2Na2O6S2
-428.0134303	C10H14N4O11P2
-428.0789907	C18H22O8P2
-428.1107322	C22H20O9
-428.1237955	C20H25ClO8
-428.1460105	C22H19F3N4O2
-428.1471177	C23H24O8
-428.1682471	C20H28O10
-428.1835033	C24H28O7
-428.1907139	C18H28N4O8
-428.1947366	C23H28N2O6
-428.2311221	C24H32N2O5
-428.2324596	C25H28N6O
-428.2423555	C23H32N4O4
-428.2926598	C27H40O4
-428.3290453	C28H44O3
-428.3654308	C29H48O2
-428.4018163	C30H52O
-429.0309952	C15H13ClFN5O5S
-429.2667794	C29H35NO2
-429.3090381	C23H43NO6
-429.3242943	C27H43NO3
-429.9776859	C14H10N2O10S2
-430.0610404	C18H14F4N2O4S
-430.0654659	C11H20N4O10P2
-430.1124636	C19H18N4O8
-430.1158344	C16H22N4O8S
-430.1263823	C22H22O9
-430.1416384	C26H22O6
-430.1627678	C23H26O8
-430.1771685	C22H27ClN4O3
-430.1991533	C24H30O7
-430.2061563	C22H38O4Zn
-430.2103867	C23H30N2O6
-430.2355388	C25H34O6
-430.3083098	C27H42O4
-430.3446953	C28H46O3
-430.3559287	C27H46N2O2
-430.3810808	C29H50O2
-430.9834957	C15H14ClN3O4S3
-431.0407941	C20H14ClNO8
-431.0569393	C14H17N5O7S2
-431.1205992	C15H22N5O8P
-431.1256896	C22H17F4N3O2
-431.1878771	C22H29N3O4S
-431.1896719	C27H26FNO3
-431.3399443	C27H45NO3
-431.8355447	C9H6I2O4
-431.924792	C10H14Cl6N4O2
-432.0660396	C14H20N6O5Se
-432.095099	C15H20N4O9S
-432.1056469	C21H20O10
-432.193674	C27H28O5
-432.2073877	C24H25FN6O
-432.2148034	C24H32O7
-432.2313969	C29H28N4
-432.2332268	C28H33ClN2
-432.2511889	C25H36O6
-432.3239599	C27H44O4
-432.3603454	C28H48O3
-432.3715788	C27H48N2O2
-432.8671792	C9H9I2NO3
-433.0647771	C22H18Cl2FNO3
-433.2100524	C23H31NO7
-433.2576713	C23H35N3O5
-433.3192089	C26H43NO4
-433.8511947	C9H8I2O4
-434.0899085	C19H24Cl2O7
-434.1001676	C24H18O8
-434.1067056	C21H23ClN2O4S
-434.1212969	C21H22O10
-434.1576824	C22H26O9
-434.1639687	C23H25F3N2OS
-434.2104669	C24H31FO6
-434.2304534	C24H34O7
-434.2311389	C17H34N6O5S
-434.2433401	C21H39O7P
-434.33961	C27H46O4
-434.3759955	C28H50O3
-435.0518539	C13H17N5O8S2
-435.0655691	C19H18ClN3O5S
-435.204573	C26H29NO5
-435.2409586	C27H33NO4
-435.3209402	C23H41N5O3
-435.9387061	C12H4Cl2F6N4OS
-436.1005615	C20H20O11
-436.136947	C21H24O10
-436.209718	C23H32O8
-436.2589902	C21H41O7P
-436.3341307	C30H44O2
-436.35526	C27H48O4
-436.5008021	C31H64
-437.1517622	C21H25ClFN3O4
-437.1748678	C22H26F3N3OS
-437.1852947	C20H35N3Sn
-437.1984418	C21H31N3O5S
-437.2079577	C21H32N3O5P
-437.2202231	C26H31NO5
-437.2314565	C25H31N3O4
-437.2696719	C25H40ClNO3
-437.8864259	C12H14As2Cl2N2O2
-438.0207831	C19H16Cl2N2O4S
-438.1492041	C26H19FN4O2
-438.1525971	C21H26O10
-438.1790866	C24H26N2O6
-438.2154721	C25H30N2O5
-438.2783471	C29H34N4
-438.3861662	C31H50O
-438.4800666	C30H62O
-438.9708803	C11H13ClF3N3O4S3
-439.1680993	C23H31Cl2NO3
-439.2358732	C26H33NO5
-439.239244	C23H37NO5S
-439.2570025	C23H37NO7
-439.3086442	C28H41NO3
-439.7562283	C10H4Br3ClN2O
-440.0573108	C20H16ClF3N2O2S
-440.1141031	C20H24O9S
-440.1318616	C20H24O11
-440.1556658	C19H20N8O5
-440.1596885	C24H20N6O3
-440.1623739	C28H24O5
-440.1779174	C24H26ClFN4O
-440.2046326	C22H32O9
-440.234493	C22H36N2O5S
-440.3290453	C29H44O3
-440.3654308	C30H48O2
-440.4018163	C31H52O
-441.1199129	C21H28ClNO3S2
-441.1392124	C19H27N3O5S2
-441.1396814	C19H19N7O6
-441.3202715	C23H43N3O5
-442.1376157	C22H22N2O8
-442.1627678	C24H26O8
-442.1661386	C21H30O8S
-442.1838972	C21H30O10
-442.3810808	C30H50O2
-443.0065708	C10H15N5O9P2S
-443.0206391	C18H16Cl3N3O4
-443.0243294	C10H15N5O11P2
-443.1553314	C19H21N7O6
-443.2307878	C25H33NO6
-444.008345	C10H14N4O12P2
-444.0103156	C15H15Cl2N2NaO8
-444.1056469	C22H20O10
-444.1532658	C22H24N2O8
-444.1582146	C22H27F3O4S
-444.2008847	C22H28N4O6
-444.2260368	C24H32N2O6
-444.2640756	C23H41O6P
-444.3603454	C29H48O3
-444.3967309	C30H52O2
-445.0378213	C17H16N3NaO6S2
-445.1362493	C16H24N5O8P
-445.1709815	C19H23N7O6
-445.1736668	C23H27NO8
-445.1841578	C21H36INO
-446.0508288	C16H15N4NaO8S
-446.056605	C15H18N4O8S2
-446.0603805	C11H20N4O11P2
-446.0849114	C21H18O11
-446.0882822	C18H22O11S
-446.110749	C16H22N4O9S
-446.1212969	C22H22O10
-446.1520966	C22H24ClFN4O3
-446.1940679	C24H30O8
-446.2304534	C25H34O7
-446.2430242	C25H30N6O2
-446.33961	C28H46O4
-446.8828292	C10H11I2NO3
-447.1100207	C20H21N3O7S
-447.1480325	C23H27Cl2N3O2
-447.2403066	C20H37N3O6S
-447.2692986	C19H37N5O7
-448.0610216	C16H20N2O9S2
-448.0973397	C15H24N6O5Se
-448.1005615	C21H20O11
-448.1126633	C21H24N2O5S2
-448.1214275	C18H14F4N2O4S
-448.145678	C25H24N2O4S
-448.1553704	C26H25ClN2O3
-448.1885886	C27H28O6
-448.199822	C26H28N2O5
-448.209718	C24H32O8
-448.2685703	C23H36N4O5
-448.3188745	C27H44O5
-448.35526	C28H48O4
-449.0327359	C16H16N3NaO7S2
-449.1005558	C23H19ClF3NO3
-449.2525859	C23H35N3O6
-449.277738	C25H39NO6
-449.2849486	C19H39N5O7
-449.3141235	C26H43NO5
-450.0919278	C20H22N2O6S2
-450.1162115	C21H22O11
-450.1214237	C16H24N5O8P
-450.1525971	C22H26O10
-450.1813984	C20H28Cl2N8
-450.1936265	C20H36O7P2
-450.1936908	C21H30N4O5S
-450.2042387	C27H30O6
-450.2146166	C21H31ClN6O3
-450.2617536	C25H38O7
-450.2783471	C30H34N4
-450.2954537	C22H38N6O4
-450.3345246	C27H46O5
-450.3497807	C31H46O2
-450.3709101	C28H50O4
-450.4800666	C31H62O
-451.0892991	C17H18N5O8P
-451.1855689	C23H25N5O5
-451.1994877	C26H29NO6
-451.2140919	C22H33N3O5S
-451.2947255	C26H37N5O2
-452.0828477	C12H28FeO14
-452.1107322	C24H20O9
-452.1471177	C25H24O8
-452.1848407	C27H24N4O3
-452.2010451	C24H30F2O6
-452.2324596	C27H28N6O
-452.2463783	C30H32N2O2
-452.2675077	C27H36N2O4
-452.3501747	C27H48O5
-452.3654308	C31H48O2
-452.4957167	C31H64O
-453.0305565	C12H22CuO14
-453.0412892	C16H15N5O7S2
-453.0561473	C19H17ClFN3O5S
-453.2726526	C24H39NO7
-453.3090381	C25H43NO6
-453.9421688	C16H10N2O6S4
-453.9963129	C17H14N2O7S3
-454.030013	C14H14N8O4S3
-454.030102	C12H22O14Zn
-454.0737086	C13H19N4O12P
-454.1012302	C22H18N2O9
-454.1198571	C23H22N2O6S
-454.1394456	C22H27ClO8
-454.1409865	C20H26N2O8S
-454.1416384	C28H22O6
-454.1713159	C20H22N8O5
-454.19223	C24H32ClFO5
-454.1991533	C26H30O7
-454.2274933	C17H34N4O10
-454.2566682	C24H38O8
-454.2831577	C27H38N2O4
-455.0569393	C16H17N5O7S2
-455.1182734	C22H22ClN5O2S
-455.2341586	C23H37NO6S
-456.0854919	C20H22Cl2N2O6
-456.1046148	C17H21N4O9P
-456.1420324	C24H24O9
-456.1501114	C19H28N4O5S2
-456.1943595	C22H28N6O3S
-456.2260368	C25H32N2O6
-456.2405767	C20H42O7P2
-456.240641	C21H36N4O5S
-456.2511889	C27H36O6
-456.2545597	C24H40O6S
-456.3603454	C30H48O3
-457.1584107	C20H27NO11
-457.1709815	C20H23N7O6
-457.1849002	C23H27N3O7
-457.1880675	C23H28ClN5O3
-457.207367	C21H27N7O5
-458.0849114	C22H18O11
-458.1202649	C17H23N4O9P
-458.1260052	C21H22N4O6S
-458.1681734	C22H35IO2
-458.2304534	C26H34O7
-458.2481898	C28H31FN4O
-458.266839	C27H38O6
-458.3759955	C30H50O3
-459.0682751	C14H21NO14S
-459.1659947	C21H30ClNO8
-459.1866316	C20H25N7O6
-459.2421014	C26H34FNO5
-459.2620879	C26H37NO6
-459.2885774	C29H37N3O2
-460.0760306	C12H22N4O11P2
-460.1481804	C22H24N2O9
-460.1531775	C21H30Cl2N2O5
-460.1565483	C18H34Cl2N2O5S
-460.1580764	C20H28O12
-460.1733325	C24H28O9
-460.201	C18H37ClN2O7S
-460.209718	C25H32O8
-460.2613596	C30H36O4
-460.282489	C27H40O6
-461.0869158	C13H24N3O11PS
-461.1056843	C21H20FN3O6S
-461.1369042	C20H23N5O6S
-461.2202231	C28H31NO5
-461.227869	C28H29F2N3O
-461.3352529	C24H47NO7
-461.8465675	C15H13Br3O2
-461.9562818	C15H10O13S2
-462.0780091	C18H18N6O5S2
-462.0780944	C22H21Cl3N4O
-462.079826	C21H18O12
-462.0973567	C15H29O10P3
-462.1162115	C22H22O11
-462.1163098	C22H30Cl4N2
-462.1790866	C26H26N2O6
-462.2101119	C21H34O11
-462.2253681	C25H34O8
-462.2417671	C26H35FO6
-462.2981391	C27H42O6
-463.074043	C14H18N5O11P
-463.0854323	C25H19Cl2N3O2
-463.1090911	C14H26NO14P
-463.1777064	C22H29N3O6S
-463.3005987	C20H41N5O7
-463.3509029	C24H49NO7
-464.0559363	C16H20N2O10S2
-464.0743467	C24H16O10
-464.0954761	C21H20O12
-464.1682471	C23H28O10
-464.2046326	C24H32O9
-464.2131807	C19H28N8O6
-464.2410181	C25H36O8
-464.2495662	C20H32N8O5
-464.2675077	C28H36N2O4
-464.2926598	C30H40O4
-464.3137891	C27H44O6
-464.3501747	C28H48O5
-464.4593312	C31H60O2
-464.5321022	C33H68
-465.1569709	C21H27N3O7S
-465.1830623	C23H29ClFN3O4
-465.2052417	C29H27N3O3
-465.2263711	C26H31N3O5
-465.3090381	C26H43NO6
-466.1001981	C17H19N6O8P
-466.1075917	C19H23N4O6PS
-466.1111262	C21H22O12
-466.1263823	C25H22O9
-466.1270678	C18H22N6O7S
-466.1475117	C22H26O11
-466.1758311	C24H31ClO7
-466.19223	C25H32ClFO5
-466.2004907	C28H26N4O3
-466.2202827	C24H34O9
-466.2566682	C25H38O8
-466.2831577	C28H38N2O4
-466.3446953	C31H46O3
-466.3658247	C28H50O5
-466.9895971	C9H16N3O13P3
-467.2591278	C18H37N5O9
-467.2883027	C25H41NO7
-467.3011893	C22H46NO7P
-467.3035588	C29H41NO4
-467.3147922	C28H41N3O3
-467.3875632	C30H49N3O
-467.9736127	C9H15N2O14P3
-468.0692614	C23H16O11
-468.110644	C23H26Cl2O6
-468.1420324	C25H24O9
-468.1829225	C27H25ClN6
-468.1995472	C23H32O10
-468.2431434	C18H36N4O10
-468.2511889	C28H36O6
-468.3239599	C30H44O4
-468.3603454	C31H48O3
-468.3967309	C32H52O2
-469.0265968	C19H17Cl2N3O5S
-469.1220252	C20H23NO12
-469.1584107	C21H27NO11
-469.224453	C25H32ClN5O2
-469.2980795	C32H39NO2
-469.3039527	C25H43NO7
-470.1424263	C21H26O12
-470.1722866	C21H30N2O8S
-470.1747891	C17H30N2O13
-470.1940679	C26H30O8
-470.266839	C28H38O6
-470.33961	C30H46O4
-470.3607393	C27H50O6
-470.3759955	C31H50O3
-470.412381	C32H54O2
-471.0453288	C15H17N7O5S3
-471.1502461	C20H21N7O7
-471.2230171	C22H29N7O5
-471.3137296	C32H41NO2
-472.1005615	C23H20O11
-472.116792	C21H26Cl2N2O6
-472.1221521	C27H22Cl2N4
-472.1818805	C20H24N8O6
-472.209718	C26H32O8
-472.35526	C30H48O4
-472.3916455	C31H52O3
-473.0134453	C19H18Cl3N3O3S
-473.0482045	C18H20ClN3O6S2
-473.0852625	C16H19N5O10S
-473.1533253	C20H27NO12
-473.1658961	C20H23N7O7
-473.1660791	C28H27NO4S
-473.204967	C25H31NO8
-473.2638193	C24H35N5O5
-474.079826	C22H18O12
-474.1889826	C25H30O9
-474.1921498	C25H31ClN2O5
-474.2049242	C22H30N6O4S
-474.2253681	C26H34O8
-474.2617536	C27H38O7
-474.2689642	C21H38N4O8
-474.3709101	C30H50O4
-474.96435	C10H14N5O10PSe
-475.0580784	C19H19ClN3NaO6S
-475.0596194	C17H18N5NaO6S2
-475.1413209	C22H25N3O7S
-475.2834921	C29H37N3O3
-475.3005987	C21H41N5O7
-476.0949221	C20H27AlCl2O7
-476.1018018	C23H21N2NaO6S
-476.2046326	C25H32O9
-476.223056	C29H33ClN2O2
-476.2410181	C26H36O8
-476.2574171	C27H37FO6
-476.2675077	C29H36N2O4
-476.2939972	C32H36N4
-476.9816668	C18H15Cl4N3O4
-477.0388839	C16H16N5NaO7S2
-477.0549608	C12H21N3O13P2
-477.1648335	C24H23N5O6
-477.3162488	C21H43N5O7
-478.0536113	C24H14O11
-478.0865594	C17H20N4NaO9P
-478.1142934	C22H23ClN2O8
-478.19223	C26H32ClFO5
-478.2002962	C25H31FO8
-478.2023206	C28H31ClN2O3
-478.2202827	C25H34O9
-478.2355388	C29H34O6
-478.2530807	C27H36F2O5
-478.2831577	C29H38N2O4
-478.3770581	C28H50N2O4
-479.2056357	C26H29N3O6
-479.2671733	C29H37NO5
-479.2883027	C26H41NO7
-480.0692614	C24H16O11
-480.0903907	C21H20O13
-480.1249593	C19H24N6O5S2
-480.1299435	C22H25ClN2O8
-480.1572885	C30H24O6
-480.1631617	C23H28O11
-480.2624223	C28H36N2O5
-480.2988078	C29H40N2O4
-480.3087038	C27H44O7
-480.3252973	C32H40N4
-480.3450893	C28H48O6
-480.4906313	C32H64O2
-481.071252	C17H23NO11S2
-481.1163684	C21H27N3O4S3
-481.1307562	C24H23N3O6S
-481.2498087	C25H39NO6S
-481.3532249	C24H52NO6P
-481.9892628	C10H17N2O14P3
-482.0570269	C12H26FeO16
-482.1212969	C25H22O10
-482.1424263	C22H26O12
-482.1594901	C27H28ClFN2OS
-482.1940679	C27H30O8
-482.2468524	C29H35FO5
-482.2879683	C26H42O8
-482.9845118	C9H16N3O14P3
-483.0456446	C13H26NO10PS3
-483.0791283	C17H18N5O10P
-483.097267	C15H21N3O15
-483.1157543	C24H26BrN3O3
-483.2540424	C18H37N5O10
-483.3018443	C26H45NO5S
-483.3824778	C30H49N3O2
-483.9685274	C9H15N2O15P3
-484.058272	C14H22N4O9P2S
-484.0599537	C18H17N6NaO5S2
-484.0853054	C20H20O14
-484.1005615	C24H20O11
-484.238058	C18H36N4O11
-484.282489	C29H40O6
-484.2937224	C28H40N2O5
-484.3188745	C30H44O5
-484.3373186	C23H44N6O5
-485.6834417	C10Cl10O
-486.0840383	C13H18HgNO6
-486.1460719	C24H26N2O7S
-486.1519451	C17H30N2O12S
-486.1525971	C25H26O10
-486.1790866	C28H26N2O6
-486.1889826	C26H30O9
-486.2060892	C18H34N2O13
-486.2981391	C29H42O6
-486.3345246	C30H46O5
-487.1662694	C28H26ClN3O3
-487.6990918	C10H2Cl10O
-488.1073307	C14H26N4O11P2
-488.1318616	C24H24O11
-488.1623739	C32H24O5
-488.1801454	C28H29ClN4S
-488.2046326	C26H32O9
-488.2774036	C28H40O7
-488.3501747	C30H48O5
-489.9769158	C18H14Cl4N4O4
-490.1213275	C16H23N6O10P
-490.1708469	C23H30N4O4S2
-490.2249909	C24H34N4O5S
-490.3307766	C30H42N4O2
-490.3658247	C30H50O5
-491.0008305	C10H16N5O12P3
-491.1791462	C24H29NO10
-491.2705441	C27H41NO5S
-491.2955133	C21H41N5O8
-491.9848461	C10H15N4O13P3
-492.0903907	C22H20O13
-492.1267762	C23H24O12
-492.1896513	C27H28N2O7
-492.2359328	C26H36O9
-492.2525263	C31H32N4O2
-492.2736557	C28H36N4O4
-492.4906313	C33H64O2
-493.0272734	C15H16N7NaO5S3
-493.0977415	C21H23N3O7S2
-493.1438194	C23H28ClN3O5S
-493.161578	C23H28ClN3O7
-493.1631189	C21H27N5O7S
-493.2311817	C25H35NO9
-493.2498087	C26H39NO6S
-493.3039527	C27H43NO7
-493.3225797	C28H47NO4S
-493.6885271	C12Cl10
-494.0849114	C25H18O11
-494.1212969	C26H22O10
-494.1314983	C19H23N6O8P
-494.1645301	C14H36Cl2N2O12
-494.1788118	C24H30O11
-494.190516	C25H24F6N4
-494.2116098	C26H32F2O7
-494.2151973	C25H34O10
-494.2304534	C29H34O7
-494.2479953	C27H36F2O6
-494.2966993	C30H42N2O2S
-494.3243538	C28H46O7
-494.3409474	C33H42N4
-494.9957452	C9H16N5O13P3
-495.092015	C15H23N5O10P2
-495.1938216	C28H26ClN7
-495.2344911	C25H32F3N3O4
-495.2897203	C29H38FN3O3
-496.1248581	C22H25ClN2O9
-496.2308474	C25H36O10
-496.238058	C19H36N4O11
-496.2607077	C25H40N2O6S
-496.282489	C30H40O6
-496.3036184	C27H44O8
-496.3400039	C28H48O7
-497.0001618	C10H18N3O14P3
-497.2108402	C20H35NO13
-498.1090345	C16H26N4O10S2
-498.2101119	C24H34O11
-498.2253681	C28H34O8
-498.2366015	C27H34N2O7
-498.272987	C28H38N2O6
-498.2981391	C30H42O6
-499.1656546	C26H30Cl2F3NO
-499.1689754	C22H29NO12
-499.1842315	C26H29NO9
-499.2179317	C23H29N7O6
-499.2967589	C26H45NO6S
-499.9287098	C6H16O18P4
-500.0753211	C21H22Cl2N2O8
-500.1543284	C23H24N4O9
-500.161722	C25H28N2O7S
-500.1695845	C27H24N4O6
-500.1844294	C25H31F3O5S
-500.2385735	C26H35F3O6
-500.298533	C26H44O9
-500.3137891	C30H44O6
-500.3362559	C28H44N4O4
-501.1336487	C21H28ClN3O7S
-501.1988495	C20H32N5O8P
-501.2879087	C32H39NO4
-502.1271049	C26H22ClF3N2O3
-502.1533849	C18H30O16
-502.2202827	C27H34O9
-502.2366817	C28H35FO7
-502.3083098	C33H42O4
-502.4174664	C36H54O
-502.9731687	C22H19Br2NO3
-503.1151061	C26H21N3O6S
-504.0034731	C12H19N4O10P3S
-504.0845175	C30H16O8
-504.146201	C18H34ClN2O8PS
-504.1631617	C25H28O11
-504.169035	C18H32O16
-504.2031964	C22H30Cl2N10
-504.2523317	C28H37FO7
-504.2723183	C28H40O8
-504.2736557	C29H36N4O4
-504.3172518	C24H40N8O4
-504.3239599	C33H44O4
-504.9800951	C10H14N5O13P3
-505.0164806	C11H18N5O12P3
-505.1947962	C25H31NO10
-505.2212857	C28H31N3O6
-505.2246566	C25H35N3O6S
-506.1001676	C30H18O8
-506.1437637	C25H22N4O8
-506.1940679	C29H30O8
-506.2151973	C26H34O10
-506.2893057	C29H38N4O4
-506.9862293	C10H15N5O13P2S
-506.9957452	C10H16N5O13P3
-507.1448859	C17H25N5O13
-507.2654587	C27H41NO6S
-507.2832173	C27H41NO8
-507.9797607	C10H15N4O14P3
-508.064176	C25H16O12
-508.2272598	C27H34F2O7
-508.246789	C23H36N6O5S
-509.0191061	C19H18Cl2N3NaO6S
-509.1423973	C19H24N7O8P
-509.1442978	C26H27N3O4S2
-509.2331098	C29H36NO5P
-509.2696925	C20H39N5O10
-509.2988674	C27H43NO8
-509.3352529	C28H47NO7
-509.4807949	C32H63NO3
-509.9851714	C12H12N6Na2O10S2
-510.1056636	C20H22N4O10S
-510.1824574	C27H30N2O6S
-510.2101119	C25H34O11
-510.2267055	C30H30N4O4
-510.9756508	C14H14N3O12PS2
-511.0869296	C15H23N5O11P2
-511.1128373	C20H21CaN7O7
-511.2239879	C25H37NO8S
-512.0548684	C19H17N6NaO6S2
-512.215866	C27H32N2O8
-512.2515091	C27H45IO
-512.2774036	C30H40O7
-513.0063098	C9H18N5O14P3
-513.1634961	C26H27NO10
-513.1998816	C27H31NO9
-513.2335818	C24H31N7O6
-513.2587339	C26H35N5O6
-514.1093092	C22H22N6O5S2
-514.1151618	C26H27ClN2O3S2
-514.1654426	C32H18N8
-514.2202827	C28H34O9
-514.2274933	C22H34N4O10
-514.2368762	C33H30N4O2
-514.2930537	C30H42O7
-515.0250896	C12H21NO17S2
-515.0454587	C13H19N5O13P2
-515.0794061	C19H17N9O5S2
-515.1791462	C26H29NO10
-515.2883027	C29H41NO7
-515.2916735	C26H45NO7S
-515.3011893	C26H46NO7P
-516.091012	C16H26N2O13P2
-516.1267762	C25H24O12
-516.1331019	C26H25N2NaO6S
-516.1784179	C30H28O8
-516.1992007	C14H33N10O7PS
-516.1995472	C27H32O10
-516.2723183	C29H40O8
-516.2934476	C26H44O10
-516.3087038	C30H44O7
-516.3095722	C31H48O2S2
-516.3450893	C31H48O6
-517.1074339	C24H24ClN3O6S
-517.1631189	C23H27N5O7S
-517.2709381	C25H43NO8S
-517.8875803	C17H12I2O3
-518.1060408	C24H22O13
-518.1590198	C30H22N4O5
-518.1788118	C26H30O11
-518.1940679	C30H30O8
-518.2151973	C27H34O10
-518.2562268	C25H44O7P2
-518.2679818	C29H39FO7
-518.2893057	C30H38N4O4
-518.3032245	C33H42O5
-518.3157953	C33H38N6
-518.3243538	C30H46O7
-518.3818687	C28H54O8
-518.412381	C36H54O2
-519.0994728	C20H21N7O6S2
-520.0794321	C30H16O9
-520.101247	C20H20N6O9S
-520.1419441	C27H30Cl2O6
-520.1580764	C25H28O12
-520.1944619	C26H32O11
-520.2227813	C28H37ClO7
-520.3036184	C29H44O8
-520.3400039	C30H48O7
-521.0113952	C11H18N5O13P3
-521.0811755	C14H25N3O14P2
-522.1103719	C19H22N8O6S2
-522.1355298	C30H26CaO6
-522.1373409	C24H26O13
-522.1737264	C25H30O12
-522.2101119	C26H34O11
-522.2464974	C27H38O10
-522.9729012	C10H16N5O12P3S
-522.9906598	C10H16N5O14P3
-523.0270453	C11H20N5O13P3
-523.2053609	C25H33NO11
-523.2682359	C29H37N3O6
-523.9746754	C10H15N4O15P3
-524.225762	C26H36O11
-524.2725143	C27H38F6O3
-524.4593312	C36H60O2
-524.8933939	C15H13I2NO4
-525.2475005	C28H35N3O7
-525.2646071	C20H39N5O11
-525.293782	C27H43NO9
-525.3301675	C28H47NO8
-526.0688367	C16H24N4O10P2S
-526.1213275	C19H23N6O10P
-526.1686411	C24H30O13
-526.2876883	C24H40N5O8
-526.9855744	C9H16N5O15P3
-527.1791462	C27H29NO10
-527.2326383	C20H37N3O13
-528.0546264	C16H22N2O14P2
-528.1420324	C30H24O9
-528.1631617	C27H28O11
-528.1842911	C24H32O13
-528.2148034	C32H32O7
-528.2159462	C29H33FO8
-528.2723183	C30H40O8
-529.0862609	C16H25N3O13P2
-529.1947962	C27H31NO10
-529.2759001	C31H41ClFNO3
-530.0702765	C16H24N2O14P2
-530.2264307	C27H34N2O9
-530.2515828	C29H38O9
-530.2879683	C30H42O8
-530.3090977	C27H46O10
-530.4698959	C35H62O3
-531.0655255	C15H23N3O14P2
-531.101911	C16H27N3O13P2
-531.1803953	C26H31Cl2N5O3
-531.2468318	C28H37NO9
-532.072255	C22H20N4O8S2
-532.0859266	C16H26N2O14P2
-532.1216909	C25H24O13
-532.1382844	C30H20N4O6
-532.2308474	C28H36O10
-532.2672329	C29H40O9
-532.2836319	C30H41FO7
-532.3036184	C30H44O8
-532.3069892	C27H48O8S
-532.428031	C37H56O2
-533.0811755	C15H25N3O14P2
-533.9504033	C16H9N4Na3O9S2
-534.1009554	C24H22O14
-534.1373409	C25H26O13
-534.1525971	C29H26O10
-534.1737264	C26H30O12
-534.2101119	C27H34O11
-534.2253681	C31H34O8
-534.2828829	C29H42O9
-534.3192685	C30H46O8
-534.3206059	C31H42N4O4
-534.4225517	C40H54
-535.1114605	C27H21NO11
-535.1966078	C25H30FN3O9
-535.2219544	C31H29N5O4
-535.4025446	C35H53NO3
-536.0444557	C14H22N2O16P2
-536.1166055	C24H24O14
-536.2046326	C30H32O9
-536.298533	C29H44O9
-536.3865602	C35H52O4
-536.4382018	C40H56
-537.0760902	C14H25N3O15P2
-537.1059812	C30H19NO9
-537.512095	C34H67NO3
-538.0899968	C30H18O10
-538.1111262	C27H22O12
-538.2113611	C26H36Cl2N4O4
-538.2930537	C32H42O7
-538.3042871	C31H42N2O6
-538.3923142	C37H50N2O
-538.4538519	C40H58
-538.9678158	C10H16N5O13P3S
-539.1144542	C21H25N5O8S2
-539.1450636	C23H26N5NaO7S
-539.2802572	C21H41N5O11
-539.6262325	C10Cl12
-539.75708	C15H12Br4O2
-540.1631617	C28H28O11
-540.1842911	C25H32O13
-540.3087038	C32H44O7
-540.4079643	C37H52N2O
-540.4695019	C40H60
-541.0012245	C10H18N5O15P3
-541.0611088	C15H21N5O13P2
-541.2060296	C27H31N3O9
-541.2110267	C26H37Cl2N3O5
-541.2920674	C24H47NO10S
-541.3039527	C31H43NO7
-541.9130963	C15H10O16S3
-542.0348237	C18H18N6O8S3
-542.1212969	C30H22O10
-542.1999412	C25H34O13
-542.3144578	C34H42N2O4
-543.101911	C17H27N3O13P2
-543.1101537	C17H26N3O15P
-543.1740608	C27H29NO11
-543.1763726	C22H31Cl2N7O5
-543.1981808	C23H34N3O10P
-543.2176569	C22H33N5O11
-544.0859266	C17H26N2O14P2
-544.1580764	C27H28O12
-544.1847824	C23H36N4O5S3
-544.2308474	C29H36O10
-544.2461035	C33H36O7
-544.5008021	C40H64
-545.0109546	C19H16N5NaO7S3
-545.1175611	C17H29N3O13P2
-545.1955841	C20H35NO16
-545.233307	C22H35N5O11
-545.3002048	C31H39N5O4
-546.0651911	C16H24N2O15P2
-546.0991385	C22H22N6O7S2
-546.1015766	C17H28N2O14P2
-546.1068287	C18H26O19
-546.1525971	C30H26O10
-546.2366015	C31H34N2O7
-546.2828829	C30H42O9
-546.3403978	C28H50O10
-546.4072956	C37H54O3
-546.5164521	C40H66
-547.0604401	C15H23N3O15P2
-547.0962173	C20H26ClN5O7S2
-547.0968256	C16H27N3O14P2
-547.1226939	C27H21N3O10
-547.1947487	C20H39NO12P2
-547.2794693	C30H37N5O5
-548.0444557	C15H22N2O16P2
-548.0808412	C16H26N2O15P2
-548.225762	C28H36O11
-548.2621475	C29H40O10
-548.2733809	C28H40N2O9
-548.298533	C30H44O9
-548.4076895	C33H56O6
-548.5321022	C40H68
-549.1271106	C28H23NO11
-549.2636828	C29H38F3N3O2S
-550.0601058	C15H24N2O16P2
-550.09587	C24H22O15
-550.141672	C21H26N8O6S2
-550.1434889	C24H26N2O13
-550.2050266	C27H34O12
-550.2679016	C31H38N2O7
-550.2777976	C29H42O10
-550.3016018	C28H38N8O4
-550.4174664	C40H54O
-550.4961106	C35H66O4
-551.1063751	C27H21NO12
-551.152962	C21H26N7O9P
-552.1824742	C23H32N6O6S2
-552.218945	C28H39Cl3N4O
-552.2736557	C33H36N4O4
-552.2934476	C29H44O10
-552.3311705	C31H44N4O5
-552.3635333	C27H48N6O6
-552.4331164	C40H56O
-554.046057	C18H18N8O7S3
-554.0541997	C22H19N4NaO8S2
-554.1568909	C32H31BrN2O2
-554.2444057	C22H42N4O8S2
-554.2515828	C31H38O9
-554.2879683	C32H42O8
-554.2893057	C33H38N4O4
-554.3243538	C33H46O7
-554.4546397	C33H62O6
-554.9306804	C10H15N5O13P2Se
-555.1960586	C26H37NO8S2
-555.2104463	C29H33NO10
-556.1322502	C20H25FN8O6S2
-556.136947	C31H24O10
-556.1594138	C29H24N4O8
-556.1792057	C25H32O14
-556.2155912	C26H36O13
-556.2461035	C34H36O7
-556.3036184	C32H44O8
-556.7481721	C9H6I3NO3
-557.1250189	C21H27N5O9S2
-557.1886036	C27H26F3N5O5
-557.1897108	C28H31NO11
-557.2485631	C27H35N5O8
-558.1064723	C25H29BrF2O7
-558.1948558	C25H34O14
-558.2226827	C29H30N6O6
-558.2530004	C33H35FN2O5
-558.3192685	C32H46O8
-559.0716735	C15H23N5O14P2
-559.1332111	C18H31N3O13P2
-559.3145174	C31H45NO8
-560.0808412	C17H26N2O15P2
-560.1224787	C19H28O19
-560.1648456	C18H34N4O12P2
-560.225762	C29H36O11
-560.2419925	C27H42Cl2N2O6
-560.2733809	C29H40N2O9
-560.3349185	C32H48O8
-560.3533625	C25H48N6O8
-560.4229457	C38H56O3
-561.1124757	C17H29N3O14P2
-561.2645865	C34H40ClNO4
-561.2951194	C31H39N5O5
-561.3526343	C29H47N5O6
-562.0964913	C17H28N2O15P2
-562.1475117	C30H26O11
-562.1627678	C34H26O8
-562.2414121	C29H38O11
-562.2467722	C35H34N2O5
-562.2580056	C34H34N4O4
-562.3155205	C32H42N4O5
-562.3505686	C32H50O8
-562.3810808	C40H50O2
-562.4022102	C37H54O4
-563.098319	C23H30Cl2NNa2O6P
-563.2236107	C26H37N5O5S2
-563.2586588	C26H45NO8S2
-563.3011893	C30H46NO7P
-564.0393703	C15H22N2O17P2
-564.0757558	C16H26N2O16P2
-564.1479056	C26H28O14
-564.1842911	C27H32O13
-564.2278873	C22H36N4O13
-564.2934476	C30H44O10
-564.3100412	C35H40N4O3
-564.3596935	C31H52N2O5S
-564.3967309	C40H52O2
-565.0710048	C15H25N3O16P2
-565.0929756	C17H30Cl2N5O8PS
-565.1141756	C22H32ClN3O6S3
-565.1220252	C28H23NO12
-565.168612	C22H28N7O9P
-565.2159256	C27H35NO12
-565.2707551	C21H39N7O11
-565.3587823	C27H47N7O6
-565.4090865	C31H55N3O6
-565.5433952	C36H71NO3
-566.0550204	C15H24N2O17P2
-566.0647811	C14H23N8NaO9S3
-566.1212969	C32H22O10
-566.1521228	C27H31N2NaO6S2
-566.2151973	C31H34O10
-566.2727122	C29H42O11
-566.3090977	C30H46O10
-566.412381	C40H54O2
-567.3130776	C32H45N3O4S
-567.3771177	C31H53NO8
-568.1693098	C28H28N2O11
-568.2818371	C28H44N2O8S
-568.2883623	C29H44O11
-568.3036184	C33H44O8
-568.3049558	C34H40N4O4
-568.3400039	C34H48O7
-568.428031	C40H56O2
-569.2260964	C30H35NO10
-570.0888795	C19H28Cl2N6O6S2
-570.1948558	C26H34O14
-570.3192685	C33H46O8
-570.8002076	C11H12I3NO2
-572.3349185	C33H48O8
-573.0873236	C16H25N5O14P2
-573.1406827	C20H28N7O9PS
-573.2241782	C29H36ClN3O7
-573.2257192	C27H35N5O7S
-573.2798633	C28H39N5O8
-573.3315049	C33H43N5O4
-574.2135746	C24H30N8O9
-574.2777976	C31H42O10
-574.289031	C30H42N2O9
-574.3141831	C32H46O9
-575.0021433	C17H17N7O8S4
-575.0583454	C15H24N5O13P3
-575.1281257	C18H31N3O14P2
-575.1558239	C28H30ClNO10
-575.1816615	C23H34ClN5O8S
-575.2090065	C31H33N3O6S
-575.3107695	C32H41N5O5
-576.1267762	C30H24O12
-576.2624223	C36H36N2O5
-576.2736557	C35H36N4O4
-576.4178603	C38H56O4
-577.0822382	C15H25N5O15P2
-577.2311817	C32H35NO9
-578.0550204	C16H24N2O17P2
-578.1424263	C30H26O12
-578.1635557	C27H30O14
-578.1999412	C28H34O13
-578.2628162	C32H38N2O8
-578.3607393	C36H50O6
-578.3818687	C33H54O8
-578.4546397	C35H62O6
-579.1376753	C29H25NO12
-579.1842621	C23H30N7O9P
-579.8950402	C6H17O21P5
-580.0342849	C15H22N2O18P2
-580.136947	C33H24O10
-580.1428202	C26H28O15
-580.1733325	C34H28O9
-580.1792057	C27H32O14
-580.2155912	C28H36O13
-580.2573369	C35H36N2O6
-580.3121664	C29H40N8O5
-580.3458771	C28H52O12
-580.3611333	C32H52O9
-580.5430608	C37H72O4
-581.2638193	C33H35N5O5
-581.2656698	C21H39N7O12
-581.2908219	C23H43N5O12
-582.0706155	C26H14N8O7S
-582.1584703	C26H30O15
-582.2054373	C18H38N4O15S
-582.2478348	C33H34N4O6
-582.272987	C35H38N2O6
-582.2842204	C34H38N4O5
-582.3192685	C34H46O8
-582.4342982	C30H62O10
-583.2794693	C33H37N5O5
-583.2813198	C21H41N7O12
-584.2273974	C34H32MgN4O4
-584.2634849	C33H36N4O6
-584.2832769	C29H44O12
-584.3097664	C32H44N2O8
-584.3151265	C38H40N4O2
-584.3349185	C34H48O8
-584.4229457	C40H56O3
-584.4288189	C33H60O8
-584.9369901	C15H17I2N5O4
-585.2104424	C35H36ClNO3S
-585.2798633	C29H39N5O8
-585.2857365	C22H43N5O13
-585.9987129	C18H16N6Na2O8S3
-586.1686411	C29H30O13
-586.2414121	C31H38O11
-586.279135	C33H38N4O6
-586.3141831	C33H46O9
-586.318827	C30H52O7P2
-586.3254165	C32H46N2O8
-586.3505686	C34H50O8
-586.3869541	C35H54O7
-586.9620756	C10H17N5O16P4
-587.0665881	C16H23N5O15P2
-587.9460912	C10H16N4O17P4
-588.1267762	C31H24O12
-588.1842911	C29H32O13
-588.294785	C33H40N4O6
-588.3298331	C33H48O9
-589.0710048	C17H25N3O16P2
-589.0822382	C16H25N5O15P2
-589.1073903	C18H29N3O15P2
-589.1437758	C19H33N3O14P2
-589.171474	C29H32ClNO10
-590.1026393	C17H28N4O15P2
-590.1060408	C30H22O13
-590.2628162	C33H38N2O8
-590.2893057	C36H38N4O4
-590.3104351	C33H42N4O6
-590.5124526	C36H70MgO4
-591.05326	C15H24N5O14P3
-591.310633	C32H44F3N3O2S
-592.1792057	C28H32O14
-592.3247478	C32H48O10
-592.3260852	C33H44N4O6
-592.3611333	C33H52O9
-592.3777268	C38H48N4O2
-593.1474856	C22H27N9O7S2
-593.3002048	C35H39N5O4
-594.1584703	C27H30O15
-594.1948558	C28H34O14
-594.272987	C36H38N2O6
-594.3417352	C33H46N4O6
-594.5223254	C37H70O5
-595.0117892	C13H20N5O16P3
-596.1377349	C26H28O16
-596.1741204	C27H32O15
-596.288637	C36H40N2O6
-596.298533	C34H44O9
-596.3573853	C33H48N4O6
-596.3865602	C40H52O4
-597.0568678	C18H25Cl2N9O4S3
-597.3512969	C31H51NO10
-597.3526343	C32H47N5O6
-598.1189318	C26H27IN6O3
-598.1897704	C27H34O15
-598.2430475	C35H34MgN4O4
-598.2566682	C36H38O8
-598.279135	C34H38N4O6
-598.3505686	C35H50O8
-599.309432	C33H45NO9
-600.2054205	C27H36O15
-600.2206766	C31H36O12
-600.3298331	C34H48O9
-600.3662186	C35H52O8
-600.4178603	C40H56O4
-601.047506	C14H26N3O17P3
-601.1934924	C17H39N5O14S2
-601.9968843	C28H10O16
-602.1084957	C24H27KN4O10S
-602.2084892	C25H30N8O10
-602.2416868	C37H34N2O6
-602.3454832	C34H50O9
-602.3607393	C38H50O6
-602.4335104	C40H58O4
-602.9569902	C10H17N5O17P4
-603.3618616	C30H53NO11
-604.1772976	C33H32FeN4O4
-604.2883623	C32H44O11
-604.3975188	C35H56O8
-605.0771528	C16H25N5O16P2
-606.2312413	C30H38O13
-606.2366015	C36H34N2O7
-606.2676268	C31H42O12
-606.272987	C37H38N2O6
-606.3166071	C32H47F5O3S
-606.4549145	C42H58N2O
-607.0815695	C17H27N3O17P2
-607.1989687	C20H38N3O16P
-607.3118321	C31H41N7O6
-608.1741204	C28H32O15
-608.2634849	C35H36N4O6
-608.2733809	C33H40N2O9
-608.288637	C37H40N2O6
-608.298533	C35H44O9
-609.283886	C36H39N3O6
-609.2951194	C35H39N5O5
-610.1322555	C30H26O14
-610.1533849	C27H30O16
-610.1897704	C28H34O15
-610.1951306	C34H30N2O9
-610.206662	C35H30MgN4O5
-610.2539829	C33H34N6O6
-610.3114977	C31H42N6O7
-611.3682843	C33H49N5O6
-612.0766885	C22H24N6O9S3
-612.1519619	C20H32N6O12S2
-612.2187685	C36H36FeN4O2
-612.2223121	C35H32MgN4O5
-612.23191	C31H36N2O11
-612.3662186	C36H52O8
-613.362805	C36H47N5O4
-613.7696358	C11H9I3N2O4
-614.1472675	C20H31N4O16P
-614.184685	C27H34O16
-614.2379621	C35H34MgN4O5
-614.3122856	C23H46N6O13
-614.3818687	C36H54O8
-614.3964729	C32H58N2O7S
-615.2963012	C23H45N5O14
-615.3043467	C33H45NO10
-616.1772976	C34H32FeN4O4
-616.3611333	C35H52O9
-616.3777268	C40H48N4O2
-616.3975188	C36H56O8
-617.2294672	C31H39NO10S
-618.2676268	C32H42O12
-618.9660326	C17H15N7Na2O8S4
-619.0564174	C16H23N5O17P2
-619.0928029	C17H27N5O16P2
-620.0777511	C19H24N8O10S3
-620.1181594	C25H28N6O7S3
-620.2832769	C32H44O12
-621.060834	C17H25N3O18P2
-621.30233	C30H39N9O6
-621.6059954	C40H79NO3
-621.9461578	C20H20I2N2O5
-622.3042871	C38H42N2O6
-622.3591166	C32H46N8O5
-622.4808545	C37H66O7
-622.5688816	C43H74O2
-624.1715021	C34H32N4O4Zn
-624.2054205	C29H36O15
-624.3199372	C38H44N2O6
-624.5845317	C43H76O2
-625.3033008	C30H47N3O9S
-626.1482995	C27H30O17
-626.2296186	C24H34N8O12
-626.3666126	C33H54O11
-627.2315757	C32H37NO12
-627.7852859	C12H11I3N2O4
-628.2308474	C36H36O10
-628.2672329	C37H40O9
-628.3036184	C38H44O8
-628.3373186	C35H44N6O5
-628.3624707	C37H48N4O5
-629.3199967	C34H47NO10
-629.5859287	C40H75N3O2
-630.1003035	C24H26N2O16S
-630.1421821	C20H31N4O17P
-630.3152457	C33H46N2O10
-630.345106	C33H50N4O6S
-630.4295678	C38H59FO6
-631.2992613	C33H45NO11
-632.1507981	C27H33ClO15
-632.3726414	C40H48N4O3
-632.3924334	C36H56O9
-633.2116281	C23H39NO19
-633.2785259	C32H43NO12
-634.0806139	C27H22O18
-634.1028812	C25H23N8NaO7S2
-634.1322555	C32H26O14
-634.2138546	C31H35N2NaO11
-634.2657087	C32H43ClN2O9
-634.289031	C35H42N2O9
-635.1421087	C27H29N3O13S
-635.6216455	C41H81NO3
-636.096264	C27H24O18
-636.1519619	C22H32N6O12S2
-636.2835516	C38H40N2O7
-636.3410665	C36H48N2O8
-636.4071295	C29H52N10O6
-637.4136065	C26H45N020
-638.111914	C27H26O18
-638.3454832	C37H50O9
-638.4757691	C37H66O8
-638.5426669	C46H70O
-639.0380039	C15H24N5O17P3
-639.3043467	C35H45NO10
-640.1792057	C32H32O14
-640.2003351	C29H36O16
-640.2169286	C34H32N4O9
-640.2452687	C25H36N8O12
-641.0863752	C18H33FeO21
-641.2002923	C26H35N5O12S
-641.3199967	C35H47NO10
-641.5383098	C41H71NO4
-642.1948558	C32H34O14
-642.3380284	C29H55O13P
-643.2199651	C31H37N3O10S
-643.3138655	C30H49N3O10S
-645.0236798	C25H29I2NO3
-645.1424003	C25H27N9O8S2
-645.2370855	C21H40N7O14P
-645.2480136	C25H43NO18
-645.3149114	C34H47NO11
-646.2777976	C37H42O10
-646.371698	C36H54O10
-646.5688816	C45H74O2
-647.3798336	C32H58NO10P
-648.2934476	C37H44O10
-648.4730057	C35H69O8P
-648.4965045	C39H68O7
-648.5845317	C45H76O2
-649.3954837	C32H60NO10P
-649.6372955	C42H83NO3
-649.7584024	C15H9I3O5
-650.1482995	C29H30O17
-650.2522683	C32H38N6O7S
-650.3302271	C34H50O12
-650.6213111	C42H82O4
-650.7900369	C15H12I3NO4
-651.1461503	C34H32ClFeN4O4
-651.2890905	C32H45NO13
-651.3420696	C38H45N5O5
-652.1957993	C38H28N4O7
-652.2268246	C33H36N2O12
-652.2896997	C37H40N4O7
-652.2995956	C35H44N2O10
-652.3148518	C39H44N2O7
-652.3247478	C37H48O10
-652.6158318	C45H80O2
-652.6733467	C43H88O3
-653.221282	C32H40BrN5O5
-654.2464974	C38H38O10
-654.2689642	C36H38N4O8
-654.3814273	C35H60O7P2
-654.5375815	C46H70O2
-655.2992613	C35H45NO11
-655.4156285	C32H57N5O9
-656.1563618	C32H32O13S
-656.1952497	C29H36O17
-656.3057437	C33H44N4O10
-656.3228503	C25H48N6O14
-656.4261336	C35H56N6O6
-658.4233396	C42H58O6
-659.2002755	C35H33NO12
-659.2988841	C32H45N5O8S
-659.4231139	C31H53N11O5
-659.4397179	C38H61NO8
-659.8613706	C6H18O24P6
-660.2054205	C32H36O15
-660.3159144	C36H44N4O8
-660.4237335	C38H60O9
-661.2108708	C24H36N7O13P
-661.2320002	C21H40N7O15P
-661.309826	C34H47NO12
-661.8060213	C16H13I3N2O3
-663.1091216	C21H27N7O14P2
-663.2476502	C21H42N7O15P
-663.3011923	C33H49N3O7S2
-663.3747482	C32H58NO11P
-664.0931372	C21H26N6O15P2
-664.3822626	C36H56O11
-665.1247717	C21H29N7O14P2
-665.3047406	C33H47NO13
-665.3577196	C39H47N5O5
-665.3903983	C32H60NO11P
-666.2218584	C24H42O21
-666.2788602	C35H42N2O11
-666.3152457	C36H46N2O10
-667.1243449	C25H26N9NaO8S2
-668.2832769	C36H44O12
-668.3138285	C38H48CaN2O6
-668.3308958	C36H48N2O10
-668.4417056	C37H65O8P
-668.5532316	C47H72O2
-669.0485686	C16H26N5O18P3
-669.1442172	C30H27N3O15
-670.2757977	C28H38N12O6S
-670.3928273	C35H58O12
-670.4292128	C36H62O11
-670.4573556	C37H67O8P
-671.4469286	C33H61N5O9
-672.4730057	C37H69O8P
-673.2628926	C28H43N5O12S
-673.3145342	C33H47N5O8S
-673.3462115	C36H51NO11
-674.2210706	C33H38O15
-674.2381772	C25H42N2O19
-674.2938416	C35H46O13
-674.3666126	C37H54O11
-674.3791834	C37H50N6O6
-674.4366982	C35H58N6O7
-674.4886558	C37H71O8P
-675.325476	C35H49NO12
-676.2529511	C31H46Cl2N2O10
-677.0870488	C20H29N3O19P2
-677.8309198	C8H22K2O15Sb2
-678.1326669	C20H34AuO9PS
-679.1026989	C20H31N3O19P2
-680.2046326	C42H32O9
-680.2423555	C44H32N4O4
-681.3373781	C35H47N5O9
-682.2472853	C32H42O16
-682.3254165	C40H46N2O8
-682.3465458	C37H50N2O10
-682.5324961	C47H70O3
-682.9233206	C10H18N5O20P5
-685.3255847	C25H43N13O10
-685.3574449	C36H51N3O10
-685.4625786	C34H63N5O9
-687.038384	C17H27N3O20P2S
-687.148878	C21H35N7O13P2S
-687.4193764	C35H61NO12
-688.3624707	C42H48N4O5
-689.3411261	C36H51NO12
-690.3298499	C34H50N4O9S
-690.3781207	C42H50N4O5
-690.4158436	C44H50N8
-691.2871724	C34H46ClN3O10
-692.0971271	C28H25N6NaO10S2
-692.225762	C40H36O11
-692.3407918	C36H52O13
-694.2010038	C34H34N2O14
-694.3465458	C38H50N2O10
-695.1850194	C34H33NO15
-696.0837632	C32H22N6Na2O6S2
-696.2085878	C35H37ClN2O11
-696.2781915	C37H44O13
-696.3410665	C41H48N2O8
-696.5481462	C48H72O3
-697.309826	C37H47NO12
-698.2587935	C37H38N4O10
-698.3862139	C34H64Cl2N2O6S
-699.3420696	C42H45N5O5
-699.363199	C39H49N5O7
-700.2632101	C38H40N2O11
-700.3571105	C37H52N2O11
-700.5043058	C39H73O8P
-701.398641	C35H59NO13
-701.5091349	C39H67N5O6
-701.5359403	C39H76NO7P
-702.2887562	C36H46O14
-702.2981726	C32H46N8O6S2
-702.5434547	C43H74O7
-703.4506766	C36H65NO12
-704.3937708	C43H52N4O5
-705.2646071	C35H39N5O11
-707.2484075	C26H45NO21
-708.2166539	C35H36N2O14
-708.2206766	C40H36O12
-708.2629354	C34H44O16
-710.3097832	C35H46N6O8S
-710.3414605	C38H50N2O11
-711.0591333	C18H28N5O19P3
-711.3301843	C36H49N5O8S
-711.4322631	C34H66NO12P
-712.1963124	C30H36N2O18
-712.2731061	C37H44O14
-712.3240958	C34H52N2O12S
-712.3670065	C36H56O14
-712.5430608	C48H72O4
-712.5794463	C49H76O3
-714.2887562	C37H46O14
-714.3727606	C38H54N2O11
-714.3979127	C40H58O11
-715.0481747	C24H24N5O15P3
-715.1727845	C21H35N9O15P2
-716.3573853	C43H48N4O6
-716.3771773	C39H56O12
-716.5144766	C43H73O6P
-716.5532316	C51H72O2
-717.4451972	C40H63NO10
-717.4663266	C37H67NO12
-717.5308549	C39H76NO8P
-718.3002643	C41H42N4O8
-718.3730354	C43H50N4O6
-719.0043343	C15H25N5O20P4
-719.4455912	C36H65NO13
-720.2629354	C35H44O16
-720.3127601	C37H48N6O5S2
-720.3886854	C43H52N4O6
-721.2887302	C27H47N9O10S2
-722.1435606	C21H40O23P2
-722.2574561	C38H42O14
-722.4241275	C39H62O12
-722.4440276	C40H68O7P2
-723.3043802	C27H49N9O10S2
-724.0289171	C28H32Cl2O10P2S2
-724.330621	C36H52O15
-724.476163	C40H68O11
-725.2034159	C21H41N7O17P2
-726.1755769	C30H34N2O19
-726.1908331	C34H34N2O16
-726.3516312	C42H50N2O9
-726.5587109	C49H74O4
-728.4135628	C41H60O11
-730.278483	C37H42N6O8S
-730.590011	C49H78O4
-731.1261095	C30H33FeN3O15
-731.4608473	C41H65NO10
-732.4084774	C40H60O12
-733.4612412	C37H67NO13
-733.5621551	C40H80NO8P
-734.460513	C41H66O11
-735.2374489	C34H41NO17
-735.5050341	C38H74NO10P
-736.2420808	C44H36N2O9
-736.4397775	C40H64O12
-738.6314819	C52H82O2
-739.827701	C6H19O27P7
-740.1741204	C39H32O15
-740.2163791	C33H40O19
-741.1983306	C21H41N7O18P2
-741.2916097	C28H47N5O18
-742.1956437	C32H38O20
-742.2486227	C38H38N4O12
-742.2684147	C34H46O18
-742.4292128	C42H62O11
-742.5019838	C44H70O9
-743.075452	C21H28N7O17P3
-743.2139806	C21H43N7O18P2
-743.4092057	C37H61NO14
-743.4873368	C45H65N3O6
-743.546505	C41H78NO8P
-744.0594676	C21H27N6O18P3
-745.0911021	C21H30N7O17P3
-745.4764974	C42H67NO10
-746.1482995	C37H30O17
-746.4241275	C41H62O12
-747.4405058	C37H65NO14
-747.4768913	C38H69NO13
-748.2803168	C34H44N4O15
-748.403392	C40H60O13
-748.4397775	C41H64O12
-748.5085258	C38H72N2O12
-748.5254352	C40H77O10P
-748.6158318	C53H80O2
-749.3006602	C27H51FeN9O12
-750.1398126	C23H36N4O20P2
-750.4554276	C41H66O12
-750.5281986	C43H74O10
-750.5950964	C52H78O3
-751.1350616	C22H35N5O20P2
-753.2996552	C39H47NO14
-754.3200563	C40H50O14
-754.4549862	C37H72O11P2
-754.5594987	C43H78O10
-755.3153053	C39H49NO14
-756.0819344	C20H27N10O16P3
-756.2112937	C33H40O20
-756.2476792	C34H44O19
-756.5751488	C43H80O10
-757.4248557	C38H63NO14
-758.2345097	C41H38N6O5S2
-760.2883623	C45H44O11
-760.2955729	C39H44N4O12
-760.4397775	C42H64O12
-761.2096229	C40H41FeN4O6S
-761.5206842	C40H76NO10P
-761.5934552	C42H84NO8P
-764.4346921	C41H64O13
-765.2919151	C25H44N13O13P
-765.4200451	C42H59N3O10
-766.1648348	C32H38N4O12S3
-766.3723834	C39H54N6O8S
-766.4503422	C41H66O13
-766.590011	C52H78O4
-766.6991675	C55H90O
-766.9951986	C17H27N3O23P2S2
-767.1152084	C21H36N7O16P3S
-767.3312469	C37H49N7O9S
-767.3857068	C35H62NO15P
-768.1124945	C36H30Cl2N2O13
-768.4659923	C41H68O13
-769.4248557	C39H63NO14
-770.2668725	C38H42N8O6S2
-771.4405058	C39H65NO14
-772.2062083	C33H40O21
-772.2680513	C31H45N6O15P
-772.330621	C40H52O15
-773.0071443	C29H20ClN7O11S3
-773.1792959	C29H36N5O18P
-774.2473159	C30H43N6O16P
-774.5281986	C45H74O10
-775.194946	C29H38N5O18P
-776.2629659	C30H45N6O16P
-776.2752314	C35H44N4O16
-776.5074632	C44H72O11
-776.6866798	C15H11I4NO4
-776.8540937	C17H22I3N3O8
-777.5308549	C44H76NO8P
-778.6028977	C50H83O4P
-778.7050408	C49H94O6
-780.4296068	C41H64O14
-780.4659923	C42H68O13
-781.220495	C22H47N5O21S2
-781.4576991	C36H72N6O6Tc
-781.5621551	C44H80NO8P
-783.4094804	C45H57N3O9
-784.0759225	C34H24O22
-784.4609069	C41H68O14
-784.4921046	C42H68N6O6S
-784.5296552	C38H76N2O14
-785.1571345	C27H33N9O15P2
-785.4197704	C39H63NO15
-785.4561559	C40H67NO14
-785.5934552	C44H84NO8P
-786.0915725	C34H26O22
-786.238452	C39H38N4O14
-786.2582439	C35H46O20
-787.1727845	C27H35N9O15P2
-787.5207622	C41H69N7O8
-788.1072226	C34H28O22
-788.201123	C33H40O22
-788.2629659	C31H45N6O16P
-788.3163251	C35H48N8O11S
-788.8540937	C18H22I3N3O8
-789.6448883	C20H10Br4O10S2
-789.9938292	C18H26N4O23P4
-790.278616	C31H47N6O16P
-790.5066278	C45H76O7P2
-790.5231132	C45H74O11
-790.8697438	C18H24I3N3O8
-791.2642849	C29H51N3O18P2
-791.4819767	C43H69NO12
-792.4098148	C46H56N4O8
-792.4296068	C42H64O14
-792.5023778	C44H72O12
-793.4248557	C41H63NO14
-794.2036215	C33H43ClO20
-794.4452568	C42H66O14
-794.6213111	C54H82O4
-795.110123	C22H36N7O17P3S
-796.4245214	C41H64O15
-798.476557	C42H70O14
-798.6686245	C15H10I4NNaO4
-799.4354204	C40H65NO15
-799.4718059	C41H69NO14
-800.0573177	C32H32O16S4
-800.1072226	C35H28O22
-800.492207	C42H72O14
-802.1344905	C30H44K2O16S2
-802.2333666	C39H38N4O15
-803.4819767	C44H69NO12
-804.2578806	C31H45N6O17P
-804.3779651	C38H60O18
-804.4659923	C44H68O13
-804.5023778	C45H72O12
-804.5222779	C46H78O7P2
-806.4452568	C43H66O14
-806.8646584	C18H24I3N3O9
-807.3466054	C43H53NO14
-808.4047294	C46H56N4O9
-809.1257731	C23H38N7O17P3S
-809.4197704	C41H63NO15
-810.1921705	C42H30N6O12
-810.4203795	C46H58N4O9
-810.4401715	C42H66O15
-811.4731433	C43H65N5O10
-812.4558215	C42H68O15
-813.4510705	C41H67NO15
-814.144002	C33H34O24
-814.2110187	C31H45Cl3N6O13
-814.289544	C37H50O20
-818.2997148	C40H50O18
-818.5755427	C44H82O13
-820.8803084	C19H26I3N3O9
-821.1257731	C24H38N7O17P3S
-821.4925414	C44H71NO13
-822.383994	C46H54N4O10
-822.4037859	C42H62O16
-822.4051233	C43H58N4O12
-823.1414231	C24H40N7O17P3S
-823.3540908	C43H49N7O10
-824.399644	C46H56N4O10
-824.4558215	C43H68O15
-826.2432626	C39H42N2O18
-827.2272781	C39H41NO19
-827.2457015	C43H42ClN3O12
-827.4667206	C42H69NO15
-827.5044435	C44H69N5O10
-828.2746818	C30H52O26
-828.4917656	C40H78O13P2
-829.2613516	C43H44ClN3O12
-830.2282812	C40H38N4O16
-831.3466054	C45H53NO14
-832.3153649	C41H52O18
-833.2748496	C31H53N3O19P2
-834.2159852	C45H38O16
-834.8959585	C20H28I3N3O9
-835.1414231	C25H40N7O17P3S
-836.0482648	C20H28N10O19P4
-836.2752314	C40H44N4O16
-836.5245698	C41H76N2O15
-836.5414792	C43H81O13P
-837.1206877	C24H38N7O18P3S
-837.1570732	C25H42N7O17P3S
-838.1523222	C24H41N8O17P3S
-838.3756631	C49H58FeN4O5
-838.4503422	C47H66O13
-839.0999522	C23H36N7O19P3S
-839.1363377	C24H40N7O18P3S
-840.1901644	C43H36O18
-840.2589126	C40H44N2O18
-840.3015267	C48H48N4O6S2
-840.3112397	C38H48N8O12S
-841.3890915	C36H65N3O15P2
-843.2406162	C43H42ClN3O13
-844.3517504	C43H56O17
-845.2562662	C43H44ClN3O13
-846.4415089	C46H62N4O11
-846.6654979	C55H91O4P
-849.1007233	C23H38N3O25P3
-849.1570732	C26H42N7O17P3S
-851.1363377	C25H40N7O18P3S
-851.1727232	C26H44N7O17P3S
-851.5031061	C45H73NO14
-852.1315867	C24H39N8O18P3S
-852.1679722	C25H43N8O17P3S
-852.3806399	C44H52N8O10
-853.1156023	C24H38N7O19P3S
-853.1519878	C25H42N7O18P3S
-853.3309554	C47H51NO14
-854.2857961	C40H46N4O17
-854.3392882	C33H54N6O20
-855.1676379	C25H44N7O18P3S
-855.2040234	C26H48N7O17P3S
-856.2538272	C40H44N2O19
-858.4249153	C42H66O18
-858.476557	C47H70O14
-858.5692281	C50H84O7P2
-861.1206877	C26H38N7O18P3S
-861.5085854	C43H75NO16
-862.1956437	C42H38O20
-862.2908815	C42H46N4O16
-862.3248899	C47H58FeN4O4S2
-862.3623151	C43H58O18
-862.515892	C55H62N10
-862.6839114	C59H90O4
-863.1727232	C27H44N7O17P3S
-864.3065315	C42H48N4O16
-865.1519878	C26H42N7O18P3S
-865.1883733	C27H46N7O17P3S
-865.3156992	C44H51NO17
-866.2058144	C45H38O18
-866.39629	C45H54N8O10
-866.5391572	C47H78O14
-867.1312524	C25H40N7O19P3S
-867.1676379	C26H44N7O18P3S
-867.2797076	C39H49NO21
-867.4980207	C45H73NO15
-868.0380941	C20H28N10O21P4
-868.4025572	C34H60N8O18
-868.4820363	C45H72O16
-869.1832879	C26H46N7O18P3S
-869.3012309	C32H55NO26
-870.0061252	C20H26N8O23P4
-870.2178357	C36H42N2O23
-871.1414231	C28H40N7O17P3S
-872.4041799	C42H64O19
-872.492207	C48H72O14
-873.1570732	C28H42N7O17P3S
-875.1727232	C28H44N7O17P3S
-876.4520735	C47H64N4O12
-876.4871216	C47H72O15
-876.5558699	C44H80N2O15
-877.0978437	C26H38N7O17P3S2
-877.1156023	C26H38N7O19P3S
-877.1883733	C28H46N7O17P3S
-878.3221816	C43H50N4O16
-878.4425715	C45H62N6O12
-879.1312524	C26H40N7O19P3S
-879.1676379	C27H44N7O18P3S
-879.1824057	C28H43N5O23P2
-880.4106027	C45H60N4O14
-880.4389427	C36H64N8O17
-881.1469024	C26H42N7O19P3S
-881.1832879	C27H46N7O18P3S
-882.2555586	C39H42N6O18
-883.126167	C25H40N7O20P3S
-883.2898784	C43H49NO19
-883.4929353	C45H73NO16
-884.2800649	C42H52FeN8O6S2
-884.3889237	C39H64O22
-884.4769509	C45H72O17
-884.5245698	C45H76N2O15
-885.1570732	C29H42N7O17P3S
-886.1523222	C28H41N8O17P3S
-886.492601	C45H74O17
-886.5078571	C49H74O14
-886.5626866	C43H78N6O13
-886.7566824	C63H98O2
-887.1363377	C28H40N7O18P3S
-887.4878499	C44H73NO17
-889.1320013	C28H39FN7O17P3S
-889.1519878	C28H42N7O18P3S
-890.2822346	C45H44Cl2N10O6
-890.5027717	C48H74O15
-890.5196633	C55H70MgN4O5
-891.1676379	C28H44N7O18P3S
-891.2040234	C29H48N7O17P3S
-892.5353133	C55H72MgN4O5
-893.0927584	C26H38N7O18P3S2
-893.1469024	C27H42N7O19P3S
-893.1832879	C28H46N7O18P3S
-893.2070974	C28H48N8O17P3S
-893.2196734	C29H50N7O17P3S
-894.1785369	C27H45N8O18P3S
-894.3170962	C43H50N4O17
-894.3534817	C44H54N4O16
-895.1625525	C27H44N7O19P3S
-895.2227474	C28H50N8O17P3S
-895.3011118	C43H49N3O18
-896.3198019	C34H54Cl2N10O14
-896.3691318	C44H56N4O16
-897.141817	C26H42N7O20P3S
-897.1570732	C30H42N7O17P3S
-897.4721999	C45H71NO17
-898.5078571	C50H74O14
-899.1574671	C26H44N7O20P3S
-900.1679722	C29H43N8O17P3S
-900.5764862	C56H76N4O6
-900.6479198	C57H88O8
-901.1519878	C29H42N7O18P3S
-901.5035	C45H75NO17
-902.222921	C40H42N2O22
-902.5921363	C56H78N4O6
-903.3444332	C34H57N5O23
-904.1628868	C28H43N8O18P3S
-904.3284487	C34H56N4O24
-904.4456508	C47H68O17
-904.5184218	C49H76O15
-905.1024508	C28H39ClN7O17P3S
-906.5145779	C55H70MgN4O6
-907.1625525	C28H44N7O19P3S
-907.198938	C29H48N7O18P3S
-907.2353235	C30H52N7O17P3S
-908.3327463	C44H52N4O17
-908.3877587	C46H60N4O13S
-908.530228	C55H72MgN4O6
-909.141817	C27H42N7O20P3S
-909.1782026	C28H46N7O19P3S
-909.2145881	C29H50N7O18P3S
-910.3181894	C31H51N12O18P
-910.545878	C55H74MgN4O6
-911.1574671	C27H44N7O20P3S
-911.2176621	C28H50N8O18P3S
-912.508251	C47H76O17
-913.1519878	C30H42N7O18P3S
-913.5551416	C51H79NO13
-914.1541728	C44H34O22
-915.1676379	C30H44N7O18P3S
-915.2040234	C31H48N7O17P3S
-915.5191501	C46H77NO17
-916.0145952	C20H29N10O22P5
-916.2101735	C42H44FeN4O16
-917.1469024	C29H42N7O19P3S
-917.2196734	C31H50N7O17P3S
-918.2429878	C42H46O23
-918.3541672	C39H54N10O14S
-918.5664346	C46H82N2O16
-919.2353235	C31H52N7O17P3S
-920.4980803	C45H76O19
-921.1570732	C32H42N7O17P3S
-921.2145881	C30H50N7O18P3S
-921.2509736	C31H54N7O17P3S
-922.3483963	C45H54N4O17
-923.1574671	C28H44N7O20P3S
-923.4878499	C47H73NO17
-925.1731172	C28H46N7O20P3S
-925.5035	C47H75NO17
-926.5239011	C48H78O17
-926.6318283	C55H92O7P2
-929.1469024	C30H42N7O19P3S
-930.5188157	C47H78O18
-931.198938	C31H48N7O18P3S
-932.5344658	C47H80O18
-933.2145881	C31H50N7O18P3S
-934.071231	C41H26O26
-934.209837	C30H49N8O18P3S
-935.2302381	C31H52N7O18P3S
-936.0868811	C41H28O26
-936.3276609	C45H52N4O18
-937.2458882	C31H54N7O18P3S
-938.1025311	C41H30O26
-939.0634785	C28H38Cl2N7O17P3S
-939.3920521	C37H61N7O21
-940.1181812	C41H32O26
-940.5031656	C48H76O18
-940.6557211	C56H93O9P
-941.1316463	C27H42N7O22P3S
-942.4824302	C47H74O19
-942.5188157	C48H78O18
-943.1625525	C31H44N7O19P3S
-944.5344658	C48H80O18
-945.2145881	C32H50N7O18P3S
-945.2509736	C33H54N7O17P3S
-946.5501158	C48H82O18
-947.2666236	C33H56N7O17P3S
-949.2095027	C31H50N7O19P3S
-949.2822737	C33H58N7O17P3S
-950.4899827	C55H74N4O6Zn
-952.0817957	C41H28O27
-952.3822626	C60H56O11
-954.0974458	C41H30O27
-955.1625525	C32H44N7O19P3S
-956.1130958	C41H32O27
-957.1782026	C32H46N7O19P3S
-959.1574671	C31H44N7O20P3S
-960.5769993	C48H84N2O17
-961.1731172	C31H46N7O20P3S
-963.2251527	C32H52N7O19P3S
-963.2615383	C33H56N7O18P3S
-965.2771883	C33H58N7O18P3S
-967.1625525	C33H44N7O19P3S
-970.2882402	C34H58N4O24S2
-971.1574671	C32H44N7O20P3S
-973.1731172	C32H46N7O20P3S
-974.5926493	C49H86N2O17
-975.2979238	C35H60N7O17P3S
-976.378753	C44H64O24
-977.3135738	C35H62N7O17P3S
-979.5212753	C44H77N5O19
-979.529942	C46H83N3O15P2
-980.5344658	C51H80O18
-982.5137303	C50H78O19
-983.3107636	C34H58N5O26P
-984.1527161	C32H43N8O20P3S
-984.4929949	C49H76O20
-985.2822737	C36H58N7O17P3S
-988.4879095	C48H76O21
-990.3275053	C36H62O31
-993.1928068	C31H50N9O18P3S2
-993.3084884	C35H62N7O18P3S
-994.2491358	C46H46N2O23
-994.5487679	C49H74N10O12
-1003.329224	C37H64N7O17P3S
-1003.57035	C54H87NO12P2
-1005.178203	C36H46N7O19P3S
-1005.344874	C37H66N7O17P3S
-1006.436457	C43H66N12O12S2
-1007.193853	C36H48N7O19P3S
-1007.277369	C34H55N7O24P2
-1008.543604	C50H81N4O15P
-1008.718321	C61H101O9P
-1009.404925	C42H67N5O21S
-1011.955776	C66H125NO5
-1017.457565	C43H77N3O20P2
-1017.550844	C50H83NO20
-1017.732772	C55H103NO15
-1018.44048	C49H66N10O10S2
-1019.324139	C37H64N7O18P3S
-1021.173117	C36H46N7O20P3S
-1021.339789	C37H66N7O18P3S
-1021.47316	C53H67N9O10S
-1023.188767	C36H48N7O20P3S
-1024.312317	C46H58Cl2N4O18
-1027.329224	C39H64N7O17P3S
-1029.344874	C39H66N7O17P3S
-1030.53486	C51H82O21
-1031.360524	C39H68N7O17P3S
-1033.376174	C39H70N7O17P3S
-1033.545759	C50H83NO21
-1035.683136	C53H93N7O13
-1042.491766	C42H74N8O22
-1044.887362	C72H116O4
-1045.534515	C50H71N13O12
-1048.509039	C50H80O23
-1048.524295	C54H80O20
-1048.545424	C51H84O22
-1050.524689	C50H82O23
-1051.267198	C35H55N7O26P2
-1051.60528	C51H85N7O16
-1053.344874	C41H66N7O17P3S
-1055.360524	C41H68N7O17P3S
-1055.566494	C53H85NO20
-1055.642636	C52H97NO18S
-1056.18845	C31H51N10O21P3S2
-1058.079631	C32H35ClN18O10S6
-1058.56616	C53H86O21
-1059.561398	C50H73N15O11
-1061.371089	C40H70N7O18P3S
-1061.407474	C41H74N7O17P3S
-1062.524689	C51H82O23
-1064.540339	C51H84O23
-1068.426955	C46H64N14O12S2
-1074.565137	C52H90CaO20
-1077.402389	C41H74N7O18P3S
-1083.437854	C46H65N15O12S2
-1084.314983	C35H59Al3N10O24
-1084.472653	C52H76O24
-1088.684652	C61H102O12P2
-1090.592375	C54H90O22
-1092.441353	C53H72O24
-1093.545759	C55H83NO21
-1096.571914	C58H84N2O18
-1100.576714	C53H76N14O12
-1104.535254	C53H84O24
-1108.288662	C37H58N8O27P2
-1108.571914	C59H84N2O18
-1109.375339	C55H59N5O20
-1110.63116	C54H90N6O18
-1120.087669	C48H32O32
-1123.158499	C77H150O3
-1129.711201	C63H105NO12P2
-1130.550904	C55H86O24
-1134.369764	C42H70O35
-1134.634467	C52H100N2O20P2
-1139.511994	C20H14I6N2O6
-1140.705937	C60H92N12O10
-1141.23078	C49H51N13O8S6
-1141.397303	C45H74N7O19P3S
-1143.210044	C48H49N13O9S6
-1145.363587	C40H68N5O31P
-1146.545818	C55H86O25
-1149.351596	C40H65N9O26P2
-1152.380329	C42H72O36
-1154.505287	C62H79ClN4O13S
-1155.376568	C45H72N7O20P3S
-1157.392218	C45H74N7O20P3S
-1179.325776	C40H63N9O28P2
-1180.614162	C57H80N16O12
-1181.428604	C48H78N7O19P3S
-1181.573026	C55H75N17O13
-1182.509433	C57H82O26
-1183.444254	C48H80N7O19P3S
-1186.390136	C42H71N6O31P
-1187.656361	C56H85N17O12
-1193.341426	C41H65N9O28P2
-1196.582598	C56H92O27
-1197.423518	C48H78N7O20P3S
-1199.439168	C48H80N7O20P3S
-1201.841368	C62H111N11O12
-1204.54459	C48H84N8O27
-1208.645462	C59H84N16O12
-1210.598248	C57H94O27
-1213.418433	C48H78N7O21P3S
-1213.841368	C63H111N11O12
-1215.434083	C48H80N7O21P3S
-1215.528038	C22H18I6N2O9
-1220.38871	C43H70N10O27P2
-1221.147838	C51H43N13O12S6
-1222.598248	C58H94O27
-1224.577512	C57H92O28
-1228.572427	C56H92O29
-1228.608813	C57H96O28
-1232.582598	C59H92O27
-1234.47651	C54H74N8O25
-1236.613898	C59H96O27
-1244.318861	C54H52N16O16S2
-1253.554922	C24H20I6N4O8
-1254.628475	C62H86N12O16
-1254.781238	C62H114N2O23
-1257.945081	C34H30ClFeN4O4.2H
-1268.565821	C24H21I6N5O8
-1268.603727	C59H96O29
-1269.65463	C66H87N13O13
-1287.585553	C26H26I6N2O10
-1289.258057	C56H55N15O10S6
-1291.764024	C69H115NO17P2
-1293.698226	C63H91N17O13
-1295.034874	C76H142O15
-1296.046906	C51H40N6O23S6
-1301.315393	C86H172O6
-1311.137655	C58H44Cl3N7O21S
-1318.619377	C63H98O29
-1319.550078	C58H85CoN16O14P
-1321.635626	C66H83N17O13
-1322.093845	C36H46N16Na4O21S6
-1322.66726	C66H86N18O12
-1324.887631	C68H129N2O20P
-1326.557565	C56H94O35
-1328.564331	C62H88CoN13O14P
-1332.790573	C71H118N2O17P2
-1367.274232	C55H74IN3O21S4
-1380.656157	C65H104O31
-1393.568259	C63H87N13O19S2
--- a/foo.html	Tue Jul 10 17:58:35 2018 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,329 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-<meta charset="utf-8">
-<script>
-// https://d3js.org Version 5.4.0. Copyright 2018 Mike Bostock.
-(function(t,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n(t.d3=t.d3||{})})(this,function(t){"use strict";function n(t,n){return t<n?-1:t>n?1:t>=n?0:NaN}function e(t){return 1===t.length&&(t=function(t){return function(e,r){return n(t(e),r)}}(t)),{left:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r<i;){var o=r+i>>>1;t(n[o],e)<0?r=o+1:i=o}return r},right:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r<i;){var o=r+i>>>1;t(n[o],e)>0?i=o:r=o+1}return r}}}function r(t,n){return[t,n]}function i(t){return null===t?NaN:+t}function o(t,n){var e,r,o=t.length,a=0,u=-1,f=0,c=0;if(null==n)for(;++u<o;)isNaN(e=i(t[u]))||(c+=(r=e-f)*(e-(f+=r/++a)));else for(;++u<o;)isNaN(e=i(n(t[u],u,t)))||(c+=(r=e-f)*(e-(f+=r/++a)));if(a>1)return c/(a-1)}function a(t,n){var e=o(t,n);return e?Math.sqrt(e):e}function u(t,n){var e,r,i,o=t.length,a=-1;if(null==n){for(;++a<o;)if(null!=(e=t[a])&&e>=e)for(r=i=e;++a<o;)null!=(e=t[a])&&(r>e&&(r=e),i<e&&(i=e))}else for(;++a<o;)if(null!=(e=n(t[a],a,t))&&e>=e)for(r=i=e;++a<o;)null!=(e=n(t[a],a,t))&&(r>e&&(r=e),i<e&&(i=e));return[r,i]}function f(t){return function(){return t}}function c(t){return t}function s(t,n,e){t=+t,n=+n,e=(i=arguments.length)<2?(n=t,t=0,1):i<3?1:+e;for(var r=-1,i=0|Math.max(0,Math.ceil((n-t)/e)),o=new Array(i);++r<i;)o[r]=t+r*e;return o}function l(t,n,e){var r,i,o,a,u=-1;if(n=+n,t=+t,e=+e,t===n&&e>0)return[t];if((r=n<t)&&(i=t,t=n,n=i),0===(a=h(t,n,e))||!isFinite(a))return[];if(a>0)for(t=Math.ceil(t/a),n=Math.floor(n/a),o=new Array(i=Math.ceil(n-t+1));++u<i;)o[u]=(t+u)*a;else for(t=Math.floor(t*a),n=Math.ceil(n*a),o=new Array(i=Math.ceil(t-n+1));++u<i;)o[u]=(t-u)/a;return r&&o.reverse(),o}function h(t,n,e){var r=(n-t)/Math.max(0,e),i=Math.floor(Math.log(r)/Math.LN10),o=r/Math.pow(10,i);return i>=0?(o>=rs?10:o>=is?5:o>=os?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(o>=rs?10:o>=is?5:o>=os?2:1)}function d(t,n,e){var r=Math.abs(n-t)/Math.max(0,e),i=Math.pow(10,Math.floor(Math.log(r)/Math.LN10)),o=r/i;return o>=rs?i*=10:o>=is?i*=5:o>=os&&(i*=2),n<t?-i:i}function p(t){return Math.ceil(Math.log(t.length)/Math.LN2)+1}function v(t,n,e){if(null==e&&(e=i),r=t.length){if((n=+n)<=0||r<2)return+e(t[0],0,t);if(n>=1)return+e(t[r-1],r-1,t);var r,o=(r-1)*n,a=Math.floor(o),u=+e(t[a],a,t);return u+(+e(t[a+1],a+1,t)-u)*(o-a)}}function g(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o<i;)if(null!=(e=t[o])&&e>=e)for(r=e;++o<i;)null!=(e=t[o])&&e>r&&(r=e)}else for(;++o<i;)if(null!=(e=n(t[o],o,t))&&e>=e)for(r=e;++o<i;)null!=(e=n(t[o],o,t))&&e>r&&(r=e);return r}function y(t){for(var n,e,r,i=t.length,o=-1,a=0;++o<i;)a+=t[o].length;for(e=new Array(a);--i>=0;)for(n=(r=t[i]).length;--n>=0;)e[--a]=r[n];return e}function _(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o<i;)if(null!=(e=t[o])&&e>=e)for(r=e;++o<i;)null!=(e=t[o])&&r>e&&(r=e)}else for(;++o<i;)if(null!=(e=n(t[o],o,t))&&e>=e)for(r=e;++o<i;)null!=(e=n(t[o],o,t))&&r>e&&(r=e);return r}function b(t){if(!(i=t.length))return[];for(var n=-1,e=_(t,m),r=new Array(e);++n<e;)for(var i,o=-1,a=r[n]=new Array(i);++o<i;)a[o]=t[o][n];return r}function m(t){return t.length}function x(t){return t}function w(t){return"translate("+(t+.5)+",0)"}function M(t){return"translate(0,"+(t+.5)+")"}function A(){return!this.__axis}function T(t,n){function e(e){var h=null==i?n.ticks?n.ticks.apply(n,r):n.domain():i,d=null==o?n.tickFormat?n.tickFormat.apply(n,r):x:o,p=Math.max(a,0)+f,v=n.range(),g=+v[0]+.5,y=+v[v.length-1]+.5,_=(n.bandwidth?function(t){var n=Math.max(0,t.bandwidth()-1)/2;return t.round()&&(n=Math.round(n)),function(e){return+t(e)+n}}:function(t){return function(n){return+t(n)}})(n.copy()),b=e.selection?e.selection():e,m=b.selectAll(".domain").data([null]),w=b.selectAll(".tick").data(h,n).order(),M=w.exit(),T=w.enter().append("g").attr("class","tick"),N=w.select("line"),S=w.select("text");m=m.merge(m.enter().insert("path",".tick").attr("class","domain").attr("stroke","#000")),w=w.merge(T),N=N.merge(T.append("line").attr("stroke","#000").attr(s+"2",c*a)),S=S.merge(T.append("text").attr("fill","#000").attr(s,c*p).attr("dy",t===us?"0em":t===cs?"0.71em":"0.32em")),e!==b&&(m=m.transition(e),w=w.transition(e),N=N.transition(e),S=S.transition(e),M=M.transition(e).attr("opacity",ls).attr("transform",function(t){return isFinite(t=_(t))?l(t):this.getAttribute("transform")}),T.attr("opacity",ls).attr("transform",function(t){var n=this.parentNode.__axis;return l(n&&isFinite(n=n(t))?n:_(t))})),M.remove(),m.attr("d",t===ss||t==fs?"M"+c*u+","+g+"H0.5V"+y+"H"+c*u:"M"+g+","+c*u+"V0.5H"+y+"V"+c*u),w.attr("opacity",1).attr("transform",function(t){return l(_(t))}),N.attr(s+"2",c*a),S.attr(s,c*p).text(d),b.filter(A).attr("fill","none").attr("font-size",10).attr("font-family","sans-serif").attr("text-anchor",t===fs?"start":t===ss?"end":"middle"),b.each(function(){this.__axis=_})}var r=[],i=null,o=null,a=6,u=6,f=3,c=t===us||t===ss?-1:1,s=t===ss||t===fs?"x":"y",l=t===us||t===cs?w:M;return e.scale=function(t){return arguments.length?(n=t,e):n},e.ticks=function(){return r=as.call(arguments),e},e.tickArguments=function(t){return arguments.length?(r=null==t?[]:as.call(t),e):r.slice()},e.tickValues=function(t){return arguments.length?(i=null==t?null:as.call(t),e):i&&i.slice()},e.tickFormat=function(t){return arguments.length?(o=t,e):o},e.tickSize=function(t){return arguments.length?(a=u=+t,e):a},e.tickSizeInner=function(t){return arguments.length?(a=+t,e):a},e.tickSizeOuter=function(t){return arguments.length?(u=+t,e):u},e.tickPadding=function(t){return arguments.length?(f=+t,e):f},e}function N(){for(var t,n=0,e=arguments.length,r={};n<e;++n){if(!(t=arguments[n]+"")||t in r)throw new Error("illegal type: "+t);r[t]=[]}return new S(r)}function S(t){this._=t}function E(t,n,e){for(var r=0,i=t.length;r<i;++r)if(t[r].name===n){t[r]=hs,t=t.slice(0,r).concat(t.slice(r+1));break}return null!=e&&t.push({name:n,value:e}),t}function k(t){var n=t+="",e=n.indexOf(":");return e>=0&&"xmlns"!==(n=t.slice(0,e))&&(t=t.slice(e+1)),ps.hasOwnProperty(n)?{space:ps[n],local:t}:t}function C(t){var n=k(t);return(n.local?function(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}:function(t){return function(){var n=this.ownerDocument,e=this.namespaceURI;return e===ds&&n.documentElement.namespaceURI===ds?n.createElement(t):n.createElementNS(e,t)}})(n)}function P(){}function z(t){return null==t?P:function(){return this.querySelector(t)}}function R(){return[]}function L(t){return null==t?R:function(){return this.querySelectorAll(t)}}function D(t){return new Array(t.length)}function U(t,n){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=n}function q(t,n,e,r,i,o){for(var a,u=0,f=n.length,c=o.length;u<c;++u)(a=n[u])?(a.__data__=o[u],r[u]=a):e[u]=new U(t,o[u]);for(;u<f;++u)(a=n[u])&&(i[u]=a)}function O(t,n,e,r,i,o,a){var u,f,c,s={},l=n.length,h=o.length,d=new Array(l);for(u=0;u<l;++u)(f=n[u])&&(d[u]=c=bs+a.call(f,f.__data__,u,n),c in s?i[u]=f:s[c]=f);for(u=0;u<h;++u)(f=s[c=bs+a.call(t,o[u],u,o)])?(r[u]=f,f.__data__=o[u],s[c]=null):e[u]=new U(t,o[u]);for(u=0;u<l;++u)(f=n[u])&&s[d[u]]===f&&(i[u]=f)}function Y(t,n){return t<n?-1:t>n?1:t>=n?0:NaN}function B(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView}function F(t,n){return t.style.getPropertyValue(n)||B(t).getComputedStyle(t,null).getPropertyValue(n)}function I(t){return t.trim().split(/^|\s+/)}function j(t){return t.classList||new H(t)}function H(t){this._node=t,this._names=I(t.getAttribute("class")||"")}function X(t,n){for(var e=j(t),r=-1,i=n.length;++r<i;)e.add(n[r])}function G(t,n){for(var e=j(t),r=-1,i=n.length;++r<i;)e.remove(n[r])}function V(){this.textContent=""}function $(){this.innerHTML=""}function W(){this.nextSibling&&this.parentNode.appendChild(this)}function Z(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function Q(){return null}function J(){var t=this.parentNode;t&&t.removeChild(this)}function K(){return this.parentNode.insertBefore(this.cloneNode(!1),this.nextSibling)}function tt(){return this.parentNode.insertBefore(this.cloneNode(!0),this.nextSibling)}function nt(t,n,e){return t=et(t,n,e),function(n){var e=n.relatedTarget;e&&(e===this||8&e.compareDocumentPosition(this))||t.call(this,n)}}function et(n,e,r){return function(i){var o=t.event;t.event=i;try{n.call(this,this.__data__,e,r)}finally{t.event=o}}}function rt(t){return function(){var n=this.__on;if(n){for(var e,r=0,i=-1,o=n.length;r<o;++r)e=n[r],t.type&&e.type!==t.type||e.name!==t.name?n[++i]=e:this.removeEventListener(e.type,e.listener,e.capture);++i?n.length=i:delete this.__on}}}function it(t,n,e){var r=ms.hasOwnProperty(t.type)?nt:et;return function(i,o,a){var u,f=this.__on,c=r(n,o,a);if(f)for(var s=0,l=f.length;s<l;++s)if((u=f[s]).type===t.type&&u.name===t.name)return this.removeEventListener(u.type,u.listener,u.capture),this.addEventListener(u.type,u.listener=c,u.capture=e),void(u.value=n);this.addEventListener(t.type,c,e),u={type:t.type,name:t.name,value:n,listener:c,capture:e},f?f.push(u):this.__on=[u]}}function ot(n,e,r,i){var o=t.event;n.sourceEvent=t.event,t.event=n;try{return e.apply(r,i)}finally{t.event=o}}function at(t,n,e){var r=B(t),i=r.CustomEvent;"function"==typeof i?i=new i(n,e):(i=r.document.createEvent("Event"),e?(i.initEvent(n,e.bubbles,e.cancelable),i.detail=e.detail):i.initEvent(n,!1,!1)),t.dispatchEvent(i)}function ut(t,n){this._groups=t,this._parents=n}function ft(){return new ut([[document.documentElement]],xs)}function ct(t){return"string"==typeof t?new ut([[document.querySelector(t)]],[document.documentElement]):new ut([[t]],xs)}function st(){return new lt}function lt(){this._="@"+(++ws).toString(36)}function ht(){for(var n,e=t.event;n=e.sourceEvent;)e=n;return e}function dt(t,n){var e=t.ownerSVGElement||t;if(e.createSVGPoint){var r=e.createSVGPoint();return r.x=n.clientX,r.y=n.clientY,r=r.matrixTransform(t.getScreenCTM().inverse()),[r.x,r.y]}var i=t.getBoundingClientRect();return[n.clientX-i.left-t.clientLeft,n.clientY-i.top-t.clientTop]}function pt(t){var n=ht();return n.changedTouches&&(n=n.changedTouches[0]),dt(t,n)}function vt(t,n,e){arguments.length<3&&(e=n,n=ht().changedTouches);for(var r,i=0,o=n?n.length:0;i<o;++i)if((r=n[i]).identifier===e)return dt(t,r);return null}function gt(){t.event.stopImmediatePropagation()}function yt(){t.event.preventDefault(),t.event.stopImmediatePropagation()}function _t(t){var n=t.document.documentElement,e=ct(t).on("dragstart.drag",yt,!0);"onselectstart"in n?e.on("selectstart.drag",yt,!0):(n.__noselect=n.style.MozUserSelect,n.style.MozUserSelect="none")}function bt(t,n){var e=t.document.documentElement,r=ct(t).on("dragstart.drag",null);n&&(r.on("click.drag",yt,!0),setTimeout(function(){r.on("click.drag",null)},0)),"onselectstart"in e?r.on("selectstart.drag",null):(e.style.MozUserSelect=e.__noselect,delete e.__noselect)}function mt(t){return function(){return t}}function xt(t,n,e,r,i,o,a,u,f,c){this.target=t,this.type=n,this.subject=e,this.identifier=r,this.active=i,this.x=o,this.y=a,this.dx=u,this.dy=f,this._=c}function wt(){return!t.event.button}function Mt(){return this.parentNode}function At(n){return null==n?{x:t.event.x,y:t.event.y}:n}function Tt(){return"ontouchstart"in this}function Nt(t,n,e){t.prototype=n.prototype=e,e.constructor=t}function St(t,n){var e=Object.create(t.prototype);for(var r in n)e[r]=n[r];return e}function Et(){}function kt(t){var n;return t=(t+"").trim().toLowerCase(),(n=Ns.exec(t))?(n=parseInt(n[1],16),new Lt(n>>8&15|n>>4&240,n>>4&15|240&n,(15&n)<<4|15&n,1)):(n=Ss.exec(t))?Ct(parseInt(n[1],16)):(n=Es.exec(t))?new Lt(n[1],n[2],n[3],1):(n=ks.exec(t))?new Lt(255*n[1]/100,255*n[2]/100,255*n[3]/100,1):(n=Cs.exec(t))?Pt(n[1],n[2],n[3],n[4]):(n=Ps.exec(t))?Pt(255*n[1]/100,255*n[2]/100,255*n[3]/100,n[4]):(n=zs.exec(t))?Ut(n[1],n[2]/100,n[3]/100,1):(n=Rs.exec(t))?Ut(n[1],n[2]/100,n[3]/100,n[4]):Ls.hasOwnProperty(t)?Ct(Ls[t]):"transparent"===t?new Lt(NaN,NaN,NaN,0):null}function Ct(t){return new Lt(t>>16&255,t>>8&255,255&t,1)}function Pt(t,n,e,r){return r<=0&&(t=n=e=NaN),new Lt(t,n,e,r)}function zt(t){return t instanceof Et||(t=kt(t)),t?(t=t.rgb(),new Lt(t.r,t.g,t.b,t.opacity)):new Lt}function Rt(t,n,e,r){return 1===arguments.length?zt(t):new Lt(t,n,e,null==r?1:r)}function Lt(t,n,e,r){this.r=+t,this.g=+n,this.b=+e,this.opacity=+r}function Dt(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function Ut(t,n,e,r){return r<=0?t=n=e=NaN:e<=0||e>=1?t=n=NaN:n<=0&&(t=NaN),new Ot(t,n,e,r)}function qt(t,n,e,r){return 1===arguments.length?function(t){if(t instanceof Ot)return new Ot(t.h,t.s,t.l,t.opacity);if(t instanceof Et||(t=kt(t)),!t)return new Ot;if(t instanceof Ot)return t;var n=(t=t.rgb()).r/255,e=t.g/255,r=t.b/255,i=Math.min(n,e,r),o=Math.max(n,e,r),a=NaN,u=o-i,f=(o+i)/2;return u?(a=n===o?(e-r)/u+6*(e<r):e===o?(r-n)/u+2:(n-e)/u+4,u/=f<.5?o+i:2-o-i,a*=60):u=f>0&&f<1?0:a,new Ot(a,u,f,t.opacity)}(t):new Ot(t,n,e,null==r?1:r)}function Ot(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Yt(t,n,e){return 255*(t<60?n+(e-n)*t/60:t<180?e:t<240?n+(e-n)*(240-t)/60:n)}function Bt(t){if(t instanceof It)return new It(t.l,t.a,t.b,t.opacity);if(t instanceof Wt){if(isNaN(t.h))return new It(t.l,0,0,t.opacity);var n=t.h*Ds;return new It(t.l,Math.cos(n)*t.c,Math.sin(n)*t.c,t.opacity)}t instanceof Lt||(t=zt(t));var e,r,i=Gt(t.r),o=Gt(t.g),a=Gt(t.b),u=jt((.2225045*i+.7168786*o+.0606169*a)/Os);return i===o&&o===a?e=r=u:(e=jt((.4360747*i+.3850649*o+.1430804*a)/qs),r=jt((.0139322*i+.0971045*o+.7141733*a)/Ys)),new It(116*u-16,500*(e-u),200*(u-r),t.opacity)}function Ft(t,n,e,r){return 1===arguments.length?Bt(t):new It(t,n,e,null==r?1:r)}function It(t,n,e,r){this.l=+t,this.a=+n,this.b=+e,this.opacity=+r}function jt(t){return t>js?Math.pow(t,1/3):t/Is+Bs}function Ht(t){return t>Fs?t*t*t:Is*(t-Bs)}function Xt(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Gt(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function Vt(t){if(t instanceof Wt)return new Wt(t.h,t.c,t.l,t.opacity);if(t instanceof It||(t=Bt(t)),0===t.a&&0===t.b)return new Wt(NaN,0,t.l,t.opacity);var n=Math.atan2(t.b,t.a)*Us;return new Wt(n<0?n+360:n,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}function $t(t,n,e,r){return 1===arguments.length?Vt(t):new Wt(t,n,e,null==r?1:r)}function Wt(t,n,e,r){this.h=+t,this.c=+n,this.l=+e,this.opacity=+r}function Zt(t,n,e,r){return 1===arguments.length?function(t){if(t instanceof Qt)return new Qt(t.h,t.s,t.l,t.opacity);t instanceof Lt||(t=zt(t));var n=t.r/255,e=t.g/255,r=t.b/255,i=(Ws*r+Vs*n-$s*e)/(Ws+Vs-$s),o=r-i,a=(Gs*(e-i)-Hs*o)/Xs,u=Math.sqrt(a*a+o*o)/(Gs*i*(1-i)),f=u?Math.atan2(a,o)*Us-120:NaN;return new Qt(f<0?f+360:f,u,i,t.opacity)}(t):new Qt(t,n,e,null==r?1:r)}function Qt(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Jt(t,n,e,r,i){var o=t*t,a=o*t;return((1-3*t+3*o-a)*n+(4-6*o+3*a)*e+(1+3*t+3*o-3*a)*r+a*i)/6}function Kt(t){var n=t.length-1;return function(e){var r=e<=0?e=0:e>=1?(e=1,n-1):Math.floor(e*n),i=t[r],o=t[r+1],a=r>0?t[r-1]:2*i-o,u=r<n-1?t[r+2]:2*o-i;return Jt((e-r/n)*n,a,i,o,u)}}function tn(t){var n=t.length;return function(e){var r=Math.floor(((e%=1)<0?++e:e)*n),i=t[(r+n-1)%n],o=t[r%n],a=t[(r+1)%n],u=t[(r+2)%n];return Jt((e-r/n)*n,i,o,a,u)}}function nn(t){return function(){return t}}function en(t,n){return function(e){return t+e*n}}function rn(t,n){var e=n-t;return e?en(t,e>180||e<-180?e-360*Math.round(e/360):e):nn(isNaN(t)?n:t)}function on(t){return 1==(t=+t)?an:function(n,e){return e-n?function(t,n,e){return t=Math.pow(t,e),n=Math.pow(n,e)-t,e=1/e,function(r){return Math.pow(t+r*n,e)}}(n,e,t):nn(isNaN(n)?e:n)}}function an(t,n){var e=n-t;return e?en(t,e):nn(isNaN(t)?n:t)}function un(t){return function(n){var e,r,i=n.length,o=new Array(i),a=new Array(i),u=new Array(i);for(e=0;e<i;++e)r=Rt(n[e]),o[e]=r.r||0,a[e]=r.g||0,u[e]=r.b||0;return o=t(o),a=t(a),u=t(u),r.opacity=1,function(t){return r.r=o(t),r.g=a(t),r.b=u(t),r+""}}}function fn(t,n){var e,r=n?n.length:0,i=t?Math.min(r,t.length):0,o=new Array(i),a=new Array(r);for(e=0;e<i;++e)o[e]=dn(t[e],n[e]);for(;e<r;++e)a[e]=n[e];return function(t){for(e=0;e<i;++e)a[e]=o[e](t);return a}}function cn(t,n){var e=new Date;return t=+t,n-=t,function(r){return e.setTime(t+n*r),e}}function sn(t,n){return t=+t,n-=t,function(e){return t+n*e}}function ln(t,n){var e,r={},i={};null!==t&&"object"==typeof t||(t={}),null!==n&&"object"==typeof n||(n={});for(e in n)e in t?r[e]=dn(t[e],n[e]):i[e]=n[e];return function(t){for(e in r)i[e]=r[e](t);return i}}function hn(t,n){var e,r,i,o=ol.lastIndex=al.lastIndex=0,a=-1,u=[],f=[];for(t+="",n+="";(e=ol.exec(t))&&(r=al.exec(n));)(i=r.index)>o&&(i=n.slice(o,i),u[a]?u[a]+=i:u[++a]=i),(e=e[0])===(r=r[0])?u[a]?u[a]+=r:u[++a]=r:(u[++a]=null,f.push({i:a,x:sn(e,r)})),o=al.lastIndex;return o<n.length&&(i=n.slice(o),u[a]?u[a]+=i:u[++a]=i),u.length<2?f[0]?function(t){return function(n){return t(n)+""}}(f[0].x):function(t){return function(){return t}}(n):(n=f.length,function(t){for(var e,r=0;r<n;++r)u[(e=f[r]).i]=e.x(t);return u.join("")})}function dn(t,n){var e,r=typeof n;return null==n||"boolean"===r?nn(n):("number"===r?sn:"string"===r?(e=kt(n))?(n=e,el):hn:n instanceof kt?el:n instanceof Date?cn:Array.isArray(n)?fn:"function"!=typeof n.valueOf&&"function"!=typeof n.toString||isNaN(n)?ln:sn)(t,n)}function pn(t,n){return t=+t,n-=t,function(e){return Math.round(t+n*e)}}function vn(t,n,e,r,i,o){var a,u,f;return(a=Math.sqrt(t*t+n*n))&&(t/=a,n/=a),(f=t*e+n*r)&&(e-=t*f,r-=n*f),(u=Math.sqrt(e*e+r*r))&&(e/=u,r/=u,f/=u),t*r<n*e&&(t=-t,n=-n,f=-f,a=-a),{translateX:i,translateY:o,rotate:Math.atan2(n,t)*ul,skewX:Math.atan(f)*ul,scaleX:a,scaleY:u}}function gn(t,n,e,r){function i(t){return t.length?t.pop()+" ":""}return function(o,a){var u=[],f=[];return o=t(o),a=t(a),function(t,r,i,o,a,u){if(t!==i||r!==o){var f=a.push("translate(",null,n,null,e);u.push({i:f-4,x:sn(t,i)},{i:f-2,x:sn(r,o)})}else(i||o)&&a.push("translate("+i+n+o+e)}(o.translateX,o.translateY,a.translateX,a.translateY,u,f),function(t,n,e,o){t!==n?(t-n>180?n+=360:n-t>180&&(t+=360),o.push({i:e.push(i(e)+"rotate(",null,r)-2,x:sn(t,n)})):n&&e.push(i(e)+"rotate("+n+r)}(o.rotate,a.rotate,u,f),function(t,n,e,o){t!==n?o.push({i:e.push(i(e)+"skewX(",null,r)-2,x:sn(t,n)}):n&&e.push(i(e)+"skewX("+n+r)}(o.skewX,a.skewX,u,f),function(t,n,e,r,o,a){if(t!==e||n!==r){var u=o.push(i(o)+"scale(",null,",",null,")");a.push({i:u-4,x:sn(t,e)},{i:u-2,x:sn(n,r)})}else 1===e&&1===r||o.push(i(o)+"scale("+e+","+r+")")}(o.scaleX,o.scaleY,a.scaleX,a.scaleY,u,f),o=a=null,function(t){for(var n,e=-1,r=f.length;++e<r;)u[(n=f[e]).i]=n.x(t);return u.join("")}}}function yn(t){return((t=Math.exp(t))+1/t)/2}function _n(t,n){var e,r,i=t[0],o=t[1],a=t[2],u=n[0],f=n[1],c=n[2],s=u-i,l=f-o,h=s*s+l*l;if(h<pl)r=Math.log(c/a)/ll,e=function(t){return[i+t*s,o+t*l,a*Math.exp(ll*t*r)]};else{var d=Math.sqrt(h),p=(c*c-a*a+dl*h)/(2*a*hl*d),v=(c*c-a*a-dl*h)/(2*c*hl*d),g=Math.log(Math.sqrt(p*p+1)-p),y=Math.log(Math.sqrt(v*v+1)-v);r=(y-g)/ll,e=function(t){var n=t*r,e=yn(g),u=a/(hl*d)*(e*function(t){return((t=Math.exp(2*t))-1)/(t+1)}(ll*n+g)-function(t){return((t=Math.exp(t))-1/t)/2}(g));return[i+u*s,o+u*l,a*e/yn(ll*n+g)]}}return e.duration=1e3*r,e}function bn(t){return function(n,e){var r=t((n=qt(n)).h,(e=qt(e)).h),i=an(n.s,e.s),o=an(n.l,e.l),a=an(n.opacity,e.opacity);return function(t){return n.h=r(t),n.s=i(t),n.l=o(t),n.opacity=a(t),n+""}}}function mn(t){return function(n,e){var r=t((n=$t(n)).h,(e=$t(e)).h),i=an(n.c,e.c),o=an(n.l,e.l),a=an(n.opacity,e.opacity);return function(t){return n.h=r(t),n.c=i(t),n.l=o(t),n.opacity=a(t),n+""}}}function xn(t){return function n(e){function r(n,r){var i=t((n=Zt(n)).h,(r=Zt(r)).h),o=an(n.s,r.s),a=an(n.l,r.l),u=an(n.opacity,r.opacity);return function(t){return n.h=i(t),n.s=o(t),n.l=a(Math.pow(t,e)),n.opacity=u(t),n+""}}return e=+e,r.gamma=n,r}(1)}function wn(){return Nl||(kl(Mn),Nl=El.now()+Sl)}function Mn(){Nl=0}function An(){this._call=this._time=this._next=null}function Tn(t,n,e){var r=new An;return r.restart(t,n,e),r}function Nn(){wn(),++xl;for(var t,n=tl;n;)(t=Nl-n._time)>=0&&n._call.call(null,t),n=n._next;--xl}function Sn(){Nl=(Tl=El.now())+Sl,xl=wl=0;try{Nn()}finally{xl=0,function(){var t,n,e=tl,r=1/0;for(;e;)e._call?(r>e._time&&(r=e._time),t=e,e=e._next):(n=e._next,e._next=null,e=t?t._next=n:tl=n);nl=t,kn(r)}(),Nl=0}}function En(){var t=El.now(),n=t-Tl;n>Al&&(Sl-=n,Tl=t)}function kn(t){if(!xl){wl&&(wl=clearTimeout(wl));t-Nl>24?(t<1/0&&(wl=setTimeout(Sn,t-El.now()-Sl)),Ml&&(Ml=clearInterval(Ml))):(Ml||(Tl=El.now(),Ml=setInterval(En,Al)),xl=1,kl(Sn))}}function Cn(t,n,e){var r=new An;return n=null==n?0:+n,r.restart(function(e){r.stop(),t(e+n)},n,e),r}function Pn(t,n,e,r,i,o){var a=t.__transition;if(a){if(e in a)return}else t.__transition={};(function(t,n,e){function r(f){var c,s,l,h;if(e.state!==Rl)return o();for(c in u)if((h=u[c]).name===e.name){if(h.state===Dl)return Cn(r);h.state===Ul?(h.state=Ol,h.timer.stop(),h.on.call("interrupt",t,t.__data__,h.index,h.group),delete u[c]):+c<n&&(h.state=Ol,h.timer.stop(),delete u[c])}if(Cn(function(){e.state===Dl&&(e.state=Ul,e.timer.restart(i,e.delay,e.time),i(f))}),e.state=Ll,e.on.call("start",t,t.__data__,e.index,e.group),e.state===Ll){for(e.state=Dl,a=new Array(l=e.tween.length),c=0,s=-1;c<l;++c)(h=e.tween[c].value.call(t,t.__data__,e.index,e.group))&&(a[++s]=h);a.length=s+1}}function i(n){for(var r=n<e.duration?e.ease.call(null,n/e.duration):(e.timer.restart(o),e.state=ql,1),i=-1,u=a.length;++i<u;)a[i].call(null,r);e.state===ql&&(e.on.call("end",t,t.__data__,e.index,e.group),o())}function o(){e.state=Ol,e.timer.stop(),delete u[n];for(var r in u)return;delete t.__transition}var a,u=t.__transition;u[n]=e,e.timer=Tn(function(t){e.state=Rl,e.timer.restart(r,e.delay,e.time),e.delay<=t&&r(t-e.delay)},0,e.time)})(t,e,{name:n,index:r,group:i,on:Cl,tween:Pl,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:zl})}function zn(t,n){var e=Ln(t,n);if(e.state>zl)throw new Error("too late; already scheduled");return e}function Rn(t,n){var e=Ln(t,n);if(e.state>Ll)throw new Error("too late; already started");return e}function Ln(t,n){var e=t.__transition;if(!e||!(e=e[n]))throw new Error("transition not found");return e}function Dn(t,n){var e,r,i,o=t.__transition,a=!0;if(o){n=null==n?null:n+"";for(i in o)(e=o[i]).name===n?(r=e.state>Ll&&e.state<ql,e.state=Ol,e.timer.stop(),r&&e.on.call("interrupt",t,t.__data__,e.index,e.group),delete o[i]):a=!1;a&&delete t.__transition}}function Un(t,n,e){var r=t._id;return t.each(function(){var t=Rn(this,r);(t.value||(t.value={}))[n]=e.apply(this,arguments)}),function(t){return Ln(t,r).value[n]}}function qn(t,n){var e;return("number"==typeof n?sn:n instanceof kt?el:(e=kt(n))?(n=e,el):hn)(t,n)}function On(t,n,e,r){this._groups=t,this._parents=n,this._name=e,this._id=r}function Yn(t){return ft().transition(t)}function Bn(){return++Bl}function Fn(t){return((t*=2)<=1?t*t:--t*(2-t)+1)/2}function In(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}function jn(t){return(1-Math.cos(Xl*t))/2}function Hn(t){return((t*=2)<=1?Math.pow(2,10*t-10):2-Math.pow(2,10-10*t))/2}function Xn(t){return((t*=2)<=1?1-Math.sqrt(1-t*t):Math.sqrt(1-(t-=2)*t)+1)/2}function Gn(t){return(t=+t)<Vl?eh*t*t:t<Wl?eh*(t-=$l)*t+Zl:t<Jl?eh*(t-=Ql)*t+Kl:eh*(t-=th)*t+nh}function Vn(t,n){for(var e;!(e=t.__transition)||!(e=e[n]);)if(!(t=t.parentNode))return sh.time=wn(),sh;return e}function $n(t){return function(){return t}}function Wn(){t.event.stopImmediatePropagation()}function Zn(){t.event.preventDefault(),t.event.stopImmediatePropagation()}function Qn(t){return{type:t}}function Jn(){return!t.event.button}function Kn(){var t=this.ownerSVGElement||this;return[[0,0],[t.width.baseVal.value,t.height.baseVal.value]]}function te(t){for(;!t.__brush;)if(!(t=t.parentNode))return;return t.__brush}function ne(t){return t[0][0]===t[1][0]||t[0][1]===t[1][1]}function ee(n){function e(t){var e=t.property("__brush",u).selectAll(".overlay").data([Qn("overlay")]);e.enter().append("rect").attr("class","overlay").attr("pointer-events","all").attr("cursor",bh.overlay).merge(e).each(function(){var t=te(this).extent;ct(this).attr("x",t[0][0]).attr("y",t[0][1]).attr("width",t[1][0]-t[0][0]).attr("height",t[1][1]-t[0][1])}),t.selectAll(".selection").data([Qn("selection")]).enter().append("rect").attr("class","selection").attr("cursor",bh.selection).attr("fill","#777").attr("fill-opacity",.3).attr("stroke","#fff").attr("shape-rendering","crispEdges");var i=t.selectAll(".handle").data(n.handles,function(t){return t.type});i.exit().remove(),i.enter().append("rect").attr("class",function(t){return"handle handle--"+t.type}).attr("cursor",function(t){return bh[t.type]}),t.each(r).attr("fill","none").attr("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush touchstart.brush",a)}function r(){var t=ct(this),n=te(this).selection;n?(t.selectAll(".selection").style("display",null).attr("x",n[0][0]).attr("y",n[0][1]).attr("width",n[1][0]-n[0][0]).attr("height",n[1][1]-n[0][1]),t.selectAll(".handle").style("display",null).attr("x",function(t){return"e"===t.type[t.type.length-1]?n[1][0]-h/2:n[0][0]-h/2}).attr("y",function(t){return"s"===t.type[0]?n[1][1]-h/2:n[0][1]-h/2}).attr("width",function(t){return"n"===t.type||"s"===t.type?n[1][0]-n[0][0]+h:h}).attr("height",function(t){return"e"===t.type||"w"===t.type?n[1][1]-n[0][1]+h:h})):t.selectAll(".selection,.handle").style("display","none").attr("x",null).attr("y",null).attr("width",null).attr("height",null)}function i(t,n){return t.__brush.emitter||new o(t,n)}function o(t,n){this.that=t,this.args=n,this.state=t.__brush,this.active=0}function a(){function e(){var t=pt(w);!L||m||x||(Math.abs(t[0]-U[0])>Math.abs(t[1]-U[1])?x=!0:m=!0),U=t,b=!0,Zn(),o()}function o(){var t;switch(y=U[0]-D[0],_=U[1]-D[1],A){case dh:case hh:T&&(y=Math.max(C-u,Math.min(z-d,y)),c=u+y,p=d+y),N&&(_=Math.max(P-l,Math.min(R-v,_)),h=l+_,g=v+_);break;case ph:T<0?(y=Math.max(C-u,Math.min(z-u,y)),c=u+y,p=d):T>0&&(y=Math.max(C-d,Math.min(z-d,y)),c=u,p=d+y),N<0?(_=Math.max(P-l,Math.min(R-l,_)),h=l+_,g=v):N>0&&(_=Math.max(P-v,Math.min(R-v,_)),h=l,g=v+_);break;case vh:T&&(c=Math.max(C,Math.min(z,u-y*T)),p=Math.max(C,Math.min(z,d+y*T))),N&&(h=Math.max(P,Math.min(R,l-_*N)),g=Math.max(P,Math.min(R,v+_*N)))}p<c&&(T*=-1,t=u,u=d,d=t,t=c,c=p,p=t,M in mh&&Y.attr("cursor",bh[M=mh[M]])),g<h&&(N*=-1,t=l,l=v,v=t,t=h,h=g,g=t,M in xh&&Y.attr("cursor",bh[M=xh[M]])),S.selection&&(k=S.selection),m&&(c=k[0][0],p=k[1][0]),x&&(h=k[0][1],g=k[1][1]),k[0][0]===c&&k[0][1]===h&&k[1][0]===p&&k[1][1]===g||(S.selection=[[c,h],[p,g]],r.call(w),q.brush())}function a(){if(Wn(),t.event.touches){if(t.event.touches.length)return;f&&clearTimeout(f),f=setTimeout(function(){f=null},500),O.on("touchmove.brush touchend.brush touchcancel.brush",null)}else bt(t.event.view,b),B.on("keydown.brush keyup.brush mousemove.brush mouseup.brush",null);O.attr("pointer-events","all"),Y.attr("cursor",bh.overlay),S.selection&&(k=S.selection),ne(k)&&(S.selection=null,r.call(w)),q.end()}if(t.event.touches){if(t.event.changedTouches.length<t.event.touches.length)return Zn()}else if(f)return;if(s.apply(this,arguments)){var u,c,l,h,d,p,v,g,y,_,b,m,x,w=this,M=t.event.target.__data__.type,A="selection"===(t.event.metaKey?M="overlay":M)?hh:t.event.altKey?vh:ph,T=n===yh?null:wh[M],N=n===gh?null:Mh[M],S=te(w),E=S.extent,k=S.selection,C=E[0][0],P=E[0][1],z=E[1][0],R=E[1][1],L=T&&N&&t.event.shiftKey,D=pt(w),U=D,q=i(w,arguments).beforestart();"overlay"===M?S.selection=k=[[u=n===yh?C:D[0],l=n===gh?P:D[1]],[d=n===yh?z:u,v=n===gh?R:l]]:(u=k[0][0],l=k[0][1],d=k[1][0],v=k[1][1]),c=u,h=l,p=d,g=v;var O=ct(w).attr("pointer-events","none"),Y=O.selectAll(".overlay").attr("cursor",bh[M]);if(t.event.touches)O.on("touchmove.brush",e,!0).on("touchend.brush touchcancel.brush",a,!0);else{var B=ct(t.event.view).on("keydown.brush",function(){switch(t.event.keyCode){case 16:L=T&&N;break;case 18:A===ph&&(T&&(d=p-y*T,u=c+y*T),N&&(v=g-_*N,l=h+_*N),A=vh,o());break;case 32:A!==ph&&A!==vh||(T<0?d=p-y:T>0&&(u=c-y),N<0?v=g-_:N>0&&(l=h-_),A=dh,Y.attr("cursor",bh.selection),o());break;default:return}Zn()},!0).on("keyup.brush",function(){switch(t.event.keyCode){case 16:L&&(m=x=L=!1,o());break;case 18:A===vh&&(T<0?d=p:T>0&&(u=c),N<0?v=g:N>0&&(l=h),A=ph,o());break;case 32:A===dh&&(t.event.altKey?(T&&(d=p-y*T,u=c+y*T),N&&(v=g-_*N,l=h+_*N),A=vh):(T<0?d=p:T>0&&(u=c),N<0?v=g:N>0&&(l=h),A=ph),Y.attr("cursor",bh[M]),o());break;default:return}Zn()},!0).on("mousemove.brush",e,!0).on("mouseup.brush",a,!0);_t(t.event.view)}Wn(),Dn(w),r.call(w),q.start()}}function u(){var t=this.__brush||{selection:null};return t.extent=c.apply(this,arguments),t.dim=n,t}var f,c=Kn,s=Jn,l=N(e,"start","brush","end"),h=6;return e.move=function(t,e){t.selection?t.on("start.brush",function(){i(this,arguments).beforestart().start()}).on("interrupt.brush end.brush",function(){i(this,arguments).end()}).tween("brush",function(){function t(t){a.selection=1===t&&ne(c)?null:s(t),r.call(o),u.brush()}var o=this,a=o.__brush,u=i(o,arguments),f=a.selection,c=n.input("function"==typeof e?e.apply(this,arguments):e,a.extent),s=dn(f,c);return f&&c?t:t(1)}):t.each(function(){var t=arguments,o=this.__brush,a=n.input("function"==typeof e?e.apply(this,t):e,o.extent),u=i(this,t).beforestart();Dn(this),o.selection=null==a||ne(a)?null:a,r.call(this),u.start().brush().end()})},o.prototype={beforestart:function(){return 1==++this.active&&(this.state.emitter=this,this.starting=!0),this},start:function(){return this.starting&&(this.starting=!1,this.emit("start")),this},brush:function(){return this.emit("brush"),this},end:function(){return 0==--this.active&&(delete this.state.emitter,this.emit("end")),this},emit:function(t){ot(new function(t,n,e){this.target=t,this.type=n,this.selection=e}(e,t,n.output(this.state.selection)),l.apply,l,[t,this.that,this.args])}},e.extent=function(t){return arguments.length?(c="function"==typeof t?t:$n([[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]]),e):c},e.filter=function(t){return arguments.length?(s="function"==typeof t?t:$n(!!t),e):s},e.handleSize=function(t){return arguments.length?(h=+t,e):h},e.on=function(){var t=l.on.apply(l,arguments);return t===l?e:t},e}function re(t){return function(){return t}}function ie(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function oe(){return new ie}function ae(t){return t.source}function ue(t){return t.target}function fe(t){return t.radius}function ce(t){return t.startAngle}function se(t){return t.endAngle}function le(){}function he(t,n){var e=new le;if(t instanceof le)t.each(function(t,n){e.set(n,t)});else if(Array.isArray(t)){var r,i=-1,o=t.length;if(null==n)for(;++i<o;)e.set(i,t[i]);else for(;++i<o;)e.set(n(r=t[i],i,t),r)}else if(t)for(var a in t)e.set(a,t[a]);return e}function de(){return{}}function pe(t,n,e){t[n]=e}function ve(){return he()}function ge(t,n,e){t.set(n,e)}function ye(){}function _e(t,n){var e=new ye;if(t instanceof ye)t.each(function(t){e.add(t)});else if(t){var r=-1,i=t.length;if(null==n)for(;++r<i;)e.add(t[r]);else for(;++r<i;)e.add(n(t[r],r,t))}return e}function be(t,n){return t-n}function me(t){return function(){return t}}function xe(t,n){for(var e,r=-1,i=n.length;++r<i;)if(e=function(t,n){for(var e=n[0],r=n[1],i=-1,o=0,a=t.length,u=a-1;o<a;u=o++){var f=t[o],c=f[0],s=f[1],l=t[u],h=l[0],d=l[1];if(function(t,n,e){var r;return function(t,n,e){return(n[0]-t[0])*(e[1]-t[1])==(e[0]-t[0])*(n[1]-t[1])}(t,n,e)&&function(t,n,e){return t<=n&&n<=e||e<=n&&n<=t}(t[r=+(t[0]===n[0])],e[r],n[r])}(f,l,n))return 0;s>r!=d>r&&e<(h-c)*(r-s)/(d-s)+c&&(i=-i)}return i}(t,n[r]))return e;return 0}function we(){}function Me(){function t(t){var e=a(t);if(Array.isArray(e))e=e.slice().sort(be);else{var r=u(t),i=r[0],o=r[1];e=d(i,o,e),e=s(Math.floor(i/e)*e,Math.floor(o/e)*e,e)}return e.map(function(e){return n(t,e)})}function n(t,n){var r=[],a=[];return function(t,n,r){function a(t){var n,i,o=[t[0][0]+u,t[0][1]+f],a=[t[1][0]+u,t[1][1]+f],c=e(o),s=e(a);(n=p[c])?(i=d[s])?(delete p[n.end],delete d[i.start],n===i?(n.ring.push(a),r(n.ring)):d[n.start]=p[i.end]={start:n.start,end:i.end,ring:n.ring.concat(i.ring)}):(delete p[n.end],n.ring.push(a),p[n.end=s]=n):(n=d[s])?(i=p[c])?(delete d[n.start],delete p[i.end],n===i?(n.ring.push(a),r(n.ring)):d[i.start]=p[n.end]={start:i.start,end:n.end,ring:i.ring.concat(n.ring)}):(delete d[n.start],n.ring.unshift(o),d[n.start=c]=n):d[c]=p[s]={start:c,end:s,ring:[o,a]}}var u,f,c,s,l,h,d=new Array,p=new Array;u=f=-1,s=t[0]>=n,Uh[s<<1].forEach(a);for(;++u<i-1;)c=s,s=t[u+1]>=n,Uh[c|s<<1].forEach(a);Uh[s<<0].forEach(a);for(;++f<o-1;){for(u=-1,s=t[f*i+i]>=n,l=t[f*i]>=n,Uh[s<<1|l<<2].forEach(a);++u<i-1;)c=s,s=t[f*i+i+u+1]>=n,h=l,l=t[f*i+u+1]>=n,Uh[c|s<<1|l<<2|h<<3].forEach(a);Uh[s|l<<3].forEach(a)}u=-1,l=t[f*i]>=n,Uh[l<<2].forEach(a);for(;++u<i-1;)h=l,l=t[f*i+u+1]>=n,Uh[l<<2|h<<3].forEach(a);Uh[l<<3].forEach(a)}(t,n,function(e){f(e,t,n),function(t){for(var n=0,e=t.length,r=t[e-1][1]*t[0][0]-t[e-1][0]*t[0][1];++n<e;)r+=t[n-1][1]*t[n][0]-t[n-1][0]*t[n][1];return r}(e)>0?r.push([e]):a.push(e)}),a.forEach(function(t){for(var n,e=0,i=r.length;e<i;++e)if(-1!==xe((n=r[e])[0],t))return void n.push(t)}),{type:"MultiPolygon",value:n,coordinates:r}}function e(t){return 2*t[0]+t[1]*(i+1)*4}function r(t,n,e){t.forEach(function(t){var r,a=t[0],u=t[1],f=0|a,c=0|u,s=n[c*i+f];a>0&&a<i&&f===a&&(r=n[c*i+f-1],t[0]=a+(e-r)/(s-r)-.5),u>0&&u<o&&c===u&&(r=n[(c-1)*i+f],t[1]=u+(e-r)/(s-r)-.5)})}var i=1,o=1,a=p,f=r;return t.contour=n,t.size=function(n){if(!arguments.length)return[i,o];var e=Math.ceil(n[0]),r=Math.ceil(n[1]);if(!(e>0&&r>0))throw new Error("invalid size");return i=e,o=r,t},t.thresholds=function(n){return arguments.length?(a="function"==typeof n?n:Array.isArray(n)?me(Dh.call(n)):me(n),t):a},t.smooth=function(n){return arguments.length?(f=n?r:we,t):f===r},t}function Ae(t,n,e){for(var r=t.width,i=t.height,o=1+(e<<1),a=0;a<i;++a)for(var u=0,f=0;u<r+e;++u)u<r&&(f+=t.data[u+a*r]),u>=e&&(u>=o&&(f-=t.data[u-o+a*r]),n.data[u-e+a*r]=f/Math.min(u+1,r-1+o-u,o))}function Te(t,n,e){for(var r=t.width,i=t.height,o=1+(e<<1),a=0;a<r;++a)for(var u=0,f=0;u<i+e;++u)u<i&&(f+=t.data[a+u*r]),u>=e&&(u>=o&&(f-=t.data[a+(u-o)*r]),n.data[a+(u-e)*r]=f/Math.min(u+1,i-1+o-u,o))}function Ne(t){return t[0]}function Se(t){return t[1]}function Ee(t){return new Function("d","return {"+t.map(function(t,n){return JSON.stringify(t)+": d["+n+"]"}).join(",")+"}")}function ke(t){function n(t,n){function e(){if(c)return Oh;if(s)return s=!1,qh;var n,e,r=u;if(t.charCodeAt(r)===Yh){for(;u++<a&&t.charCodeAt(u)!==Yh||t.charCodeAt(++u)===Yh;);return(n=u)>=a?c=!0:(e=t.charCodeAt(u++))===Bh?s=!0:e===Fh&&(s=!0,t.charCodeAt(u)===Bh&&++u),t.slice(r+1,n-1).replace(/""/g,'"')}for(;u<a;){if((e=t.charCodeAt(n=u++))===Bh)s=!0;else if(e===Fh)s=!0,t.charCodeAt(u)===Bh&&++u;else if(e!==o)continue;return t.slice(r,n)}return c=!0,t.slice(r,a)}var r,i=[],a=t.length,u=0,f=0,c=a<=0,s=!1;for(t.charCodeAt(a-1)===Bh&&--a,t.charCodeAt(a-1)===Fh&&--a;(r=e())!==Oh;){for(var l=[];r!==qh&&r!==Oh;)l.push(r),r=e();n&&null==(l=n(l,f++))||i.push(l)}return i}function e(n){return n.map(r).join(t)}function r(t){return null==t?"":i.test(t+="")?'"'+t.replace(/"/g,'""')+'"':t}var i=new RegExp('["'+t+"\n\r]"),o=t.charCodeAt(0);return{parse:function(t,e){var r,i,o=n(t,function(t,n){if(r)return r(t,n-1);i=t,r=e?function(t,n){var e=Ee(t);return function(r,i){return n(e(r),i,t)}}(t,e):Ee(t)});return o.columns=i||[],o},parseRows:n,format:function(n,e){return null==e&&(e=function(t){var n=Object.create(null),e=[];return t.forEach(function(t){for(var r in t)r in n||e.push(n[r]=r)}),e}(n)),[e.map(r).join(t)].concat(n.map(function(n){return e.map(function(t){return r(n[t])}).join(t)})).join("\n")},formatRows:function(t){return t.map(e).join("\n")}}}function Ce(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.blob()}function Pe(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.arrayBuffer()}function ze(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.text()}function Re(t,n){return fetch(t,n).then(ze)}function Le(t){return function(n,e,r){return 2===arguments.length&&"function"==typeof e&&(r=e,e=void 0),Re(n,e).then(function(n){return t(n,r)})}}function De(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.json()}function Ue(t){return function(n,e){return Re(n,e).then(function(n){return(new DOMParser).parseFromString(n,t)})}}function qe(t){return function(){return t}}function Oe(){return 1e-6*(Math.random()-.5)}function Ye(t,n,e,r){if(isNaN(n)||isNaN(e))return t;var i,o,a,u,f,c,s,l,h,d=t._root,p={data:r},v=t._x0,g=t._y0,y=t._x1,_=t._y1;if(!d)return t._root=p,t;for(;d.length;)if((c=n>=(o=(v+y)/2))?v=o:y=o,(s=e>=(a=(g+_)/2))?g=a:_=a,i=d,!(d=d[l=s<<1|c]))return i[l]=p,t;if(u=+t._x.call(null,d.data),f=+t._y.call(null,d.data),n===u&&e===f)return p.next=d,i?i[l]=p:t._root=p,t;do{i=i?i[l]=new Array(4):t._root=new Array(4),(c=n>=(o=(v+y)/2))?v=o:y=o,(s=e>=(a=(g+_)/2))?g=a:_=a}while((l=s<<1|c)==(h=(f>=a)<<1|u>=o));return i[h]=d,i[l]=p,t}function Be(t,n,e,r,i){this.node=t,this.x0=n,this.y0=e,this.x1=r,this.y1=i}function Fe(t){return t[0]}function Ie(t){return t[1]}function je(t,n,e){var r=new He(null==n?Fe:n,null==e?Ie:e,NaN,NaN,NaN,NaN);return null==t?r:r.addAll(t)}function He(t,n,e,r,i,o){this._x=t,this._y=n,this._x0=e,this._y0=r,this._x1=i,this._y1=o,this._root=void 0}function Xe(t){for(var n={data:t.data},e=n;t=t.next;)e=e.next={data:t.data};return n}function Ge(t){return t.x+t.vx}function Ve(t){return t.y+t.vy}function $e(t){return t.index}function We(t,n){var e=t.get(n);if(!e)throw new Error("missing: "+n);return e}function Ze(t){return t.x}function Qe(t){return t.y}function Je(t,n){if((e=(t=n?t.toExponential(n-1):t.toExponential()).indexOf("e"))<0)return null;var e,r=t.slice(0,e);return[r.length>1?r[0]+r.slice(2):r,+t.slice(e+1)]}function Ke(t){return(t=Je(Math.abs(t)))?t[1]:NaN}function tr(t){return new nr(t)}function nr(t){if(!(n=ad.exec(t)))throw new Error("invalid format: "+t);var n;this.fill=n[1]||" ",this.align=n[2]||">",this.sign=n[3]||"-",this.symbol=n[4]||"",this.zero=!!n[5],this.width=n[6]&&+n[6],this.comma=!!n[7],this.precision=n[8]&&+n[8].slice(1),this.trim=!!n[9],this.type=n[10]||""}function er(t,n){var e=Je(t,n);if(!e)return t+"";var r=e[0],i=e[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")}function rr(t){return t}function ir(t){function n(t){function n(t){var n,r,a,s=y,x=_;if("c"===g)x=b(t)+x,t="";else{var w=(t=+t)<0;if(t=b(Math.abs(t),p),v&&(t=function(t){t:for(var n,e=t.length,r=1,i=-1;r<e;++r)switch(t[r]){case".":i=n=r;break;case"0":0===i&&(i=r),n=r;break;default:if(i>0){if(!+t[r])break t;i=0}}return i>0?t.slice(0,i)+t.slice(n+1):t}(t)),w&&0==+t&&(w=!1),s=(w?"("===c?c:"-":"-"===c||"("===c?"":c)+s,x=("s"===g?sd[8+ud/3]:"")+x+(w&&"("===c?")":""),m)for(n=-1,r=t.length;++n<r;)if(48>(a=t.charCodeAt(n))||a>57){x=(46===a?i+t.slice(n+1):t.slice(n))+x,t=t.slice(0,n);break}}d&&!l&&(t=e(t,1/0));var M=s.length+t.length+x.length,A=M<h?new Array(h-M+1).join(u):"";switch(d&&l&&(t=e(A+t,A.length?h-x.length:1/0),A=""),f){case"<":t=s+t+x+A;break;case"=":t=s+A+t+x;break;case"^":t=A.slice(0,M=A.length>>1)+s+t+x+A.slice(M);break;default:t=A+s+t+x}return o(t)}var u=(t=tr(t)).fill,f=t.align,c=t.sign,s=t.symbol,l=t.zero,h=t.width,d=t.comma,p=t.precision,v=t.trim,g=t.type;"n"===g?(d=!0,g="g"):cd[g]||(null==p&&(p=12),v=!0,g="g"),(l||"0"===u&&"="===f)&&(l=!0,u="0",f="=");var y="$"===s?r[0]:"#"===s&&/[boxX]/.test(g)?"0"+g.toLowerCase():"",_="$"===s?r[1]:/[%p]/.test(g)?a:"",b=cd[g],m=/[defgprs%]/.test(g);return p=null==p?6:/[gprs]/.test(g)?Math.max(1,Math.min(21,p)):Math.max(0,Math.min(20,p)),n.toString=function(){return t+""},n}var e=t.grouping&&t.thousands?function(t,n){return function(e,r){for(var i=e.length,o=[],a=0,u=t[0],f=0;i>0&&u>0&&(f+u+1>r&&(u=Math.max(1,r-f)),o.push(e.substring(i-=u,i+u)),!((f+=u+1)>r));)u=t[a=(a+1)%t.length];return o.reverse().join(n)}}(t.grouping,t.thousands):rr,r=t.currency,i=t.decimal,o=t.numerals?function(t){return function(n){return n.replace(/[0-9]/g,function(n){return t[+n]})}}(t.numerals):rr,a=t.percent||"%";return{format:n,formatPrefix:function(t,e){var r=n((t=tr(t),t.type="f",t)),i=3*Math.max(-8,Math.min(8,Math.floor(Ke(e)/3))),o=Math.pow(10,-i),a=sd[8+i/3];return function(t){return r(o*t)+a}}}}function or(n){return fd=ir(n),t.format=fd.format,t.formatPrefix=fd.formatPrefix,fd}function ar(t){return Math.max(0,-Ke(Math.abs(t)))}function ur(t,n){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(Ke(n)/3)))-Ke(Math.abs(t)))}function fr(t,n){return t=Math.abs(t),n=Math.abs(n)-t,Math.max(0,Ke(n)-Ke(t))+1}function cr(){return new sr}function sr(){this.reset()}function lr(t,n,e){var r=t.s=n+e,i=r-n,o=r-i;t.t=n-o+(e-i)}function hr(t){return t>1?0:t<-1?Xd:Math.acos(t)}function dr(t){return t>1?Gd:t<-1?-Gd:Math.asin(t)}function pr(t){return(t=op(t/2))*t}function vr(){}function gr(t,n){t&&sp.hasOwnProperty(t.type)&&sp[t.type](t,n)}function yr(t,n,e){var r,i=-1,o=t.length-e;for(n.lineStart();++i<o;)r=t[i],n.point(r[0],r[1],r[2]);n.lineEnd()}function _r(t,n){var e=-1,r=t.length;for(n.polygonStart();++e<r;)yr(t[e],n,1);n.polygonEnd()}function br(t,n){t&&cp.hasOwnProperty(t.type)?cp[t.type](t,n):gr(t,n)}function mr(){dp.point=wr}function xr(){Mr(ld,hd)}function wr(t,n){dp.point=Mr,ld=t,hd=n,dd=t*=Zd,pd=tp(n=(n*=Zd)/2+Vd),vd=op(n)}function Mr(t,n){n=(n*=Zd)/2+Vd;var e=(t*=Zd)-dd,r=e>=0?1:-1,i=r*e,o=tp(n),a=op(n),u=vd*a,f=pd*o+u*tp(i),c=u*r*op(i);lp.add(Kd(c,f)),dd=t,pd=o,vd=a}function Ar(t){return[Kd(t[1],t[0]),dr(t[2])]}function Tr(t){var n=t[0],e=t[1],r=tp(e);return[r*tp(n),r*op(n),op(e)]}function Nr(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]}function Sr(t,n){return[t[1]*n[2]-t[2]*n[1],t[2]*n[0]-t[0]*n[2],t[0]*n[1]-t[1]*n[0]]}function Er(t,n){t[0]+=n[0],t[1]+=n[1],t[2]+=n[2]}function kr(t,n){return[t[0]*n,t[1]*n,t[2]*n]}function Cr(t){var n=up(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=n,t[1]/=n,t[2]/=n}function Pr(t,n){Ad.push(Td=[gd=t,_d=t]),n<yd&&(yd=n),n>bd&&(bd=n)}function zr(t,n){var e=Tr([t*Zd,n*Zd]);if(Md){var r=Sr(Md,e),i=Sr([r[1],-r[0],0],r);Cr(i),i=Ar(i);var o,a=t-md,u=a>0?1:-1,f=i[0]*Wd*u,c=Qd(a)>180;c^(u*md<f&&f<u*t)?(o=i[1]*Wd)>bd&&(bd=o):(f=(f+360)%360-180,c^(u*md<f&&f<u*t)?(o=-i[1]*Wd)<yd&&(yd=o):(n<yd&&(yd=n),n>bd&&(bd=n))),c?t<md?Or(gd,t)>Or(gd,_d)&&(_d=t):Or(t,_d)>Or(gd,_d)&&(gd=t):_d>=gd?(t<gd&&(gd=t),t>_d&&(_d=t)):t>md?Or(gd,t)>Or(gd,_d)&&(_d=t):Or(t,_d)>Or(gd,_d)&&(gd=t)}else Ad.push(Td=[gd=t,_d=t]);n<yd&&(yd=n),n>bd&&(bd=n),Md=e,md=t}function Rr(){vp.point=zr}function Lr(){Td[0]=gd,Td[1]=_d,vp.point=Pr,Md=null}function Dr(t,n){if(Md){var e=t-md;pp.add(Qd(e)>180?e+(e>0?360:-360):e)}else xd=t,wd=n;dp.point(t,n),zr(t,n)}function Ur(){dp.lineStart()}function qr(){Dr(xd,wd),dp.lineEnd(),Qd(pp)>jd&&(gd=-(_d=180)),Td[0]=gd,Td[1]=_d,Md=null}function Or(t,n){return(n-=t)<0?n+360:n}function Yr(t,n){return t[0]-n[0]}function Br(t,n){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:n<t[0]||t[1]<n}function Fr(t,n){t*=Zd;var e=tp(n*=Zd);Ir(e*tp(t),e*op(t),op(n))}function Ir(t,n,e){Ed+=(t-Ed)/++Nd,kd+=(n-kd)/Nd,Cd+=(e-Cd)/Nd}function jr(){gp.point=Hr}function Hr(t,n){t*=Zd;var e=tp(n*=Zd);Yd=e*tp(t),Bd=e*op(t),Fd=op(n),gp.point=Xr,Ir(Yd,Bd,Fd)}function Xr(t,n){t*=Zd;var e=tp(n*=Zd),r=e*tp(t),i=e*op(t),o=op(n),a=Kd(up((a=Bd*o-Fd*i)*a+(a=Fd*r-Yd*o)*a+(a=Yd*i-Bd*r)*a),Yd*r+Bd*i+Fd*o);Sd+=a,Pd+=a*(Yd+(Yd=r)),zd+=a*(Bd+(Bd=i)),Rd+=a*(Fd+(Fd=o)),Ir(Yd,Bd,Fd)}function Gr(){gp.point=Fr}function Vr(){gp.point=Wr}function $r(){Zr(qd,Od),gp.point=Fr}function Wr(t,n){qd=t,Od=n,t*=Zd,n*=Zd,gp.point=Zr;var e=tp(n);Yd=e*tp(t),Bd=e*op(t),Fd=op(n),Ir(Yd,Bd,Fd)}function Zr(t,n){t*=Zd;var e=tp(n*=Zd),r=e*tp(t),i=e*op(t),o=op(n),a=Bd*o-Fd*i,u=Fd*r-Yd*o,f=Yd*i-Bd*r,c=up(a*a+u*u+f*f),s=dr(c),l=c&&-s/c;Ld+=l*a,Dd+=l*u,Ud+=l*f,Sd+=s,Pd+=s*(Yd+(Yd=r)),zd+=s*(Bd+(Bd=i)),Rd+=s*(Fd+(Fd=o)),Ir(Yd,Bd,Fd)}function Qr(t){return function(){return t}}function Jr(t,n){function e(e,r){return e=t(e,r),n(e[0],e[1])}return t.invert&&n.invert&&(e.invert=function(e,r){return(e=n.invert(e,r))&&t.invert(e[0],e[1])}),e}function Kr(t,n){return[t>Xd?t-$d:t<-Xd?t+$d:t,n]}function ti(t,n,e){return(t%=$d)?n||e?Jr(ei(t),ri(n,e)):ei(t):n||e?ri(n,e):Kr}function ni(t){return function(n,e){return n+=t,[n>Xd?n-$d:n<-Xd?n+$d:n,e]}}function ei(t){var n=ni(t);return n.invert=ni(-t),n}function ri(t,n){function e(t,n){var e=tp(n),u=tp(t)*e,f=op(t)*e,c=op(n),s=c*r+u*i;return[Kd(f*o-s*a,u*r-c*i),dr(s*o+f*a)]}var r=tp(t),i=op(t),o=tp(n),a=op(n);return e.invert=function(t,n){var e=tp(n),u=tp(t)*e,f=op(t)*e,c=op(n),s=c*o-f*a;return[Kd(f*o+c*a,u*r+s*i),dr(s*r-u*i)]},e}function ii(t){function n(n){return n=t(n[0]*Zd,n[1]*Zd),n[0]*=Wd,n[1]*=Wd,n}return t=ti(t[0]*Zd,t[1]*Zd,t.length>2?t[2]*Zd:0),n.invert=function(n){return n=t.invert(n[0]*Zd,n[1]*Zd),n[0]*=Wd,n[1]*=Wd,n},n}function oi(t,n,e,r,i,o){if(e){var a=tp(n),u=op(n),f=r*e;null==i?(i=n+r*$d,o=n-f/2):(i=ai(a,i),o=ai(a,o),(r>0?i<o:i>o)&&(i+=r*$d));for(var c,s=i;r>0?s>o:s<o;s-=f)c=Ar([a,-u*tp(s),-u*op(s)]),t.point(c[0],c[1])}}function ai(t,n){(n=Tr(n))[0]-=t,Cr(n);var e=hr(-n[1]);return((-n[2]<0?-e:e)+$d-jd)%$d}function ui(){var t,n=[];return{point:function(n,e){t.push([n,e])},lineStart:function(){n.push(t=[])},lineEnd:vr,rejoin:function(){n.length>1&&n.push(n.pop().concat(n.shift()))},result:function(){var e=n;return n=[],t=null,e}}}function fi(t,n){return Qd(t[0]-n[0])<jd&&Qd(t[1]-n[1])<jd}function ci(t,n,e,r){this.x=t,this.z=n,this.o=e,this.e=r,this.v=!1,this.n=this.p=null}function si(t,n,e,r,i){var o,a,u=[],f=[];if(t.forEach(function(t){if(!((n=t.length-1)<=0)){var n,e,r=t[0],a=t[n];if(fi(r,a)){for(i.lineStart(),o=0;o<n;++o)i.point((r=t[o])[0],r[1]);i.lineEnd()}else u.push(e=new ci(r,t,null,!0)),f.push(e.o=new ci(r,null,e,!1)),u.push(e=new ci(a,t,null,!1)),f.push(e.o=new ci(a,null,e,!0))}}),u.length){for(f.sort(n),li(u),li(f),o=0,a=f.length;o<a;++o)f[o].e=e=!e;for(var c,s,l=u[0];;){for(var h=l,d=!0;h.v;)if((h=h.n)===l)return;c=h.z,i.lineStart();do{if(h.v=h.o.v=!0,h.e){if(d)for(o=0,a=c.length;o<a;++o)i.point((s=c[o])[0],s[1]);else r(h.x,h.n.x,1,i);h=h.n}else{if(d)for(c=h.p.z,o=c.length-1;o>=0;--o)i.point((s=c[o])[0],s[1]);else r(h.x,h.p.x,-1,i);h=h.p}c=(h=h.o).z,d=!d}while(!h.v);i.lineEnd()}}}function li(t){if(n=t.length){for(var n,e,r=0,i=t[0];++r<n;)i.n=e=t[r],e.p=i,i=e;i.n=e=t[0],e.p=i}}function hi(t,n){var e=n[0],r=n[1],i=op(r),o=[op(e),-tp(e),0],a=0,u=0;Ep.reset(),1===i?r=Gd+jd:-1===i&&(r=-Gd-jd);for(var f=0,c=t.length;f<c;++f)if(l=(s=t[f]).length)for(var s,l,h=s[l-1],d=h[0],p=h[1]/2+Vd,v=op(p),g=tp(p),y=0;y<l;++y,d=b,v=x,g=w,h=_){var _=s[y],b=_[0],m=_[1]/2+Vd,x=op(m),w=tp(m),M=b-d,A=M>=0?1:-1,T=A*M,N=T>Xd,S=v*x;if(Ep.add(Kd(S*A*op(T),g*w+S*tp(T))),a+=N?M+A*$d:M,N^d>=e^b>=e){var E=Sr(Tr(h),Tr(_));Cr(E);var k=Sr(o,E);Cr(k);var C=(N^M>=0?-1:1)*dr(k[2]);(r>C||r===C&&(E[0]||E[1]))&&(u+=N^M>=0?1:-1)}}return(a<-jd||a<jd&&Ep<-jd)^1&u}function di(t,n,e,r){return function(i){function o(n,e){t(n,e)&&i.point(n,e)}function a(t,n){v.point(t,n)}function u(){m.point=a,v.lineStart()}function f(){m.point=o,v.lineEnd()}function c(t,n){p.push([t,n]),_.point(t,n)}function s(){_.lineStart(),p=[]}function l(){c(p[0][0],p[0][1]),_.lineEnd();var t,n,e,r,o=_.clean(),a=g.result(),u=a.length;if(p.pop(),h.push(p),p=null,u)if(1&o){if(e=a[0],(n=e.length-1)>0){for(b||(i.polygonStart(),b=!0),i.lineStart(),t=0;t<n;++t)i.point((r=e[t])[0],r[1]);i.lineEnd()}}else u>1&&2&o&&a.push(a.pop().concat(a.shift())),d.push(a.filter(pi))}var h,d,p,v=n(i),g=ui(),_=n(g),b=!1,m={point:o,lineStart:u,lineEnd:f,polygonStart:function(){m.point=c,m.lineStart=s,m.lineEnd=l,d=[],h=[]},polygonEnd:function(){m.point=o,m.lineStart=u,m.lineEnd=f,d=y(d);var t=hi(h,r);d.length?(b||(i.polygonStart(),b=!0),si(d,vi,t,e,i)):t&&(b||(i.polygonStart(),b=!0),i.lineStart(),e(null,null,1,i),i.lineEnd()),b&&(i.polygonEnd(),b=!1),d=h=null},sphere:function(){i.polygonStart(),i.lineStart(),e(null,null,1,i),i.lineEnd(),i.polygonEnd()}};return m}}function pi(t){return t.length>1}function vi(t,n){return((t=t.x)[0]<0?t[1]-Gd-jd:Gd-t[1])-((n=n.x)[0]<0?n[1]-Gd-jd:Gd-n[1])}function gi(t){function n(t,n){return tp(t)*tp(n)>i}function e(t,n,e){var r=[1,0,0],o=Sr(Tr(t),Tr(n)),a=Nr(o,o),u=o[0],f=a-u*u;if(!f)return!e&&t;var c=i*a/f,s=-i*u/f,l=Sr(r,o),h=kr(r,c);Er(h,kr(o,s));var d=l,p=Nr(h,d),v=Nr(d,d),g=p*p-v*(Nr(h,h)-1);if(!(g<0)){var y=up(g),_=kr(d,(-p-y)/v);if(Er(_,h),_=Ar(_),!e)return _;var b,m=t[0],x=n[0],w=t[1],M=n[1];x<m&&(b=m,m=x,x=b);var A=x-m,T=Qd(A-Xd)<jd;if(!T&&M<w&&(b=w,w=M,M=b),T||A<jd?T?w+M>0^_[1]<(Qd(_[0]-m)<jd?w:M):w<=_[1]&&_[1]<=M:A>Xd^(m<=_[0]&&_[0]<=x)){var N=kr(d,(-p+y)/v);return Er(N,h),[_,Ar(N)]}}}function r(n,e){var r=a?t:Xd-t,i=0;return n<-r?i|=1:n>r&&(i|=2),e<-r?i|=4:e>r&&(i|=8),i}var i=tp(t),o=6*Zd,a=i>0,u=Qd(i)>jd;return di(n,function(t){var i,o,f,c,s;return{lineStart:function(){c=f=!1,s=1},point:function(l,h){var d,p=[l,h],v=n(l,h),g=a?v?0:r(l,h):v?r(l+(l<0?Xd:-Xd),h):0;if(!i&&(c=f=v)&&t.lineStart(),v!==f&&(!(d=e(i,p))||fi(i,d)||fi(p,d))&&(p[0]+=jd,p[1]+=jd,v=n(p[0],p[1])),v!==f)s=0,v?(t.lineStart(),d=e(p,i),t.point(d[0],d[1])):(d=e(i,p),t.point(d[0],d[1]),t.lineEnd()),i=d;else if(u&&i&&a^v){var y;g&o||!(y=e(p,i,!0))||(s=0,a?(t.lineStart(),t.point(y[0][0],y[0][1]),t.point(y[1][0],y[1][1]),t.lineEnd()):(t.point(y[1][0],y[1][1]),t.lineEnd(),t.lineStart(),t.point(y[0][0],y[0][1])))}!v||i&&fi(i,p)||t.point(p[0],p[1]),i=p,f=v,o=g},lineEnd:function(){f&&t.lineEnd(),i=null},clean:function(){return s|(c&&f)<<1}}},function(n,e,r,i){oi(i,t,o,r,n,e)},a?[0,-t]:[-Xd,t-Xd])}function yi(t,n,e,r){function i(i,o){return t<=i&&i<=e&&n<=o&&o<=r}function o(i,o,u,c){var s=0,l=0;if(null==i||(s=a(i,u))!==(l=a(o,u))||f(i,o)<0^u>0)do{c.point(0===s||3===s?t:e,s>1?r:n)}while((s=(s+u+4)%4)!==l);else c.point(o[0],o[1])}function a(r,i){return Qd(r[0]-t)<jd?i>0?0:3:Qd(r[0]-e)<jd?i>0?2:1:Qd(r[1]-n)<jd?i>0?1:0:i>0?3:2}function u(t,n){return f(t.x,n.x)}function f(t,n){var e=a(t,1),r=a(n,1);return e!==r?e-r:0===e?n[1]-t[1]:1===e?t[0]-n[0]:2===e?t[1]-n[1]:n[0]-t[0]}return function(a){function f(t,n){i(t,n)&&w.point(t,n)}function c(o,a){var u=i(o,a);if(l&&h.push([o,a]),m)d=o,p=a,v=u,m=!1,u&&(w.lineStart(),w.point(o,a));else if(u&&b)w.point(o,a);else{var f=[g=Math.max(Pp,Math.min(Cp,g)),_=Math.max(Pp,Math.min(Cp,_))],c=[o=Math.max(Pp,Math.min(Cp,o)),a=Math.max(Pp,Math.min(Cp,a))];!function(t,n,e,r,i,o){var a,u=t[0],f=t[1],c=0,s=1,l=n[0]-u,h=n[1]-f;if(a=e-u,l||!(a>0)){if(a/=l,l<0){if(a<c)return;a<s&&(s=a)}else if(l>0){if(a>s)return;a>c&&(c=a)}if(a=i-u,l||!(a<0)){if(a/=l,l<0){if(a>s)return;a>c&&(c=a)}else if(l>0){if(a<c)return;a<s&&(s=a)}if(a=r-f,h||!(a>0)){if(a/=h,h<0){if(a<c)return;a<s&&(s=a)}else if(h>0){if(a>s)return;a>c&&(c=a)}if(a=o-f,h||!(a<0)){if(a/=h,h<0){if(a>s)return;a>c&&(c=a)}else if(h>0){if(a<c)return;a<s&&(s=a)}return c>0&&(t[0]=u+c*l,t[1]=f+c*h),s<1&&(n[0]=u+s*l,n[1]=f+s*h),!0}}}}}(f,c,t,n,e,r)?u&&(w.lineStart(),w.point(o,a),x=!1):(b||(w.lineStart(),w.point(f[0],f[1])),w.point(c[0],c[1]),u||w.lineEnd(),x=!1)}g=o,_=a,b=u}var s,l,h,d,p,v,g,_,b,m,x,w=a,M=ui(),A={point:f,lineStart:function(){A.point=c,l&&l.push(h=[]),m=!0,b=!1,g=_=NaN},lineEnd:function(){s&&(c(d,p),v&&b&&M.rejoin(),s.push(M.result())),A.point=f,b&&w.lineEnd()},polygonStart:function(){w=M,s=[],l=[],x=!0},polygonEnd:function(){var n=function(){for(var n=0,e=0,i=l.length;e<i;++e)for(var o,a,u=l[e],f=1,c=u.length,s=u[0],h=s[0],d=s[1];f<c;++f)o=h,a=d,h=(s=u[f])[0],d=s[1],a<=r?d>r&&(h-o)*(r-a)>(d-a)*(t-o)&&++n:d<=r&&(h-o)*(r-a)<(d-a)*(t-o)&&--n;return n}(),e=x&&n,i=(s=y(s)).length;(e||i)&&(a.polygonStart(),e&&(a.lineStart(),o(null,null,1,a),a.lineEnd()),i&&si(s,u,n,o,a),a.polygonEnd()),w=a,s=l=h=null}};return A}}function _i(){Rp.point=Rp.lineEnd=vr}function bi(t,n){yp=t*=Zd,_p=op(n*=Zd),bp=tp(n),Rp.point=mi}function mi(t,n){t*=Zd;var e=op(n*=Zd),r=tp(n),i=Qd(t-yp),o=tp(i),a=r*op(i),u=bp*e-_p*r*o,f=_p*e+bp*r*o;zp.add(Kd(up(a*a+u*u),f)),yp=t,_p=e,bp=r}function xi(t){return zp.reset(),br(t,Rp),+zp}function wi(t,n){return Lp[0]=t,Lp[1]=n,xi(Dp)}function Mi(t,n){return!(!t||!qp.hasOwnProperty(t.type))&&qp[t.type](t,n)}function Ai(t,n){return 0===wi(t,n)}function Ti(t,n){var e=wi(t[0],t[1]);return wi(t[0],n)+wi(n,t[1])<=e+jd}function Ni(t,n){return!!hi(t.map(Si),Ei(n))}function Si(t){return(t=t.map(Ei)).pop(),t}function Ei(t){return[t[0]*Zd,t[1]*Zd]}function ki(t,n,e){var r=s(t,n-jd,e).concat(n);return function(t){return r.map(function(n){return[t,n]})}}function Ci(t,n,e){var r=s(t,n-jd,e).concat(n);return function(t){return r.map(function(n){return[n,t]})}}function Pi(){function t(){return{type:"MultiLineString",coordinates:n()}}function n(){return s(np(o/y)*y,i,y).map(d).concat(s(np(c/_)*_,f,_).map(p)).concat(s(np(r/v)*v,e,v).filter(function(t){return Qd(t%y)>jd}).map(l)).concat(s(np(u/g)*g,a,g).filter(function(t){return Qd(t%_)>jd}).map(h))}var e,r,i,o,a,u,f,c,l,h,d,p,v=10,g=v,y=90,_=360,b=2.5;return t.lines=function(){return n().map(function(t){return{type:"LineString",coordinates:t}})},t.outline=function(){return{type:"Polygon",coordinates:[d(o).concat(p(f).slice(1),d(i).reverse().slice(1),p(c).reverse().slice(1))]}},t.extent=function(n){return arguments.length?t.extentMajor(n).extentMinor(n):t.extentMinor()},t.extentMajor=function(n){return arguments.length?(o=+n[0][0],i=+n[1][0],c=+n[0][1],f=+n[1][1],o>i&&(n=o,o=i,i=n),c>f&&(n=c,c=f,f=n),t.precision(b)):[[o,c],[i,f]]},t.extentMinor=function(n){return arguments.length?(r=+n[0][0],e=+n[1][0],u=+n[0][1],a=+n[1][1],r>e&&(n=r,r=e,e=n),u>a&&(n=u,u=a,a=n),t.precision(b)):[[r,u],[e,a]]},t.step=function(n){return arguments.length?t.stepMajor(n).stepMinor(n):t.stepMinor()},t.stepMajor=function(n){return arguments.length?(y=+n[0],_=+n[1],t):[y,_]},t.stepMinor=function(n){return arguments.length?(v=+n[0],g=+n[1],t):[v,g]},t.precision=function(n){return arguments.length?(b=+n,l=ki(u,a,90),h=Ci(r,e,b),d=ki(c,f,90),p=Ci(o,i,b),t):b},t.extentMajor([[-180,-90+jd],[180,90-jd]]).extentMinor([[-180,-80-jd],[180,80+jd]])}function zi(t){return t}function Ri(){Bp.point=Li}function Li(t,n){Bp.point=Di,mp=wp=t,xp=Mp=n}function Di(t,n){Yp.add(Mp*t-wp*n),wp=t,Mp=n}function Ui(){Di(mp,xp)}function qi(t,n){Gp+=t,Vp+=n,++$p}function Oi(){nv.point=Yi}function Yi(t,n){nv.point=Bi,qi(Np=t,Sp=n)}function Bi(t,n){var e=t-Np,r=n-Sp,i=up(e*e+r*r);Wp+=i*(Np+t)/2,Zp+=i*(Sp+n)/2,Qp+=i,qi(Np=t,Sp=n)}function Fi(){nv.point=qi}function Ii(){nv.point=Hi}function ji(){Xi(Ap,Tp)}function Hi(t,n){nv.point=Xi,qi(Ap=Np=t,Tp=Sp=n)}function Xi(t,n){var e=t-Np,r=n-Sp,i=up(e*e+r*r);Wp+=i*(Np+t)/2,Zp+=i*(Sp+n)/2,Qp+=i,Jp+=(i=Sp*t-Np*n)*(Np+t),Kp+=i*(Sp+n),tv+=3*i,qi(Np=t,Sp=n)}function Gi(t){this._context=t}function Vi(t,n){fv.point=$i,rv=ov=t,iv=av=n}function $i(t,n){ov-=t,av-=n,uv.add(up(ov*ov+av*av)),ov=t,av=n}function Wi(){this._string=[]}function Zi(t){return"m0,"+t+"a"+t+","+t+" 0 1,1 0,"+-2*t+"a"+t+","+t+" 0 1,1 0,"+2*t+"z"}function Qi(t){return function(n){var e=new Ji;for(var r in t)e[r]=t[r];return e.stream=n,e}}function Ji(){}function Ki(t,n,e){var r=t.clipExtent&&t.clipExtent();return t.scale(150).translate([0,0]),null!=r&&t.clipExtent(null),br(e,t.stream(Xp)),n(Xp.result()),null!=r&&t.clipExtent(r),t}function to(t,n,e){return Ki(t,function(e){var r=n[1][0]-n[0][0],i=n[1][1]-n[0][1],o=Math.min(r/(e[1][0]-e[0][0]),i/(e[1][1]-e[0][1])),a=+n[0][0]+(r-o*(e[1][0]+e[0][0]))/2,u=+n[0][1]+(i-o*(e[1][1]+e[0][1]))/2;t.scale(150*o).translate([a,u])},e)}function no(t,n,e){return to(t,[[0,0],n],e)}function eo(t,n,e){return Ki(t,function(e){var r=+n,i=r/(e[1][0]-e[0][0]),o=(r-i*(e[1][0]+e[0][0]))/2,a=-i*e[0][1];t.scale(150*i).translate([o,a])},e)}function ro(t,n,e){return Ki(t,function(e){var r=+n,i=r/(e[1][1]-e[0][1]),o=-i*e[0][0],a=(r-i*(e[1][1]+e[0][1]))/2;t.scale(150*i).translate([o,a])},e)}function io(t,n){return+n?function(t,n){function e(r,i,o,a,u,f,c,s,l,h,d,p,v,g){var y=c-r,_=s-i,b=y*y+_*_;if(b>4*n&&v--){var m=a+h,x=u+d,w=f+p,M=up(m*m+x*x+w*w),A=dr(w/=M),T=Qd(Qd(w)-1)<jd||Qd(o-l)<jd?(o+l)/2:Kd(x,m),N=t(T,A),S=N[0],E=N[1],k=S-r,C=E-i,P=_*k-y*C;(P*P/b>n||Qd((y*k+_*C)/b-.5)>.3||a*h+u*d+f*p<sv)&&(e(r,i,o,a,u,f,S,E,T,m/=M,x/=M,w,v,g),g.point(S,E),e(S,E,T,m,x,w,c,s,l,h,d,p,v,g))}}return function(n){function r(e,r){e=t(e,r),n.point(e[0],e[1])}function i(){y=NaN,w.point=o,n.lineStart()}function o(r,i){var o=Tr([r,i]),a=t(r,i);e(y,_,g,b,m,x,y=a[0],_=a[1],g=r,b=o[0],m=o[1],x=o[2],cv,n),n.point(y,_)}function a(){w.point=r,n.lineEnd()}function u(){i(),w.point=f,w.lineEnd=c}function f(t,n){o(s=t,n),l=y,h=_,d=b,p=m,v=x,w.point=o}function c(){e(y,_,g,b,m,x,l,h,s,d,p,v,cv,n),w.lineEnd=a,a()}var s,l,h,d,p,v,g,y,_,b,m,x,w={point:r,lineStart:i,lineEnd:a,polygonStart:function(){n.polygonStart(),w.lineStart=u},polygonEnd:function(){n.polygonEnd(),w.lineStart=i}};return w}}(t,n):function(t){return Qi({point:function(n,e){n=t(n,e),this.stream.point(n[0],n[1])}})}(t)}function oo(t,n,e,r){function i(t,r){return[u*t-f*r+n,e-f*t-u*r]}var o=tp(r),a=op(r),u=o*t,f=a*t,c=o/t,s=a/t,l=(a*e-o*n)/t,h=(a*n+o*e)/t;return i.invert=function(t,n){return[c*t-s*n+l,h-s*t-c*n]},i}function ao(t){return uo(function(){return t})()}function uo(t){function n(t){return l(t[0]*Zd,t[1]*Zd)}function e(){var t=oo(p,0,0,w).apply(null,i(y,_)),n=(w?oo:function(t,n,e){function r(r,i){return[n+t*r,e-t*i]}return r.invert=function(r,i){return[(r-n)/t,(e-i)/t]},r})(p,v-t[0],g-t[1],w);return o=ti(b,m,x),s=Jr(i,n),l=Jr(o,s),c=io(s,S),r()}function r(){return h=d=null,n}var i,o,a,u,f,c,s,l,h,d,p=150,v=480,g=250,y=0,_=0,b=0,m=0,x=0,w=0,M=null,A=kp,T=null,N=zi,S=.5;return n.stream=function(t){return h&&d===t?h:h=lv(function(t){return Qi({point:function(n,e){var r=t(n,e);return this.stream.point(r[0],r[1])}})}(o)(A(c(N(d=t)))))},n.preclip=function(t){return arguments.length?(A=t,M=void 0,r()):A},n.postclip=function(t){return arguments.length?(N=t,T=a=u=f=null,r()):N},n.clipAngle=function(t){return arguments.length?(A=+t?gi(M=t*Zd):(M=null,kp),r()):M*Wd},n.clipExtent=function(t){return arguments.length?(N=null==t?(T=a=u=f=null,zi):yi(T=+t[0][0],a=+t[0][1],u=+t[1][0],f=+t[1][1]),r()):null==T?null:[[T,a],[u,f]]},n.scale=function(t){return arguments.length?(p=+t,e()):p},n.translate=function(t){return arguments.length?(v=+t[0],g=+t[1],e()):[v,g]},n.center=function(t){return arguments.length?(y=t[0]%360*Zd,_=t[1]%360*Zd,e()):[y*Wd,_*Wd]},n.rotate=function(t){return arguments.length?(b=t[0]%360*Zd,m=t[1]%360*Zd,x=t.length>2?t[2]%360*Zd:0,e()):[b*Wd,m*Wd,x*Wd]},n.angle=function(t){return arguments.length?(w=t%360*Zd,e()):w*Wd},n.precision=function(t){return arguments.length?(c=io(s,S=t*t),r()):up(S)},n.fitExtent=function(t,e){return to(n,t,e)},n.fitSize=function(t,e){return no(n,t,e)},n.fitWidth=function(t,e){return eo(n,t,e)},n.fitHeight=function(t,e){return ro(n,t,e)},function(){return i=t.apply(this,arguments),n.invert=i.invert&&function(t){return(t=l.invert(t[0],t[1]))&&[t[0]*Wd,t[1]*Wd]},e()}}function fo(t){var n=0,e=Xd/3,r=uo(t),i=r(n,e);return i.parallels=function(t){return arguments.length?r(n=t[0]*Zd,e=t[1]*Zd):[n*Wd,e*Wd]},i}function co(t,n){function e(t,n){var e=up(o-2*i*op(n))/i;return[e*op(t*=i),a-e*tp(t)]}var r=op(t),i=(r+op(n))/2;if(Qd(i)<jd)return function(t){function n(t,n){return[t*e,op(n)/e]}var e=tp(t);return n.invert=function(t,n){return[t/e,dr(n*e)]},n}(t);var o=1+r*(2*i-r),a=up(o)/i;return e.invert=function(t,n){var e=a-n;return[Kd(t,Qd(e))/i*ap(e),dr((o-(t*t+e*e)*i*i)/(2*i))]},e}function so(){return fo(co).scale(155.424).center([0,33.6442])}function lo(){return so().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])}function ho(t){return function(n,e){var r=tp(n),i=tp(e),o=t(r*i);return[o*i*op(n),o*op(e)]}}function po(t){return function(n,e){var r=up(n*n+e*e),i=t(r),o=op(i),a=tp(i);return[Kd(n*o,r*a),dr(r&&e*o/r)]}}function vo(t,n){return[t,rp(fp((Gd+n)/2))]}function go(t){function n(){var n=Xd*u(),a=o(ii(o.rotate()).invert([0,0]));return c(null==s?[[a[0]-n,a[1]-n],[a[0]+n,a[1]+n]]:t===vo?[[Math.max(a[0]-n,s),e],[Math.min(a[0]+n,r),i]]:[[s,Math.max(a[1]-n,e)],[r,Math.min(a[1]+n,i)]])}var e,r,i,o=ao(t),a=o.center,u=o.scale,f=o.translate,c=o.clipExtent,s=null;return o.scale=function(t){return arguments.length?(u(t),n()):u()},o.translate=function(t){return arguments.length?(f(t),n()):f()},o.center=function(t){return arguments.length?(a(t),n()):a()},o.clipExtent=function(t){return arguments.length?(null==t?s=e=r=i=null:(s=+t[0][0],e=+t[0][1],r=+t[1][0],i=+t[1][1]),n()):null==s?null:[[s,e],[r,i]]},n()}function yo(t){return fp((Gd+t)/2)}function _o(t,n){function e(t,n){o>0?n<-Gd+jd&&(n=-Gd+jd):n>Gd-jd&&(n=Gd-jd);var e=o/ip(yo(n),i);return[e*op(i*t),o-e*tp(i*t)]}var r=tp(t),i=t===n?op(t):rp(r/tp(n))/rp(yo(n)/yo(t)),o=r*ip(yo(t),i)/i;return i?(e.invert=function(t,n){var e=o-n,r=ap(i)*up(t*t+e*e);return[Kd(t,Qd(e))/i*ap(e),2*Jd(ip(o/r,1/i))-Gd]},e):vo}function bo(t,n){return[t,n]}function mo(t,n){function e(t,n){var e=o-n,r=i*t;return[e*op(r),o-e*tp(r)]}var r=tp(t),i=t===n?op(t):(r-tp(n))/(n-t),o=r/i+t;return Qd(i)<jd?bo:(e.invert=function(t,n){var e=o-n;return[Kd(t,Qd(e))/i*ap(e),o-ap(i)*up(t*t+e*e)]},e)}function xo(t,n){var e=tp(n),r=tp(t)*e;return[e*op(t)/r,op(n)/r]}function wo(t,n,e,r){return 1===t&&1===n&&0===e&&0===r?zi:Qi({point:function(i,o){this.stream.point(i*t+e,o*n+r)}})}function Mo(t,n){var e=n*n,r=e*e;return[t*(.8707-.131979*e+r*(r*(.003971*e-.001529*r)-.013791)),n*(1.007226+e*(.015085+r*(.028874*e-.044475-.005916*r)))]}function Ao(t,n){return[tp(n)*op(t),op(n)]}function To(t,n){var e=tp(n),r=1+tp(t)*e;return[e*op(t)/r,op(n)/r]}function No(t,n){return[rp(fp((Gd+n)/2)),-t]}function So(t,n){return t.parent===n.parent?1:2}function Eo(t,n){return t+n.x}function ko(t,n){return Math.max(t,n.y)}function Co(t){var n=0,e=t.children,r=e&&e.length;if(r)for(;--r>=0;)n+=e[r].value;else n=1;t.value=n}function Po(t,n){var e,r,i,o,a,u=new Do(t),f=+t.value&&(u.value=t.value),c=[u];for(null==n&&(n=zo);e=c.pop();)if(f&&(e.value=+e.data.value),(i=n(e.data))&&(a=i.length))for(e.children=new Array(a),o=a-1;o>=0;--o)c.push(r=e.children[o]=new Do(i[o])),r.parent=e,r.depth=e.depth+1;return u.eachBefore(Lo)}function zo(t){return t.children}function Ro(t){t.data=t.data.data}function Lo(t){var n=0;do{t.height=n}while((t=t.parent)&&t.height<++n)}function Do(t){this.data=t,this.depth=this.height=0,this.parent=null}function Uo(t){for(var n,e,r=0,i=(t=function(t){for(var n,e,r=t.length;r;)e=Math.random()*r--|0,n=t[r],t[r]=t[e],t[e]=n;return t}(pv.call(t))).length,o=[];r<i;)n=t[r],e&&Oo(e,n)?++r:(e=function(t){switch(t.length){case 1:return function(t){return{x:t.x,y:t.y,r:t.r}}(t[0]);case 2:return Bo(t[0],t[1]);case 3:return Fo(t[0],t[1],t[2])}}(o=function(t,n){var e,r;if(Yo(n,t))return[n];for(e=0;e<t.length;++e)if(qo(n,t[e])&&Yo(Bo(t[e],n),t))return[t[e],n];for(e=0;e<t.length-1;++e)for(r=e+1;r<t.length;++r)if(qo(Bo(t[e],t[r]),n)&&qo(Bo(t[e],n),t[r])&&qo(Bo(t[r],n),t[e])&&Yo(Fo(t[e],t[r],n),t))return[t[e],t[r],n];throw new Error}(o,n)),r=0);return e}function qo(t,n){var e=t.r-n.r,r=n.x-t.x,i=n.y-t.y;return e<0||e*e<r*r+i*i}function Oo(t,n){var e=t.r-n.r+1e-6,r=n.x-t.x,i=n.y-t.y;return e>0&&e*e>r*r+i*i}function Yo(t,n){for(var e=0;e<n.length;++e)if(!Oo(t,n[e]))return!1;return!0}function Bo(t,n){var e=t.x,r=t.y,i=t.r,o=n.x,a=n.y,u=n.r,f=o-e,c=a-r,s=u-i,l=Math.sqrt(f*f+c*c);return{x:(e+o+f/l*s)/2,y:(r+a+c/l*s)/2,r:(l+i+u)/2}}function Fo(t,n,e){var r=t.x,i=t.y,o=t.r,a=n.x,u=n.y,f=n.r,c=e.x,s=e.y,l=e.r,h=r-a,d=r-c,p=i-u,v=i-s,g=f-o,y=l-o,_=r*r+i*i-o*o,b=_-a*a-u*u+f*f,m=_-c*c-s*s+l*l,x=d*p-h*v,w=(p*m-v*b)/(2*x)-r,M=(v*g-p*y)/x,A=(d*b-h*m)/(2*x)-i,T=(h*y-d*g)/x,N=M*M+T*T-1,S=2*(o+w*M+A*T),E=w*w+A*A-o*o,k=-(N?(S+Math.sqrt(S*S-4*N*E))/(2*N):E/S);return{x:r+w+M*k,y:i+A+T*k,r:k}}function Io(t,n,e){var r,i,o,a,u=t.x-n.x,f=t.y-n.y,c=u*u+f*f;c?(i=n.r+e.r,i*=i,a=t.r+e.r,i>(a*=a)?(r=(c+a-i)/(2*c),o=Math.sqrt(Math.max(0,a/c-r*r)),e.x=t.x-r*u-o*f,e.y=t.y-r*f+o*u):(r=(c+i-a)/(2*c),o=Math.sqrt(Math.max(0,i/c-r*r)),e.x=n.x+r*u-o*f,e.y=n.y+r*f+o*u)):(e.x=n.x+e.r,e.y=n.y)}function jo(t,n){var e=t.r+n.r-1e-6,r=n.x-t.x,i=n.y-t.y;return e>0&&e*e>r*r+i*i}function Ho(t){var n=t._,e=t.next._,r=n.r+e.r,i=(n.x*e.r+e.x*n.r)/r,o=(n.y*e.r+e.y*n.r)/r;return i*i+o*o}function Xo(t){this._=t,this.next=null,this.previous=null}function Go(t){if(!(i=t.length))return 0;var n,e,r,i,o,a,u,f,c,s,l;if(n=t[0],n.x=0,n.y=0,!(i>1))return n.r;if(e=t[1],n.x=-e.r,e.x=n.r,e.y=0,!(i>2))return n.r+e.r;Io(e,n,r=t[2]),n=new Xo(n),e=new Xo(e),r=new Xo(r),n.next=r.previous=e,e.next=n.previous=r,r.next=e.previous=n;t:for(u=3;u<i;++u){Io(n._,e._,r=t[u]),r=new Xo(r),f=e.next,c=n.previous,s=e._.r,l=n._.r;do{if(s<=l){if(jo(f._,r._)){e=f,n.next=e,e.previous=n,--u;continue t}s+=f._.r,f=f.next}else{if(jo(c._,r._)){(n=c).next=e,e.previous=n,--u;continue t}l+=c._.r,c=c.previous}}while(f!==c.next);for(r.previous=n,r.next=e,n.next=e.previous=e=r,o=Ho(n);(r=r.next)!==e;)(a=Ho(r))<o&&(n=r,o=a);e=n.next}for(n=[e._],r=e;(r=r.next)!==e;)n.push(r._);for(r=Uo(n),u=0;u<i;++u)n=t[u],n.x-=r.x,n.y-=r.y;return r.r}function Vo(t){if("function"!=typeof t)throw new Error;return t}function $o(){return 0}function Wo(t){return function(){return t}}function Zo(t){return Math.sqrt(t.value)}function Qo(t){return function(n){n.children||(n.r=Math.max(0,+t(n)||0))}}function Jo(t,n){return function(e){if(r=e.children){var r,i,o,a=r.length,u=t(e)*n||0;if(u)for(i=0;i<a;++i)r[i].r+=u;if(o=Go(r),u)for(i=0;i<a;++i)r[i].r-=u;e.r=o+u}}}function Ko(t){return function(n){var e=n.parent;n.r*=t,e&&(n.x=e.x+t*n.x,n.y=e.y+t*n.y)}}function ta(t){t.x0=Math.round(t.x0),t.y0=Math.round(t.y0),t.x1=Math.round(t.x1),t.y1=Math.round(t.y1)}function na(t,n,e,r,i){for(var o,a=t.children,u=-1,f=a.length,c=t.value&&(r-n)/t.value;++u<f;)(o=a[u]).y0=e,o.y1=i,o.x0=n,o.x1=n+=o.value*c}function ea(t){return t.id}function ra(t){return t.parentId}function ia(t,n){return t.parent===n.parent?1:2}function oa(t){var n=t.children;return n?n[0]:t.t}function aa(t){var n=t.children;return n?n[n.length-1]:t.t}function ua(t,n,e){var r=e/(n.i-t.i);n.c-=r,n.s+=e,t.c+=r,n.z+=e,n.m+=e}function fa(t,n,e){return t.a.parent===n.parent?t.a:e}function ca(t,n){this._=t,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=n}function sa(t,n,e,r,i){for(var o,a=t.children,u=-1,f=a.length,c=t.value&&(i-e)/t.value;++u<f;)(o=a[u]).x0=n,o.x1=r,o.y0=e,o.y1=e+=o.value*c}function la(t,n,e,r,i,o){for(var a,u,f,c,s,l,h,d,p,v,g,y=[],_=n.children,b=0,m=0,x=_.length,w=n.value;b<x;){f=i-e,c=o-r;do{s=_[m++].value}while(!s&&m<x);for(l=h=s,g=s*s*(v=Math.max(c/f,f/c)/(w*t)),p=Math.max(h/g,g/l);m<x;++m){if(s+=u=_[m].value,u<l&&(l=u),u>h&&(h=u),g=s*s*v,(d=Math.max(h/g,g/l))>p){s-=u;break}p=d}y.push(a={value:s,dice:f<c,children:_.slice(b,m)}),a.dice?na(a,e,r,i,w?r+=c*s/w:o):sa(a,e,r,w?e+=f*s/w:i,o),w-=s,b=m}return y}function ha(t,n,e){return(n[0]-t[0])*(e[1]-t[1])-(n[1]-t[1])*(e[0]-t[0])}function da(t,n){return t[0]-n[0]||t[1]-n[1]}function pa(t){for(var n=t.length,e=[0,1],r=2,i=2;i<n;++i){for(;r>1&&ha(t[e[r-2]],t[e[r-1]],t[i])<=0;)--r;e[r++]=i}return e.slice(0,r)}function va(){return Math.random()}function ga(t){function n(n){var o=n+"",a=e.get(o);if(!a){if(i!==Cv)return i;e.set(o,a=r.push(n))}return t[(a-1)%t.length]}var e=he(),r=[],i=Cv;return t=null==t?[]:kv.call(t),n.domain=function(t){if(!arguments.length)return r.slice();r=[],e=he();for(var i,o,a=-1,u=t.length;++a<u;)e.has(o=(i=t[a])+"")||e.set(o,r.push(i));return n},n.range=function(e){return arguments.length?(t=kv.call(e),n):t.slice()},n.unknown=function(t){return arguments.length?(i=t,n):i},n.copy=function(){return ga().domain(r).range(t).unknown(i)},n}function ya(){function t(){var t=i().length,r=a[1]<a[0],h=a[r-0],d=a[1-r];n=(d-h)/Math.max(1,t-f+2*c),u&&(n=Math.floor(n)),h+=(d-h-n*(t-f))*l,e=n*(1-f),u&&(h=Math.round(h),e=Math.round(e));var p=s(t).map(function(t){return h+n*t});return o(r?p.reverse():p)}var n,e,r=ga().unknown(void 0),i=r.domain,o=r.range,a=[0,1],u=!1,f=0,c=0,l=.5;return delete r.unknown,r.domain=function(n){return arguments.length?(i(n),t()):i()},r.range=function(n){return arguments.length?(a=[+n[0],+n[1]],t()):a.slice()},r.rangeRound=function(n){return a=[+n[0],+n[1]],u=!0,t()},r.bandwidth=function(){return e},r.step=function(){return n},r.round=function(n){return arguments.length?(u=!!n,t()):u},r.padding=function(n){return arguments.length?(f=c=Math.max(0,Math.min(1,n)),t()):f},r.paddingInner=function(n){return arguments.length?(f=Math.max(0,Math.min(1,n)),t()):f},r.paddingOuter=function(n){return arguments.length?(c=Math.max(0,Math.min(1,n)),t()):c},r.align=function(n){return arguments.length?(l=Math.max(0,Math.min(1,n)),t()):l},r.copy=function(){return ya().domain(i()).range(a).round(u).paddingInner(f).paddingOuter(c).align(l)},t()}function _a(t){var n=t.copy;return t.padding=t.paddingOuter,delete t.paddingInner,delete t.paddingOuter,t.copy=function(){return _a(n())},t}function ba(t){return function(){return t}}function ma(t){return+t}function xa(t,n){return(n-=t=+t)?function(e){return(e-t)/n}:ba(n)}function wa(t,n,e,r){var i=t[0],o=t[1],a=n[0],u=n[1];return o<i?(i=e(o,i),a=r(u,a)):(i=e(i,o),a=r(a,u)),function(t){return a(i(t))}}function Ma(t,n,e,r){var i=Math.min(t.length,n.length)-1,o=new Array(i),a=new Array(i),u=-1;for(t[i]<t[0]&&(t=t.slice().reverse(),n=n.slice().reverse());++u<i;)o[u]=e(t[u],t[u+1]),a[u]=r(n[u],n[u+1]);return function(n){var e=Jc(t,n,1,i)-1;return a[e](o[e](n))}}function Aa(t,n){return n.domain(t.domain()).range(t.range()).interpolate(t.interpolate()).clamp(t.clamp())}function Ta(t,n){function e(){return i=Math.min(u.length,f.length)>2?Ma:wa,o=a=null,r}function r(n){return(o||(o=i(u,f,s?function(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=n?0:t>=e?1:r(t)}}}(t):t,c)))(+n)}var i,o,a,u=Pv,f=Pv,c=dn,s=!1;return r.invert=function(t){return(a||(a=i(f,u,xa,s?function(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=0?n:t>=1?e:r(t)}}}(n):n)))(+t)},r.domain=function(t){return arguments.length?(u=Ev.call(t,ma),e()):u.slice()},r.range=function(t){return arguments.length?(f=kv.call(t),e()):f.slice()},r.rangeRound=function(t){return f=kv.call(t),c=pn,e()},r.clamp=function(t){return arguments.length?(s=!!t,e()):s},r.interpolate=function(t){return arguments.length?(c=t,e()):c},e()}function Na(n){var e=n.domain;return n.ticks=function(t){var n=e();return l(n[0],n[n.length-1],null==t?10:t)},n.tickFormat=function(n,r){return function(n,e,r){var i,o=n[0],a=n[n.length-1],u=d(o,a,null==e?10:e);switch((r=tr(null==r?",f":r)).type){case"s":var f=Math.max(Math.abs(o),Math.abs(a));return null!=r.precision||isNaN(i=ur(u,f))||(r.precision=i),t.formatPrefix(r,f);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(i=fr(u,Math.max(Math.abs(o),Math.abs(a))))||(r.precision=i-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(i=ar(u))||(r.precision=i-2*("%"===r.type))}return t.format(r)}(e(),n,r)},n.nice=function(t){null==t&&(t=10);var r,i=e(),o=0,a=i.length-1,u=i[o],f=i[a];return f<u&&(r=u,u=f,f=r,r=o,o=a,a=r),(r=h(u,f,t))>0?r=h(u=Math.floor(u/r)*r,f=Math.ceil(f/r)*r,t):r<0&&(r=h(u=Math.ceil(u*r)/r,f=Math.floor(f*r)/r,t)),r>0?(i[o]=Math.floor(u/r)*r,i[a]=Math.ceil(f/r)*r,e(i)):r<0&&(i[o]=Math.ceil(u*r)/r,i[a]=Math.floor(f*r)/r,e(i)),n},n}function Sa(){var t=Ta(xa,sn);return t.copy=function(){return Aa(t,Sa())},Na(t)}function Ea(){function t(t){return+t}var n=[0,1];return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=Ev.call(e,ma),t):n.slice()},t.copy=function(){return Ea().domain(n)},Na(t)}function ka(t,n){var e,r=0,i=(t=t.slice()).length-1,o=t[r],a=t[i];return a<o&&(e=r,r=i,i=e,e=o,o=a,a=e),t[r]=n.floor(o),t[i]=n.ceil(a),t}function Ca(t,n){return(n=Math.log(n/t))?function(e){return Math.log(e/t)/n}:ba(n)}function Pa(t,n){return t<0?function(e){return-Math.pow(-n,e)*Math.pow(-t,1-e)}:function(e){return Math.pow(n,e)*Math.pow(t,1-e)}}function za(t){return isFinite(t)?+("1e"+t):t<0?0:t}function Ra(t){return 10===t?za:t===Math.E?Math.exp:function(n){return Math.pow(t,n)}}function La(t){return t===Math.E?Math.log:10===t&&Math.log10||2===t&&Math.log2||(t=Math.log(t),function(n){return Math.log(n)/t})}function Da(t){return function(n){return-t(-n)}}function Ua(){function n(){return o=La(i),a=Ra(i),r()[0]<0&&(o=Da(o),a=Da(a)),e}var e=Ta(Ca,Pa).domain([1,10]),r=e.domain,i=10,o=La(10),a=Ra(10);return e.base=function(t){return arguments.length?(i=+t,n()):i},e.domain=function(t){return arguments.length?(r(t),n()):r()},e.ticks=function(t){var n,e=r(),u=e[0],f=e[e.length-1];(n=f<u)&&(d=u,u=f,f=d);var c,s,h,d=o(u),p=o(f),v=null==t?10:+t,g=[];if(!(i%1)&&p-d<v){if(d=Math.round(d)-1,p=Math.round(p)+1,u>0){for(;d<p;++d)for(s=1,c=a(d);s<i;++s)if(!((h=c*s)<u)){if(h>f)break;g.push(h)}}else for(;d<p;++d)for(s=i-1,c=a(d);s>=1;--s)if(!((h=c*s)<u)){if(h>f)break;g.push(h)}}else g=l(d,p,Math.min(p-d,v)).map(a);return n?g.reverse():g},e.tickFormat=function(n,r){if(null==r&&(r=10===i?".0e":","),"function"!=typeof r&&(r=t.format(r)),n===1/0)return r;null==n&&(n=10);var u=Math.max(1,i*n/e.ticks().length);return function(t){var n=t/a(Math.round(o(t)));return n*i<i-.5&&(n*=i),n<=u?r(t):""}},e.nice=function(){return r(ka(r(),{floor:function(t){return a(Math.floor(o(t)))},ceil:function(t){return a(Math.ceil(o(t)))}}))},e.copy=function(){return Aa(e,Ua().base(i))},e}function qa(t,n){return t<0?-Math.pow(-t,n):Math.pow(t,n)}function Oa(){var t=1,n=Ta(function(n,e){return(e=qa(e,t)-(n=qa(n,t)))?function(r){return(qa(r,t)-n)/e}:ba(e)},function(n,e){return e=qa(e,t)-(n=qa(n,t)),function(r){return qa(n+e*r,1/t)}}),e=n.domain;return n.exponent=function(n){return arguments.length?(t=+n,e(e())):t},n.copy=function(){return Aa(n,Oa().exponent(t))},Na(n)}function Ya(){function t(){var t=0,n=Math.max(1,i.length);for(o=new Array(n-1);++t<n;)o[t-1]=v(r,t/n);return e}function e(t){if(!isNaN(t=+t))return i[Jc(o,t)]}var r=[],i=[],o=[];return e.invertExtent=function(t){var n=i.indexOf(t);return n<0?[NaN,NaN]:[n>0?o[n-1]:r[0],n<o.length?o[n]:r[r.length-1]]},e.domain=function(e){if(!arguments.length)return r.slice();r=[];for(var i,o=0,a=e.length;o<a;++o)null==(i=e[o])||isNaN(i=+i)||r.push(i);return r.sort(n),t()},e.range=function(n){return arguments.length?(i=kv.call(n),t()):i.slice()},e.quantiles=function(){return o.slice()},e.copy=function(){return Ya().domain(r).range(i)},e}function Ba(){function t(t){if(t<=t)return a[Jc(o,t,0,i)]}function n(){var n=-1;for(o=new Array(i);++n<i;)o[n]=((n+1)*r-(n-i)*e)/(i+1);return t}var e=0,r=1,i=1,o=[.5],a=[0,1];return t.domain=function(t){return arguments.length?(e=+t[0],r=+t[1],n()):[e,r]},t.range=function(t){return arguments.length?(i=(a=kv.call(t)).length-1,n()):a.slice()},t.invertExtent=function(t){var n=a.indexOf(t);return n<0?[NaN,NaN]:n<1?[e,o[0]]:n>=i?[o[i-1],r]:[o[n-1],o[n]]},t.copy=function(){return Ba().domain([e,r]).range(a)},Na(t)}function Fa(){function t(t){if(t<=t)return e[Jc(n,t,0,r)]}var n=[.5],e=[0,1],r=1;return t.domain=function(i){return arguments.length?(n=kv.call(i),r=Math.min(n.length,e.length-1),t):n.slice()},t.range=function(i){return arguments.length?(e=kv.call(i),r=Math.min(n.length,e.length-1),t):e.slice()},t.invertExtent=function(t){var r=e.indexOf(t);return[n[r-1],n[r]]},t.copy=function(){return Fa().domain(n).range(e)},t}function Ia(t,n,e,r){function i(n){return t(n=new Date(+n)),n}return i.floor=i,i.ceil=function(e){return t(e=new Date(e-1)),n(e,1),t(e),e},i.round=function(t){var n=i(t),e=i.ceil(t);return t-n<e-t?n:e},i.offset=function(t,e){return n(t=new Date(+t),null==e?1:Math.floor(e)),t},i.range=function(e,r,o){var a,u=[];if(e=i.ceil(e),o=null==o?1:Math.floor(o),!(e<r&&o>0))return u;do{u.push(a=new Date(+e)),n(e,o),t(e)}while(a<e&&e<r);return u},i.filter=function(e){return Ia(function(n){if(n>=n)for(;t(n),!e(n);)n.setTime(n-1)},function(t,r){if(t>=t)if(r<0)for(;++r<=0;)for(;n(t,-1),!e(t););else for(;--r>=0;)for(;n(t,1),!e(t););})},e&&(i.count=function(n,r){return zv.setTime(+n),Rv.setTime(+r),t(zv),t(Rv),Math.floor(e(zv,Rv))},i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?i.filter(r?function(n){return r(n)%t==0}:function(n){return i.count(0,n)%t==0}):i:null}),i}function ja(t){return Ia(function(n){n.setDate(n.getDate()-(n.getDay()+7-t)%7),n.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+7*n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*Uv)/qv})}function Ha(t){return Ia(function(n){n.setUTCDate(n.getUTCDate()-(n.getUTCDay()+7-t)%7),n.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+7*n)},function(t,n){return(n-t)/qv})}function Xa(t){if(0<=t.y&&t.y<100){var n=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return n.setFullYear(t.y),n}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function Ga(t){if(0<=t.y&&t.y<100){var n=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return n.setUTCFullYear(t.y),n}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function Va(t){return{y:t,m:0,d:1,H:0,M:0,S:0,L:0}}function $a(t){function n(t,n){return function(e){var r,i,o,a=[],u=-1,f=0,c=t.length;for(e instanceof Date||(e=new Date(+e));++u<c;)37===t.charCodeAt(u)&&(a.push(t.slice(f,u)),null!=(i=Dg[r=t.charAt(++u)])?r=t.charAt(++u):i="e"===r?" ":"0",(o=n[r])&&(r=o(e,i)),a.push(r),f=u+1);return a.push(t.slice(f,u)),a.join("")}}function e(t,n){return function(e){var i,o,a=Va(1900);if(r(a,t,e+="",0)!=e.length)return null;if("Q"in a)return new Date(a.Q);if("p"in a&&(a.H=a.H%12+12*a.p),"V"in a){if(a.V<1||a.V>53)return null;"w"in a||(a.w=1),"Z"in a?(i=(o=(i=Ga(Va(a.y))).getUTCDay())>4||0===o?yg.ceil(i):yg(i),i=pg.offset(i,7*(a.V-1)),a.y=i.getUTCFullYear(),a.m=i.getUTCMonth(),a.d=i.getUTCDate()+(a.w+6)%7):(i=(o=(i=n(Va(a.y))).getDay())>4||0===o?Vv.ceil(i):Vv(i),i=Hv.offset(i,7*(a.V-1)),a.y=i.getFullYear(),a.m=i.getMonth(),a.d=i.getDate()+(a.w+6)%7)}else("W"in a||"U"in a)&&("w"in a||(a.w="u"in a?a.u%7:"W"in a?1:0),o="Z"in a?Ga(Va(a.y)).getUTCDay():n(Va(a.y)).getDay(),a.m=0,a.d="W"in a?(a.w+6)%7+7*a.W-(o+5)%7:a.w+7*a.U-(o+6)%7);return"Z"in a?(a.H+=a.Z/100|0,a.M+=a.Z%100,Ga(a)):n(a)}}function r(t,n,e,r){for(var i,o,a=0,u=n.length,f=e.length;a<u;){if(r>=f)return-1;if(37===(i=n.charCodeAt(a++))){if(i=n.charAt(a++),!(o=A[i in Dg?n.charAt(a++):i])||(r=o(t,e,r))<0)return-1}else if(i!=e.charCodeAt(r++))return-1}return r}var i=t.dateTime,o=t.date,a=t.time,u=t.periods,f=t.days,c=t.shortDays,s=t.months,l=t.shortMonths,h=Qa(u),d=Ja(u),p=Qa(f),v=Ja(f),g=Qa(c),y=Ja(c),_=Qa(s),b=Ja(s),m=Qa(l),x=Ja(l),w={a:function(t){return c[t.getDay()]},A:function(t){return f[t.getDay()]},b:function(t){return l[t.getMonth()]},B:function(t){return s[t.getMonth()]},c:null,d:_u,e:_u,f:Mu,H:bu,I:mu,j:xu,L:wu,m:Au,M:Tu,p:function(t){return u[+(t.getHours()>=12)]},Q:Ku,s:tf,S:Nu,u:Su,U:Eu,V:ku,w:Cu,W:Pu,x:null,X:null,y:zu,Y:Ru,Z:Lu,"%":Ju},M={a:function(t){return c[t.getUTCDay()]},A:function(t){return f[t.getUTCDay()]},b:function(t){return l[t.getUTCMonth()]},B:function(t){return s[t.getUTCMonth()]},c:null,d:Du,e:Du,f:Bu,H:Uu,I:qu,j:Ou,L:Yu,m:Fu,M:Iu,p:function(t){return u[+(t.getUTCHours()>=12)]},Q:Ku,s:tf,S:ju,u:Hu,U:Xu,V:Gu,w:Vu,W:$u,x:null,X:null,y:Wu,Y:Zu,Z:Qu,"%":Ju},A={a:function(t,n,e){var r=g.exec(n.slice(e));return r?(t.w=y[r[0].toLowerCase()],e+r[0].length):-1},A:function(t,n,e){var r=p.exec(n.slice(e));return r?(t.w=v[r[0].toLowerCase()],e+r[0].length):-1},b:function(t,n,e){var r=m.exec(n.slice(e));return r?(t.m=x[r[0].toLowerCase()],e+r[0].length):-1},B:function(t,n,e){var r=_.exec(n.slice(e));return r?(t.m=b[r[0].toLowerCase()],e+r[0].length):-1},c:function(t,n,e){return r(t,i,n,e)},d:fu,e:fu,f:pu,H:su,I:su,j:cu,L:du,m:uu,M:lu,p:function(t,n,e){var r=h.exec(n.slice(e));return r?(t.p=d[r[0].toLowerCase()],e+r[0].length):-1},Q:gu,s:yu,S:hu,u:tu,U:nu,V:eu,w:Ka,W:ru,x:function(t,n,e){return r(t,o,n,e)},X:function(t,n,e){return r(t,a,n,e)},y:ou,Y:iu,Z:au,"%":vu};return w.x=n(o,w),w.X=n(a,w),w.c=n(i,w),M.x=n(o,M),M.X=n(a,M),M.c=n(i,M),{format:function(t){var e=n(t+="",w);return e.toString=function(){return t},e},parse:function(t){var n=e(t+="",Xa);return n.toString=function(){return t},n},utcFormat:function(t){var e=n(t+="",M);return e.toString=function(){return t},e},utcParse:function(t){var n=e(t,Ga);return n.toString=function(){return t},n}}}function Wa(t,n,e){var r=t<0?"-":"",i=(r?-t:t)+"",o=i.length;return r+(o<e?new Array(e-o+1).join(n)+i:i)}function Za(t){return t.replace(Og,"\\$&")}function Qa(t){return new RegExp("^(?:"+t.map(Za).join("|")+")","i")}function Ja(t){for(var n={},e=-1,r=t.length;++e<r;)n[t[e].toLowerCase()]=e;return n}function Ka(t,n,e){var r=Ug.exec(n.slice(e,e+1));return r?(t.w=+r[0],e+r[0].length):-1}function tu(t,n,e){var r=Ug.exec(n.slice(e,e+1));return r?(t.u=+r[0],e+r[0].length):-1}function nu(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.U=+r[0],e+r[0].length):-1}function eu(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.V=+r[0],e+r[0].length):-1}function ru(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.W=+r[0],e+r[0].length):-1}function iu(t,n,e){var r=Ug.exec(n.slice(e,e+4));return r?(t.y=+r[0],e+r[0].length):-1}function ou(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.y=+r[0]+(+r[0]>68?1900:2e3),e+r[0].length):-1}function au(t,n,e){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(n.slice(e,e+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),e+r[0].length):-1}function uu(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.m=r[0]-1,e+r[0].length):-1}function fu(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.d=+r[0],e+r[0].length):-1}function cu(t,n,e){var r=Ug.exec(n.slice(e,e+3));return r?(t.m=0,t.d=+r[0],e+r[0].length):-1}function su(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.H=+r[0],e+r[0].length):-1}function lu(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.M=+r[0],e+r[0].length):-1}function hu(t,n,e){var r=Ug.exec(n.slice(e,e+2));return r?(t.S=+r[0],e+r[0].length):-1}function du(t,n,e){var r=Ug.exec(n.slice(e,e+3));return r?(t.L=+r[0],e+r[0].length):-1}function pu(t,n,e){var r=Ug.exec(n.slice(e,e+6));return r?(t.L=Math.floor(r[0]/1e3),e+r[0].length):-1}function vu(t,n,e){var r=qg.exec(n.slice(e,e+1));return r?e+r[0].length:-1}function gu(t,n,e){var r=Ug.exec(n.slice(e));return r?(t.Q=+r[0],e+r[0].length):-1}function yu(t,n,e){var r=Ug.exec(n.slice(e));return r?(t.Q=1e3*+r[0],e+r[0].length):-1}function _u(t,n){return Wa(t.getDate(),n,2)}function bu(t,n){return Wa(t.getHours(),n,2)}function mu(t,n){return Wa(t.getHours()%12||12,n,2)}function xu(t,n){return Wa(1+Hv.count(fg(t),t),n,3)}function wu(t,n){return Wa(t.getMilliseconds(),n,3)}function Mu(t,n){return wu(t,n)+"000"}function Au(t,n){return Wa(t.getMonth()+1,n,2)}function Tu(t,n){return Wa(t.getMinutes(),n,2)}function Nu(t,n){return Wa(t.getSeconds(),n,2)}function Su(t){var n=t.getDay();return 0===n?7:n}function Eu(t,n){return Wa(Gv.count(fg(t),t),n,2)}function ku(t,n){var e=t.getDay();return t=e>=4||0===e?Zv(t):Zv.ceil(t),Wa(Zv.count(fg(t),t)+(4===fg(t).getDay()),n,2)}function Cu(t){return t.getDay()}function Pu(t,n){return Wa(Vv.count(fg(t),t),n,2)}function zu(t,n){return Wa(t.getFullYear()%100,n,2)}function Ru(t,n){return Wa(t.getFullYear()%1e4,n,4)}function Lu(t){var n=t.getTimezoneOffset();return(n>0?"-":(n*=-1,"+"))+Wa(n/60|0,"0",2)+Wa(n%60,"0",2)}function Du(t,n){return Wa(t.getUTCDate(),n,2)}function Uu(t,n){return Wa(t.getUTCHours(),n,2)}function qu(t,n){return Wa(t.getUTCHours()%12||12,n,2)}function Ou(t,n){return Wa(1+pg.count(zg(t),t),n,3)}function Yu(t,n){return Wa(t.getUTCMilliseconds(),n,3)}function Bu(t,n){return Yu(t,n)+"000"}function Fu(t,n){return Wa(t.getUTCMonth()+1,n,2)}function Iu(t,n){return Wa(t.getUTCMinutes(),n,2)}function ju(t,n){return Wa(t.getUTCSeconds(),n,2)}function Hu(t){var n=t.getUTCDay();return 0===n?7:n}function Xu(t,n){return Wa(gg.count(zg(t),t),n,2)}function Gu(t,n){var e=t.getUTCDay();return t=e>=4||0===e?mg(t):mg.ceil(t),Wa(mg.count(zg(t),t)+(4===zg(t).getUTCDay()),n,2)}function Vu(t){return t.getUTCDay()}function $u(t,n){return Wa(yg.count(zg(t),t),n,2)}function Wu(t,n){return Wa(t.getUTCFullYear()%100,n,2)}function Zu(t,n){return Wa(t.getUTCFullYear()%1e4,n,4)}function Qu(){return"+0000"}function Ju(){return"%"}function Ku(t){return+t}function tf(t){return Math.floor(+t/1e3)}function nf(n){return Rg=$a(n),t.timeFormat=Rg.format,t.timeParse=Rg.parse,t.utcFormat=Rg.utcFormat,t.utcParse=Rg.utcParse,Rg}function ef(t){return new Date(t)}function rf(t){return t instanceof Date?+t:+new Date(+t)}function of(t,n,r,i,o,a,u,f,c){function s(e){return(u(e)<e?g:a(e)<e?y:o(e)<e?_:i(e)<e?b:n(e)<e?r(e)<e?m:x:t(e)<e?w:M)(e)}function l(n,r,i,o){if(null==n&&(n=10),"number"==typeof n){var a=Math.abs(i-r)/n,u=e(function(t){return t[2]}).right(A,a);u===A.length?(o=d(r/$g,i/$g,n),n=t):u?(o=(u=A[a/A[u-1][2]<A[u][2]/a?u-1:u])[1],n=u[0]):(o=Math.max(d(r,i,n),1),n=f)}return null==o?n:n.every(o)}var h=Ta(xa,sn),p=h.invert,v=h.domain,g=c(".%L"),y=c(":%S"),_=c("%I:%M"),b=c("%I %p"),m=c("%a %d"),x=c("%b %d"),w=c("%B"),M=c("%Y"),A=[[u,1,Ig],[u,5,5*Ig],[u,15,15*Ig],[u,30,30*Ig],[a,1,jg],[a,5,5*jg],[a,15,15*jg],[a,30,30*jg],[o,1,Hg],[o,3,3*Hg],[o,6,6*Hg],[o,12,12*Hg],[i,1,Xg],[i,2,2*Xg],[r,1,Gg],[n,1,Vg],[n,3,3*Vg],[t,1,$g]];return h.invert=function(t){return new Date(p(t))},h.domain=function(t){return arguments.length?v(Ev.call(t,rf)):v().map(ef)},h.ticks=function(t,n){var e,r=v(),i=r[0],o=r[r.length-1],a=o<i;return a&&(e=i,i=o,o=e),e=l(t,i,o,n),e=e?e.range(i,o+1):[],a?e.reverse():e},h.tickFormat=function(t,n){return null==n?s:c(n)},h.nice=function(t,n){var e=v();return(t=l(t,e[0],e[e.length-1],n))?v(ka(e,t)):h},h.copy=function(){return Aa(h,of(t,n,r,i,o,a,u,f,c))},h}function af(t){function n(n){var o=(n-e)/(r-e);return t(i?Math.max(0,Math.min(1,o)):o)}var e=0,r=1,i=!1;return n.domain=function(t){return arguments.length?(e=+t[0],r=+t[1],n):[e,r]},n.clamp=function(t){return arguments.length?(i=!!t,n):i},n.interpolator=function(e){return arguments.length?(t=e,n):t},n.copy=function(){return af(t).domain([e,r]).clamp(i)},Na(n)}function uf(t){for(var n=t.length/6|0,e=new Array(n),r=0;r<n;)e[r]="#"+t.slice(6*r,6*++r);return e}function ff(t){return rl(t[t.length-1])}function cf(t){var n=t.length;return function(e){return t[Math.max(0,Math.min(n-1,Math.floor(e*n)))]}}function sf(t){return function(){return t}}function lf(t){return t>=1?A_:t<=-1?-A_:Math.asin(t)}function hf(t){return t.innerRadius}function df(t){return t.outerRadius}function pf(t){return t.startAngle}function vf(t){return t.endAngle}function gf(t){return t&&t.padAngle}function yf(t,n,e,r,i,o,a){var u=t-e,f=n-r,c=(a?o:-o)/x_(u*u+f*f),s=c*f,l=-c*u,h=t+s,d=n+l,p=e+s,v=r+l,g=(h+p)/2,y=(d+v)/2,_=p-h,b=v-d,m=_*_+b*b,x=i-o,w=h*v-p*d,M=(b<0?-1:1)*x_(__(0,x*x*m-w*w)),A=(w*b-_*M)/m,T=(-w*_-b*M)/m,N=(w*b+_*M)/m,S=(-w*_+b*M)/m,E=A-g,k=T-y,C=N-g,P=S-y;return E*E+k*k>C*C+P*P&&(A=N,T=S),{cx:A,cy:T,x01:-s,y01:-l,x11:A*(i/x-1),y11:T*(i/x-1)}}function _f(t){this._context=t}function bf(t){return new _f(t)}function mf(t){return t[0]}function xf(t){return t[1]}function wf(){function t(t){var u,f,c,s=t.length,l=!1;for(null==i&&(a=o(c=oe())),u=0;u<=s;++u)!(u<s&&r(f=t[u],u,t))===l&&((l=!l)?a.lineStart():a.lineEnd()),l&&a.point(+n(f,u,t),+e(f,u,t));if(c)return a=null,c+""||null}var n=mf,e=xf,r=sf(!0),i=null,o=bf,a=null;return t.x=function(e){return arguments.length?(n="function"==typeof e?e:sf(+e),t):n},t.y=function(n){return arguments.length?(e="function"==typeof n?n:sf(+n),t):e},t.defined=function(n){return arguments.length?(r="function"==typeof n?n:sf(!!n),t):r},t.curve=function(n){return arguments.length?(o=n,null!=i&&(a=o(i)),t):o},t.context=function(n){return arguments.length?(null==n?i=a=null:a=o(i=n),t):i},t}function Mf(){function t(t){var n,s,l,h,d,p=t.length,v=!1,g=new Array(p),y=new Array(p);for(null==u&&(c=f(d=oe())),n=0;n<=p;++n){if(!(n<p&&a(h=t[n],n,t))===v)if(v=!v)s=n,c.areaStart(),c.lineStart();else{for(c.lineEnd(),c.lineStart(),l=n-1;l>=s;--l)c.point(g[l],y[l]);c.lineEnd(),c.areaEnd()}v&&(g[n]=+e(h,n,t),y[n]=+i(h,n,t),c.point(r?+r(h,n,t):g[n],o?+o(h,n,t):y[n]))}if(d)return c=null,d+""||null}function n(){return wf().defined(a).curve(f).context(u)}var e=mf,r=null,i=sf(0),o=xf,a=sf(!0),u=null,f=bf,c=null;return t.x=function(n){return arguments.length?(e="function"==typeof n?n:sf(+n),r=null,t):e},t.x0=function(n){return arguments.length?(e="function"==typeof n?n:sf(+n),t):e},t.x1=function(n){return arguments.length?(r=null==n?null:"function"==typeof n?n:sf(+n),t):r},t.y=function(n){return arguments.length?(i="function"==typeof n?n:sf(+n),o=null,t):i},t.y0=function(n){return arguments.length?(i="function"==typeof n?n:sf(+n),t):i},t.y1=function(n){return arguments.length?(o=null==n?null:"function"==typeof n?n:sf(+n),t):o},t.lineX0=t.lineY0=function(){return n().x(e).y(i)},t.lineY1=function(){return n().x(e).y(o)},t.lineX1=function(){return n().x(r).y(i)},t.defined=function(n){return arguments.length?(a="function"==typeof n?n:sf(!!n),t):a},t.curve=function(n){return arguments.length?(f=n,null!=u&&(c=f(u)),t):f},t.context=function(n){return arguments.length?(null==n?u=c=null:c=f(u=n),t):u},t}function Af(t,n){return n<t?-1:n>t?1:n>=t?0:NaN}function Tf(t){return t}function Nf(t){this._curve=t}function Sf(t){function n(n){return new Nf(t(n))}return n._curve=t,n}function Ef(t){var n=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?n(Sf(t)):n()._curve},t}function kf(){return Ef(wf().curve(N_))}function Cf(){var t=Mf().curve(N_),n=t.curve,e=t.lineX0,r=t.lineX1,i=t.lineY0,o=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return Ef(e())},delete t.lineX0,t.lineEndAngle=function(){return Ef(r())},delete t.lineX1,t.lineInnerRadius=function(){return Ef(i())},delete t.lineY0,t.lineOuterRadius=function(){return Ef(o())},delete t.lineY1,t.curve=function(t){return arguments.length?n(Sf(t)):n()._curve},t}function Pf(t,n){return[(n=+n)*Math.cos(t-=Math.PI/2),n*Math.sin(t)]}function zf(t){return t.source}function Rf(t){return t.target}function Lf(t){function n(){var n,u=S_.call(arguments),f=e.apply(this,u),c=r.apply(this,u);if(a||(a=n=oe()),t(a,+i.apply(this,(u[0]=f,u)),+o.apply(this,u),+i.apply(this,(u[0]=c,u)),+o.apply(this,u)),n)return a=null,n+""||null}var e=zf,r=Rf,i=mf,o=xf,a=null;return n.source=function(t){return arguments.length?(e=t,n):e},n.target=function(t){return arguments.length?(r=t,n):r},n.x=function(t){return arguments.length?(i="function"==typeof t?t:sf(+t),n):i},n.y=function(t){return arguments.length?(o="function"==typeof t?t:sf(+t),n):o},n.context=function(t){return arguments.length?(a=null==t?null:t,n):a},n}function Df(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n=(n+r)/2,e,n,i,r,i)}function Uf(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n,e=(e+i)/2,r,e,r,i)}function qf(t,n,e,r,i){var o=Pf(n,e),a=Pf(n,e=(e+i)/2),u=Pf(r,e),f=Pf(r,i);t.moveTo(o[0],o[1]),t.bezierCurveTo(a[0],a[1],u[0],u[1],f[0],f[1])}function Of(){}function Yf(t,n,e){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+n)/6,(t._y0+4*t._y1+e)/6)}function Bf(t){this._context=t}function Ff(t){this._context=t}function If(t){this._context=t}function jf(t,n){this._basis=new Bf(t),this._beta=n}function Hf(t,n,e){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-n),t._y2+t._k*(t._y1-e),t._x2,t._y2)}function Xf(t,n){this._context=t,this._k=(1-n)/6}function Gf(t,n){this._context=t,this._k=(1-n)/6}function Vf(t,n){this._context=t,this._k=(1-n)/6}function $f(t,n,e){var r=t._x1,i=t._y1,o=t._x2,a=t._y2;if(t._l01_a>w_){var u=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,f=3*t._l01_a*(t._l01_a+t._l12_a);r=(r*u-t._x0*t._l12_2a+t._x2*t._l01_2a)/f,i=(i*u-t._y0*t._l12_2a+t._y2*t._l01_2a)/f}if(t._l23_a>w_){var c=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,s=3*t._l23_a*(t._l23_a+t._l12_a);o=(o*c+t._x1*t._l23_2a-n*t._l12_2a)/s,a=(a*c+t._y1*t._l23_2a-e*t._l12_2a)/s}t._context.bezierCurveTo(r,i,o,a,t._x2,t._y2)}function Wf(t,n){this._context=t,this._alpha=n}function Zf(t,n){this._context=t,this._alpha=n}function Qf(t,n){this._context=t,this._alpha=n}function Jf(t){this._context=t}function Kf(t){return t<0?-1:1}function tc(t,n,e){var r=t._x1-t._x0,i=n-t._x1,o=(t._y1-t._y0)/(r||i<0&&-0),a=(e-t._y1)/(i||r<0&&-0),u=(o*i+a*r)/(r+i);return(Kf(o)+Kf(a))*Math.min(Math.abs(o),Math.abs(a),.5*Math.abs(u))||0}function nc(t,n){var e=t._x1-t._x0;return e?(3*(t._y1-t._y0)/e-n)/2:n}function ec(t,n,e){var r=t._x0,i=t._y0,o=t._x1,a=t._y1,u=(o-r)/3;t._context.bezierCurveTo(r+u,i+u*n,o-u,a-u*e,o,a)}function rc(t){this._context=t}function ic(t){this._context=new oc(t)}function oc(t){this._context=t}function ac(t){this._context=t}function uc(t){var n,e,r=t.length-1,i=new Array(r),o=new Array(r),a=new Array(r);for(i[0]=0,o[0]=2,a[0]=t[0]+2*t[1],n=1;n<r-1;++n)i[n]=1,o[n]=4,a[n]=4*t[n]+2*t[n+1];for(i[r-1]=2,o[r-1]=7,a[r-1]=8*t[r-1]+t[r],n=1;n<r;++n)e=i[n]/o[n-1],o[n]-=e,a[n]-=e*a[n-1];for(i[r-1]=a[r-1]/o[r-1],n=r-2;n>=0;--n)i[n]=(a[n]-i[n+1])/o[n];for(o[r-1]=(t[r]+i[r-1])/2,n=0;n<r-1;++n)o[n]=2*t[n+1]-i[n+1];return[i,o]}function fc(t,n){this._context=t,this._t=n}function cc(t,n){if((i=t.length)>1)for(var e,r,i,o=1,a=t[n[0]],u=a.length;o<i;++o)for(r=a,a=t[n[o]],e=0;e<u;++e)a[e][1]+=a[e][0]=isNaN(r[e][1])?r[e][0]:r[e][1]}function sc(t){for(var n=t.length,e=new Array(n);--n>=0;)e[n]=n;return e}function lc(t,n){return t[n]}function hc(t){var n=t.map(dc);return sc(t).sort(function(t,e){return n[t]-n[e]})}function dc(t){for(var n,e=0,r=-1,i=t.length;++r<i;)(n=+t[r][1])&&(e+=n);return e}function pc(t){return function(){return t}}function vc(t){return t[0]}function gc(t){return t[1]}function yc(){this._=null}function _c(t){t.U=t.C=t.L=t.R=t.P=t.N=null}function bc(t,n){var e=n,r=n.R,i=e.U;i?i.L===e?i.L=r:i.R=r:t._=r,r.U=i,e.U=r,e.R=r.L,e.R&&(e.R.U=e),r.L=e}function mc(t,n){var e=n,r=n.L,i=e.U;i?i.L===e?i.L=r:i.R=r:t._=r,r.U=i,e.U=r,e.L=r.R,e.L&&(e.L.U=e),r.R=e}function xc(t){for(;t.L;)t=t.L;return t}function wc(t,n,e,r){var i=[null,null],o=eb.push(i)-1;return i.left=t,i.right=n,e&&Ac(i,t,n,e),r&&Ac(i,n,t,r),tb[t.index].halfedges.push(o),tb[n.index].halfedges.push(o),i}function Mc(t,n,e){var r=[n,e];return r.left=t,r}function Ac(t,n,e,r){t[0]||t[1]?t.left===e?t[1]=r:t[0]=r:(t[0]=r,t.left=n,t.right=e)}function Tc(t,n,e,r,i){var o,a=t[0],u=t[1],f=a[0],c=a[1],s=0,l=1,h=u[0]-f,d=u[1]-c;if(o=n-f,h||!(o>0)){if(o/=h,h<0){if(o<s)return;o<l&&(l=o)}else if(h>0){if(o>l)return;o>s&&(s=o)}if(o=r-f,h||!(o<0)){if(o/=h,h<0){if(o>l)return;o>s&&(s=o)}else if(h>0){if(o<s)return;o<l&&(l=o)}if(o=e-c,d||!(o>0)){if(o/=d,d<0){if(o<s)return;o<l&&(l=o)}else if(d>0){if(o>l)return;o>s&&(s=o)}if(o=i-c,d||!(o<0)){if(o/=d,d<0){if(o>l)return;o>s&&(s=o)}else if(d>0){if(o<s)return;o<l&&(l=o)}return!(s>0||l<1)||(s>0&&(t[0]=[f+s*h,c+s*d]),l<1&&(t[1]=[f+l*h,c+l*d]),!0)}}}}}function Nc(t,n,e,r,i){var o=t[1];if(o)return!0;var a,u,f=t[0],c=t.left,s=t.right,l=c[0],h=c[1],d=s[0],p=s[1],v=(l+d)/2,g=(h+p)/2;if(p===h){if(v<n||v>=r)return;if(l>d){if(f){if(f[1]>=i)return}else f=[v,e];o=[v,i]}else{if(f){if(f[1]<e)return}else f=[v,i];o=[v,e]}}else if(a=(l-d)/(p-h),u=g-a*v,a<-1||a>1)if(l>d){if(f){if(f[1]>=i)return}else f=[(e-u)/a,e];o=[(i-u)/a,i]}else{if(f){if(f[1]<e)return}else f=[(i-u)/a,i];o=[(e-u)/a,e]}else if(h<p){if(f){if(f[0]>=r)return}else f=[n,a*n+u];o=[r,a*r+u]}else{if(f){if(f[0]<n)return}else f=[r,a*r+u];o=[n,a*n+u]}return t[0]=f,t[1]=o,!0}function Sc(t,n){var e=t.site,r=n.left,i=n.right;return e===i&&(i=r,r=e),i?Math.atan2(i[1]-r[1],i[0]-r[0]):(e===r?(r=n[1],i=n[0]):(r=n[0],i=n[1]),Math.atan2(r[0]-i[0],i[1]-r[1]))}function Ec(t,n){return n[+(n.left!==t.site)]}function kc(t,n){return n[+(n.left===t.site)]}function Cc(t){var n=t.P,e=t.N;if(n&&e){var r=n.site,i=t.site,o=e.site;if(r!==o){var a=i[0],u=i[1],f=r[0]-a,c=r[1]-u,s=o[0]-a,l=o[1]-u,h=2*(f*l-c*s);if(!(h>=-ab)){var d=f*f+c*c,p=s*s+l*l,v=(l*d-c*p)/h,g=(f*p-s*d)/h,y=rb.pop()||new function(){_c(this),this.x=this.y=this.arc=this.site=this.cy=null};y.arc=t,y.site=i,y.x=v+a,y.y=(y.cy=g+u)+Math.sqrt(v*v+g*g),t.circle=y;for(var _=null,b=nb._;b;)if(y.y<b.y||y.y===b.y&&y.x<=b.x){if(!b.L){_=b.P;break}b=b.L}else{if(!b.R){_=b;break}b=b.R}nb.insert(_,y),_||(J_=y)}}}}function Pc(t){var n=t.circle;n&&(n.P||(J_=n.N),nb.remove(n),rb.push(n),_c(n),t.circle=null)}function zc(t){var n=ib.pop()||new function(){_c(this),this.edge=this.site=this.circle=null};return n.site=t,n}function Rc(t){Pc(t),K_.remove(t),ib.push(t),_c(t)}function Lc(t){var n=t.circle,e=n.x,r=n.cy,i=[e,r],o=t.P,a=t.N,u=[t];Rc(t);for(var f=o;f.circle&&Math.abs(e-f.circle.x)<ob&&Math.abs(r-f.circle.cy)<ob;)o=f.P,u.unshift(f),Rc(f),f=o;u.unshift(f),Pc(f);for(var c=a;c.circle&&Math.abs(e-c.circle.x)<ob&&Math.abs(r-c.circle.cy)<ob;)a=c.N,u.push(c),Rc(c),c=a;u.push(c),Pc(c);var s,l=u.length;for(s=1;s<l;++s)c=u[s],f=u[s-1],Ac(c.edge,f.site,c.site,i);f=u[0],(c=u[l-1]).edge=wc(f.site,c.site,null,i),Cc(f),Cc(c)}function Dc(t){for(var n,e,r,i,o=t[0],a=t[1],u=K_._;u;)if((r=Uc(u,a)-o)>ob)u=u.L;else{if(!((i=o-function(t,n){var e=t.N;if(e)return Uc(e,n);var r=t.site;return r[1]===n?r[0]:1/0}(u,a))>ob)){r>-ob?(n=u.P,e=u):i>-ob?(n=u,e=u.N):n=e=u;break}if(!u.R){n=u;break}u=u.R}(function(t){tb[t.index]={site:t,halfedges:[]}})(t);var f=zc(t);if(K_.insert(n,f),n||e){if(n===e)return Pc(n),e=zc(n.site),K_.insert(f,e),f.edge=e.edge=wc(n.site,f.site),Cc(n),void Cc(e);if(e){Pc(n),Pc(e);var c=n.site,s=c[0],l=c[1],h=t[0]-s,d=t[1]-l,p=e.site,v=p[0]-s,g=p[1]-l,y=2*(h*g-d*v),_=h*h+d*d,b=v*v+g*g,m=[(g*_-d*b)/y+s,(h*b-v*_)/y+l];Ac(e.edge,c,p,m),f.edge=wc(c,t,null,m),e.edge=wc(t,p,null,m),Cc(n),Cc(e)}else f.edge=wc(n.site,f.site)}}function Uc(t,n){var e=t.site,r=e[0],i=e[1],o=i-n;if(!o)return r;var a=t.P;if(!a)return-1/0;var u=(e=a.site)[0],f=e[1],c=f-n;if(!c)return u;var s=u-r,l=1/o-1/c,h=s/c;return l?(-h+Math.sqrt(h*h-2*l*(s*s/(-2*c)-f+c/2+i-o/2)))/l+r:(r+u)/2}function qc(t,n,e){return(t[0]-e[0])*(n[1]-t[1])-(t[0]-n[0])*(e[1]-t[1])}function Oc(t,n){return n[1]-t[1]||n[0]-t[0]}function Yc(t,n){var e,r,i,o=t.sort(Oc).pop();for(eb=[],tb=new Array(t.length),K_=new yc,nb=new yc;;)if(i=J_,o&&(!i||o[1]<i.y||o[1]===i.y&&o[0]<i.x))o[0]===e&&o[1]===r||(Dc(o),e=o[0],r=o[1]),o=t.pop();else{if(!i)break;Lc(i.arc)}if(function(){for(var t,n,e,r,i=0,o=tb.length;i<o;++i)if((t=tb[i])&&(r=(n=t.halfedges).length)){var a=new Array(r),u=new Array(r);for(e=0;e<r;++e)a[e]=e,u[e]=Sc(t,eb[n[e]]);for(a.sort(function(t,n){return u[n]-u[t]}),e=0;e<r;++e)u[e]=n[a[e]];for(e=0;e<r;++e)n[e]=u[e]}}(),n){var a=+n[0][0],u=+n[0][1],f=+n[1][0],c=+n[1][1];(function(t,n,e,r){for(var i,o=eb.length;o--;)Nc(i=eb[o],t,n,e,r)&&Tc(i,t,n,e,r)&&(Math.abs(i[0][0]-i[1][0])>ob||Math.abs(i[0][1]-i[1][1])>ob)||delete eb[o]})(a,u,f,c),function(t,n,e,r){var i,o,a,u,f,c,s,l,h,d,p,v,g=tb.length,y=!0;for(i=0;i<g;++i)if(o=tb[i]){for(a=o.site,u=(f=o.halfedges).length;u--;)eb[f[u]]||f.splice(u,1);for(u=0,c=f.length;u<c;)p=(d=kc(o,eb[f[u]]))[0],v=d[1],l=(s=Ec(o,eb[f[++u%c]]))[0],h=s[1],(Math.abs(p-l)>ob||Math.abs(v-h)>ob)&&(f.splice(u,0,eb.push(Mc(a,d,Math.abs(p-t)<ob&&r-v>ob?[t,Math.abs(l-t)<ob?h:r]:Math.abs(v-r)<ob&&e-p>ob?[Math.abs(h-r)<ob?l:e,r]:Math.abs(p-e)<ob&&v-n>ob?[e,Math.abs(l-e)<ob?h:n]:Math.abs(v-n)<ob&&p-t>ob?[Math.abs(h-n)<ob?l:t,n]:null))-1),++c);c&&(y=!1)}if(y){var _,b,m,x=1/0;for(i=0,y=null;i<g;++i)(o=tb[i])&&(m=(_=(a=o.site)[0]-t)*_+(b=a[1]-n)*b)<x&&(x=m,y=o);if(y){var w=[t,n],M=[t,r],A=[e,r],T=[e,n];y.halfedges.push(eb.push(Mc(a=y.site,w,M))-1,eb.push(Mc(a,M,A))-1,eb.push(Mc(a,A,T))-1,eb.push(Mc(a,T,w))-1)}}for(i=0;i<g;++i)(o=tb[i])&&(o.halfedges.length||delete tb[i])}(a,u,f,c)}this.edges=eb,this.cells=tb,K_=nb=eb=tb=null}function Bc(t){return function(){return t}}function Fc(t,n,e){this.k=t,this.x=n,this.y=e}function Ic(t){return t.__zoom||ub}function jc(){t.event.stopImmediatePropagation()}function Hc(){t.event.preventDefault(),t.event.stopImmediatePropagation()}function Xc(){return!t.event.button}function Gc(){var t,n,e=this;return e instanceof SVGElement?(t=(e=e.ownerSVGElement||e).width.baseVal.value,n=e.height.baseVal.value):(t=e.clientWidth,n=e.clientHeight),[[0,0],[t,n]]}function Vc(){return this.__zoom||ub}function $c(){return-t.event.deltaY*(t.event.deltaMode?120:1)/500}function Wc(){return"ontouchstart"in this}function Zc(t,n,e){var r=t.invertX(n[0][0])-e[0][0],i=t.invertX(n[1][0])-e[1][0],o=t.invertY(n[0][1])-e[0][1],a=t.invertY(n[1][1])-e[1][1];return t.translate(i>r?(r+i)/2:Math.min(0,r)||Math.max(0,i),a>o?(o+a)/2:Math.min(0,o)||Math.max(0,a))}var Qc=e(n),Jc=Qc.right,Kc=Qc.left,ts=Array.prototype,ns=ts.slice,es=ts.map,rs=Math.sqrt(50),is=Math.sqrt(10),os=Math.sqrt(2),as=Array.prototype.slice,us=1,fs=2,cs=3,ss=4,ls=1e-6,hs={value:function(){}};S.prototype=N.prototype={constructor:S,on:function(t,n){var e,r=this._,i=function(t,n){return t.trim().split(/^|\s+/).map(function(t){var e="",r=t.indexOf(".");if(r>=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:e}})}(t+"",r),o=-1,a=i.length;{if(!(arguments.length<2)){if(null!=n&&"function"!=typeof n)throw new Error("invalid callback: "+n);for(;++o<a;)if(e=(t=i[o]).type)r[e]=E(r[e],t.name,n);else if(null==n)for(e in r)r[e]=E(r[e],t.name,null);return this}for(;++o<a;)if((e=(t=i[o]).type)&&(e=function(t,n){for(var e,r=0,i=t.length;r<i;++r)if((e=t[r]).name===n)return e.value}(r[e],t.name)))return e}},copy:function(){var t={},n=this._;for(var e in n)t[e]=n[e].slice();return new S(t)},call:function(t,n){if((e=arguments.length-2)>0)for(var e,r,i=new Array(e),o=0;o<e;++o)i[o]=arguments[o+2];if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(o=0,e=(r=this._[t]).length;o<e;++o)r[o].value.apply(n,i)},apply:function(t,n,e){if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(var r=this._[t],i=0,o=r.length;i<o;++i)r[i].value.apply(n,e)}};var ds="http://www.w3.org/1999/xhtml",ps={svg:"http://www.w3.org/2000/svg",xhtml:ds,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"},vs=function(t){return function(){return this.matches(t)}};if("undefined"!=typeof document){var gs=document.documentElement;if(!gs.matches){var ys=gs.webkitMatchesSelector||gs.msMatchesSelector||gs.mozMatchesSelector||gs.oMatchesSelector;vs=function(t){return function(){return ys.call(this,t)}}}}var _s=vs;U.prototype={constructor:U,appendChild:function(t){return this._parent.insertBefore(t,this._next)},insertBefore:function(t,n){return this._parent.insertBefore(t,n)},querySelector:function(t){return this._parent.querySelector(t)},querySelectorAll:function(t){return this._parent.querySelectorAll(t)}};var bs="$";H.prototype={add:function(t){this._names.indexOf(t)<0&&(this._names.push(t),this._node.setAttribute("class",this._names.join(" ")))},remove:function(t){var n=this._names.indexOf(t);n>=0&&(this._names.splice(n,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};var ms={};if(t.event=null,"undefined"!=typeof document){"onmouseenter"in document.documentElement||(ms={mouseenter:"mouseover",mouseleave:"mouseout"})}var xs=[null];ut.prototype=ft.prototype={constructor:ut,select:function(t){"function"!=typeof t&&(t=z(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,a,u=n[i],f=u.length,c=r[i]=new Array(f),s=0;s<f;++s)(o=u[s])&&(a=t.call(o,o.__data__,s,u))&&("__data__"in o&&(a.__data__=o.__data__),c[s]=a);return new ut(r,this._parents)},selectAll:function(t){"function"!=typeof t&&(t=L(t));for(var n=this._groups,e=n.length,r=[],i=[],o=0;o<e;++o)for(var a,u=n[o],f=u.length,c=0;c<f;++c)(a=u[c])&&(r.push(t.call(a,a.__data__,c,u)),i.push(a));return new ut(r,i)},filter:function(t){"function"!=typeof t&&(t=_s(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,a=n[i],u=a.length,f=r[i]=[],c=0;c<u;++c)(o=a[c])&&t.call(o,o.__data__,c,a)&&f.push(o);return new ut(r,this._parents)},data:function(t,n){if(!t)return d=new Array(this.size()),c=-1,this.each(function(t){d[++c]=t}),d;var e=n?O:q,r=this._parents,i=this._groups;"function"!=typeof t&&(t=function(t){return function(){return t}}(t));for(var o=i.length,a=new Array(o),u=new Array(o),f=new Array(o),c=0;c<o;++c){var s=r[c],l=i[c],h=l.length,d=t.call(s,s&&s.__data__,c,r),p=d.length,v=u[c]=new Array(p),g=a[c]=new Array(p);e(s,l,v,g,f[c]=new Array(h),d,n);for(var y,_,b=0,m=0;b<p;++b)if(y=v[b]){for(b>=m&&(m=b+1);!(_=g[m])&&++m<p;);y._next=_||null}}return a=new ut(a,r),a._enter=u,a._exit=f,a},enter:function(){return new ut(this._enter||this._groups.map(D),this._parents)},exit:function(){return new ut(this._exit||this._groups.map(D),this._parents)},merge:function(t){for(var n=this._groups,e=t._groups,r=n.length,i=e.length,o=Math.min(r,i),a=new Array(r),u=0;u<o;++u)for(var f,c=n[u],s=e[u],l=c.length,h=a[u]=new Array(l),d=0;d<l;++d)(f=c[d]||s[d])&&(h[d]=f);for(;u<r;++u)a[u]=n[u];return new ut(a,this._parents)},order:function(){for(var t=this._groups,n=-1,e=t.length;++n<e;)for(var r,i=t[n],o=i.length-1,a=i[o];--o>=0;)(r=i[o])&&(a&&a!==r.nextSibling&&a.parentNode.insertBefore(r,a),a=r);return this},sort:function(t){function n(n,e){return n&&e?t(n.__data__,e.__data__):!n-!e}t||(t=Y);for(var e=this._groups,r=e.length,i=new Array(r),o=0;o<r;++o){for(var a,u=e[o],f=u.length,c=i[o]=new Array(f),s=0;s<f;++s)(a=u[s])&&(c[s]=a);c.sort(n)}return new ut(i,this._parents).order()},call:function(){var t=arguments[0];return arguments[0]=this,t.apply(null,arguments),this},nodes:function(){var t=new Array(this.size()),n=-1;return this.each(function(){t[++n]=this}),t},node:function(){for(var t=this._groups,n=0,e=t.length;n<e;++n)for(var r=t[n],i=0,o=r.length;i<o;++i){var a=r[i];if(a)return a}return null},size:function(){var t=0;return this.each(function(){++t}),t},empty:function(){return!this.node()},each:function(t){for(var n=this._groups,e=0,r=n.length;e<r;++e)for(var i,o=n[e],a=0,u=o.length;a<u;++a)(i=o[a])&&t.call(i,i.__data__,a,o);return this},attr:function(t,n){var e=k(t);if(arguments.length<2){var r=this.node();return e.local?r.getAttributeNS(e.space,e.local):r.getAttribute(e)}return this.each((null==n?e.local?function(t){return function(){this.removeAttributeNS(t.space,t.local)}}:function(t){return function(){this.removeAttribute(t)}}:"function"==typeof n?e.local?function(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,e)}}:function(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttribute(t):this.setAttribute(t,e)}}:e.local?function(t,n){return function(){this.setAttributeNS(t.space,t.local,n)}}:function(t,n){return function(){this.setAttribute(t,n)}})(e,n))},style:function(t,n,e){return arguments.length>1?this.each((null==n?function(t){return function(){this.style.removeProperty(t)}}:"function"==typeof n?function(t,n,e){return function(){var r=n.apply(this,arguments);null==r?this.style.removeProperty(t):this.style.setProperty(t,r,e)}}:function(t,n,e){return function(){this.style.setProperty(t,n,e)}})(t,n,null==e?"":e)):F(this.node(),t)},property:function(t,n){return arguments.length>1?this.each((null==n?function(t){return function(){delete this[t]}}:"function"==typeof n?function(t,n){return function(){var e=n.apply(this,arguments);null==e?delete this[t]:this[t]=e}}:function(t,n){return function(){this[t]=n}})(t,n)):this.node()[t]},classed:function(t,n){var e=I(t+"");if(arguments.length<2){for(var r=j(this.node()),i=-1,o=e.length;++i<o;)if(!r.contains(e[i]))return!1;return!0}return this.each(("function"==typeof n?function(t,n){return function(){(n.apply(this,arguments)?X:G)(this,t)}}:n?function(t){return function(){X(this,t)}}:function(t){return function(){G(this,t)}})(e,n))},text:function(t){return arguments.length?this.each(null==t?V:("function"==typeof t?function(t){return function(){var n=t.apply(this,arguments);this.textContent=null==n?"":n}}:function(t){return function(){this.textContent=t}})(t)):this.node().textContent},html:function(t){return arguments.length?this.each(null==t?$:("function"==typeof t?function(t){return function(){var n=t.apply(this,arguments);this.innerHTML=null==n?"":n}}:function(t){return function(){this.innerHTML=t}})(t)):this.node().innerHTML},raise:function(){return this.each(W)},lower:function(){return this.each(Z)},append:function(t){var n="function"==typeof t?t:C(t);return this.select(function(){return this.appendChild(n.apply(this,arguments))})},insert:function(t,n){var e="function"==typeof t?t:C(t),r=null==n?Q:"function"==typeof n?n:z(n);return this.select(function(){return this.insertBefore(e.apply(this,arguments),r.apply(this,arguments)||null)})},remove:function(){return this.each(J)},clone:function(t){return this.select(t?tt:K)},datum:function(t){return arguments.length?this.property("__data__",t):this.node().__data__},on:function(t,n,e){var r,i,o=function(t){return t.trim().split(/^|\s+/).map(function(t){var n="",e=t.indexOf(".");return e>=0&&(n=t.slice(e+1),t=t.slice(0,e)),{type:t,name:n}})}(t+""),a=o.length;if(!(arguments.length<2)){for(u=n?it:rt,null==e&&(e=!1),r=0;r<a;++r)this.each(u(o[r],n,e));return this}var u=this.node().__on;if(u)for(var f,c=0,s=u.length;c<s;++c)for(r=0,f=u[c];r<a;++r)if((i=o[r]).type===f.type&&i.name===f.name)return f.value},dispatch:function(t,n){return this.each(("function"==typeof n?function(t,n){return function(){return at(this,t,n.apply(this,arguments))}}:function(t,n){return function(){return at(this,t,n)}})(t,n))}};var ws=0;lt.prototype=st.prototype={constructor:lt,get:function(t){for(var n=this._;!(n in t);)if(!(t=t.parentNode))return;return t[n]},set:function(t,n){return t[this._]=n},remove:function(t){return this._ in t&&delete t[this._]},toString:function(){return this._}},xt.prototype.on=function(){var t=this._.on.apply(this._,arguments);return t===this._?this:t};var Ms="\\s*([+-]?\\d+)\\s*",As="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",Ts="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",Ns=/^#([0-9a-f]{3})$/,Ss=/^#([0-9a-f]{6})$/,Es=new RegExp("^rgb\\("+[Ms,Ms,Ms]+"\\)$"),ks=new RegExp("^rgb\\("+[Ts,Ts,Ts]+"\\)$"),Cs=new RegExp("^rgba\\("+[Ms,Ms,Ms,As]+"\\)$"),Ps=new RegExp("^rgba\\("+[Ts,Ts,Ts,As]+"\\)$"),zs=new RegExp("^hsl\\("+[As,Ts,Ts]+"\\)$"),Rs=new RegExp("^hsla\\("+[As,Ts,Ts,As]+"\\)$"),Ls={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};Nt(Et,kt,{displayable:function(){return this.rgb().displayable()},hex:function(){return this.rgb().hex()},toString:function(){return this.rgb()+""}}),Nt(Lt,Rt,St(Et,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Lt(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Lt(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return 0<=this.r&&this.r<=255&&0<=this.g&&this.g<=255&&0<=this.b&&this.b<=255&&0<=this.opacity&&this.opacity<=1},hex:function(){return"#"+Dt(this.r)+Dt(this.g)+Dt(this.b)},toString:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}})),Nt(Ot,qt,St(Et,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Ot(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Ot(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),n=isNaN(t)||isNaN(this.s)?0:this.s,e=this.l,r=e+(e<.5?e:1-e)*n,i=2*e-r;return new Lt(Yt(t>=240?t-240:t+120,i,r),Yt(t,i,r),Yt(t<120?t+240:t-120,i,r),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1}}));var Ds=Math.PI/180,Us=180/Math.PI,qs=.96422,Os=1,Ys=.82521,Bs=4/29,Fs=6/29,Is=3*Fs*Fs,js=Fs*Fs*Fs;Nt(It,Ft,St(Et,{brighter:function(t){return new It(this.l+18*(null==t?1:t),this.a,this.b,this.opacity)},darker:function(t){return new It(this.l-18*(null==t?1:t),this.a,this.b,this.opacity)},rgb:function(){var t=(this.l+16)/116,n=isNaN(this.a)?t:t+this.a/500,e=isNaN(this.b)?t:t-this.b/200;return n=qs*Ht(n),t=Os*Ht(t),e=Ys*Ht(e),new Lt(Xt(3.1338561*n-1.6168667*t-.4906146*e),Xt(-.9787684*n+1.9161415*t+.033454*e),Xt(.0719453*n-.2289914*t+1.4052427*e),this.opacity)}})),Nt(Wt,$t,St(Et,{brighter:function(t){return new Wt(this.h,this.c,this.l+18*(null==t?1:t),this.opacity)},darker:function(t){return new Wt(this.h,this.c,this.l-18*(null==t?1:t),this.opacity)},rgb:function(){return Bt(this).rgb()}}));var Hs=-.29227,Xs=-.90649,Gs=1.97294,Vs=Gs*Xs,$s=1.78277*Gs,Ws=1.78277*Hs- -.14861*Xs;Nt(Qt,Zt,St(Et,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Qt(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Qt(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=isNaN(this.h)?0:(this.h+120)*Ds,n=+this.l,e=isNaN(this.s)?0:this.s*n*(1-n),r=Math.cos(t),i=Math.sin(t);return new Lt(255*(n+e*(-.14861*r+1.78277*i)),255*(n+e*(Hs*r+Xs*i)),255*(n+e*(Gs*r)),this.opacity)}}));var Zs,Qs,Js,Ks,tl,nl,el=function t(n){function e(t,n){var e=r((t=Rt(t)).r,(n=Rt(n)).r),i=r(t.g,n.g),o=r(t.b,n.b),a=an(t.opacity,n.opacity);return function(n){return t.r=e(n),t.g=i(n),t.b=o(n),t.opacity=a(n),t+""}}var r=on(n);return e.gamma=t,e}(1),rl=un(Kt),il=un(tn),ol=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,al=new RegExp(ol.source,"g"),ul=180/Math.PI,fl={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1},cl=gn(function(t){return"none"===t?fl:(Zs||(Zs=document.createElement("DIV"),Qs=document.documentElement,Js=document.defaultView),Zs.style.transform=t,t=Js.getComputedStyle(Qs.appendChild(Zs),null).getPropertyValue("transform"),Qs.removeChild(Zs),t=t.slice(7,-1).split(","),vn(+t[0],+t[1],+t[2],+t[3],+t[4],+t[5]))},"px, ","px)","deg)"),sl=gn(function(t){return null==t?fl:(Ks||(Ks=document.createElementNS("http://www.w3.org/2000/svg","g")),Ks.setAttribute("transform",t),(t=Ks.transform.baseVal.consolidate())?(t=t.matrix,vn(t.a,t.b,t.c,t.d,t.e,t.f)):fl)},", ",")",")"),ll=Math.SQRT2,hl=2,dl=4,pl=1e-12,vl=bn(rn),gl=bn(an),yl=mn(rn),_l=mn(an),bl=xn(rn),ml=xn(an),xl=0,wl=0,Ml=0,Al=1e3,Tl=0,Nl=0,Sl=0,El="object"==typeof performance&&performance.now?performance:Date,kl="object"==typeof window&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};An.prototype=Tn.prototype={constructor:An,restart:function(t,n,e){if("function"!=typeof t)throw new TypeError("callback is not a function");e=(null==e?wn():+e)+(null==n?0:+n),this._next||nl===this||(nl?nl._next=this:tl=this,nl=this),this._call=t,this._time=e,kn()},stop:function(){this._call&&(this._call=null,this._time=1/0,kn())}};var Cl=N("start","end","interrupt"),Pl=[],zl=0,Rl=1,Ll=2,Dl=3,Ul=4,ql=5,Ol=6,Yl=ft.prototype.constructor,Bl=0,Fl=ft.prototype;On.prototype=Yn.prototype={constructor:On,select:function(t){var n=this._name,e=this._id;"function"!=typeof t&&(t=z(t));for(var r=this._groups,i=r.length,o=new Array(i),a=0;a<i;++a)for(var u,f,c=r[a],s=c.length,l=o[a]=new Array(s),h=0;h<s;++h)(u=c[h])&&(f=t.call(u,u.__data__,h,c))&&("__data__"in u&&(f.__data__=u.__data__),l[h]=f,Pn(l[h],n,e,h,l,Ln(u,e)));return new On(o,this._parents,n,e)},selectAll:function(t){var n=this._name,e=this._id;"function"!=typeof t&&(t=L(t));for(var r=this._groups,i=r.length,o=[],a=[],u=0;u<i;++u)for(var f,c=r[u],s=c.length,l=0;l<s;++l)if(f=c[l]){for(var h,d=t.call(f,f.__data__,l,c),p=Ln(f,e),v=0,g=d.length;v<g;++v)(h=d[v])&&Pn(h,n,e,v,d,p);o.push(d),a.push(f)}return new On(o,a,n,e)},filter:function(t){"function"!=typeof t&&(t=_s(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,a=n[i],u=a.length,f=r[i]=[],c=0;c<u;++c)(o=a[c])&&t.call(o,o.__data__,c,a)&&f.push(o);return new On(r,this._parents,this._name,this._id)},merge:function(t){if(t._id!==this._id)throw new Error;for(var n=this._groups,e=t._groups,r=n.length,i=e.length,o=Math.min(r,i),a=new Array(r),u=0;u<o;++u)for(var f,c=n[u],s=e[u],l=c.length,h=a[u]=new Array(l),d=0;d<l;++d)(f=c[d]||s[d])&&(h[d]=f);for(;u<r;++u)a[u]=n[u];return new On(a,this._parents,this._name,this._id)},selection:function(){return new Yl(this._groups,this._parents)},transition:function(){for(var t=this._name,n=this._id,e=Bn(),r=this._groups,i=r.length,o=0;o<i;++o)for(var a,u=r[o],f=u.length,c=0;c<f;++c)if(a=u[c]){var s=Ln(a,n);Pn(a,t,e,c,u,{time:s.time+s.delay+s.duration,delay:0,duration:s.duration,ease:s.ease})}return new On(r,this._parents,t,e)},call:Fl.call,nodes:Fl.nodes,node:Fl.node,size:Fl.size,empty:Fl.empty,each:Fl.each,on:function(t,n){var e=this._id;return arguments.length<2?Ln(this.node(),e).on.on(t):this.each(function(t,n,e){var r,i,o=function(t){return(t+"").trim().split(/^|\s+/).every(function(t){var n=t.indexOf(".");return n>=0&&(t=t.slice(0,n)),!t||"start"===t})}(n)?zn:Rn;return function(){var a=o(this,t),u=a.on;u!==r&&(i=(r=u).copy()).on(n,e),a.on=i}}(e,t,n))},attr:function(t,n){var e=k(t),r="transform"===e?sl:qn;return this.attrTween(t,"function"==typeof n?(e.local?function(t,n,e){var r,i,o;return function(){var a,u=e(this);if(null!=u)return(a=this.getAttributeNS(t.space,t.local))===u?null:a===r&&u===i?o:o=n(r=a,i=u);this.removeAttributeNS(t.space,t.local)}}:function(t,n,e){var r,i,o;return function(){var a,u=e(this);if(null!=u)return(a=this.getAttribute(t))===u?null:a===r&&u===i?o:o=n(r=a,i=u);this.removeAttribute(t)}})(e,r,Un(this,"attr."+t,n)):null==n?(e.local?function(t){return function(){this.removeAttributeNS(t.space,t.local)}}:function(t){return function(){this.removeAttribute(t)}})(e):(e.local?function(t,n,e){var r,i;return function(){var o=this.getAttributeNS(t.space,t.local);return o===e?null:o===r?i:i=n(r=o,e)}}:function(t,n,e){var r,i;return function(){var o=this.getAttribute(t);return o===e?null:o===r?i:i=n(r=o,e)}})(e,r,n+""))},attrTween:function(t,n){var e="attr."+t;if(arguments.length<2)return(e=this.tween(e))&&e._value;if(null==n)return this.tween(e,null);if("function"!=typeof n)throw new Error;var r=k(t);return this.tween(e,(r.local?function(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttributeNS(t.space,t.local,r(n))}}return e._value=n,e}:function(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttribute(t,r(n))}}return e._value=n,e})(r,n))},style:function(t,n,e){var r="transform"==(t+="")?cl:qn;return null==n?this.styleTween(t,function(t,n){var e,r,i;return function(){var o=F(this,t),a=(this.style.removeProperty(t),F(this,t));return o===a?null:o===e&&a===r?i:i=n(e=o,r=a)}}(t,r)).on("end.style."+t,function(t){return function(){this.style.removeProperty(t)}}(t)):this.styleTween(t,"function"==typeof n?function(t,n,e){var r,i,o;return function(){var a=F(this,t),u=e(this);return null==u&&(this.style.removeProperty(t),u=F(this,t)),a===u?null:a===r&&u===i?o:o=n(r=a,i=u)}}(t,r,Un(this,"style."+t,n)):function(t,n,e){var r,i;return function(){var o=F(this,t);return o===e?null:o===r?i:i=n(r=o,e)}}(t,r,n+""),e)},styleTween:function(t,n,e){var r="style."+(t+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(null==n)return this.tween(r,null);if("function"!=typeof n)throw new Error;return this.tween(r,function(t,n,e){function r(){var r=this,i=n.apply(r,arguments);return i&&function(n){r.style.setProperty(t,i(n),e)}}return r._value=n,r}(t,n,null==e?"":e))},text:function(t){return this.tween("text","function"==typeof t?function(t){return function(){var n=t(this);this.textContent=null==n?"":n}}(Un(this,"text",t)):function(t){return function(){this.textContent=t}}(null==t?"":t+""))},remove:function(){return this.on("end.remove",function(t){return function(){var n=this.parentNode;for(var e in this.__transition)if(+e!==t)return;n&&n.removeChild(this)}}(this._id))},tween:function(t,n){var e=this._id;if(t+="",arguments.length<2){for(var r,i=Ln(this.node(),e).tween,o=0,a=i.length;o<a;++o)if((r=i[o]).name===t)return r.value;return null}return this.each((null==n?function(t,n){var e,r;return function(){var i=Rn(this,t),o=i.tween;if(o!==e)for(var a=0,u=(r=e=o).length;a<u;++a)if(r[a].name===n){(r=r.slice()).splice(a,1);break}i.tween=r}}:function(t,n,e){var r,i;if("function"!=typeof e)throw new Error;return function(){var o=Rn(this,t),a=o.tween;if(a!==r){i=(r=a).slice();for(var u={name:n,value:e},f=0,c=i.length;f<c;++f)if(i[f].name===n){i[f]=u;break}f===c&&i.push(u)}o.tween=i}})(e,t,n))},delay:function(t){var n=this._id;return arguments.length?this.each(("function"==typeof t?function(t,n){return function(){zn(this,t).delay=+n.apply(this,arguments)}}:function(t,n){return n=+n,function(){zn(this,t).delay=n}})(n,t)):Ln(this.node(),n).delay},duration:function(t){var n=this._id;return arguments.length?this.each(("function"==typeof t?function(t,n){return function(){Rn(this,t).duration=+n.apply(this,arguments)}}:function(t,n){return n=+n,function(){Rn(this,t).duration=n}})(n,t)):Ln(this.node(),n).duration},ease:function(t){var n=this._id;return arguments.length?this.each(function(t,n){if("function"!=typeof n)throw new Error;return function(){Rn(this,t).ease=n}}(n,t)):Ln(this.node(),n).ease}};var Il=function t(n){function e(t){return Math.pow(t,n)}return n=+n,e.exponent=t,e}(3),jl=function t(n){function e(t){return 1-Math.pow(1-t,n)}return n=+n,e.exponent=t,e}(3),Hl=function t(n){function e(t){return((t*=2)<=1?Math.pow(t,n):2-Math.pow(2-t,n))/2}return n=+n,e.exponent=t,e}(3),Xl=Math.PI,Gl=Xl/2,Vl=4/11,$l=6/11,Wl=8/11,Zl=.75,Ql=9/11,Jl=10/11,Kl=.9375,th=21/22,nh=63/64,eh=1/Vl/Vl,rh=function t(n){function e(t){return t*t*((n+1)*t-n)}return n=+n,e.overshoot=t,e}(1.70158),ih=function t(n){function e(t){return--t*t*((n+1)*t+n)+1}return n=+n,e.overshoot=t,e}(1.70158),oh=function t(n){function e(t){return((t*=2)<1?t*t*((n+1)*t-n):(t-=2)*t*((n+1)*t+n)+2)/2}return n=+n,e.overshoot=t,e}(1.70158),ah=2*Math.PI,uh=function t(n,e){function r(t){return n*Math.pow(2,10*--t)*Math.sin((i-t)/e)}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=ah);return r.amplitude=function(n){return t(n,e*ah)},r.period=function(e){return t(n,e)},r}(1,.3),fh=function t(n,e){function r(t){return 1-n*Math.pow(2,-10*(t=+t))*Math.sin((t+i)/e)}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=ah);return r.amplitude=function(n){return t(n,e*ah)},r.period=function(e){return t(n,e)},r}(1,.3),ch=function t(n,e){function r(t){return((t=2*t-1)<0?n*Math.pow(2,10*t)*Math.sin((i-t)/e):2-n*Math.pow(2,-10*t)*Math.sin((i+t)/e))/2}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=ah);return r.amplitude=function(n){return t(n,e*ah)},r.period=function(e){return t(n,e)},r}(1,.3),sh={time:null,delay:0,duration:250,ease:In};ft.prototype.interrupt=function(t){return this.each(function(){Dn(this,t)})},ft.prototype.transition=function(t){var n,e;t instanceof On?(n=t._id,t=t._name):(n=Bn(),(e=sh).time=wn(),t=null==t?null:t+"");for(var r=this._groups,i=r.length,o=0;o<i;++o)for(var a,u=r[o],f=u.length,c=0;c<f;++c)(a=u[c])&&Pn(a,t,n,c,u,e||Vn(a,n));return new On(r,this._parents,t,n)};var lh=[null],hh={name:"drag"},dh={name:"space"},ph={name:"handle"},vh={name:"center"},gh={name:"x",handles:["e","w"].map(Qn),input:function(t,n){return t&&[[t[0],n[0][1]],[t[1],n[1][1]]]},output:function(t){return t&&[t[0][0],t[1][0]]}},yh={name:"y",handles:["n","s"].map(Qn),input:function(t,n){return t&&[[n[0][0],t[0]],[n[1][0],t[1]]]},output:function(t){return t&&[t[0][1],t[1][1]]}},_h={name:"xy",handles:["n","e","s","w","nw","ne","se","sw"].map(Qn),input:function(t){return t},output:function(t){return t}},bh={overlay:"crosshair",selection:"move",n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},mh={e:"w",w:"e",nw:"ne",ne:"nw",se:"sw",sw:"se"},xh={n:"s",s:"n",nw:"sw",ne:"se",se:"ne",sw:"nw"},wh={overlay:1,selection:1,n:null,e:1,s:null,w:-1,nw:-1,ne:1,se:1,sw:-1},Mh={overlay:1,selection:1,n:-1,e:null,s:1,w:null,nw:-1,ne:-1,se:1,sw:1},Ah=Math.cos,Th=Math.sin,Nh=Math.PI,Sh=Nh/2,Eh=2*Nh,kh=Math.max,Ch=Array.prototype.slice,Ph=Math.PI,zh=2*Ph,Rh=zh-1e-6;ie.prototype=oe.prototype={constructor:ie,moveTo:function(t,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(t,n){this._+="L"+(this._x1=+t)+","+(this._y1=+n)},quadraticCurveTo:function(t,n,e,r){this._+="Q"+ +t+","+ +n+","+(this._x1=+e)+","+(this._y1=+r)},bezierCurveTo:function(t,n,e,r,i,o){this._+="C"+ +t+","+ +n+","+ +e+","+ +r+","+(this._x1=+i)+","+(this._y1=+o)},arcTo:function(t,n,e,r,i){t=+t,n=+n,e=+e,r=+r,i=+i;var o=this._x1,a=this._y1,u=e-t,f=r-n,c=o-t,s=a-n,l=c*c+s*s;if(i<0)throw new Error("negative radius: "+i);if(null===this._x1)this._+="M"+(this._x1=t)+","+(this._y1=n);else if(l>1e-6)if(Math.abs(s*u-f*c)>1e-6&&i){var h=e-o,d=r-a,p=u*u+f*f,v=h*h+d*d,g=Math.sqrt(p),y=Math.sqrt(l),_=i*Math.tan((Ph-Math.acos((p+l-v)/(2*g*y)))/2),b=_/y,m=_/g;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*c)+","+(n+b*s)),this._+="A"+i+","+i+",0,0,"+ +(s*h>c*d)+","+(this._x1=t+m*u)+","+(this._y1=n+m*f)}else this._+="L"+(this._x1=t)+","+(this._y1=n);else;},arc:function(t,n,e,r,i,o){t=+t,n=+n;var a=(e=+e)*Math.cos(r),u=e*Math.sin(r),f=t+a,c=n+u,s=1^o,l=o?r-i:i-r;if(e<0)throw new Error("negative radius: "+e);null===this._x1?this._+="M"+f+","+c:(Math.abs(this._x1-f)>1e-6||Math.abs(this._y1-c)>1e-6)&&(this._+="L"+f+","+c),e&&(l<0&&(l=l%zh+zh),l>Rh?this._+="A"+e+","+e+",0,1,"+s+","+(t-a)+","+(n-u)+"A"+e+","+e+",0,1,"+s+","+(this._x1=f)+","+(this._y1=c):l>1e-6&&(this._+="A"+e+","+e+",0,"+ +(l>=Ph)+","+s+","+(this._x1=t+e*Math.cos(i))+","+(this._y1=n+e*Math.sin(i))))},rect:function(t,n,e,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)+"h"+ +e+"v"+ +r+"h"+-e+"Z"},toString:function(){return this._}};le.prototype=he.prototype={constructor:le,has:function(t){return"$"+t in this},get:function(t){return this["$"+t]},set:function(t,n){return this["$"+t]=n,this},remove:function(t){var n="$"+t;return n in this&&delete this[n]},clear:function(){for(var t in this)"$"===t[0]&&delete this[t]},keys:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(n.slice(1));return t},values:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(this[n]);return t},entries:function(){var t=[];for(var n in this)"$"===n[0]&&t.push({key:n.slice(1),value:this[n]});return t},size:function(){var t=0;for(var n in this)"$"===n[0]&&++t;return t},empty:function(){for(var t in this)if("$"===t[0])return!1;return!0},each:function(t){for(var n in this)"$"===n[0]&&t(this[n],n.slice(1),this)}};var Lh=he.prototype;ye.prototype=_e.prototype={constructor:ye,has:Lh.has,add:function(t){return t+="",this["$"+t]=t,this},remove:Lh.remove,clear:Lh.clear,values:Lh.keys,size:Lh.size,empty:Lh.empty,each:Lh.each};var Dh=Array.prototype.slice,Uh=[[],[[[1,1.5],[.5,1]]],[[[1.5,1],[1,1.5]]],[[[1.5,1],[.5,1]]],[[[1,.5],[1.5,1]]],[[[1,1.5],[.5,1]],[[1,.5],[1.5,1]]],[[[1,.5],[1,1.5]]],[[[1,.5],[.5,1]]],[[[.5,1],[1,.5]]],[[[1,1.5],[1,.5]]],[[[.5,1],[1,.5]],[[1.5,1],[1,1.5]]],[[[1.5,1],[1,.5]]],[[[.5,1],[1.5,1]]],[[[1,1.5],[1.5,1]]],[[[.5,1],[1,1.5]]],[]],qh={},Oh={},Yh=34,Bh=10,Fh=13,Ih=ke(","),jh=Ih.parse,Hh=Ih.parseRows,Xh=Ih.format,Gh=Ih.formatRows,Vh=ke("\t"),$h=Vh.parse,Wh=Vh.parseRows,Zh=Vh.format,Qh=Vh.formatRows,Jh=Le(jh),Kh=Le($h),td=Ue("application/xml"),nd=Ue("text/html"),ed=Ue("image/svg+xml"),rd=je.prototype=He.prototype;rd.copy=function(){var t,n,e=new He(this._x,this._y,this._x0,this._y0,this._x1,this._y1),r=this._root;if(!r)return e;if(!r.length)return e._root=Xe(r),e;for(t=[{source:r,target:e._root=new Array(4)}];r=t.pop();)for(var i=0;i<4;++i)(n=r.source[i])&&(n.length?t.push({source:n,target:r.target[i]=new Array(4)}):r.target[i]=Xe(n));return e},rd.add=function(t){var n=+this._x.call(null,t),e=+this._y.call(null,t);return Ye(this.cover(n,e),n,e,t)},rd.addAll=function(t){var n,e,r,i,o=t.length,a=new Array(o),u=new Array(o),f=1/0,c=1/0,s=-1/0,l=-1/0;for(e=0;e<o;++e)isNaN(r=+this._x.call(null,n=t[e]))||isNaN(i=+this._y.call(null,n))||(a[e]=r,u[e]=i,r<f&&(f=r),r>s&&(s=r),i<c&&(c=i),i>l&&(l=i));for(s<f&&(f=this._x0,s=this._x1),l<c&&(c=this._y0,l=this._y1),this.cover(f,c).cover(s,l),e=0;e<o;++e)Ye(this,a[e],u[e],t[e]);return this},rd.cover=function(t,n){if(isNaN(t=+t)||isNaN(n=+n))return this;var e=this._x0,r=this._y0,i=this._x1,o=this._y1;if(isNaN(e))i=(e=Math.floor(t))+1,o=(r=Math.floor(n))+1;else{if(!(e>t||t>i||r>n||n>o))return this;var a,u,f=i-e,c=this._root;switch(u=(n<(r+o)/2)<<1|t<(e+i)/2){case 0:do{a=new Array(4),a[u]=c,c=a}while(f*=2,i=e+f,o=r+f,t>i||n>o);break;case 1:do{a=new Array(4),a[u]=c,c=a}while(f*=2,e=i-f,o=r+f,e>t||n>o);break;case 2:do{a=new Array(4),a[u]=c,c=a}while(f*=2,i=e+f,r=o-f,t>i||r>n);break;case 3:do{a=new Array(4),a[u]=c,c=a}while(f*=2,e=i-f,r=o-f,e>t||r>n)}this._root&&this._root.length&&(this._root=c)}return this._x0=e,this._y0=r,this._x1=i,this._y1=o,this},rd.data=function(){var t=[];return this.visit(function(n){if(!n.length)do{t.push(n.data)}while(n=n.next)}),t},rd.extent=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},rd.find=function(t,n,e){var r,i,o,a,u,f,c,s=this._x0,l=this._y0,h=this._x1,d=this._y1,p=[],v=this._root;for(v&&p.push(new Be(v,s,l,h,d)),null==e?e=1/0:(s=t-e,l=n-e,h=t+e,d=n+e,e*=e);f=p.pop();)if(!(!(v=f.node)||(i=f.x0)>h||(o=f.y0)>d||(a=f.x1)<s||(u=f.y1)<l))if(v.length){var g=(i+a)/2,y=(o+u)/2;p.push(new Be(v[3],g,y,a,u),new Be(v[2],i,y,g,u),new Be(v[1],g,o,a,y),new Be(v[0],i,o,g,y)),(c=(n>=y)<<1|t>=g)&&(f=p[p.length-1],p[p.length-1]=p[p.length-1-c],p[p.length-1-c]=f)}else{var _=t-+this._x.call(null,v.data),b=n-+this._y.call(null,v.data),m=_*_+b*b;if(m<e){var x=Math.sqrt(e=m);s=t-x,l=n-x,h=t+x,d=n+x,r=v.data}}return r},rd.remove=function(t){if(isNaN(o=+this._x.call(null,t))||isNaN(a=+this._y.call(null,t)))return this;var n,e,r,i,o,a,u,f,c,s,l,h,d=this._root,p=this._x0,v=this._y0,g=this._x1,y=this._y1;if(!d)return this;if(d.length)for(;;){if((c=o>=(u=(p+g)/2))?p=u:g=u,(s=a>=(f=(v+y)/2))?v=f:y=f,n=d,!(d=d[l=s<<1|c]))return this;if(!d.length)break;(n[l+1&3]||n[l+2&3]||n[l+3&3])&&(e=n,h=l)}for(;d.data!==t;)if(r=d,!(d=d.next))return this;return(i=d.next)&&delete d.next,r?(i?r.next=i:delete r.next,this):n?(i?n[l]=i:delete n[l],(d=n[0]||n[1]||n[2]||n[3])&&d===(n[3]||n[2]||n[1]||n[0])&&!d.length&&(e?e[h]=d:this._root=d),this):(this._root=i,this)},rd.removeAll=function(t){for(var n=0,e=t.length;n<e;++n)this.remove(t[n]);return this},rd.root=function(){return this._root},rd.size=function(){var t=0;return this.visit(function(n){if(!n.length)do{++t}while(n=n.next)}),t},rd.visit=function(t){var n,e,r,i,o,a,u=[],f=this._root;for(f&&u.push(new Be(f,this._x0,this._y0,this._x1,this._y1));n=u.pop();)if(!t(f=n.node,r=n.x0,i=n.y0,o=n.x1,a=n.y1)&&f.length){var c=(r+o)/2,s=(i+a)/2;(e=f[3])&&u.push(new Be(e,c,s,o,a)),(e=f[2])&&u.push(new Be(e,r,s,c,a)),(e=f[1])&&u.push(new Be(e,c,i,o,s)),(e=f[0])&&u.push(new Be(e,r,i,c,s))}return this},rd.visitAfter=function(t){var n,e=[],r=[];for(this._root&&e.push(new Be(this._root,this._x0,this._y0,this._x1,this._y1));n=e.pop();){var i=n.node;if(i.length){var o,a=n.x0,u=n.y0,f=n.x1,c=n.y1,s=(a+f)/2,l=(u+c)/2;(o=i[0])&&e.push(new Be(o,a,u,s,l)),(o=i[1])&&e.push(new Be(o,s,u,f,l)),(o=i[2])&&e.push(new Be(o,a,l,s,c)),(o=i[3])&&e.push(new Be(o,s,l,f,c))}r.push(n)}for(;n=r.pop();)t(n.node,n.x0,n.y0,n.x1,n.y1);return this},rd.x=function(t){return arguments.length?(this._x=t,this):this._x},rd.y=function(t){return arguments.length?(this._y=t,this):this._y};var id=10,od=Math.PI*(3-Math.sqrt(5)),ad=/^(?:(.)?([<>=^]))?([+\-\( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;tr.prototype=nr.prototype,nr.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(null==this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(null==this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var ud,fd,cd={"%":function(t,n){return(100*t).toFixed(n)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:function(t){return Math.round(t).toString(10)},e:function(t,n){return t.toExponential(n)},f:function(t,n){return t.toFixed(n)},g:function(t,n){return t.toPrecision(n)},o:function(t){return Math.round(t).toString(8)},p:function(t,n){return er(100*t,n)},r:er,s:function(t,n){var e=Je(t,n);if(!e)return t+"";var r=e[0],i=e[1],o=i-(ud=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,a=r.length;return o===a?r:o>a?r+new Array(o-a+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+Je(t,Math.max(0,n+o-1))[0]},X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}},sd=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];or({decimal:".",thousands:",",grouping:[3],currency:["$",""]}),sr.prototype={constructor:sr,reset:function(){this.s=this.t=0},add:function(t){lr(Id,t,this.t),lr(this,Id.s,this.s),this.s?this.t+=Id.t:this.s=Id.t},valueOf:function(){return this.s}};var ld,hd,dd,pd,vd,gd,yd,_d,bd,md,xd,wd,Md,Ad,Td,Nd,Sd,Ed,kd,Cd,Pd,zd,Rd,Ld,Dd,Ud,qd,Od,Yd,Bd,Fd,Id=new sr,jd=1e-6,Hd=1e-12,Xd=Math.PI,Gd=Xd/2,Vd=Xd/4,$d=2*Xd,Wd=180/Xd,Zd=Xd/180,Qd=Math.abs,Jd=Math.atan,Kd=Math.atan2,tp=Math.cos,np=Math.ceil,ep=Math.exp,rp=Math.log,ip=Math.pow,op=Math.sin,ap=Math.sign||function(t){return t>0?1:t<0?-1:0},up=Math.sqrt,fp=Math.tan,cp={Feature:function(t,n){gr(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r<i;)gr(e[r].geometry,n)}},sp={Sphere:function(t,n){n.sphere()},Point:function(t,n){t=t.coordinates,n.point(t[0],t[1],t[2])},MultiPoint:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)t=e[r],n.point(t[0],t[1],t[2])},LineString:function(t,n){yr(t.coordinates,n,0)},MultiLineString:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)yr(e[r],n,0)},Polygon:function(t,n){_r(t.coordinates,n)},MultiPolygon:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)_r(e[r],n)},GeometryCollection:function(t,n){for(var e=t.geometries,r=-1,i=e.length;++r<i;)gr(e[r],n)}},lp=cr(),hp=cr(),dp={point:vr,lineStart:vr,lineEnd:vr,polygonStart:function(){lp.reset(),dp.lineStart=mr,dp.lineEnd=xr},polygonEnd:function(){var t=+lp;hp.add(t<0?$d+t:t),this.lineStart=this.lineEnd=this.point=vr},sphere:function(){hp.add($d)}},pp=cr(),vp={point:Pr,lineStart:Rr,lineEnd:Lr,polygonStart:function(){vp.point=Dr,vp.lineStart=Ur,vp.lineEnd=qr,pp.reset(),dp.polygonStart()},polygonEnd:function(){dp.polygonEnd(),vp.point=Pr,vp.lineStart=Rr,vp.lineEnd=Lr,lp<0?(gd=-(_d=180),yd=-(bd=90)):pp>jd?bd=90:pp<-jd&&(yd=-90),Td[0]=gd,Td[1]=_d}},gp={sphere:vr,point:Fr,lineStart:jr,lineEnd:Gr,polygonStart:function(){gp.lineStart=Vr,gp.lineEnd=$r},polygonEnd:function(){gp.lineStart=jr,gp.lineEnd=Gr}};Kr.invert=Kr;var yp,_p,bp,mp,xp,wp,Mp,Ap,Tp,Np,Sp,Ep=cr(),kp=di(function(){return!0},function(t){var n,e=NaN,r=NaN,i=NaN;return{lineStart:function(){t.lineStart(),n=1},point:function(o,a){var u=o>0?Xd:-Xd,f=Qd(o-e);Qd(f-Xd)<jd?(t.point(e,r=(r+a)/2>0?Gd:-Gd),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(u,r),t.point(o,r),n=0):i!==u&&f>=Xd&&(Qd(e-i)<jd&&(e-=i*jd),Qd(o-u)<jd&&(o-=u*jd),r=function(t,n,e,r){var i,o,a=op(t-e);return Qd(a)>jd?Jd((op(n)*(o=tp(r))*op(e)-op(r)*(i=tp(n))*op(t))/(i*o*a)):(n+r)/2}(e,r,o,a),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(u,r),n=0),t.point(e=o,r=a),i=u},lineEnd:function(){t.lineEnd(),e=r=NaN},clean:function(){return 2-n}}},function(t,n,e,r){var i;if(null==t)i=e*Gd,r.point(-Xd,i),r.point(0,i),r.point(Xd,i),r.point(Xd,0),r.point(Xd,-i),r.point(0,-i),r.point(-Xd,-i),r.point(-Xd,0),r.point(-Xd,i);else if(Qd(t[0]-n[0])>jd){var o=t[0]<n[0]?Xd:-Xd;i=e*o/2,r.point(-o,i),r.point(0,i),r.point(o,i)}else r.point(n[0],n[1])},[-Xd,-Gd]),Cp=1e9,Pp=-Cp,zp=cr(),Rp={sphere:vr,point:vr,lineStart:function(){Rp.point=bi,Rp.lineEnd=_i},lineEnd:vr,polygonStart:vr,polygonEnd:vr},Lp=[null,null],Dp={type:"LineString",coordinates:Lp},Up={Feature:function(t,n){return Mi(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r<i;)if(Mi(e[r].geometry,n))return!0;return!1}},qp={Sphere:function(){return!0},Point:function(t,n){return Ai(t.coordinates,n)},MultiPoint:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(Ai(e[r],n))return!0;return!1},LineString:function(t,n){return Ti(t.coordinates,n)},MultiLineString:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(Ti(e[r],n))return!0;return!1},Polygon:function(t,n){return Ni(t.coordinates,n)},MultiPolygon:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(Ni(e[r],n))return!0;return!1},GeometryCollection:function(t,n){for(var e=t.geometries,r=-1,i=e.length;++r<i;)if(Mi(e[r],n))return!0;return!1}},Op=cr(),Yp=cr(),Bp={point:vr,lineStart:vr,lineEnd:vr,polygonStart:function(){Bp.lineStart=Ri,Bp.lineEnd=Ui},polygonEnd:function(){Bp.lineStart=Bp.lineEnd=Bp.point=vr,Op.add(Qd(Yp)),Yp.reset()},result:function(){var t=Op/2;return Op.reset(),t}},Fp=1/0,Ip=Fp,jp=-Fp,Hp=jp,Xp={point:function(t,n){t<Fp&&(Fp=t),t>jp&&(jp=t),n<Ip&&(Ip=n),n>Hp&&(Hp=n)},lineStart:vr,lineEnd:vr,polygonStart:vr,polygonEnd:vr,result:function(){var t=[[Fp,Ip],[jp,Hp]];return jp=Hp=-(Ip=Fp=1/0),t}},Gp=0,Vp=0,$p=0,Wp=0,Zp=0,Qp=0,Jp=0,Kp=0,tv=0,nv={point:qi,lineStart:Oi,lineEnd:Fi,polygonStart:function(){nv.lineStart=Ii,nv.lineEnd=ji},polygonEnd:function(){nv.point=qi,nv.lineStart=Oi,nv.lineEnd=Fi},result:function(){var t=tv?[Jp/tv,Kp/tv]:Qp?[Wp/Qp,Zp/Qp]:$p?[Gp/$p,Vp/$p]:[NaN,NaN];return Gp=Vp=$p=Wp=Zp=Qp=Jp=Kp=tv=0,t}};Gi.prototype={_radius:4.5,pointRadius:function(t){return this._radius=t,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._context.closePath(),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._context.moveTo(t,n),this._point=1;break;case 1:this._context.lineTo(t,n);break;default:this._context.moveTo(t+this._radius,n),this._context.arc(t,n,this._radius,0,$d)}},result:vr};var ev,rv,iv,ov,av,uv=cr(),fv={point:vr,lineStart:function(){fv.point=Vi},lineEnd:function(){ev&&$i(rv,iv),fv.point=vr},polygonStart:function(){ev=!0},polygonEnd:function(){ev=null},result:function(){var t=+uv;return uv.reset(),t}};Wi.prototype={_radius:4.5,_circle:Zi(4.5),pointRadius:function(t){return(t=+t)!==this._radius&&(this._radius=t,this._circle=null),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._string.push("Z"),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._string.push("M",t,",",n),this._point=1;break;case 1:this._string.push("L",t,",",n);break;default:null==this._circle&&(this._circle=Zi(this._radius)),this._string.push("M",t,",",n,this._circle)}},result:function(){if(this._string.length){var t=this._string.join("");return this._string=[],t}return null}},Ji.prototype={constructor:Ji,point:function(t,n){this.stream.point(t,n)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};var cv=16,sv=tp(30*Zd),lv=Qi({point:function(t,n){this.stream.point(t*Zd,n*Zd)}}),hv=ho(function(t){return up(2/(1+t))});hv.invert=po(function(t){return 2*dr(t/2)});var dv=ho(function(t){return(t=hr(t))&&t/op(t)});dv.invert=po(function(t){return t}),vo.invert=function(t,n){return[t,2*Jd(ep(n))-Gd]},bo.invert=bo,xo.invert=po(Jd),Mo.invert=function(t,n){var e,r=n,i=25;do{var o=r*r,a=o*o;r-=e=(r*(1.007226+o*(.015085+a*(.028874*o-.044475-.005916*a)))-n)/(1.007226+o*(.045255+a*(.259866*o-.311325-.005916*11*a)))}while(Qd(e)>jd&&--i>0);return[t/(.8707+(o=r*r)*(o*(o*o*o*(.003971-.001529*o)-.013791)-.131979)),r]},Ao.invert=po(dr),To.invert=po(function(t){return 2*Jd(t)}),No.invert=function(t,n){return[-n,2*Jd(ep(t))-Gd]},Do.prototype=Po.prototype={constructor:Do,count:function(){return this.eachAfter(Co)},each:function(t){var n,e,r,i,o=this,a=[o];do{for(n=a.reverse(),a=[];o=n.pop();)if(t(o),e=o.children)for(r=0,i=e.length;r<i;++r)a.push(e[r])}while(a.length);return this},eachAfter:function(t){for(var n,e,r,i=this,o=[i],a=[];i=o.pop();)if(a.push(i),n=i.children)for(e=0,r=n.length;e<r;++e)o.push(n[e]);for(;i=a.pop();)t(i);return this},eachBefore:function(t){for(var n,e,r=this,i=[r];r=i.pop();)if(t(r),n=r.children)for(e=n.length-1;e>=0;--e)i.push(n[e]);return this},sum:function(t){return this.eachAfter(function(n){for(var e=+t(n.data)||0,r=n.children,i=r&&r.length;--i>=0;)e+=r[i].value;n.value=e})},sort:function(t){return this.eachBefore(function(n){n.children&&n.children.sort(t)})},path:function(t){for(var n=this,e=function(t,n){if(t===n)return t;var e=t.ancestors(),r=n.ancestors(),i=null;for(t=e.pop(),n=r.pop();t===n;)i=t,t=e.pop(),n=r.pop();return i}(n,t),r=[n];n!==e;)n=n.parent,r.push(n);for(var i=r.length;t!==e;)r.splice(i,0,t),t=t.parent;return r},ancestors:function(){for(var t=this,n=[t];t=t.parent;)n.push(t);return n},descendants:function(){var t=[];return this.each(function(n){t.push(n)}),t},leaves:function(){var t=[];return this.eachBefore(function(n){n.children||t.push(n)}),t},links:function(){var t=this,n=[];return t.each(function(e){e!==t&&n.push({source:e.parent,target:e})}),n},copy:function(){return Po(this).eachBefore(Ro)}};var pv=Array.prototype.slice,vv="$",gv={depth:-1},yv={};ca.prototype=Object.create(Do.prototype);var _v=(1+Math.sqrt(5))/2,bv=function t(n){function e(t,e,r,i,o){la(n,t,e,r,i,o)}return e.ratio=function(n){return t((n=+n)>1?n:1)},e}(_v),mv=function t(n){function e(t,e,r,i,o){if((a=t._squarify)&&a.ratio===n)for(var a,u,f,c,s,l=-1,h=a.length,d=t.value;++l<h;){for(f=(u=a[l]).children,c=u.value=0,s=f.length;c<s;++c)u.value+=f[c].value;u.dice?na(u,e,r,i,r+=(o-r)*u.value/d):sa(u,e,r,e+=(i-e)*u.value/d,o),d-=u.value}else t._squarify=a=la(n,t,e,r,i,o),a.ratio=n}return e.ratio=function(n){return t((n=+n)>1?n:1)},e}(_v),xv=function t(n){function e(t,e){return t=null==t?0:+t,e=null==e?1:+e,1===arguments.length?(e=t,t=0):e-=t,function(){return n()*e+t}}return e.source=t,e}(va),wv=function t(n){function e(t,e){var r,i;return t=null==t?0:+t,e=null==e?1:+e,function(){var o;if(null!=r)o=r,r=null;else do{r=2*n()-1,o=2*n()-1,i=r*r+o*o}while(!i||i>1);return t+e*o*Math.sqrt(-2*Math.log(i)/i)}}return e.source=t,e}(va),Mv=function t(n){function e(){var t=wv.source(n).apply(this,arguments);return function(){return Math.exp(t())}}return e.source=t,e}(va),Av=function t(n){function e(t){return function(){for(var e=0,r=0;r<t;++r)e+=n();return e}}return e.source=t,e}(va),Tv=function t(n){function e(t){var e=Av.source(n)(t);return function(){return e()/t}}return e.source=t,e}(va),Nv=function t(n){function e(t){return function(){return-Math.log(1-n())/t}}return e.source=t,e}(va),Sv=Array.prototype,Ev=Sv.map,kv=Sv.slice,Cv={name:"implicit"},Pv=[0,1],zv=new Date,Rv=new Date,Lv=Ia(function(){},function(t,n){t.setTime(+t+n)},function(t,n){return n-t});Lv.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?Ia(function(n){n.setTime(Math.floor(n/t)*t)},function(n,e){n.setTime(+n+e*t)},function(n,e){return(e-n)/t}):Lv:null};var Dv=Lv.range,Uv=6e4,qv=6048e5,Ov=Ia(function(t){t.setTime(1e3*Math.floor(t/1e3))},function(t,n){t.setTime(+t+1e3*n)},function(t,n){return(n-t)/1e3},function(t){return t.getUTCSeconds()}),Yv=Ov.range,Bv=Ia(function(t){t.setTime(Math.floor(t/Uv)*Uv)},function(t,n){t.setTime(+t+n*Uv)},function(t,n){return(n-t)/Uv},function(t){return t.getMinutes()}),Fv=Bv.range,Iv=Ia(function(t){var n=t.getTimezoneOffset()*Uv%36e5;n<0&&(n+=36e5),t.setTime(36e5*Math.floor((+t-n)/36e5)+n)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getHours()}),jv=Iv.range,Hv=Ia(function(t){t.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*Uv)/864e5},function(t){return t.getDate()-1}),Xv=Hv.range,Gv=ja(0),Vv=ja(1),$v=ja(2),Wv=ja(3),Zv=ja(4),Qv=ja(5),Jv=ja(6),Kv=Gv.range,tg=Vv.range,ng=$v.range,eg=Wv.range,rg=Zv.range,ig=Qv.range,og=Jv.range,ag=Ia(function(t){t.setDate(1),t.setHours(0,0,0,0)},function(t,n){t.setMonth(t.getMonth()+n)},function(t,n){return n.getMonth()-t.getMonth()+12*(n.getFullYear()-t.getFullYear())},function(t){return t.getMonth()}),ug=ag.range,fg=Ia(function(t){t.setMonth(0,1),t.setHours(0,0,0,0)},function(t,n){t.setFullYear(t.getFullYear()+n)},function(t,n){return n.getFullYear()-t.getFullYear()},function(t){return t.getFullYear()});fg.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Ia(function(n){n.setFullYear(Math.floor(n.getFullYear()/t)*t),n.setMonth(0,1),n.setHours(0,0,0,0)},function(n,e){n.setFullYear(n.getFullYear()+e*t)}):null};var cg=fg.range,sg=Ia(function(t){t.setUTCSeconds(0,0)},function(t,n){t.setTime(+t+n*Uv)},function(t,n){return(n-t)/Uv},function(t){return t.getUTCMinutes()}),lg=sg.range,hg=Ia(function(t){t.setUTCMinutes(0,0,0)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getUTCHours()}),dg=hg.range,pg=Ia(function(t){t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+n)},function(t,n){return(n-t)/864e5},function(t){return t.getUTCDate()-1}),vg=pg.range,gg=Ha(0),yg=Ha(1),_g=Ha(2),bg=Ha(3),mg=Ha(4),xg=Ha(5),wg=Ha(6),Mg=gg.range,Ag=yg.range,Tg=_g.range,Ng=bg.range,Sg=mg.range,Eg=xg.range,kg=wg.range,Cg=Ia(function(t){t.setUTCDate(1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCMonth(t.getUTCMonth()+n)},function(t,n){return n.getUTCMonth()-t.getUTCMonth()+12*(n.getUTCFullYear()-t.getUTCFullYear())},function(t){return t.getUTCMonth()}),Pg=Cg.range,zg=Ia(function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCFullYear(t.getUTCFullYear()+n)},function(t,n){return n.getUTCFullYear()-t.getUTCFullYear()},function(t){return t.getUTCFullYear()});zg.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Ia(function(n){n.setUTCFullYear(Math.floor(n.getUTCFullYear()/t)*t),n.setUTCMonth(0,1),n.setUTCHours(0,0,0,0)},function(n,e){n.setUTCFullYear(n.getUTCFullYear()+e*t)}):null};var Rg,Lg=zg.range,Dg={"-":"",_:" ",0:"0"},Ug=/^\s*\d+/,qg=/^%/,Og=/[\\^$*+?|[\]().{}]/g;nf({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});var Yg="%Y-%m-%dT%H:%M:%S.%LZ",Bg=Date.prototype.toISOString?function(t){return t.toISOString()}:t.utcFormat(Yg),Fg=+new Date("2000-01-01T00:00:00.000Z")?function(t){var n=new Date(t);return isNaN(n)?null:n}:t.utcParse(Yg),Ig=1e3,jg=60*Ig,Hg=60*jg,Xg=24*Hg,Gg=7*Xg,Vg=30*Xg,$g=365*Xg,Wg=uf("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"),Zg=uf("7fc97fbeaed4fdc086ffff99386cb0f0027fbf5b17666666"),Qg=uf("1b9e77d95f027570b3e7298a66a61ee6ab02a6761d666666"),Jg=uf("a6cee31f78b4b2df8a33a02cfb9a99e31a1cfdbf6fff7f00cab2d66a3d9affff99b15928"),Kg=uf("fbb4aeb3cde3ccebc5decbe4fed9a6ffffcce5d8bdfddaecf2f2f2"),ty=uf("b3e2cdfdcdaccbd5e8f4cae4e6f5c9fff2aef1e2cccccccc"),ny=uf("e41a1c377eb84daf4a984ea3ff7f00ffff33a65628f781bf999999"),ey=uf("66c2a5fc8d628da0cbe78ac3a6d854ffd92fe5c494b3b3b3"),ry=uf("8dd3c7ffffb3bebadafb807280b1d3fdb462b3de69fccde5d9d9d9bc80bdccebc5ffed6f"),iy=new Array(3).concat("d8b365f5f5f55ab4ac","a6611adfc27d80cdc1018571","a6611adfc27df5f5f580cdc1018571","8c510ad8b365f6e8c3c7eae55ab4ac01665e","8c510ad8b365f6e8c3f5f5f5c7eae55ab4ac01665e","8c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e","8c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e","5430058c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e003c30","5430058c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e003c30").map(uf),oy=ff(iy),ay=new Array(3).concat("af8dc3f7f7f77fbf7b","7b3294c2a5cfa6dba0008837","7b3294c2a5cff7f7f7a6dba0008837","762a83af8dc3e7d4e8d9f0d37fbf7b1b7837","762a83af8dc3e7d4e8f7f7f7d9f0d37fbf7b1b7837","762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b7837","762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b7837","40004b762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b783700441b","40004b762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b783700441b").map(uf),uy=ff(ay),fy=new Array(3).concat("e9a3c9f7f7f7a1d76a","d01c8bf1b6dab8e1864dac26","d01c8bf1b6daf7f7f7b8e1864dac26","c51b7de9a3c9fde0efe6f5d0a1d76a4d9221","c51b7de9a3c9fde0eff7f7f7e6f5d0a1d76a4d9221","c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221","c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221","8e0152c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221276419","8e0152c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221276419").map(uf),cy=ff(fy),sy=new Array(3).concat("998ec3f7f7f7f1a340","5e3c99b2abd2fdb863e66101","5e3c99b2abd2f7f7f7fdb863e66101","542788998ec3d8daebfee0b6f1a340b35806","542788998ec3d8daebf7f7f7fee0b6f1a340b35806","5427888073acb2abd2d8daebfee0b6fdb863e08214b35806","5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b35806","2d004b5427888073acb2abd2d8daebfee0b6fdb863e08214b358067f3b08","2d004b5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b358067f3b08").map(uf),ly=ff(sy),hy=new Array(3).concat("ef8a62f7f7f767a9cf","ca0020f4a58292c5de0571b0","ca0020f4a582f7f7f792c5de0571b0","b2182bef8a62fddbc7d1e5f067a9cf2166ac","b2182bef8a62fddbc7f7f7f7d1e5f067a9cf2166ac","b2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac","b2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac","67001fb2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac053061","67001fb2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac053061").map(uf),dy=ff(hy),py=new Array(3).concat("ef8a62ffffff999999","ca0020f4a582bababa404040","ca0020f4a582ffffffbababa404040","b2182bef8a62fddbc7e0e0e09999994d4d4d","b2182bef8a62fddbc7ffffffe0e0e09999994d4d4d","b2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d","b2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d","67001fb2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d1a1a1a","67001fb2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d1a1a1a").map(uf),vy=ff(py),gy=new Array(3).concat("fc8d59ffffbf91bfdb","d7191cfdae61abd9e92c7bb6","d7191cfdae61ffffbfabd9e92c7bb6","d73027fc8d59fee090e0f3f891bfdb4575b4","d73027fc8d59fee090ffffbfe0f3f891bfdb4575b4","d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4","d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4","a50026d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4313695","a50026d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4313695").map(uf),yy=ff(gy),_y=new Array(3).concat("fc8d59ffffbf91cf60","d7191cfdae61a6d96a1a9641","d7191cfdae61ffffbfa6d96a1a9641","d73027fc8d59fee08bd9ef8b91cf601a9850","d73027fc8d59fee08bffffbfd9ef8b91cf601a9850","d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850","d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850","a50026d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850006837","a50026d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850006837").map(uf),by=ff(_y),my=new Array(3).concat("fc8d59ffffbf99d594","d7191cfdae61abdda42b83ba","d7191cfdae61ffffbfabdda42b83ba","d53e4ffc8d59fee08be6f59899d5943288bd","d53e4ffc8d59fee08bffffbfe6f59899d5943288bd","d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd","d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd","9e0142d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd5e4fa2","9e0142d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd5e4fa2").map(uf),xy=ff(my),wy=new Array(3).concat("e5f5f999d8c92ca25f","edf8fbb2e2e266c2a4238b45","edf8fbb2e2e266c2a42ca25f006d2c","edf8fbccece699d8c966c2a42ca25f006d2c","edf8fbccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45006d2c00441b").map(uf),My=ff(wy),Ay=new Array(3).concat("e0ecf49ebcda8856a7","edf8fbb3cde38c96c688419d","edf8fbb3cde38c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d810f7c4d004b").map(uf),Ty=ff(Ay),Ny=new Array(3).concat("e0f3dba8ddb543a2ca","f0f9e8bae4bc7bccc42b8cbe","f0f9e8bae4bc7bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe0868ac084081").map(uf),Sy=ff(Ny),Ey=new Array(3).concat("fee8c8fdbb84e34a33","fef0d9fdcc8afc8d59d7301f","fef0d9fdcc8afc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301fb300007f0000").map(uf),ky=ff(Ey),Cy=new Array(3).concat("ece2f0a6bddb1c9099","f6eff7bdc9e167a9cf02818a","f6eff7bdc9e167a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016c59014636").map(uf),Py=ff(Cy),zy=new Array(3).concat("ece7f2a6bddb2b8cbe","f1eef6bdc9e174a9cf0570b0","f1eef6bdc9e174a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0045a8d023858").map(uf),Ry=ff(zy),Ly=new Array(3).concat("e7e1efc994c7dd1c77","f1eef6d7b5d8df65b0ce1256","f1eef6d7b5d8df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125698004367001f").map(uf),Dy=ff(Ly),Uy=new Array(3).concat("fde0ddfa9fb5c51b8a","feebe2fbb4b9f768a1ae017e","feebe2fbb4b9f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a017749006a").map(uf),qy=ff(Uy),Oy=new Array(3).concat("edf8b17fcdbb2c7fb8","ffffcca1dab441b6c4225ea8","ffffcca1dab441b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea8253494081d58").map(uf),Yy=ff(Oy),By=new Array(3).concat("f7fcb9addd8e31a354","ffffccc2e69978c679238443","ffffccc2e69978c67931a354006837","ffffccd9f0a3addd8e78c67931a354006837","ffffccd9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443006837004529").map(uf),Fy=ff(By),Iy=new Array(3).concat("fff7bcfec44fd95f0e","ffffd4fed98efe9929cc4c02","ffffd4fed98efe9929d95f0e993404","ffffd4fee391fec44ffe9929d95f0e993404","ffffd4fee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c02993404662506").map(uf),jy=ff(Iy),Hy=new Array(3).concat("ffeda0feb24cf03b20","ffffb2fecc5cfd8d3ce31a1c","ffffb2fecc5cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cbd0026800026").map(uf),Xy=ff(Hy),Gy=new Array(3).concat("deebf79ecae13182bd","eff3ffbdd7e76baed62171b5","eff3ffbdd7e76baed63182bd08519c","eff3ffc6dbef9ecae16baed63182bd08519c","eff3ffc6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b508519c08306b").map(uf),Vy=ff(Gy),$y=new Array(3).concat("e5f5e0a1d99b31a354","edf8e9bae4b374c476238b45","edf8e9bae4b374c47631a354006d2c","edf8e9c7e9c0a1d99b74c47631a354006d2c","edf8e9c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45006d2c00441b").map(uf),Wy=ff($y),Zy=new Array(3).concat("f0f0f0bdbdbd636363","f7f7f7cccccc969696525252","f7f7f7cccccc969696636363252525","f7f7f7d9d9d9bdbdbd969696636363252525","f7f7f7d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525000000").map(uf),Qy=ff(Zy),Jy=new Array(3).concat("efedf5bcbddc756bb1","f2f0f7cbc9e29e9ac86a51a3","f2f0f7cbc9e29e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a354278f3f007d").map(uf),Ky=ff(Jy),t_=new Array(3).concat("fee0d2fc9272de2d26","fee5d9fcae91fb6a4acb181d","fee5d9fcae91fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d").map(uf),n_=ff(t_),e_=new Array(3).concat("fee6cefdae6be6550d","feeddefdbe85fd8d3cd94701","feeddefdbe85fd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d94801a636037f2704").map(uf),r_=ff(e_),i_=ml(Zt(300,.5,0),Zt(-240,.5,1)),o_=ml(Zt(-100,.75,.35),Zt(80,1.5,.8)),a_=ml(Zt(260,.75,.35),Zt(80,1.5,.8)),u_=Zt(),f_=Rt(),c_=Math.PI/3,s_=2*Math.PI/3,l_=cf(uf("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725")),h_=cf(uf("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),d_=cf(uf("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),p_=cf(uf("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921")),v_=Math.abs,g_=Math.atan2,y_=Math.cos,__=Math.max,b_=Math.min,m_=Math.sin,x_=Math.sqrt,w_=1e-12,M_=Math.PI,A_=M_/2,T_=2*M_;_f.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:this._context.lineTo(t,n)}}};var N_=Sf(bf);Nf.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,n){this._curve.point(n*Math.sin(t),n*-Math.cos(t))}};var S_=Array.prototype.slice,E_={draw:function(t,n){var e=Math.sqrt(n/M_);t.moveTo(e,0),t.arc(0,0,e,0,T_)}},k_={draw:function(t,n){var e=Math.sqrt(n/5)/2;t.moveTo(-3*e,-e),t.lineTo(-e,-e),t.lineTo(-e,-3*e),t.lineTo(e,-3*e),t.lineTo(e,-e),t.lineTo(3*e,-e),t.lineTo(3*e,e),t.lineTo(e,e),t.lineTo(e,3*e),t.lineTo(-e,3*e),t.lineTo(-e,e),t.lineTo(-3*e,e),t.closePath()}},C_=Math.sqrt(1/3),P_=2*C_,z_={draw:function(t,n){var e=Math.sqrt(n/P_),r=e*C_;t.moveTo(0,-e),t.lineTo(r,0),t.lineTo(0,e),t.lineTo(-r,0),t.closePath()}},R_=Math.sin(M_/10)/Math.sin(7*M_/10),L_=Math.sin(T_/10)*R_,D_=-Math.cos(T_/10)*R_,U_={draw:function(t,n){var e=Math.sqrt(.8908130915292852*n),r=L_*e,i=D_*e;t.moveTo(0,-e),t.lineTo(r,i);for(var o=1;o<5;++o){var a=T_*o/5,u=Math.cos(a),f=Math.sin(a);t.lineTo(f*e,-u*e),t.lineTo(u*r-f*i,f*r+u*i)}t.closePath()}},q_={draw:function(t,n){var e=Math.sqrt(n),r=-e/2;t.rect(r,r,e,e)}},O_=Math.sqrt(3),Y_={draw:function(t,n){var e=-Math.sqrt(n/(3*O_));t.moveTo(0,2*e),t.lineTo(-O_*e,-e),t.lineTo(O_*e,-e),t.closePath()}},B_=Math.sqrt(3)/2,F_=1/Math.sqrt(12),I_=3*(F_/2+1),j_={draw:function(t,n){var e=Math.sqrt(n/I_),r=e/2,i=e*F_,o=r,a=e*F_+e,u=-o,f=a;t.moveTo(r,i),t.lineTo(o,a),t.lineTo(u,f),t.lineTo(-.5*r-B_*i,B_*r+-.5*i),t.lineTo(-.5*o-B_*a,B_*o+-.5*a),t.lineTo(-.5*u-B_*f,B_*u+-.5*f),t.lineTo(-.5*r+B_*i,-.5*i-B_*r),t.lineTo(-.5*o+B_*a,-.5*a-B_*o),t.lineTo(-.5*u+B_*f,-.5*f-B_*u),t.closePath()}},H_=[E_,k_,z_,q_,U_,Y_,j_];Bf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:Yf(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:Yf(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},Ff.prototype={areaStart:Of,areaEnd:Of,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x2=t,this._y2=n;break;case 1:this._point=2,this._x3=t,this._y3=n;break;case 2:this._point=3,this._x4=t,this._y4=n,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+n)/6);break;default:Yf(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},If.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var e=(this._x0+4*this._x1+t)/6,r=(this._y0+4*this._y1+n)/6;this._line?this._context.lineTo(e,r):this._context.moveTo(e,r);break;case 3:this._point=4;default:Yf(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},jf.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,n=this._y,e=t.length-1;if(e>0)for(var r,i=t[0],o=n[0],a=t[e]-i,u=n[e]-o,f=-1;++f<=e;)r=f/e,this._basis.point(this._beta*t[f]+(1-this._beta)*(i+r*a),this._beta*n[f]+(1-this._beta)*(o+r*u));this._x=this._y=null,this._basis.lineEnd()},point:function(t,n){this._x.push(+t),this._y.push(+n)}};var X_=function t(n){function e(t){return 1===n?new Bf(t):new jf(t,n)}return e.beta=function(n){return t(+n)},e}(.85);Xf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:Hf(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2,this._x1=t,this._y1=n;break;case 2:this._point=3;default:Hf(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var G_=function t(n){function e(t){return new Xf(t,n)}return e.tension=function(n){return t(+n)},e}(0);Gf.prototype={areaStart:Of,areaEnd:Of,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:Hf(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var V_=function t(n){function e(t){return new Gf(t,n)}return e.tension=function(n){return t(+n)},e}(0);Vf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:Hf(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var $_=function t(n){function e(t){return new Vf(t,n)}return e.tension=function(n){return t(+n)},e}(0);Wf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3;default:$f(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var W_=function t(n){function e(t){return n?new Wf(t,n):new Xf(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Zf.prototype={areaStart:Of,areaEnd:Of,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:$f(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var Z_=function t(n){function e(t){return n?new Zf(t,n):new Gf(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Qf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:$f(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var Q_=function t(n){function e(t){return n?new Qf(t,n):new Vf(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Jf.prototype={areaStart:Of,areaEnd:Of,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,n){t=+t,n=+n,this._point?this._context.lineTo(t,n):(this._point=1,this._context.moveTo(t,n))}},rc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:ec(this,this._t0,nc(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){var e=NaN;if(t=+t,n=+n,t!==this._x1||n!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,ec(this,nc(this,e=tc(this,t,n)),e);break;default:ec(this,this._t0,e=tc(this,t,n))}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n,this._t0=e}}},(ic.prototype=Object.create(rc.prototype)).point=function(t,n){rc.prototype.point.call(this,n,t)},oc.prototype={moveTo:function(t,n){this._context.moveTo(n,t)},closePath:function(){this._context.closePath()},lineTo:function(t,n){this._context.lineTo(n,t)},bezierCurveTo:function(t,n,e,r,i,o){this._context.bezierCurveTo(n,t,r,e,o,i)}},ac.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var t=this._x,n=this._y,e=t.length;if(e)if(this._line?this._context.lineTo(t[0],n[0]):this._context.moveTo(t[0],n[0]),2===e)this._context.lineTo(t[1],n[1]);else for(var r=uc(t),i=uc(n),o=0,a=1;a<e;++o,++a)this._context.bezierCurveTo(r[0][o],i[0][o],r[1][o],i[1][o],t[a],n[a]);(this._line||0!==this._line&&1===e)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(t,n){this._x.push(+t),this._y.push(+n)}},fc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&2===this._point&&this._context.lineTo(this._x,this._y),(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,n),this._context.lineTo(t,n);else{var e=this._x*(1-this._t)+t*this._t;this._context.lineTo(e,this._y),this._context.lineTo(e,n)}}this._x=t,this._y=n}},yc.prototype={constructor:yc,insert:function(t,n){var e,r,i;if(t){if(n.P=t,n.N=t.N,t.N&&(t.N.P=n),t.N=n,t.R){for(t=t.R;t.L;)t=t.L;t.L=n}else t.R=n;e=t}else this._?(t=xc(this._),n.P=null,n.N=t,t.P=t.L=n,e=t):(n.P=n.N=null,this._=n,e=null);for(n.L=n.R=null,n.U=e,n.C=!0,t=n;e&&e.C;)e===(r=e.U).L?(i=r.R)&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.R&&(bc(this,e),e=(t=e).U),e.C=!1,r.C=!0,mc(this,r)):(i=r.L)&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.L&&(mc(this,e),e=(t=e).U),e.C=!1,r.C=!0,bc(this,r)),e=t.U;this._.C=!1},remove:function(t){t.N&&(t.N.P=t.P),t.P&&(t.P.N=t.N),t.N=t.P=null;var n,e,r,i=t.U,o=t.L,a=t.R;if(e=o?a?xc(a):o:a,i?i.L===t?i.L=e:i.R=e:this._=e,o&&a?(r=e.C,e.C=t.C,e.L=o,o.U=e,e!==a?(i=e.U,e.U=t.U,t=e.R,i.L=t,e.R=a,a.U=e):(e.U=i,i=e,t=e.R)):(r=t.C,t=e),t&&(t.U=i),!r)if(t&&t.C)t.C=!1;else{do{if(t===this._)break;if(t===i.L){if((n=i.R).C&&(n.C=!1,i.C=!0,bc(this,i),n=i.R),n.L&&n.L.C||n.R&&n.R.C){n.R&&n.R.C||(n.L.C=!1,n.C=!0,mc(this,n),n=i.R),n.C=i.C,i.C=n.R.C=!1,bc(this,i),t=this._;break}}else if((n=i.L).C&&(n.C=!1,i.C=!0,mc(this,i),n=i.L),n.L&&n.L.C||n.R&&n.R.C){n.L&&n.L.C||(n.R.C=!1,n.C=!0,bc(this,n),n=i.L),n.C=i.C,i.C=n.L.C=!1,mc(this,i),t=this._;break}n.C=!0,t=i,i=i.U}while(!t.C);t&&(t.C=!1)}}};var J_,K_,tb,nb,eb,rb=[],ib=[],ob=1e-6,ab=1e-12;Yc.prototype={constructor:Yc,polygons:function(){var t=this.edges;return this.cells.map(function(n){var e=n.halfedges.map(function(e){return Ec(n,t[e])});return e.data=n.site.data,e})},triangles:function(){var t=[],n=this.edges;return this.cells.forEach(function(e,r){if(o=(i=e.halfedges).length)for(var i,o,a,u=e.site,f=-1,c=n[i[o-1]],s=c.left===u?c.right:c.left;++f<o;)a=s,s=(c=n[i[f]]).left===u?c.right:c.left,a&&s&&r<a.index&&r<s.index&&qc(u,a,s)<0&&t.push([u.data,a.data,s.data])}),t},links:function(){return this.edges.filter(function(t){return t.right}).map(function(t){return{source:t.left.data,target:t.right.data}})},find:function(t,n,e){for(var r,i,o=this,a=o._found||0,u=o.cells.length;!(i=o.cells[a]);)if(++a>=u)return null;var f=t-i.site[0],c=n-i.site[1],s=f*f+c*c;do{i=o.cells[r=a],a=null,i.halfedges.forEach(function(e){var r=o.edges[e],u=r.left;if(u!==i.site&&u||(u=r.right)){var f=t-u[0],c=n-u[1],l=f*f+c*c;l<s&&(s=l,a=u.index)}})}while(null!==a);return o._found=r,null==e||s<=e*e?i.site:null}},Fc.prototype={constructor:Fc,scale:function(t){return 1===t?this:new Fc(this.k*t,this.x,this.y)},translate:function(t,n){return 0===t&0===n?this:new Fc(this.k,this.x+this.k*t,this.y+this.k*n)},apply:function(t){return[t[0]*this.k+this.x,t[1]*this.k+this.y]},applyX:function(t){return t*this.k+this.x},applyY:function(t){return t*this.k+this.y},invert:function(t){return[(t[0]-this.x)/this.k,(t[1]-this.y)/this.k]},invertX:function(t){return(t-this.x)/this.k},invertY:function(t){return(t-this.y)/this.k},rescaleX:function(t){return t.copy().domain(t.range().map(this.invertX,this).map(t.invert,t))},rescaleY:function(t){return t.copy().domain(t.range().map(this.invertY,this).map(t.invert,t))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var ub=new Fc(1,0,0);Ic.prototype=Fc.prototype,t.version="5.4.0",t.bisect=Jc,t.bisectRight=Jc,t.bisectLeft=Kc,t.ascending=n,t.bisector=e,t.cross=function(t,n,e){var i,o,a,u,f=t.length,c=n.length,s=new Array(f*c);for(null==e&&(e=r),i=a=0;i<f;++i)for(u=t[i],o=0;o<c;++o,++a)s[a]=e(u,n[o]);return s},t.descending=function(t,n){return n<t?-1:n>t?1:n>=t?0:NaN},t.deviation=a,t.extent=u,t.histogram=function(){function t(t){var i,o,a=t.length,u=new Array(a);for(i=0;i<a;++i)u[i]=n(t[i],i,t);var f=e(u),c=f[0],l=f[1],h=r(u,c,l);Array.isArray(h)||(h=d(c,l,h),h=s(Math.ceil(c/h)*h,Math.floor(l/h)*h,h));for(var p=h.length;h[0]<=c;)h.shift(),--p;for(;h[p-1]>l;)h.pop(),--p;var v,g=new Array(p+1);for(i=0;i<=p;++i)(v=g[i]=[]).x0=i>0?h[i-1]:c,v.x1=i<p?h[i]:l;for(i=0;i<a;++i)c<=(o=u[i])&&o<=l&&g[Jc(h,o,0,p)].push(t[i]);return g}var n=c,e=u,r=p;return t.value=function(e){return arguments.length?(n="function"==typeof e?e:f(e),t):n},t.domain=function(n){return arguments.length?(e="function"==typeof n?n:f([n[0],n[1]]),t):e},t.thresholds=function(n){return arguments.length?(r="function"==typeof n?n:Array.isArray(n)?f(ns.call(n)):f(n),t):r},t},t.thresholdFreedmanDiaconis=function(t,e,r){return t=es.call(t,i).sort(n),Math.ceil((r-e)/(2*(v(t,.75)-v(t,.25))*Math.pow(t.length,-1/3)))},t.thresholdScott=function(t,n,e){return Math.ceil((e-n)/(3.5*a(t)*Math.pow(t.length,-1/3)))},t.thresholdSturges=p,t.max=g,t.mean=function(t,n){var e,r=t.length,o=r,a=-1,u=0;if(null==n)for(;++a<r;)isNaN(e=i(t[a]))?--o:u+=e;else for(;++a<r;)isNaN(e=i(n(t[a],a,t)))?--o:u+=e;if(o)return u/o},t.median=function(t,e){var r,o=t.length,a=-1,u=[];if(null==e)for(;++a<o;)isNaN(r=i(t[a]))||u.push(r);else for(;++a<o;)isNaN(r=i(e(t[a],a,t)))||u.push(r);return v(u.sort(n),.5)},t.merge=y,t.min=_,t.pairs=function(t,n){null==n&&(n=r);for(var e=0,i=t.length-1,o=t[0],a=new Array(i<0?0:i);e<i;)a[e]=n(o,o=t[++e]);return a},t.permute=function(t,n){for(var e=n.length,r=new Array(e);e--;)r[e]=t[n[e]];return r},t.quantile=v,t.range=s,t.scan=function(t,e){if(r=t.length){var r,i,o=0,a=0,u=t[a];for(null==e&&(e=n);++o<r;)(e(i=t[o],u)<0||0!==e(u,u))&&(u=i,a=o);return 0===e(u,u)?a:void 0}},t.shuffle=function(t,n,e){for(var r,i,o=(null==e?t.length:e)-(n=null==n?0:+n);o;)i=Math.random()*o--|0,r=t[o+n],t[o+n]=t[i+n],t[i+n]=r;return t},t.sum=function(t,n){var e,r=t.length,i=-1,o=0;if(null==n)for(;++i<r;)(e=+t[i])&&(o+=e);else for(;++i<r;)(e=+n(t[i],i,t))&&(o+=e);return o},t.ticks=l,t.tickIncrement=h,t.tickStep=d,t.transpose=b,t.variance=o,t.zip=function(){return b(arguments)},t.axisTop=function(t){return T(us,t)},t.axisRight=function(t){return T(fs,t)},t.axisBottom=function(t){return T(cs,t)},t.axisLeft=function(t){return T(ss,t)},t.brush=function(){return ee(_h)},t.brushX=function(){return ee(gh)},t.brushY=function(){return ee(yh)},t.brushSelection=function(t){var n=t.__brush;return n?n.dim.output(n.selection):null},t.chord=function(){function t(t){var o,a,u,f,c,l,h=t.length,d=[],p=s(h),v=[],g=[],y=g.groups=new Array(h),_=new Array(h*h);for(o=0,c=-1;++c<h;){for(a=0,l=-1;++l<h;)a+=t[c][l];d.push(a),v.push(s(h)),o+=a}for(e&&p.sort(function(t,n){return e(d[t],d[n])}),r&&v.forEach(function(n,e){n.sort(function(n,i){return r(t[e][n],t[e][i])})}),f=(o=kh(0,Eh-n*h)/o)?n:Eh/h,a=0,c=-1;++c<h;){for(u=a,l=-1;++l<h;){var b=p[c],m=v[b][l],x=t[b][m],w=a,M=a+=x*o;_[m*h+b]={index:b,subindex:m,startAngle:w,endAngle:M,value:x}}y[b]={index:b,startAngle:u,endAngle:a,value:d[b]},a+=f}for(c=-1;++c<h;)for(l=c-1;++l<h;){var A=_[l*h+c],T=_[c*h+l];(A.value||T.value)&&g.push(A.value<T.value?{source:T,target:A}:{source:A,target:T})}return i?g.sort(i):g}var n=0,e=null,r=null,i=null;return t.padAngle=function(e){return arguments.length?(n=kh(0,e),t):n},t.sortGroups=function(n){return arguments.length?(e=n,t):e},t.sortSubgroups=function(n){return arguments.length?(r=n,t):r},t.sortChords=function(n){return arguments.length?(null==n?i=null:(i=function(t){return function(n,e){return t(n.source.value+n.target.value,e.source.value+e.target.value)}}(n))._=n,t):i&&i._},t},t.ribbon=function(){function t(){var t,u=Ch.call(arguments),f=n.apply(this,u),c=e.apply(this,u),s=+r.apply(this,(u[0]=f,u)),l=i.apply(this,u)-Sh,h=o.apply(this,u)-Sh,d=s*Ah(l),p=s*Th(l),v=+r.apply(this,(u[0]=c,u)),g=i.apply(this,u)-Sh,y=o.apply(this,u)-Sh;if(a||(a=t=oe()),a.moveTo(d,p),a.arc(0,0,s,l,h),l===g&&h===y||(a.quadraticCurveTo(0,0,v*Ah(g),v*Th(g)),a.arc(0,0,v,g,y)),a.quadraticCurveTo(0,0,d,p),a.closePath(),t)return a=null,t+""||null}var n=ae,e=ue,r=fe,i=ce,o=se,a=null;return t.radius=function(n){return arguments.length?(r="function"==typeof n?n:re(+n),t):r},t.startAngle=function(n){return arguments.length?(i="function"==typeof n?n:re(+n),t):i},t.endAngle=function(n){return arguments.length?(o="function"==typeof n?n:re(+n),t):o},t.source=function(e){return arguments.length?(n=e,t):n},t.target=function(n){return arguments.length?(e=n,t):e},t.context=function(n){return arguments.length?(a=null==n?null:n,t):a},t},t.nest=function(){function t(n,i,a,u){if(i>=o.length)return null!=e&&n.sort(e),null!=r?r(n):n;for(var f,c,s,l=-1,h=n.length,d=o[i++],p=he(),v=a();++l<h;)(s=p.get(f=d(c=n[l])+""))?s.push(c):p.set(f,[c]);return p.each(function(n,e){u(v,e,t(n,i,a,u))}),v}function n(t,e){if(++e>o.length)return t;var i,u=a[e-1];return null!=r&&e>=o.length?i=t.entries():(i=[],t.each(function(t,r){i.push({key:r,values:n(t,e)})})),null!=u?i.sort(function(t,n){return u(t.key,n.key)}):i}var e,r,i,o=[],a=[];return i={object:function(n){return t(n,0,de,pe)},map:function(n){return t(n,0,ve,ge)},entries:function(e){return n(t(e,0,ve,ge),0)},key:function(t){return o.push(t),i},sortKeys:function(t){return a[o.length-1]=t,i},sortValues:function(t){return e=t,i},rollup:function(t){return r=t,i}}},t.set=_e,t.map=he,t.keys=function(t){var n=[];for(var e in t)n.push(e);return n},t.values=function(t){var n=[];for(var e in t)n.push(t[e]);return n},t.entries=function(t){var n=[];for(var e in t)n.push({key:e,value:t[e]});return n},t.color=kt,t.rgb=Rt,t.hsl=qt,t.lab=Ft,t.hcl=$t,t.lch=function(t,n,e,r){return 1===arguments.length?Vt(t):new Wt(e,n,t,null==r?1:r)},t.gray=function(t,n){return new It(t,0,0,null==n?1:n)},t.cubehelix=Zt,t.contours=Me,t.contourDensity=function(){function t(t){var e=new Float32Array(v*y),r=new Float32Array(v*y);t.forEach(function(t,n,r){var i=a(t,n,r)+p>>h,o=u(t,n,r)+p>>h;i>=0&&i<v&&o>=0&&o<y&&++e[i+o*v]}),Ae({width:v,height:y,data:e},{width:v,height:y,data:r},l>>h),Te({width:v,height:y,data:r},{width:v,height:y,data:e},l>>h),Ae({width:v,height:y,data:e},{width:v,height:y,data:r},l>>h),Te({width:v,height:y,data:r},{width:v,height:y,data:e},l>>h),Ae({width:v,height:y,data:e},{width:v,height:y,data:r},l>>h),Te({width:v,height:y,data:r},{width:v,height:y,data:e},l>>h);var i=_(e);if(!Array.isArray(i)){var o=g(e);i=d(0,o,i),(i=s(0,Math.floor(o/i)*i,i)).shift()}return Me().thresholds(i).size([v,y])(e).map(n)}function n(t){return t.value*=Math.pow(2,-2*h),t.coordinates.forEach(e),t}function e(t){t.forEach(r)}function r(t){t.forEach(i)}function i(t){t[0]=t[0]*Math.pow(2,h)-p,t[1]=t[1]*Math.pow(2,h)-p}function o(){return p=3*l,v=f+2*p>>h,y=c+2*p>>h,t}var a=Ne,u=Se,f=960,c=500,l=20,h=2,p=3*l,v=f+2*p>>h,y=c+2*p>>h,_=me(20);return t.x=function(n){return arguments.length?(a="function"==typeof n?n:me(+n),t):a},t.y=function(n){return arguments.length?(u="function"==typeof n?n:me(+n),t):u},t.size=function(t){if(!arguments.length)return[f,c];var n=Math.ceil(t[0]),e=Math.ceil(t[1]);if(!(n>=0||n>=0))throw new Error("invalid size");return f=n,c=e,o()},t.cellSize=function(t){if(!arguments.length)return 1<<h;if(!((t=+t)>=1))throw new Error("invalid cell size");return h=Math.floor(Math.log(t)/Math.LN2),o()},t.thresholds=function(n){return arguments.length?(_="function"==typeof n?n:Array.isArray(n)?me(Dh.call(n)):me(n),t):_},t.bandwidth=function(t){if(!arguments.length)return Math.sqrt(l*(l+1));if(!((t=+t)>=0))throw new Error("invalid bandwidth");return l=Math.round((Math.sqrt(4*t*t+1)-1)/2),o()},t},t.dispatch=N,t.drag=function(){function n(t){t.on("mousedown.drag",e).filter(g).on("touchstart.drag",o).on("touchmove.drag",a).on("touchend.drag touchcancel.drag",u).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function e(){if(!h&&d.apply(this,arguments)){var n=f("mouse",p.apply(this,arguments),pt,this,arguments);n&&(ct(t.event.view).on("mousemove.drag",r,!0).on("mouseup.drag",i,!0),_t(t.event.view),gt(),l=!1,c=t.event.clientX,s=t.event.clientY,n("start"))}}function r(){if(yt(),!l){var n=t.event.clientX-c,e=t.event.clientY-s;l=n*n+e*e>m}y.mouse("drag")}function i(){ct(t.event.view).on("mousemove.drag mouseup.drag",null),bt(t.event.view,l),yt(),y.mouse("end")}function o(){if(d.apply(this,arguments)){var n,e,r=t.event.changedTouches,i=p.apply(this,arguments),o=r.length;for(n=0;n<o;++n)(e=f(r[n].identifier,i,vt,this,arguments))&&(gt(),e("start"))}}function a(){var n,e,r=t.event.changedTouches,i=r.length;for(n=0;n<i;++n)(e=y[r[n].identifier])&&(yt(),e("drag"))}function u(){var n,e,r=t.event.changedTouches,i=r.length;for(h&&clearTimeout(h),h=setTimeout(function(){h=null},500),n=0;n<i;++n)(e=y[r[n].identifier])&&(gt(),e("end"))}function f(e,r,i,o,a){var u,f,c,s=i(r,e),l=_.copy();if(ot(new xt(n,"beforestart",u,e,b,s[0],s[1],0,0,l),function(){return null!=(t.event.subject=u=v.apply(o,a))&&(f=u.x-s[0]||0,c=u.y-s[1]||0,!0)}))return function t(h){var d,p=s;switch(h){case"start":y[e]=t,d=b++;break;case"end":delete y[e],--b;case"drag":s=i(r,e),d=b}ot(new xt(n,h,u,e,d,s[0]+f,s[1]+c,s[0]-p[0],s[1]-p[1],l),l.apply,l,[h,o,a])}}var c,s,l,h,d=wt,p=Mt,v=At,g=Tt,y={},_=N("start","drag","end"),b=0,m=0;return n.filter=function(t){return arguments.length?(d="function"==typeof t?t:mt(!!t),n):d},n.container=function(t){return arguments.length?(p="function"==typeof t?t:mt(t),n):p},n.subject=function(t){return arguments.length?(v="function"==typeof t?t:mt(t),n):v},n.touchable=function(t){return arguments.length?(g="function"==typeof t?t:mt(!!t),n):g},n.on=function(){var t=_.on.apply(_,arguments);return t===_?n:t},n.clickDistance=function(t){return arguments.length?(m=(t=+t)*t,n):Math.sqrt(m)},n},t.dragDisable=_t,t.dragEnable=bt,t.dsvFormat=ke,t.csvParse=jh,t.csvParseRows=Hh,t.csvFormat=Xh,t.csvFormatRows=Gh,t.tsvParse=$h,t.tsvParseRows=Wh,t.tsvFormat=Zh,t.tsvFormatRows=Qh,t.easeLinear=function(t){return+t},t.easeQuad=Fn,t.easeQuadIn=function(t){return t*t},t.easeQuadOut=function(t){return t*(2-t)},t.easeQuadInOut=Fn,t.easeCubic=In,t.easeCubicIn=function(t){return t*t*t},t.easeCubicOut=function(t){return--t*t*t+1},t.easeCubicInOut=In,t.easePoly=Hl,t.easePolyIn=Il,t.easePolyOut=jl,t.easePolyInOut=Hl,t.easeSin=jn,t.easeSinIn=function(t){return 1-Math.cos(t*Gl)},t.easeSinOut=function(t){return Math.sin(t*Gl)},t.easeSinInOut=jn,t.easeExp=Hn,t.easeExpIn=function(t){return Math.pow(2,10*t-10)},t.easeExpOut=function(t){return 1-Math.pow(2,-10*t)},t.easeExpInOut=Hn,t.easeCircle=Xn,t.easeCircleIn=function(t){return 1-Math.sqrt(1-t*t)},t.easeCircleOut=function(t){return Math.sqrt(1- --t*t)},t.easeCircleInOut=Xn,t.easeBounce=Gn,t.easeBounceIn=function(t){return 1-Gn(1-t)},t.easeBounceOut=Gn,t.easeBounceInOut=function(t){return((t*=2)<=1?1-Gn(1-t):Gn(t-1)+1)/2},t.easeBack=oh,t.easeBackIn=rh,t.easeBackOut=ih,t.easeBackInOut=oh,t.easeElastic=fh,t.easeElasticIn=uh,t.easeElasticOut=fh,t.easeElasticInOut=ch,t.blob=function(t,n){return fetch(t,n).then(Ce)},t.buffer=function(t,n){return fetch(t,n).then(Pe)},t.dsv=function(t,n,e,r){3===arguments.length&&"function"==typeof e&&(r=e,e=void 0);var i=ke(t);return Re(n,e).then(function(t){return i.parse(t,r)})},t.csv=Jh,t.tsv=Kh,t.image=function(t,n){return new Promise(function(e,r){var i=new Image;for(var o in n)i[o]=n[o];i.onerror=r,i.onload=function(){e(i)},i.src=t})},t.json=function(t,n){return fetch(t,n).then(De)},t.text=Re,t.xml=td,t.html=nd,t.svg=ed,t.forceCenter=function(t,n){function e(){var e,i,o=r.length,a=0,u=0;for(e=0;e<o;++e)a+=(i=r[e]).x,u+=i.y;for(a=a/o-t,u=u/o-n,e=0;e<o;++e)(i=r[e]).x-=a,i.y-=u}var r;return null==t&&(t=0),null==n&&(n=0),e.initialize=function(t){r=t},e.x=function(n){return arguments.length?(t=+n,e):t},e.y=function(t){return arguments.length?(n=+t,e):n},e},t.forceCollide=function(t){function n(){for(var t,n,r,f,c,s,l,h=i.length,d=0;d<u;++d)for(n=je(i,Ge,Ve).visitAfter(e),t=0;t<h;++t)r=i[t],s=o[r.index],l=s*s,f=r.x+r.vx,c=r.y+r.vy,n.visit(function(t,n,e,i,o){var u=t.data,h=t.r,d=s+h;if(!u)return n>f+d||i<f-d||e>c+d||o<c-d;if(u.index>r.index){var p=f-u.x-u.vx,v=c-u.y-u.vy,g=p*p+v*v;g<d*d&&(0===p&&(p=Oe(),g+=p*p),0===v&&(v=Oe(),g+=v*v),g=(d-(g=Math.sqrt(g)))/g*a,r.vx+=(p*=g)*(d=(h*=h)/(l+h)),r.vy+=(v*=g)*d,u.vx-=p*(d=1-d),u.vy-=v*d)}})}function e(t){if(t.data)return t.r=o[t.data.index];for(var n=t.r=0;n<4;++n)t[n]&&t[n].r>t.r&&(t.r=t[n].r)}function r(){if(i){var n,e,r=i.length;for(o=new Array(r),n=0;n<r;++n)e=i[n],o[e.index]=+t(e,n,i)}}var i,o,a=1,u=1;return"function"!=typeof t&&(t=qe(null==t?1:+t)),n.initialize=function(t){i=t,r()},n.iterations=function(t){return arguments.length?(u=+t,n):u},n.strength=function(t){return arguments.length?(a=+t,n):a},n.radius=function(e){return arguments.length?(t="function"==typeof e?e:qe(+e),r(),n):t},n},t.forceLink=function(t){function n(n){for(var e=0,r=t.length;e<d;++e)for(var i,u,f,s,l,h,p,v=0;v<r;++v)u=(i=t[v]).source,s=(f=i.target).x+f.vx-u.x-u.vx||Oe(),l=f.y+f.vy-u.y-u.vy||Oe(),s*=h=((h=Math.sqrt(s*s+l*l))-a[v])/h*n*o[v],l*=h,f.vx-=s*(p=c[v]),f.vy-=l*p,u.vx+=s*(p=1-p),u.vy+=l*p}function e(){if(u){var n,e,l=u.length,h=t.length,d=he(u,s);for(n=0,f=new Array(l);n<h;++n)(e=t[n]).index=n,"object"!=typeof e.source&&(e.source=We(d,e.source)),"object"!=typeof e.target&&(e.target=We(d,e.target)),f[e.source.index]=(f[e.source.index]||0)+1,f[e.target.index]=(f[e.target.index]||0)+1;for(n=0,c=new Array(h);n<h;++n)e=t[n],c[n]=f[e.source.index]/(f[e.source.index]+f[e.target.index]);o=new Array(h),r(),a=new Array(h),i()}}function r(){if(u)for(var n=0,e=t.length;n<e;++n)o[n]=+l(t[n],n,t)}function i(){if(u)for(var n=0,e=t.length;n<e;++n)a[n]=+h(t[n],n,t)}var o,a,u,f,c,s=$e,l=function(t){return 1/Math.min(f[t.source.index],f[t.target.index])},h=qe(30),d=1;return null==t&&(t=[]),n.initialize=function(t){u=t,e()},n.links=function(r){return arguments.length?(t=r,e(),n):t},n.id=function(t){return arguments.length?(s=t,n):s},n.iterations=function(t){return arguments.length?(d=+t,n):d},n.strength=function(t){return arguments.length?(l="function"==typeof t?t:qe(+t),r(),n):l},n.distance=function(t){return arguments.length?(h="function"==typeof t?t:qe(+t),i(),n):h},n},t.forceManyBody=function(){function t(t){var n,u=i.length,f=je(i,Ze,Qe).visitAfter(e);for(a=t,n=0;n<u;++n)o=i[n],f.visit(r)}function n(){if(i){var t,n,e=i.length;for(u=new Array(e),t=0;t<e;++t)n=i[t],u[n.index]=+f(n,t,i)}}function e(t){var n,e,r,i,o,a=0,f=0;if(t.length){for(r=i=o=0;o<4;++o)(n=t[o])&&(e=Math.abs(n.value))&&(a+=n.value,f+=e,r+=e*n.x,i+=e*n.y);t.x=r/f,t.y=i/f}else{(n=t).x=n.data.x,n.y=n.data.y;do{a+=u[n.data.index]}while(n=n.next)}t.value=a}function r(t,n,e,r){if(!t.value)return!0;var i=t.x-o.x,f=t.y-o.y,h=r-n,d=i*i+f*f;if(h*h/l<d)return d<s&&(0===i&&(i=Oe(),d+=i*i),0===f&&(f=Oe(),d+=f*f),d<c&&(d=Math.sqrt(c*d)),o.vx+=i*t.value*a/d,o.vy+=f*t.value*a/d),!0;if(!(t.length||d>=s)){(t.data!==o||t.next)&&(0===i&&(i=Oe(),d+=i*i),0===f&&(f=Oe(),d+=f*f),d<c&&(d=Math.sqrt(c*d)));do{t.data!==o&&(h=u[t.data.index]*a/d,o.vx+=i*h,o.vy+=f*h)}while(t=t.next)}}var i,o,a,u,f=qe(-30),c=1,s=1/0,l=.81;return t.initialize=function(t){i=t,n()},t.strength=function(e){return arguments.length?(f="function"==typeof e?e:qe(+e),n(),t):f},t.distanceMin=function(n){return arguments.length?(c=n*n,t):Math.sqrt(c)},t.distanceMax=function(n){return arguments.length?(s=n*n,t):Math.sqrt(s)},t.theta=function(n){return arguments.length?(l=n*n,t):Math.sqrt(l)},t},t.forceRadial=function(t,n,e){function r(t){for(var r=0,i=o.length;r<i;++r){var f=o[r],c=f.x-n||1e-6,s=f.y-e||1e-6,l=Math.sqrt(c*c+s*s),h=(u[r]-l)*a[r]*t/l;f.vx+=c*h,f.vy+=s*h}}function i(){if(o){var n,e=o.length;for(a=new Array(e),u=new Array(e),n=0;n<e;++n)u[n]=+t(o[n],n,o),a[n]=isNaN(u[n])?0:+f(o[n],n,o)}}var o,a,u,f=qe(.1);return"function"!=typeof t&&(t=qe(+t)),null==n&&(n=0),null==e&&(e=0),r.initialize=function(t){o=t,i()},r.strength=function(t){return arguments.length?(f="function"==typeof t?t:qe(+t),i(),r):f},r.radius=function(n){return arguments.length?(t="function"==typeof n?n:qe(+n),i(),r):t},r.x=function(t){return arguments.length?(n=+t,r):n},r.y=function(t){return arguments.length?(e=+t,r):e},r},t.forceSimulation=function(t){function n(){e(),d.call("tick",o),a<u&&(h.stop(),d.call("end",o))}function e(){var n,e,r=t.length;for(a+=(c-a)*f,l.each(function(t){t(a)}),n=0;n<r;++n)null==(e=t[n]).fx?e.x+=e.vx*=s:(e.x=e.fx,e.vx=0),null==e.fy?e.y+=e.vy*=s:(e.y=e.fy,e.vy=0)}function r(){for(var n,e=0,r=t.length;e<r;++e){if(n=t[e],n.index=e,isNaN(n.x)||isNaN(n.y)){var i=id*Math.sqrt(e),o=e*od;n.x=i*Math.cos(o),n.y=i*Math.sin(o)}(isNaN(n.vx)||isNaN(n.vy))&&(n.vx=n.vy=0)}}function i(n){return n.initialize&&n.initialize(t),n}var o,a=1,u=.001,f=1-Math.pow(u,1/300),c=0,s=.6,l=he(),h=Tn(n),d=N("tick","end");return null==t&&(t=[]),r(),o={tick:e,restart:function(){return h.restart(n),o},stop:function(){return h.stop(),o},nodes:function(n){return arguments.length?(t=n,r(),l.each(i),o):t},alpha:function(t){return arguments.length?(a=+t,o):a},alphaMin:function(t){return arguments.length?(u=+t,o):u},alphaDecay:function(t){return arguments.length?(f=+t,o):+f},alphaTarget:function(t){return arguments.length?(c=+t,o):c},velocityDecay:function(t){return arguments.length?(s=1-t,o):1-s},force:function(t,n){return arguments.length>1?(null==n?l.remove(t):l.set(t,i(n)),o):l.get(t)},find:function(n,e,r){var i,o,a,u,f,c=0,s=t.length;for(null==r?r=1/0:r*=r,c=0;c<s;++c)(a=(i=n-(u=t[c]).x)*i+(o=e-u.y)*o)<r&&(f=u,r=a);return f},on:function(t,n){return arguments.length>1?(d.on(t,n),o):d.on(t)}}},t.forceX=function(t){function n(t){for(var n,e=0,a=r.length;e<a;++e)(n=r[e]).vx+=(o[e]-n.x)*i[e]*t}function e(){if(r){var n,e=r.length;for(i=new Array(e),o=new Array(e),n=0;n<e;++n)i[n]=isNaN(o[n]=+t(r[n],n,r))?0:+a(r[n],n,r)}}var r,i,o,a=qe(.1);return"function"!=typeof t&&(t=qe(null==t?0:+t)),n.initialize=function(t){r=t,e()},n.strength=function(t){return arguments.length?(a="function"==typeof t?t:qe(+t),e(),n):a},n.x=function(r){return arguments.length?(t="function"==typeof r?r:qe(+r),e(),n):t},n},t.forceY=function(t){function n(t){for(var n,e=0,a=r.length;e<a;++e)(n=r[e]).vy+=(o[e]-n.y)*i[e]*t}function e(){if(r){var n,e=r.length;for(i=new Array(e),o=new Array(e),n=0;n<e;++n)i[n]=isNaN(o[n]=+t(r[n],n,r))?0:+a(r[n],n,r)}}var r,i,o,a=qe(.1);return"function"!=typeof t&&(t=qe(null==t?0:+t)),n.initialize=function(t){r=t,e()},n.strength=function(t){return arguments.length?(a="function"==typeof t?t:qe(+t),e(),n):a},n.y=function(r){return arguments.length?(t="function"==typeof r?r:qe(+r),e(),n):t},n},t.formatDefaultLocale=or,t.formatLocale=ir,t.formatSpecifier=tr,t.precisionFixed=ar,t.precisionPrefix=ur,t.precisionRound=fr,t.geoArea=function(t){return hp.reset(),br(t,dp),2*hp},t.geoBounds=function(t){var n,e,r,i,o,a,u;if(bd=_d=-(gd=yd=1/0),Ad=[],br(t,vp),e=Ad.length){for(Ad.sort(Yr),n=1,o=[r=Ad[0]];n<e;++n)Br(r,(i=Ad[n])[0])||Br(r,i[1])?(Or(r[0],i[1])>Or(r[0],r[1])&&(r[1]=i[1]),Or(i[0],r[1])>Or(r[0],r[1])&&(r[0]=i[0])):o.push(r=i);for(a=-1/0,n=0,r=o[e=o.length-1];n<=e;r=i,++n)i=o[n],(u=Or(r[1],i[0]))>a&&(a=u,gd=i[0],_d=r[1])}return Ad=Td=null,gd===1/0||yd===1/0?[[NaN,NaN],[NaN,NaN]]:[[gd,yd],[_d,bd]]},t.geoCentroid=function(t){Nd=Sd=Ed=kd=Cd=Pd=zd=Rd=Ld=Dd=Ud=0,br(t,gp);var n=Ld,e=Dd,r=Ud,i=n*n+e*e+r*r;return i<Hd&&(n=Pd,e=zd,r=Rd,Sd<jd&&(n=Ed,e=kd,r=Cd),(i=n*n+e*e+r*r)<Hd)?[NaN,NaN]:[Kd(e,n)*Wd,dr(r/up(i))*Wd]},t.geoCircle=function(){function t(){var t=r.apply(this,arguments),u=i.apply(this,arguments)*Zd,f=o.apply(this,arguments)*Zd;return n=[],e=ti(-t[0]*Zd,-t[1]*Zd,0).invert,oi(a,u,f,1),t={type:"Polygon",coordinates:[n]},n=e=null,t}var n,e,r=Qr([0,0]),i=Qr(90),o=Qr(6),a={point:function(t,r){n.push(t=e(t,r)),t[0]*=Wd,t[1]*=Wd}};return t.center=function(n){return arguments.length?(r="function"==typeof n?n:Qr([+n[0],+n[1]]),t):r},t.radius=function(n){return arguments.length?(i="function"==typeof n?n:Qr(+n),t):i},t.precision=function(n){return arguments.length?(o="function"==typeof n?n:Qr(+n),t):o},t},t.geoClipAntimeridian=kp,t.geoClipCircle=gi,t.geoClipExtent=function(){var t,n,e,r=0,i=0,o=960,a=500;return e={stream:function(e){return t&&n===e?t:t=yi(r,i,o,a)(n=e)},extent:function(u){return arguments.length?(r=+u[0][0],i=+u[0][1],o=+u[1][0],a=+u[1][1],t=n=null,e):[[r,i],[o,a]]}}},t.geoClipRectangle=yi,t.geoContains=function(t,n){return(t&&Up.hasOwnProperty(t.type)?Up[t.type]:Mi)(t,n)},t.geoDistance=wi,t.geoGraticule=Pi,t.geoGraticule10=function(){return Pi()()},t.geoInterpolate=function(t,n){var e=t[0]*Zd,r=t[1]*Zd,i=n[0]*Zd,o=n[1]*Zd,a=tp(r),u=op(r),f=tp(o),c=op(o),s=a*tp(e),l=a*op(e),h=f*tp(i),d=f*op(i),p=2*dr(up(pr(o-r)+a*f*pr(i-e))),v=op(p),g=p?function(t){var n=op(t*=p)/v,e=op(p-t)/v,r=e*s+n*h,i=e*l+n*d,o=e*u+n*c;return[Kd(i,r)*Wd,Kd(o,up(r*r+i*i))*Wd]}:function(){return[e*Wd,r*Wd]};return g.distance=p,g},t.geoLength=xi,t.geoPath=function(t,n){function e(t){return t&&("function"==typeof o&&i.pointRadius(+o.apply(this,arguments)),br(t,r(i))),i.result()}var r,i,o=4.5;return e.area=function(t){return br(t,r(Bp)),Bp.result()},e.measure=function(t){return br(t,r(fv)),fv.result()},e.bounds=function(t){return br(t,r(Xp)),Xp.result()},e.centroid=function(t){return br(t,r(nv)),nv.result()},e.projection=function(n){return arguments.length?(r=null==n?(t=null,zi):(t=n).stream,e):t},e.context=function(t){return arguments.length?(i=null==t?(n=null,new Wi):new Gi(n=t),"function"!=typeof o&&i.pointRadius(o),e):n},e.pointRadius=function(t){return arguments.length?(o="function"==typeof t?t:(i.pointRadius(+t),+t),e):o},e.projection(t).context(n)},t.geoAlbers=lo,t.geoAlbersUsa=function(){function t(t){var n=t[0],e=t[1];return u=null,i.point(n,e),u||(o.point(n,e),u)||(a.point(n,e),u)}function n(){return e=r=null,t}var e,r,i,o,a,u,f=lo(),c=so().rotate([154,0]).center([-2,58.5]).parallels([55,65]),s=so().rotate([157,0]).center([-3,19.9]).parallels([8,18]),l={point:function(t,n){u=[t,n]}};return t.invert=function(t){var n=f.scale(),e=f.translate(),r=(t[0]-e[0])/n,i=(t[1]-e[1])/n;return(i>=.12&&i<.234&&r>=-.425&&r<-.214?c:i>=.166&&i<.234&&r>=-.214&&r<-.115?s:f).invert(t)},t.stream=function(t){return e&&r===t?e:e=function(t){var n=t.length;return{point:function(e,r){for(var i=-1;++i<n;)t[i].point(e,r)},sphere:function(){for(var e=-1;++e<n;)t[e].sphere()},lineStart:function(){for(var e=-1;++e<n;)t[e].lineStart()},lineEnd:function(){for(var e=-1;++e<n;)t[e].lineEnd()},polygonStart:function(){for(var e=-1;++e<n;)t[e].polygonStart()},polygonEnd:function(){for(var e=-1;++e<n;)t[e].polygonEnd()}}}([f.stream(r=t),c.stream(t),s.stream(t)])},t.precision=function(t){return arguments.length?(f.precision(t),c.precision(t),s.precision(t),n()):f.precision()},t.scale=function(n){return arguments.length?(f.scale(n),c.scale(.35*n),s.scale(n),t.translate(f.translate())):f.scale()},t.translate=function(t){if(!arguments.length)return f.translate();var e=f.scale(),r=+t[0],u=+t[1];return i=f.translate(t).clipExtent([[r-.455*e,u-.238*e],[r+.455*e,u+.238*e]]).stream(l),o=c.translate([r-.307*e,u+.201*e]).clipExtent([[r-.425*e+jd,u+.12*e+jd],[r-.214*e-jd,u+.234*e-jd]]).stream(l),a=s.translate([r-.205*e,u+.212*e]).clipExtent([[r-.214*e+jd,u+.166*e+jd],[r-.115*e-jd,u+.234*e-jd]]).stream(l),n()},t.fitExtent=function(n,e){return to(t,n,e)},t.fitSize=function(n,e){return no(t,n,e)},t.fitWidth=function(n,e){return eo(t,n,e)},t.fitHeight=function(n,e){return ro(t,n,e)},t.scale(1070)},t.geoAzimuthalEqualArea=function(){return ao(hv).scale(124.75).clipAngle(179.999)},t.geoAzimuthalEqualAreaRaw=hv,t.geoAzimuthalEquidistant=function(){return ao(dv).scale(79.4188).clipAngle(179.999)},t.geoAzimuthalEquidistantRaw=dv,t.geoConicConformal=function(){return fo(_o).scale(109.5).parallels([30,30])},t.geoConicConformalRaw=_o,t.geoConicEqualArea=so,t.geoConicEqualAreaRaw=co,t.geoConicEquidistant=function(){return fo(mo).scale(131.154).center([0,13.9389])},t.geoConicEquidistantRaw=mo,t.geoEquirectangular=function(){return ao(bo).scale(152.63)},t.geoEquirectangularRaw=bo,t.geoGnomonic=function(){return ao(xo).scale(144.049).clipAngle(60)},t.geoGnomonicRaw=xo,t.geoIdentity=function(){function t(){return i=o=null,a}var n,e,r,i,o,a,u=1,f=0,c=0,s=1,l=1,h=zi,d=null,p=zi;return a={stream:function(t){return i&&o===t?i:i=h(p(o=t))},postclip:function(i){return arguments.length?(p=i,d=n=e=r=null,t()):p},clipExtent:function(i){return arguments.length?(p=null==i?(d=n=e=r=null,zi):yi(d=+i[0][0],n=+i[0][1],e=+i[1][0],r=+i[1][1]),t()):null==d?null:[[d,n],[e,r]]},scale:function(n){return arguments.length?(h=wo((u=+n)*s,u*l,f,c),t()):u},translate:function(n){return arguments.length?(h=wo(u*s,u*l,f=+n[0],c=+n[1]),t()):[f,c]},reflectX:function(n){return arguments.length?(h=wo(u*(s=n?-1:1),u*l,f,c),t()):s<0},reflectY:function(n){return arguments.length?(h=wo(u*s,u*(l=n?-1:1),f,c),t()):l<0},fitExtent:function(t,n){return to(a,t,n)},fitSize:function(t,n){return no(a,t,n)},fitWidth:function(t,n){return eo(a,t,n)},fitHeight:function(t,n){return ro(a,t,n)}}},t.geoProjection=ao,t.geoProjectionMutator=uo,t.geoMercator=function(){return go(vo).scale(961/$d)},t.geoMercatorRaw=vo,t.geoNaturalEarth1=function(){return ao(Mo).scale(175.295)},t.geoNaturalEarth1Raw=Mo,t.geoOrthographic=function(){return ao(Ao).scale(249.5).clipAngle(90+jd)},t.geoOrthographicRaw=Ao,t.geoStereographic=function(){return ao(To).scale(250).clipAngle(142)},t.geoStereographicRaw=To,t.geoTransverseMercator=function(){var t=go(No),n=t.center,e=t.rotate;return t.center=function(t){return arguments.length?n([-t[1],t[0]]):(t=n(),[t[1],-t[0]])},t.rotate=function(t){return arguments.length?e([t[0],t[1],t.length>2?t[2]+90:90]):(t=e(),[t[0],t[1],t[2]-90])},e([0,0,90]).scale(159.155)},t.geoTransverseMercatorRaw=No,t.geoRotation=ii,t.geoStream=br,t.geoTransform=function(t){return{stream:Qi(t)}},t.cluster=function(){function t(t){var o,a=0;t.eachAfter(function(t){var e=t.children;e?(t.x=function(t){return t.reduce(Eo,0)/t.length}(e),t.y=function(t){return 1+t.reduce(ko,0)}(e)):(t.x=o?a+=n(t,o):0,t.y=0,o=t)});var u=function(t){for(var n;n=t.children;)t=n[0];return t}(t),f=function(t){for(var n;n=t.children;)t=n[n.length-1];return t}(t),c=u.x-n(u,f)/2,s=f.x+n(f,u)/2;return t.eachAfter(i?function(n){n.x=(n.x-t.x)*e,n.y=(t.y-n.y)*r}:function(n){n.x=(n.x-c)/(s-c)*e,n.y=(1-(t.y?n.y/t.y:1))*r})}var n=So,e=1,r=1,i=!1;return t.separation=function(e){return arguments.length?(n=e,t):n},t.size=function(n){return arguments.length?(i=!1,e=+n[0],r=+n[1],t):i?null:[e,r]},t.nodeSize=function(n){return arguments.length?(i=!0,e=+n[0],r=+n[1],t):i?[e,r]:null},t},t.hierarchy=Po,t.pack=function(){function t(t){return t.x=e/2,t.y=r/2,n?t.eachBefore(Qo(n)).eachAfter(Jo(i,.5)).eachBefore(Ko(1)):t.eachBefore(Qo(Zo)).eachAfter(Jo($o,1)).eachAfter(Jo(i,t.r/Math.min(e,r))).eachBefore(Ko(Math.min(e,r)/(2*t.r))),t}var n=null,e=1,r=1,i=$o;return t.radius=function(e){return arguments.length?(n=function(t){return null==t?null:Vo(t)}(e),t):n},t.size=function(n){return arguments.length?(e=+n[0],r=+n[1],t):[e,r]},t.padding=function(n){return arguments.length?(i="function"==typeof n?n:Wo(+n),t):i},t},t.packSiblings=function(t){return Go(t),t},t.packEnclose=Uo,t.partition=function(){function t(t){var o=t.height+1;return t.x0=t.y0=r,t.x1=n,t.y1=e/o,t.eachBefore(function(t,n){return function(e){e.children&&na(e,e.x0,t*(e.depth+1)/n,e.x1,t*(e.depth+2)/n);var i=e.x0,o=e.y0,a=e.x1-r,u=e.y1-r;a<i&&(i=a=(i+a)/2),u<o&&(o=u=(o+u)/2),e.x0=i,e.y0=o,e.x1=a,e.y1=u}}(e,o)),i&&t.eachBefore(ta),t}var n=1,e=1,r=0,i=!1;return t.round=function(n){return arguments.length?(i=!!n,t):i},t.size=function(r){return arguments.length?(n=+r[0],e=+r[1],t):[n,e]},t.padding=function(n){return arguments.length?(r=+n,t):r},t},t.stratify=function(){function t(t){var r,i,o,a,u,f,c,s=t.length,l=new Array(s),h={};for(i=0;i<s;++i)r=t[i],u=l[i]=new Do(r),null!=(f=n(r,i,t))&&(f+="")&&(h[c=vv+(u.id=f)]=c in h?yv:u);for(i=0;i<s;++i)if(u=l[i],null!=(f=e(t[i],i,t))&&(f+="")){if(!(a=h[vv+f]))throw new Error("missing: "+f);if(a===yv)throw new Error("ambiguous: "+f);a.children?a.children.push(u):a.children=[u],u.parent=a}else{if(o)throw new Error("multiple roots");o=u}if(!o)throw new Error("no root");if(o.parent=gv,o.eachBefore(function(t){t.depth=t.parent.depth+1,--s}).eachBefore(Lo),o.parent=null,s>0)throw new Error("cycle");return o}var n=ea,e=ra;return t.id=function(e){return arguments.length?(n=Vo(e),t):n},t.parentId=function(n){return arguments.length?(e=Vo(n),t):e},t},t.tree=function(){function t(t){var f=function(t){for(var n,e,r,i,o,a=new ca(t,0),u=[a];n=u.pop();)if(r=n._.children)for(n.children=new Array(o=r.length),i=o-1;i>=0;--i)u.push(e=n.children[i]=new ca(r[i],i)),e.parent=n;return(a.parent=new ca(null,0)).children=[a],a}(t);if(f.eachAfter(n),f.parent.m=-f.z,f.eachBefore(e),u)t.eachBefore(r);else{var c=t,s=t,l=t;t.eachBefore(function(t){t.x<c.x&&(c=t),t.x>s.x&&(s=t),t.depth>l.depth&&(l=t)});var h=c===s?1:i(c,s)/2,d=h-c.x,p=o/(s.x+h+d),v=a/(l.depth||1);t.eachBefore(function(t){t.x=(t.x+d)*p,t.y=t.depth*v})}return t}function n(t){var n=t.children,e=t.parent.children,r=t.i?e[t.i-1]:null;if(n){(function(t){for(var n,e=0,r=0,i=t.children,o=i.length;--o>=0;)(n=i[o]).z+=e,n.m+=e,e+=n.s+(r+=n.c)})(t);var o=(n[0].z+n[n.length-1].z)/2;r?(t.z=r.z+i(t._,r._),t.m=t.z-o):t.z=o}else r&&(t.z=r.z+i(t._,r._));t.parent.A=function(t,n,e){if(n){for(var r,o=t,a=t,u=n,f=o.parent.children[0],c=o.m,s=a.m,l=u.m,h=f.m;u=aa(u),o=oa(o),u&&o;)f=oa(f),(a=aa(a)).a=t,(r=u.z+l-o.z-c+i(u._,o._))>0&&(ua(fa(u,t,e),t,r),c+=r,s+=r),l+=u.m,c+=o.m,h+=f.m,s+=a.m;u&&!aa(a)&&(a.t=u,a.m+=l-s),o&&!oa(f)&&(f.t=o,f.m+=c-h,e=t)}return e}(t,r,t.parent.A||e[0])}function e(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function r(t){t.x*=o,t.y=t.depth*a}var i=ia,o=1,a=1,u=null;return t.separation=function(n){return arguments.length?(i=n,t):i},t.size=function(n){return arguments.length?(u=!1,o=+n[0],a=+n[1],t):u?null:[o,a]},t.nodeSize=function(n){return arguments.length?(u=!0,o=+n[0],a=+n[1],t):u?[o,a]:null},t},t.treemap=function(){function t(t){return t.x0=t.y0=0,t.x1=i,t.y1=o,t.eachBefore(n),a=[0],r&&t.eachBefore(ta),t}function n(t){var n=a[t.depth],r=t.x0+n,i=t.y0+n,o=t.x1-n,h=t.y1-n;o<r&&(r=o=(r+o)/2),h<i&&(i=h=(i+h)/2),t.x0=r,t.y0=i,t.x1=o,t.y1=h,t.children&&(n=a[t.depth+1]=u(t)/2,r+=l(t)-n,i+=f(t)-n,o-=c(t)-n,h-=s(t)-n,o<r&&(r=o=(r+o)/2),h<i&&(i=h=(i+h)/2),e(t,r,i,o,h))}var e=bv,r=!1,i=1,o=1,a=[0],u=$o,f=$o,c=$o,s=$o,l=$o;return t.round=function(n){return arguments.length?(r=!!n,t):r},t.size=function(n){return arguments.length?(i=+n[0],o=+n[1],t):[i,o]},t.tile=function(n){return arguments.length?(e=Vo(n),t):e},t.padding=function(n){return arguments.length?t.paddingInner(n).paddingOuter(n):t.paddingInner()},t.paddingInner=function(n){return arguments.length?(u="function"==typeof n?n:Wo(+n),t):u},t.paddingOuter=function(n){return arguments.length?t.paddingTop(n).paddingRight(n).paddingBottom(n).paddingLeft(n):t.paddingTop()},t.paddingTop=function(n){return arguments.length?(f="function"==typeof n?n:Wo(+n),t):f},t.paddingRight=function(n){return arguments.length?(c="function"==typeof n?n:Wo(+n),t):c},t.paddingBottom=function(n){return arguments.length?(s="function"==typeof n?n:Wo(+n),t):s},t.paddingLeft=function(n){return arguments.length?(l="function"==typeof n?n:Wo(+n),t):l},t},t.treemapBinary=function(t,n,e,r,i){function o(t,n,e,r,i,a,u){if(t>=n-1){var c=f[t];return c.x0=r,c.y0=i,c.x1=a,void(c.y1=u)}for(var l=s[t],h=e/2+l,d=t+1,p=n-1;d<p;){var v=d+p>>>1;s[v]<h?d=v+1:p=v}h-s[d-1]<s[d]-h&&t+1<d&&--d;var g=s[d]-l,y=e-g;if(a-r>u-i){var _=(r*y+a*g)/e;o(t,d,g,r,i,_,u),o(d,n,y,_,i,a,u)}else{var b=(i*y+u*g)/e;o(t,d,g,r,i,a,b),o(d,n,y,r,b,a,u)}}var a,u,f=t.children,c=f.length,s=new Array(c+1);for(s[0]=u=a=0;a<c;++a)s[a+1]=u+=f[a].value;o(0,c,t.value,n,e,r,i)},t.treemapDice=na,t.treemapSlice=sa,t.treemapSliceDice=function(t,n,e,r,i){(1&t.depth?sa:na)(t,n,e,r,i)},t.treemapSquarify=bv,t.treemapResquarify=mv,t.interpolate=dn,t.interpolateArray=fn,t.interpolateBasis=Kt,t.interpolateBasisClosed=tn,t.interpolateDate=cn,t.interpolateNumber=sn,t.interpolateObject=ln,t.interpolateRound=pn,t.interpolateString=hn,t.interpolateTransformCss=cl,t.interpolateTransformSvg=sl,t.interpolateZoom=_n,t.interpolateRgb=el,t.interpolateRgbBasis=rl,t.interpolateRgbBasisClosed=il,t.interpolateHsl=vl,t.interpolateHslLong=gl,t.interpolateLab=function(t,n){var e=an((t=Ft(t)).l,(n=Ft(n)).l),r=an(t.a,n.a),i=an(t.b,n.b),o=an(t.opacity,n.opacity);return function(n){return t.l=e(n),t.a=r(n),t.b=i(n),t.opacity=o(n),t+""}},t.interpolateHcl=yl,t.interpolateHclLong=_l,t.interpolateCubehelix=bl,t.interpolateCubehelixLong=ml,t.piecewise=function(t,n){for(var e=0,r=n.length-1,i=n[0],o=new Array(r<0?0:r);e<r;)o[e]=t(i,i=n[++e]);return function(t){var n=Math.max(0,Math.min(r-1,Math.floor(t*=r)));return o[n](t-n)}},t.quantize=function(t,n){for(var e=new Array(n),r=0;r<n;++r)e[r]=t(r/(n-1));return e},t.path=oe,t.polygonArea=function(t){for(var n,e=-1,r=t.length,i=t[r-1],o=0;++e<r;)n=i,i=t[e],o+=n[1]*i[0]-n[0]*i[1];return o/2},t.polygonCentroid=function(t){for(var n,e,r=-1,i=t.length,o=0,a=0,u=t[i-1],f=0;++r<i;)n=u,u=t[r],f+=e=n[0]*u[1]-u[0]*n[1],o+=(n[0]+u[0])*e,a+=(n[1]+u[1])*e;return f*=3,[o/f,a/f]},t.polygonHull=function(t){if((e=t.length)<3)return null;var n,e,r=new Array(e),i=new Array(e);for(n=0;n<e;++n)r[n]=[+t[n][0],+t[n][1],n];for(r.sort(da),n=0;n<e;++n)i[n]=[r[n][0],-r[n][1]];var o=pa(r),a=pa(i),u=a[0]===o[0],f=a[a.length-1]===o[o.length-1],c=[];for(n=o.length-1;n>=0;--n)c.push(t[r[o[n]][2]]);for(n=+u;n<a.length-f;++n)c.push(t[r[a[n]][2]]);return c},t.polygonContains=function(t,n){for(var e,r,i=t.length,o=t[i-1],a=n[0],u=n[1],f=o[0],c=o[1],s=!1,l=0;l<i;++l)e=(o=t[l])[0],(r=o[1])>u!=c>u&&a<(f-e)*(u-r)/(c-r)+e&&(s=!s),f=e,c=r;return s},t.polygonLength=function(t){for(var n,e,r=-1,i=t.length,o=t[i-1],a=o[0],u=o[1],f=0;++r<i;)n=a,e=u,n-=a=(o=t[r])[0],e-=u=o[1],f+=Math.sqrt(n*n+e*e);return f},t.quadtree=je,t.randomUniform=xv,t.randomNormal=wv,t.randomLogNormal=Mv,t.randomBates=Tv,t.randomIrwinHall=Av,t.randomExponential=Nv,t.scaleBand=ya,t.scalePoint=function(){return _a(ya().paddingInner(1))},t.scaleIdentity=Ea,t.scaleLinear=Sa,t.scaleLog=Ua,t.scaleOrdinal=ga,t.scaleImplicit=Cv,t.scalePow=Oa,t.scaleSqrt=function(){return Oa().exponent(.5)},t.scaleQuantile=Ya,t.scaleQuantize=Ba,t.scaleThreshold=Fa,t.scaleTime=function(){return of(fg,ag,Gv,Hv,Iv,Bv,Ov,Lv,t.timeFormat).domain([new Date(2e3,0,1),new Date(2e3,0,2)])},t.scaleUtc=function(){return of(zg,Cg,gg,pg,hg,sg,Ov,Lv,t.utcFormat).domain([Date.UTC(2e3,0,1),Date.UTC(2e3,0,2)])},t.scaleSequential=af,t.schemeCategory10=Wg,t.schemeAccent=Zg,t.schemeDark2=Qg,t.schemePaired=Jg,t.schemePastel1=Kg,t.schemePastel2=ty,t.schemeSet1=ny,t.schemeSet2=ey,t.schemeSet3=ry,t.interpolateBrBG=oy,t.schemeBrBG=iy,t.interpolatePRGn=uy,t.schemePRGn=ay,t.interpolatePiYG=cy,t.schemePiYG=fy,t.interpolatePuOr=ly,t.schemePuOr=sy,t.interpolateRdBu=dy,t.schemeRdBu=hy,t.interpolateRdGy=vy,t.schemeRdGy=py,t.interpolateRdYlBu=yy,t.schemeRdYlBu=gy,t.interpolateRdYlGn=by,t.schemeRdYlGn=_y,t.interpolateSpectral=xy,t.schemeSpectral=my,t.interpolateBuGn=My,t.schemeBuGn=wy,t.interpolateBuPu=Ty,t.schemeBuPu=Ay,t.interpolateGnBu=Sy,t.schemeGnBu=Ny,t.interpolateOrRd=ky,t.schemeOrRd=Ey,t.interpolatePuBuGn=Py,t.schemePuBuGn=Cy,t.interpolatePuBu=Ry,t.schemePuBu=zy,t.interpolatePuRd=Dy,t.schemePuRd=Ly,t.interpolateRdPu=qy,t.schemeRdPu=Uy,t.interpolateYlGnBu=Yy,t.schemeYlGnBu=Oy,t.interpolateYlGn=Fy,t.schemeYlGn=By,t.interpolateYlOrBr=jy,t.schemeYlOrBr=Iy,t.interpolateYlOrRd=Xy,t.schemeYlOrRd=Hy,t.interpolateBlues=Vy,t.schemeBlues=Gy,t.interpolateGreens=Wy,t.schemeGreens=$y,t.interpolateGreys=Qy,t.schemeGreys=Zy,t.interpolatePurples=Ky,t.schemePurples=Jy,t.interpolateReds=n_,t.schemeReds=t_,t.interpolateOranges=r_,t.schemeOranges=e_,t.interpolateCubehelixDefault=i_,t.interpolateRainbow=function(t){(t<0||t>1)&&(t-=Math.floor(t));var n=Math.abs(t-.5);return u_.h=360*t-100,u_.s=1.5-1.5*n,u_.l=.8-.9*n,u_+""},t.interpolateWarm=o_,t.interpolateCool=a_,t.interpolateSinebow=function(t){var n;return t=(.5-t)*Math.PI,f_.r=255*(n=Math.sin(t))*n,f_.g=255*(n=Math.sin(t+c_))*n,f_.b=255*(n=Math.sin(t+s_))*n,f_+""},t.interpolateViridis=l_,t.interpolateMagma=h_,t.interpolateInferno=d_,t.interpolatePlasma=p_,t.create=function(t){return ct(C(t).call(document.documentElement))},t.creator=C,t.local=st,t.matcher=_s,t.mouse=pt,t.namespace=k,t.namespaces=ps,t.clientPoint=dt,t.select=ct,t.selectAll=function(t){return"string"==typeof t?new ut([document.querySelectorAll(t)],[document.documentElement]):new ut([null==t?[]:t],xs)},t.selection=ft,t.selector=z,t.selectorAll=L,t.style=F,t.touch=vt,t.touches=function(t,n){null==n&&(n=ht().touches);for(var e=0,r=n?n.length:0,i=new Array(r);e<r;++e)i[e]=dt(t,n[e]);return i},t.window=B,t.customEvent=ot,t.arc=function(){function t(){var t,c,s=+n.apply(this,arguments),l=+e.apply(this,arguments),h=o.apply(this,arguments)-A_,d=a.apply(this,arguments)-A_,p=v_(d-h),v=d>h;if(f||(f=t=oe()),l<s&&(c=l,l=s,s=c),l>w_)if(p>T_-w_)f.moveTo(l*y_(h),l*m_(h)),f.arc(0,0,l,h,d,!v),s>w_&&(f.moveTo(s*y_(d),s*m_(d)),f.arc(0,0,s,d,h,v));else{var g,y,_=h,b=d,m=h,x=d,w=p,M=p,A=u.apply(this,arguments)/2,T=A>w_&&(i?+i.apply(this,arguments):x_(s*s+l*l)),N=b_(v_(l-s)/2,+r.apply(this,arguments)),S=N,E=N;if(T>w_){var k=lf(T/s*m_(A)),C=lf(T/l*m_(A));(w-=2*k)>w_?(k*=v?1:-1,m+=k,x-=k):(w=0,m=x=(h+d)/2),(M-=2*C)>w_?(C*=v?1:-1,_+=C,b-=C):(M=0,_=b=(h+d)/2)}var P=l*y_(_),z=l*m_(_),R=s*y_(x),L=s*m_(x);if(N>w_){var D=l*y_(b),U=l*m_(b),q=s*y_(m),O=s*m_(m);if(p<M_){var Y=w>w_?function(t,n,e,r,i,o,a,u){var f=e-t,c=r-n,s=a-i,l=u-o,h=(s*(n-o)-l*(t-i))/(l*f-s*c);return[t+h*f,n+h*c]}(P,z,q,O,D,U,R,L):[R,L],B=P-Y[0],F=z-Y[1],I=D-Y[0],j=U-Y[1],H=1/m_(function(t){return t>1?0:t<-1?M_:Math.acos(t)}((B*I+F*j)/(x_(B*B+F*F)*x_(I*I+j*j)))/2),X=x_(Y[0]*Y[0]+Y[1]*Y[1]);S=b_(N,(s-X)/(H-1)),E=b_(N,(l-X)/(H+1))}}M>w_?E>w_?(g=yf(q,O,P,z,l,E,v),y=yf(D,U,R,L,l,E,v),f.moveTo(g.cx+g.x01,g.cy+g.y01),E<N?f.arc(g.cx,g.cy,E,g_(g.y01,g.x01),g_(y.y01,y.x01),!v):(f.arc(g.cx,g.cy,E,g_(g.y01,g.x01),g_(g.y11,g.x11),!v),f.arc(0,0,l,g_(g.cy+g.y11,g.cx+g.x11),g_(y.cy+y.y11,y.cx+y.x11),!v),f.arc(y.cx,y.cy,E,g_(y.y11,y.x11),g_(y.y01,y.x01),!v))):(f.moveTo(P,z),f.arc(0,0,l,_,b,!v)):f.moveTo(P,z),s>w_&&w>w_?S>w_?(g=yf(R,L,D,U,s,-S,v),y=yf(P,z,q,O,s,-S,v),f.lineTo(g.cx+g.x01,g.cy+g.y01),S<N?f.arc(g.cx,g.cy,S,g_(g.y01,g.x01),g_(y.y01,y.x01),!v):(f.arc(g.cx,g.cy,S,g_(g.y01,g.x01),g_(g.y11,g.x11),!v),f.arc(0,0,s,g_(g.cy+g.y11,g.cx+g.x11),g_(y.cy+y.y11,y.cx+y.x11),v),f.arc(y.cx,y.cy,S,g_(y.y11,y.x11),g_(y.y01,y.x01),!v))):f.arc(0,0,s,x,m,v):f.lineTo(R,L)}else f.moveTo(0,0);if(f.closePath(),t)return f=null,t+""||null}var n=hf,e=df,r=sf(0),i=null,o=pf,a=vf,u=gf,f=null;return t.centroid=function(){var t=(+n.apply(this,arguments)+ +e.apply(this,arguments))/2,r=(+o.apply(this,arguments)+ +a.apply(this,arguments))/2-M_/2;return[y_(r)*t,m_(r)*t]},t.innerRadius=function(e){return arguments.length?(n="function"==typeof e?e:sf(+e),t):n},t.outerRadius=function(n){return arguments.length?(e="function"==typeof n?n:sf(+n),t):e},t.cornerRadius=function(n){return arguments.length?(r="function"==typeof n?n:sf(+n),t):r},t.padRadius=function(n){return arguments.length?(i=null==n?null:"function"==typeof n?n:sf(+n),t):i},t.startAngle=function(n){return arguments.length?(o="function"==typeof n?n:sf(+n),t):o},t.endAngle=function(n){return arguments.length?(a="function"==typeof n?n:sf(+n),t):a},t.padAngle=function(n){return arguments.length?(u="function"==typeof n?n:sf(+n),t):u},t.context=function(n){return arguments.length?(f=null==n?null:n,t):f},t},t.area=Mf,t.line=wf,t.pie=function(){function t(t){var u,f,c,s,l,h=t.length,d=0,p=new Array(h),v=new Array(h),g=+i.apply(this,arguments),y=Math.min(T_,Math.max(-T_,o.apply(this,arguments)-g)),_=Math.min(Math.abs(y)/h,a.apply(this,arguments)),b=_*(y<0?-1:1);for(u=0;u<h;++u)(l=v[p[u]=u]=+n(t[u],u,t))>0&&(d+=l);for(null!=e?p.sort(function(t,n){return e(v[t],v[n])}):null!=r&&p.sort(function(n,e){return r(t[n],t[e])}),u=0,c=d?(y-h*b)/d:0;u<h;++u,g=s)f=p[u],s=g+((l=v[f])>0?l*c:0)+b,v[f]={data:t[f],index:u,value:l,startAngle:g,endAngle:s,padAngle:_};return v}var n=Tf,e=Af,r=null,i=sf(0),o=sf(T_),a=sf(0);return t.value=function(e){return arguments.length?(n="function"==typeof e?e:sf(+e),t):n},t.sortValues=function(n){return arguments.length?(e=n,r=null,t):e},t.sort=function(n){return arguments.length?(r=n,e=null,t):r},t.startAngle=function(n){return arguments.length?(i="function"==typeof n?n:sf(+n),t):i},t.endAngle=function(n){return arguments.length?(o="function"==typeof n?n:sf(+n),t):o},t.padAngle=function(n){return arguments.length?(a="function"==typeof n?n:sf(+n),t):a},t},t.areaRadial=Cf,t.radialArea=Cf,t.lineRadial=kf,t.radialLine=kf,t.pointRadial=Pf,t.linkHorizontal=function(){return Lf(Df)},t.linkVertical=function(){return Lf(Uf)},t.linkRadial=function(){var t=Lf(qf);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.symbol=function(){function t(){var t;if(r||(r=t=oe()),n.apply(this,arguments).draw(r,+e.apply(this,arguments)),t)return r=null,t+""||null}var n=sf(E_),e=sf(64),r=null;return t.type=function(e){return arguments.length?(n="function"==typeof e?e:sf(e),t):n},t.size=function(n){return arguments.length?(e="function"==typeof n?n:sf(+n),t):e},t.context=function(n){return arguments.length?(r=null==n?null:n,t):r},t},t.symbols=H_,t.symbolCircle=E_,t.symbolCross=k_,t.symbolDiamond=z_,t.symbolSquare=q_,t.symbolStar=U_,t.symbolTriangle=Y_,t.symbolWye=j_,t.curveBasisClosed=function(t){return new Ff(t)},t.curveBasisOpen=function(t){return new If(t)},t.curveBasis=function(t){return new Bf(t)},t.curveBundle=X_,t.curveCardinalClosed=V_,t.curveCardinalOpen=$_,t.curveCardinal=G_,t.curveCatmullRomClosed=Z_,t.curveCatmullRomOpen=Q_,t.curveCatmullRom=W_,t.curveLinearClosed=function(t){return new Jf(t)},t.curveLinear=bf,t.curveMonotoneX=function(t){return new rc(t)},t.curveMonotoneY=function(t){return new ic(t)},t.curveNatural=function(t){return new ac(t)},t.curveStep=function(t){return new fc(t,.5)},t.curveStepAfter=function(t){return new fc(t,1)},t.curveStepBefore=function(t){return new fc(t,0)},t.stack=function(){function t(t){var o,a,u=n.apply(this,arguments),f=t.length,c=u.length,s=new Array(c);for(o=0;o<c;++o){for(var l,h=u[o],d=s[o]=new Array(f),p=0;p<f;++p)d[p]=l=[0,+i(t[p],h,p,t)],l.data=t[p];d.key=h}for(o=0,a=e(s);o<c;++o)s[a[o]].index=o;return r(s,a),s}var n=sf([]),e=sc,r=cc,i=lc;return t.keys=function(e){return arguments.length?(n="function"==typeof e?e:sf(S_.call(e)),t):n},t.value=function(n){return arguments.length?(i="function"==typeof n?n:sf(+n),t):i},t.order=function(n){return arguments.length?(e=null==n?sc:"function"==typeof n?n:sf(S_.call(n)),t):e},t.offset=function(n){return arguments.length?(r=null==n?cc:n,t):r},t},t.stackOffsetExpand=function(t,n){if((r=t.length)>0){for(var e,r,i,o=0,a=t[0].length;o<a;++o){for(i=e=0;e<r;++e)i+=t[e][o][1]||0;if(i)for(e=0;e<r;++e)t[e][o][1]/=i}cc(t,n)}},t.stackOffsetDiverging=function(t,n){if((u=t.length)>1)for(var e,r,i,o,a,u,f=0,c=t[n[0]].length;f<c;++f)for(o=a=0,e=0;e<u;++e)(i=(r=t[n[e]][f])[1]-r[0])>=0?(r[0]=o,r[1]=o+=i):i<0?(r[1]=a,r[0]=a+=i):r[0]=o},t.stackOffsetNone=cc,t.stackOffsetSilhouette=function(t,n){if((e=t.length)>0){for(var e,r=0,i=t[n[0]],o=i.length;r<o;++r){for(var a=0,u=0;a<e;++a)u+=t[a][r][1]||0;i[r][1]+=i[r][0]=-u/2}cc(t,n)}},t.stackOffsetWiggle=function(t,n){if((i=t.length)>0&&(r=(e=t[n[0]]).length)>0){for(var e,r,i,o=0,a=1;a<r;++a){for(var u=0,f=0,c=0;u<i;++u){for(var s=t[n[u]],l=s[a][1]||0,h=(l-(s[a-1][1]||0))/2,d=0;d<u;++d){var p=t[n[d]];h+=(p[a][1]||0)-(p[a-1][1]||0)}f+=l,c+=h*l}e[a-1][1]+=e[a-1][0]=o,f&&(o-=c/f)}e[a-1][1]+=e[a-1][0]=o,cc(t,n)}},t.stackOrderAscending=hc,t.stackOrderDescending=function(t){return hc(t).reverse()},t.stackOrderInsideOut=function(t){var n,e,r=t.length,i=t.map(dc),o=sc(t).sort(function(t,n){return i[n]-i[t]}),a=0,u=0,f=[],c=[];for(n=0;n<r;++n)e=o[n],a<u?(a+=i[e],f.push(e)):(u+=i[e],c.push(e));return c.reverse().concat(f)},t.stackOrderNone=sc,t.stackOrderReverse=function(t){return sc(t).reverse()},t.timeInterval=Ia,t.timeMillisecond=Lv,t.timeMilliseconds=Dv,t.utcMillisecond=Lv,t.utcMilliseconds=Dv,t.timeSecond=Ov,t.timeSeconds=Yv,t.utcSecond=Ov,t.utcSeconds=Yv,t.timeMinute=Bv,t.timeMinutes=Fv,t.timeHour=Iv,t.timeHours=jv,t.timeDay=Hv,t.timeDays=Xv,t.timeWeek=Gv,t.timeWeeks=Kv,t.timeSunday=Gv,t.timeSundays=Kv,t.timeMonday=Vv,t.timeMondays=tg,t.timeTuesday=$v,t.timeTuesdays=ng,t.timeWednesday=Wv,t.timeWednesdays=eg,t.timeThursday=Zv,t.timeThursdays=rg,t.timeFriday=Qv,t.timeFridays=ig,t.timeSaturday=Jv,t.timeSaturdays=og,t.timeMonth=ag,t.timeMonths=ug,t.timeYear=fg,t.timeYears=cg,t.utcMinute=sg,t.utcMinutes=lg,t.utcHour=hg,t.utcHours=dg,t.utcDay=pg,t.utcDays=vg,t.utcWeek=gg,t.utcWeeks=Mg,t.utcSunday=gg,t.utcSundays=Mg,t.utcMonday=yg,t.utcMondays=Ag,t.utcTuesday=_g,t.utcTuesdays=Tg,t.utcWednesday=bg,t.utcWednesdays=Ng,t.utcThursday=mg,t.utcThursdays=Sg,t.utcFriday=xg,t.utcFridays=Eg,t.utcSaturday=wg,t.utcSaturdays=kg,t.utcMonth=Cg,t.utcMonths=Pg,t.utcYear=zg,t.utcYears=Lg,t.timeFormatDefaultLocale=nf,t.timeFormatLocale=$a,t.isoFormat=Bg,t.isoParse=Fg,t.now=wn,t.timer=Tn,t.timerFlush=Nn,t.timeout=Cn,t.interval=function(t,n,e){var r=new An,i=n;return null==n?(r.restart(t,n,e),r):(n=+n,e=null==e?wn():+e,r.restart(function o(a){a+=i,r.restart(o,i+=n,e),t(a)},n,e),r)},t.transition=Yn,t.active=function(t,n){var e,r,i=t.__transition;if(i){n=null==n?null:n+"";for(r in i)if((e=i[r]).state>Rl&&e.name===n)return new On([[t]],lh,n,+r)}return null},t.interrupt=Dn,t.voronoi=function(){function t(t){return new Yc(t.map(function(r,i){var o=[Math.round(n(r,i,t)/ob)*ob,Math.round(e(r,i,t)/ob)*ob];return o.index=i,o.data=r,o}),r)}var n=vc,e=gc,r=null;return t.polygons=function(n){return t(n).polygons()},t.links=function(n){return t(n).links()},t.triangles=function(n){return t(n).triangles()},t.x=function(e){return arguments.length?(n="function"==typeof e?e:pc(+e),t):n},t.y=function(n){return arguments.length?(e="function"==typeof n?n:pc(+n),t):e},t.extent=function(n){return arguments.length?(r=null==n?null:[[+n[0][0],+n[0][1]],[+n[1][0],+n[1][1]]],t):r&&[[r[0][0],r[0][1]],[r[1][0],r[1][1]]]},t.size=function(n){return arguments.length?(r=null==n?null:[[0,0],[+n[0],+n[1]]],t):r&&[r[1][0]-r[0][0],r[1][1]-r[0][1]]},t},t.zoom=function(){function n(t){t.property("__zoom",Vc).on("wheel.zoom",f).on("mousedown.zoom",c).on("dblclick.zoom",s).filter(m).on("touchstart.zoom",l).on("touchmove.zoom",h).on("touchend.zoom touchcancel.zoom",d).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function e(t,n){return(n=Math.max(x[0],Math.min(x[1],n)))===t.k?t:new Fc(n,t.x,t.y)}function r(t,n,e){var r=n[0]-e[0]*t.k,i=n[1]-e[1]*t.k;return r===t.x&&i===t.y?t:new Fc(t.k,r,i)}function i(t){return[(+t[0][0]+ +t[1][0])/2,(+t[0][1]+ +t[1][1])/2]}function o(t,n,e){t.on("start.zoom",function(){a(this,arguments).start()}).on("interrupt.zoom end.zoom",function(){a(this,arguments).end()}).tween("zoom",function(){var t=arguments,r=a(this,t),o=y.apply(this,t),u=e||i(o),f=Math.max(o[1][0]-o[0][0],o[1][1]-o[0][1]),c=this.__zoom,s="function"==typeof n?n.apply(this,t):n,l=A(c.invert(u).concat(f/c.k),s.invert(u).concat(f/s.k));return function(t){if(1===t)t=s;else{var n=l(t),e=f/n[2];t=new Fc(e,u[0]-n[0]*e,u[1]-n[1]*e)}r.zoom(null,t)}})}function a(t,n){for(var e,r=0,i=T.length;r<i;++r)if((e=T[r]).that===t)return e;return new u(t,n)}function u(t,n){this.that=t,this.args=n,this.index=-1,this.active=0,this.extent=y.apply(t,n)}function f(){if(g.apply(this,arguments)){var t=a(this,arguments),n=this.__zoom,i=Math.max(x[0],Math.min(x[1],n.k*Math.pow(2,b.apply(this,arguments)))),o=pt(this);if(t.wheel)t.mouse[0][0]===o[0]&&t.mouse[0][1]===o[1]||(t.mouse[1]=n.invert(t.mouse[0]=o)),clearTimeout(t.wheel);else{if(n.k===i)return;t.mouse=[o,n.invert(o)],Dn(this),t.start()}Hc(),t.wheel=setTimeout(function(){t.wheel=null,t.end()},k),t.zoom("mouse",_(r(e(n,i),t.mouse[0],t.mouse[1]),t.extent,w))}}function c(){if(!v&&g.apply(this,arguments)){var n=a(this,arguments),e=ct(t.event.view).on("mousemove.zoom",function(){if(Hc(),!n.moved){var e=t.event.clientX-o,i=t.event.clientY-u;n.moved=e*e+i*i>C}n.zoom("mouse",_(r(n.that.__zoom,n.mouse[0]=pt(n.that),n.mouse[1]),n.extent,w))},!0).on("mouseup.zoom",function(){e.on("mousemove.zoom mouseup.zoom",null),bt(t.event.view,n.moved),Hc(),n.end()},!0),i=pt(this),o=t.event.clientX,u=t.event.clientY;_t(t.event.view),jc(),n.mouse=[i,this.__zoom.invert(i)],Dn(this),n.start()}}function s(){if(g.apply(this,arguments)){var i=this.__zoom,a=pt(this),u=i.invert(a),f=i.k*(t.event.shiftKey?.5:2),c=_(r(e(i,f),a,u),y.apply(this,arguments),w);Hc(),M>0?ct(this).transition().duration(M).call(o,c,a):ct(this).call(n.transform,c)}}function l(){if(g.apply(this,arguments)){var n,e,r,i,o=a(this,arguments),u=t.event.changedTouches,f=u.length;for(jc(),e=0;e<f;++e)i=[i=vt(this,u,(r=u[e]).identifier),this.__zoom.invert(i),r.identifier],o.touch0?o.touch1||(o.touch1=i):(o.touch0=i,n=!0);if(p&&(p=clearTimeout(p),!o.touch1))return o.end(),void((i=ct(this).on("dblclick.zoom"))&&i.apply(this,arguments));n&&(p=setTimeout(function(){p=null},E),Dn(this),o.start())}}function h(){var n,i,o,u,f=a(this,arguments),c=t.event.changedTouches,s=c.length;for(Hc(),p&&(p=clearTimeout(p)),n=0;n<s;++n)o=vt(this,c,(i=c[n]).identifier),f.touch0&&f.touch0[2]===i.identifier?f.touch0[0]=o:f.touch1&&f.touch1[2]===i.identifier&&(f.touch1[0]=o);if(i=f.that.__zoom,f.touch1){var l=f.touch0[0],h=f.touch0[1],d=f.touch1[0],v=f.touch1[1],g=(g=d[0]-l[0])*g+(g=d[1]-l[1])*g,y=(y=v[0]-h[0])*y+(y=v[1]-h[1])*y;i=e(i,Math.sqrt(g/y)),o=[(l[0]+d[0])/2,(l[1]+d[1])/2],u=[(h[0]+v[0])/2,(h[1]+v[1])/2]}else{if(!f.touch0)return;o=f.touch0[0],u=f.touch0[1]}f.zoom("touch",_(r(i,o,u),f.extent,w))}function d(){var n,e,r=a(this,arguments),i=t.event.changedTouches,o=i.length;for(jc(),v&&clearTimeout(v),v=setTimeout(function(){v=null},E),n=0;n<o;++n)e=i[n],r.touch0&&r.touch0[2]===e.identifier?delete r.touch0:r.touch1&&r.touch1[2]===e.identifier&&delete r.touch1;r.touch1&&!r.touch0&&(r.touch0=r.touch1,delete r.touch1),r.touch0?r.touch0[1]=this.__zoom.invert(r.touch0[0]):r.end()}var p,v,g=Xc,y=Gc,_=Zc,b=$c,m=Wc,x=[0,1/0],w=[[-1/0,-1/0],[1/0,1/0]],M=250,A=_n,T=[],S=N("start","zoom","end"),E=500,k=150,C=0;return n.transform=function(t,n){var e=t.selection?t.selection():t;e.property("__zoom",Vc),t!==e?o(t,n):e.interrupt().each(function(){a(this,arguments).start().zoom(null,"function"==typeof n?n.apply(this,arguments):n).end()})},n.scaleBy=function(t,e){n.scaleTo(t,function(){return this.__zoom.k*("function"==typeof e?e.apply(this,arguments):e)})},n.scaleTo=function(t,o){n.transform(t,function(){var t=y.apply(this,arguments),n=this.__zoom,a=i(t),u=n.invert(a),f="function"==typeof o?o.apply(this,arguments):o;return _(r(e(n,f),a,u),t,w)})},n.translateBy=function(t,e,r){n.transform(t,function(){return _(this.__zoom.translate("function"==typeof e?e.apply(this,arguments):e,"function"==typeof r?r.apply(this,arguments):r),y.apply(this,arguments),w)})},n.translateTo=function(t,e,r){n.transform(t,function(){var t=y.apply(this,arguments),n=this.__zoom,o=i(t);return _(ub.translate(o[0],o[1]).scale(n.k).translate("function"==typeof e?-e.apply(this,arguments):-e,"function"==typeof r?-r.apply(this,arguments):-r),t,w)})},u.prototype={start:function(){return 1==++this.active&&(this.index=T.push(this)-1,this.emit("start")),this},zoom:function(t,n){return this.mouse&&"mouse"!==t&&(this.mouse[1]=n.invert(this.mouse[0])),this.touch0&&"touch"!==t&&(this.touch0[1]=n.invert(this.touch0[0])),this.touch1&&"touch"!==t&&(this.touch1[1]=n.invert(this.touch1[0])),this.that.__zoom=n,this.emit("zoom"),this},end:function(){return 0==--this.active&&(T.splice(this.index,1),this.index=-1,this.emit("end")),this},emit:function(t){ot(new function(t,n,e){this.target=t,this.type=n,this.transform=e}(n,t,this.that.__zoom),S.apply,S,[t,this.that,this.args])}},n.wheelDelta=function(t){return arguments.length?(b="function"==typeof t?t:Bc(+t),n):b},n.filter=function(t){return arguments.length?(g="function"==typeof t?t:Bc(!!t),n):g},n.touchable=function(t){return arguments.length?(m="function"==typeof t?t:Bc(!!t),n):m},n.extent=function(t){return arguments.length?(y="function"==typeof t?t:Bc([[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]]),n):y},n.scaleExtent=function(t){return arguments.length?(x[0]=+t[0],x[1]=+t[1],n):[x[0],x[1]]},n.translateExtent=function(t){return arguments.length?(w[0][0]=+t[0][0],w[1][0]=+t[1][0],w[0][1]=+t[0][1],w[1][1]=+t[1][1],n):[[w[0][0],w[0][1]],[w[1][0],w[1][1]]]},n.constrain=function(t){return arguments.length?(_=t,n):_},n.duration=function(t){return arguments.length?(M=+t,n):M},n.interpolate=function(t){return arguments.length?(A=t,n):A},n.on=function(){var t=S.on.apply(S,arguments);return t===S?n:t},n.clickDistance=function(t){return arguments.length?(C=(t=+t)*t,n):Math.sqrt(C)},n},t.zoomTransform=Ic,t.zoomIdentity=ub,Object.defineProperty(t,"__esModule",{value:!0})});
-</script>
-<style>
-/*! Basscss | http://basscss.com | MIT License */.h1{font-size:2rem}.h2{font-size:1.5rem}.h3{font-size:1.25rem}.h4{font-size:1rem}.h5{font-size:.875rem}.h6{font-size:.75rem}.font-family-inherit{font-family:inherit}.font-size-inherit{font-size:inherit}.text-decoration-none{text-decoration:none}.bold{font-weight:700}.regular{font-weight:400}.italic{font-style:italic}.caps{text-transform:uppercase;letter-spacing:.2em}.left-align{text-align:left}.center{text-align:center}.right-align{text-align:right}.justify{text-align:justify}.nowrap{white-space:nowrap}.break-word{word-wrap:break-word}.line-height-1{line-height:1}.line-height-2{line-height:1.125}.line-height-3{line-height:1.25}.line-height-4{line-height:1.5}.list-style-none{list-style:none}.underline{text-decoration:underline}.truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.list-reset{list-style:none;padding-left:0}.inline{display:inline}.block{display:block}.inline-block{display:inline-block}.table{display:table}.table-cell{display:table-cell}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-auto{overflow:auto}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}.left{float:left}.right{float:right}.fit{max-width:100%}.max-width-1{max-width:24rem}.max-width-2{max-width:32rem}.max-width-3{max-width:48rem}.max-width-4{max-width:64rem}.border-box{box-sizing:border-box}.align-baseline{vertical-align:baseline}.align-top{vertical-align:top}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.m0{margin:0}.mt0{margin-top:0}.mr0{margin-right:0}.mb0{margin-bottom:0}.ml0,.mx0{margin-left:0}.mx0{margin-right:0}.my0{margin-top:0;margin-bottom:0}.m1{margin:.5rem}.mt1{margin-top:.5rem}.mr1{margin-right:.5rem}.mb1{margin-bottom:.5rem}.ml1,.mx1{margin-left:.5rem}.mx1{margin-right:.5rem}.my1{margin-top:.5rem;margin-bottom:.5rem}.m2{margin:1rem}.mt2{margin-top:1rem}.mr2{margin-right:1rem}.mb2{margin-bottom:1rem}.ml2,.mx2{margin-left:1rem}.mx2{margin-right:1rem}.my2{margin-top:1rem;margin-bottom:1rem}.m3{margin:2rem}.mt3{margin-top:2rem}.mr3{margin-right:2rem}.mb3{margin-bottom:2rem}.ml3,.mx3{margin-left:2rem}.mx3{margin-right:2rem}.my3{margin-top:2rem;margin-bottom:2rem}.m4{margin:4rem}.mt4{margin-top:4rem}.mr4{margin-right:4rem}.mb4{margin-bottom:4rem}.ml4,.mx4{margin-left:4rem}.mx4{margin-right:4rem}.my4{margin-top:4rem;margin-bottom:4rem}.mxn1{margin-left:-.5rem;margin-right:-.5rem}.mxn2{margin-left:-1rem;margin-right:-1rem}.mxn3{margin-left:-2rem;margin-right:-2rem}.mxn4{margin-left:-4rem;margin-right:-4rem}.ml-auto{margin-left:auto}.mr-auto,.mx-auto{margin-right:auto}.mx-auto{margin-left:auto}.p0{padding:0}.pt0{padding-top:0}.pr0{padding-right:0}.pb0{padding-bottom:0}.pl0,.px0{padding-left:0}.px0{padding-right:0}.py0{padding-top:0;padding-bottom:0}.p1{padding:.5rem}.pt1{padding-top:.5rem}.pr1{padding-right:.5rem}.pb1{padding-bottom:.5rem}.pl1{padding-left:.5rem}.py1{padding-top:.5rem;padding-bottom:.5rem}.px1{padding-left:.5rem;padding-right:.5rem}.p2{padding:1rem}.pt2{padding-top:1rem}.pr2{padding-right:1rem}.pb2{padding-bottom:1rem}.pl2{padding-left:1rem}.py2{padding-top:1rem;padding-bottom:1rem}.px2{padding-left:1rem;padding-right:1rem}.p3{padding:2rem}.pt3{padding-top:2rem}.pr3{padding-right:2rem}.pb3{padding-bottom:2rem}.pl3{padding-left:2rem}.py3{padding-top:2rem;padding-bottom:2rem}.px3{padding-left:2rem;padding-right:2rem}.p4{padding:4rem}.pt4{padding-top:4rem}.pr4{padding-right:4rem}.pb4{padding-bottom:4rem}.pl4{padding-left:4rem}.py4{padding-top:4rem;padding-bottom:4rem}.px4{padding-left:4rem;padding-right:4rem}.col{float:left}.col,.col-right{box-sizing:border-box}.col-right{float:right}.col-1{width:8.33333%}.col-2{width:16.66667%}.col-3{width:25%}.col-4{width:33.33333%}.col-5{width:41.66667%}.col-6{width:50%}.col-7{width:58.33333%}.col-8{width:66.66667%}.col-9{width:75%}.col-10{width:83.33333%}.col-11{width:91.66667%}.col-12{width:100%}@media (min-width:40em){.sm-col{float:left;box-sizing:border-box}.sm-col-right{float:right;box-sizing:border-box}.sm-col-1{width:8.33333%}.sm-col-2{width:16.66667%}.sm-col-3{width:25%}.sm-col-4{width:33.33333%}.sm-col-5{width:41.66667%}.sm-col-6{width:50%}.sm-col-7{width:58.33333%}.sm-col-8{width:66.66667%}.sm-col-9{width:75%}.sm-col-10{width:83.33333%}.sm-col-11{width:91.66667%}.sm-col-12{width:100%}}@media (min-width:52em){.md-col{float:left;box-sizing:border-box}.md-col-right{float:right;box-sizing:border-box}.md-col-1{width:8.33333%}.md-col-2{width:16.66667%}.md-col-3{width:25%}.md-col-4{width:33.33333%}.md-col-5{width:41.66667%}.md-col-6{width:50%}.md-col-7{width:58.33333%}.md-col-8{width:66.66667%}.md-col-9{width:75%}.md-col-10{width:83.33333%}.md-col-11{width:91.66667%}.md-col-12{width:100%}}@media (min-width:64em){.lg-col{float:left;box-sizing:border-box}.lg-col-right{float:right;box-sizing:border-box}.lg-col-1{width:8.33333%}.lg-col-2{width:16.66667%}.lg-col-3{width:25%}.lg-col-4{width:33.33333%}.lg-col-5{width:41.66667%}.lg-col-6{width:50%}.lg-col-7{width:58.33333%}.lg-col-8{width:66.66667%}.lg-col-9{width:75%}.lg-col-10{width:83.33333%}.lg-col-11{width:91.66667%}.lg-col-12{width:100%}}.flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}@media (min-width:40em){.sm-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}}@media (min-width:52em){.md-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}}@media (min-width:64em){.lg-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}}.flex-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.flex-wrap{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.items-start{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;-ms-grid-row-align:flex-start;align-items:flex-start}.items-end{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;-ms-grid-row-align:flex-end;align-items:flex-end}.items-center{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;-ms-grid-row-align:center;align-items:center}.items-baseline{-webkit-box-align:baseline;-webkit-align-items:baseline;-ms-flex-align:baseline;-ms-grid-row-align:baseline;align-items:baseline}.items-stretch{-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;-ms-grid-row-align:stretch;align-items:stretch}.self-start{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start}.self-end{-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end}.self-center{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.self-baseline{-webkit-align-self:baseline;-ms-flex-item-align:baseline;align-self:baseline}.self-stretch{-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch}.justify-start{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.justify-end{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.justify-center{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.justify-around{-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.content-start{-webkit-align-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start}.content-end{-webkit-align-content:flex-end;-ms-flex-line-pack:end;align-content:flex-end}.content-center{-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center}.content-between{-webkit-align-content:space-between;-ms-flex-line-pack:justify;align-content:space-between}.content-around{-webkit-align-content:space-around;-ms-flex-line-pack:distribute;align-content:space-around}.content-stretch{-webkit-align-content:stretch;-ms-flex-line-pack:stretch;align-content:stretch}.flex-auto{-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;min-height:0}.flex-none{-webkit-box-flex:0;-webkit-flex:none;-ms-flex:none;flex:none}.order-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.order-last{-webkit-box-ordinal-group:100000;-webkit-order:99999;-ms-flex-order:99999;order:99999}.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.z1{z-index:1}.z2{z-index:2}.z3{z-index:3}.z4{z-index:4}.border{border-style:solid;border-width:1px}.border-top{border-top-style:solid;border-top-width:1px}.border-right{border-right-style:solid;border-right-width:1px}.border-bottom{border-bottom-style:solid;border-bottom-width:1px}.border-left{border-left-style:solid;border-left-width:1px}.border-none{border:0}.rounded{border-radius:3px}.circle{border-radius:50%}.rounded-top{border-radius:3px 3px 0 0}.rounded-right{border-radius:0 3px 3px 0}.rounded-bottom{border-radius:0 0 3px 3px}.rounded-left{border-radius:3px 0 0 3px}.not-rounded{border-radius:0}.hide{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}@media (max-width:40em){.xs-hide{display:none!important}}@media (min-width:40em) and (max-width:52em){.sm-hide{display:none!important}}@media (min-width:52em) and (max-width:64em){.md-hide{display:none!important}}@media (min-width:64em){.lg-hide{display:none!important}}.display-none{display:none!important}
-</style>
-<style>
-body { background-color: #7a0019; margin: 0; padding: 0; font: 12px sans-serif; }
-path, line { shape-rendering: crispEdges; }
-svg { pointer-events: none; }
-.axis path, .axis line { fill: none; stroke: #000; stroke-width: 1px; }
-circle { stroke-width: 4px; stroke: #000; fill: none; }
-.hidden { display: none; }
-.multiselect { width: 200px; } 
-.selectBox { position: relative; }
-.overSelect { position: absolute; left: 0; right: 0; top: 0; bottom: 0; }
-#checkboxes { display: none; border: 1px #dadada solid; position:absolute; z-index:1; background-color: #FFF; }
-#title { background-color: #7a0019; color: #ffcc33; text-align: center;}
-h1, h3 { margin: 0.25em 0em; }
-#controls { min-height: 58px; background-color: #ffcc33; color: #7a0019; vertical-align:middle; }
-.mainControl { opacity: 0.9; width: 100%; background-color: #7a0019; border: 1px solid transparent; display:inline-block; border-radius: 3px; color: #ffcc33;}
-.mainControl:hover { opacity: 1; color: #FFF;}
-#update { height: 46px; font-size: 2em; }
-#checkboxes label { display: block; height: 2em; line-height: 1.5em; }
-#checkboxes label:hover { background-color: #1e90ff; } 
-#sidebar {word-wrap: break-word;}
-#chart { margin-right: 50px; margin-bottom: 50px; }
-.clearfix { background-color: #FFF; border-bottom: 0.5em solid #ffcc33; }
-.slider { -webkit-appearance: none; margin: 2px 0px 0px 0px; height: 12px; -webkit-transition: .2s; transition: opacity .2s; }
-.slider::-webkit-slider-thumb:hover { background: #FFF; }
-.slider::-moz-range-thumb:hover { background: #FFF; }
-.slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 10px; height: 10px; background: #ffcc33; cursor: pointer; }
-.slider::-moz-range-thumb { width: 10px; height: 10px; background: #ffcc33; cursor: pointer; }
-</style>
-</head>
-<body>
-<div class="clearfix">
-  <div id="title" class="col col-12"><h1>VKMZ</h1></div>
-  <div id="controls" class="col col-12">
-    <div id="sample_ids" class="col-right col-12 sm-col-6 md-col-3 lg-col-2 p1">
-      <h3>Visible Samples</h3>
-      <form>
-        <div class="selectBox" onclick="showCheckboxes()">
-          <select class="mainControl">
-            <option>Select Visible Samples</option>
-          </select>
-          <div class="overSelect"></div>
-        </div>
-        <div id="checkboxes">
-        </div>
-      </form>
-    </div>
-    <div class="col-right col-12 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>Opacity</h3>
-      <input id="opacity" class="mainControl slider" type="range" min="1" max="100" value="25">
-    </div>
-    <div class="col-right col-12 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>y-axis</h3>
-      <select id="y-axis" class="mainControl">
-        <option value="hc" selected="selected">H:C</option>
-        <option value="nc">N:C</option>
-        <option value="oc">O:C</option>
-      </select>
-    </div>
-    <div class="col-right col-12 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>x-axis</h3>
-      <select id="x-axis" class="mainControl">
-        <option value="hc">H:C</option>
-        <option value="nc">N:C</option>
-        <option value="oc" selected="selected">O:C</option>
-      </select>
-    </div>
-    <div class="col-right col-12 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>Threshhold</h3>
-      <input id="intensity-threshold" class="mainControl slider" type="range" min="0" max="500" value="0">
-    </div>
-    <div class="col-right col-6 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>Max Size</h3>
-      <input id="size-max" class="mainControl" type="number" min="1" value="500" />
-    </div>
-    <div class="col-right col-6 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>Min Size</h3>
-      <input id="size-min" class="mainControl" type="number" min="0" value="1" />
-    </div>
-    <div class="col-right col-12 sm-col-6 md-col-3 lg-col-1 p1">
-      <h3>Sizer</h3>
-      <select id="size-algorithm" class="mainControl">
-        <option value="uniform">Uniform</option>
-        <option value="relative-intensity" selected="selected">Relative Intensity</option>
-        <option value="relative-log-intensity">Relative Log Intensity</option>
-      </select>
-    </div>
-    <div class="col col-12 sm-col-12 md-col-12 lg-col-3 p1";>
-      <input type="button" id="update" class="mainControl" onclick="redraw()" value="Update Diagram"/>
-    </div>
-  </div>
-  <div id="chart" class="col-right col-11 md-col-9" style="height: 500px;"></div>
-  <div id="sidebar" class="col col-12 md-col-2 p1">
-    <h3>Feature Info:</h3>
-    <p><strong>sample:</strong> <span id="sample_id">NA</span></p>
-    <p><strong>polarity:</strong> <span id="polarity">NA</span></p>
-    <p><strong>mz:</strong> <span id="mz">NA</span></p>
-    <p><strong>intensity:</strong> <span id="intensity">NA</span></p>
-    <p><strong>retention time:</strong> <span id="rt">NA</span></p>
-    <p><strong>predictions: </strong><span id="predictions">NA</span></p>
-  </div>
-</div>
-
-<script>
-var data = [{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:14683557824.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:8997400092.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:8997400092.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:7354278461.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:6916576064.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:5501609526.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:5475926276.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:5475926276.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:5070847390.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:4954363991.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'control_recovery_3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:4937831596.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'drought_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:4817466069.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_heat_3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:4726758126.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:4677515587.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:4672639743.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:4664051589.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:4518154583.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:4457116182.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:4457116182.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:4444629055.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:4440355374.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:4398636479.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:4358924527.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'control_recovery_2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:4328522418.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:4320501461.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:4320501461.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:4319430247.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'control_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:4302733347.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'control_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:4302733347.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:4198642707.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:4160905598.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:4142075971.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:4142075971.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:4046885085.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3998224991.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3998224991.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:3981991034.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3929495537.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:3926253501.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3896119883.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_recovery_3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3784373738.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3779298213.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3771259704.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3769849931.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3711396752.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3711396752.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_recovery_3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:3661191154.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3657748923.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3657748923.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_recovery_3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3654783592.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'control_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:3641846027.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3626442407.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3626442407.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3600412243.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3600412243.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3594369125.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3548082156.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:3521955788.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:3521955788.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3510814492.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3437017672.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3434208126.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3391840854.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3391840854.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3389140319.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'control_recovery_3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3380577996.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:3366339350.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:3366339350.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3362061719.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3350075849.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3262760214.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3262760214.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:3257702048.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3243311474.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3243311474.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3237076521.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3237076521.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_recovery_3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3227780069.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3211974335.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:3186827428.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3184512178.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'control_recovery_2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3184179589.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'control_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3169157746.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'control_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3169157746.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'control_recovery_2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3161111254.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3142098181.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'control_recovery_3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3132196390.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'drought_2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3114586912.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_recovery_2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3099274120.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:3048560494.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:3016149531.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:3016149531.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3009198114.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3003770905.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3003770905.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2982164272.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2982164272.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'control_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2981920813.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'control_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2981920813.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2975876710.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'control_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2965783989.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2924397409.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'high_light_recovery_2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2907908768.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2810803978.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2744095758.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2719406592.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:2687294472.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2686664183.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2663777089.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'control_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2629386461.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2624808182.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2613103029.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2613103029.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2592586469.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2582247199.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'high_light_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2582247199.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2536991244.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'drought_recovery_2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2532350449.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2511468294.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2501161401.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2485845752.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2485845752.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2470405147.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2464738817.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2434438320.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2434438320.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2419903692.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2398098231.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2398098231.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2371942976.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2371137771.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2371111490.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2330401195.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2330401195.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'drought_2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2256096363.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2236035761.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2236035761.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2230570452.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_cold_3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2215414443.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2205620151.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:2185432496.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'control_2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2181655772.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2124545087.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'control_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2112004358.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'control_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2112004358.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'control_3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:2105594372.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:2061782874.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:2061782874.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2015700629.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1986791899.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1975434293.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1975434293.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_recovery_2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1961005357.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:1934075726.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1910628463.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1864493044.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1833402112.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1801530791.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1789413715.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1789225642.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1761674958.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'drought_2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1728768827.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1724096537.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1688046171.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1688046171.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1633926785.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:1618826321.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:1579642422.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1579035652.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1579035652.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'control_3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1574653708.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:1563978425.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1562508142.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1554698601.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1554698601.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'drought_recovery_2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1543713419.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1485499155.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:1447479288.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:1447479288.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:1402567236.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'drought_recovery_3', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1391862746.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1390578517.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'high_light_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1390578517.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1307690619.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'drought_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1283443811.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'drought_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1283443811.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1282548473.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'control_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1236291828.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'control_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1236291828.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_cold_2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1211113695.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:1143969121.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1119805283.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_cold_3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1070798242.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'control_3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1069853009.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'control_recovery_2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:1062789932.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'control_2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1061901177.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1052562742.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1052562742.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:1050975048.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:1050975048.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1039615387.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1039615387.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'control_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1018783970.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'control_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1018783970.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1006122971.0, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1003211744.0, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1001757322.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1001184278.0, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'control_2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:992004869.6, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:991968738.3, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:980890673.2, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:978864635.2, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:978864635.2, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:975300622.5, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_3', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:965683857.5, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:957899263.3, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:954101457.8, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:937639012.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_heat_3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:927241139.4, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:924412931.9, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:924412931.9, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:923836443.9, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:920065229.8, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:915268279.3, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:909787505.0, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:907894323.9, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:907894323.9, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:892570027.8, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:889793815.7, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:887626223.4, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:887626223.4, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:873826925.1, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'control_recovery_3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:872474466.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:870764558.4, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:870764558.4, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:865457126.5, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:854758772.1, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:853256278.1, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:838739908.3, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:838739908.3, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:832716715.6, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:832716715.6, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_recovery_3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:827318988.2, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:823000104.9, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:812718895.5, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:812711188.9, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:790247017.2, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'control_recovery_2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:774670688.9, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:754375582.6, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:747622388.8, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'control_recovery_3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:742098428.3, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:739194869.5, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:736752076.6, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:733855881.4, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:731409409.8, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_cold_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:731409409.8, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'control_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:727614271.5, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:716464691.5, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:716464691.5, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:694702126.9, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:694702126.9, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:693862129.7, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:686200625.1, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:686200625.1, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:677462758.2, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:673580756.3, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:667229135.5, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:657024897.5, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:657024897.5, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'high_light_recovery_2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:653192183.3, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'drought_recovery_3', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:647320029.9, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:635458193.6, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:635458193.6, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:632781992.2, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:630500675.9, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:619076066.6, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:616195740.2, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'drought_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:616195740.2, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'drought_recovery_2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:616014924.4, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'drought_2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:611170532.1, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:603595209.1, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:598411146.8, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:595263714.4, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:595263714.4, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:585252266.3, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'high_light_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:578835879.3, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:578835879.3, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_cold_2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:574539134.4, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'high_light_recovery_3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:571577585.6, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:571303609.7, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:564786036.3, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:562510624.5, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:554612269.4, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:552837109.3, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:541832758.0, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:541772290.3, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:541772290.3, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:538981769.9, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:531092877.4, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:517839023.9, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:512411805.2, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:511552630.8, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:502498497.5, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:497373553.6, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:497373553.6, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:490344244.3, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:490344244.3, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:481794032.0, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:478523333.0, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:477504240.2, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:472773176.5, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:472357800.7, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'high_light_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:469299904.2, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:469299904.2, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:467638155.1, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:466865144.7, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:453403694.9, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_heat_3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:452730867.4, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:448460651.8, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:446439614.5, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:446439614.5, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:443230938.4, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:443230938.4, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:439762124.2, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:435613524.6, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:435087631.6, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:435087631.6, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:432703677.9, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_heat_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:432703677.9, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:432595397.2, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:432489476.8, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:428165290.4, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:426589139.2, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:426565208.1, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:426565208.1, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:425084895.0, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:425084895.0, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_heat_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:419639157.6, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:416883400.7, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:416070148.7, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:415044545.1, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'high_light_recovery_2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:408156836.6, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:402041268.2, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'high_light_3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:397862615.5, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:394616553.7, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:394616553.7, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:392704473.1, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:392704473.1, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'control_3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:391701260.5, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:376240266.6, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:371246493.6, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:371246493.6, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:368417611.7, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'control_3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:368085166.6, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:366763847.8, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:364316254.0, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:359333387.6, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:356626072.9, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:347896308.4, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:347229899.9, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:344501443.6, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:344501443.6, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_cold_3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:332452367.9, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'high_light_2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:330983575.4, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'drought_3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:326065731.4, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:324628450.2, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:324628450.2, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:320829879.1, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:320829879.1, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:319195665.2, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:319195665.2, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:318006999.3, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_cold_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:316776086.3, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:314328372.3, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:313311137.4, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:313311137.4, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'control_recovery_3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:312018804.4, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:310588038.9, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:310588038.9, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:308358541.4, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:308272180.2, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:306042862.8, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:306042862.8, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:305753331.6, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_recovery_3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:303223008.4, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:300291194.0, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:297119318.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:297119318.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:296408031.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_3', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:294734109.7, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'control_2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:288401062.2, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:287677517.4, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:287677517.4, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:286294944.3, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_recovery_2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:285925153.5, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:282783672.2, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:282664566.6, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:282664566.6, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:281180726.7, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:281180726.7, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'control_2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:279974604.8, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:276496245.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:270475917.9, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:263966347.7, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'control_recovery_3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:263923422.5, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:263789010.2, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:263789010.2, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'control_recovery_2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:262971501.6, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:257241607.9, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:255051220.3, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_cold_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:254469178.0, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:254394018.2, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:253718958.7, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:253342864.8, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:252120735.0, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:252120735.0, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:247393215.4, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:243289322.9, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:235805335.2, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:232989211.1, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:231317935.8, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:231317935.8, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_recovery_3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:231202720.1, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:229878743.5, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:229878743.5, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:228082780.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:225094096.9, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:223085360.8, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:223085360.8, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:222884054.3, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:222716117.9, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:222232031.2, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'drought_recovery_3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:221956246.8, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:220939588.5, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:218892797.6, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:218457184.5, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:215579410.9, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'control_recovery_2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:214450974.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:211683651.0, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:210937291.8, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:210899840.9, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:207169513.4, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:204854427.2, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:202306711.4, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:202306711.4, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:200542413.3, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'high_light_recovery_3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:195398875.6, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:195027249.5, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:195027249.5, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:194023728.6, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:192240893.1, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:192240893.1, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:191657635.1, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'control_recovery_2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:189513426.9, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_3', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:188552430.7, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:188230501.6, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:188230501.6, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:187761436.5, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:186774875.5, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:183626966.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:183626966.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:183298721.2, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_recovery_3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:182353579.2, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:181782536.6, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:181569256.2, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_heat_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:181569256.2, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:181371899.0, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:179066499.6, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:178721754.5, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:178721754.5, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:175360399.8, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:175360399.8, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:175262487.6, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:173898035.4, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_recovery_2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:173195380.6, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'high_light_recovery_3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:169709142.1, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'control_3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:169626508.1, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:168468973.8, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:168216265.8, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:168216265.8, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:167571007.3, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'control_3', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:166364755.5, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:165815832.7, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_recovery_2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:163089349.2, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:160438999.8, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:160438999.8, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:159297982.3, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:157570634.6, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:157570634.6, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:156977040.9, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:152416795.4, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:152416795.4, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:149868025.9, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:149050359.8, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:148541917.5, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_heat_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:146930040.8, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:146815761.9, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:146666396.8, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:146133216.8, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:145004398.3, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:139566657.2, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:137895641.4, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:137036181.4, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:136800108.9, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:135874071.0, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:134646575.1, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:134646575.1, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:133601526.0, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:133601526.0, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:132593089.5, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'high_light_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:131810438.2, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:131810438.2, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:130821295.4, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:129638216.6, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:129638216.6, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:128709032.4, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'control_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:128709032.4, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_recovery_3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:128092827.1, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:127987275.8, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:127987275.8, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'control_recovery_2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:127308126.3, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:125988589.1, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:124727770.7, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'control_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:124727770.7, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:124268736.0, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:122842100.9, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:122689916.3, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:121517743.6, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:120581314.8, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:120581314.8, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:118862954.3, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'control_recovery_2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:118759088.4, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:118722225.5, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:118451403.2, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:118168047.2, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:117038171.7, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:116179147.4, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:115296737.3, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:114644871.2, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:114644871.2, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:113928606.5, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:113928606.5, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:113633371.9, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'high_light_recovery_3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:112377111.2, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:111605088.3, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:111590286.7, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'drought_3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:111424838.3, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:111210201.9, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:109217193.4, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:109217193.4, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:109182093.2, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:109182093.2, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:108979518.1, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:108870471.4, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:108750075.5, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:108007053.5, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:108007053.5, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:107916472.6, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:107681979.9, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:107459140.7, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:106657906.6, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_heat_3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:106357827.0, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_heat_3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:105580449.2, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:105452136.5, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:104457721.1, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:104457721.1, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:104204428.8, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:103364675.3, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_recovery_2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:102773577.8, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:102536191.7, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:102536191.7, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:101739205.9, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:99816037.75, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:99597125.09, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:99597125.09, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:99484052.17, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:98967102.6, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:98967102.6, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'control_2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:98886367.95, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:98759058.75, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:98435139.32, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:98435139.32, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:98030773.75, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:97738407.58, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:97018014.81, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:97018014.81, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:96462848.34, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:96201387.98, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:95965671.04, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:94974943.28, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:94974943.28, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_heat_2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:94693685.03, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:94641663.01, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:94474458.69, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:94462764.15, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:94361640.33, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:93692136.59, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:92940118.75, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:92534927.29, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:92534927.29, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:91740115.87, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:91576430.91, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:91011773.33, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:91011773.33, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:90937329.01, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:89226082.69, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:89089403.13, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:88930239.68, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:88930239.68, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:88535795.49, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:88535795.49, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:88509921.13, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:87363211.02, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:86673264.86, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:86673264.86, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:86583598.16, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:86307655.85, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:85219875.51, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:84644453.38, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:84640730.9, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:84597316.42, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:84500084.85, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:84500084.85, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:83928507.67, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:83154537.32, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:83093373.34, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'control_recovery_2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:82858355.79, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:82345301.9, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:82181807.57, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:81959855.04, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:81959855.04, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:81871953.2, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:81414892.51, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:81017423.35, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:81016342.51, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:80952484.82, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'drought_2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:80873990.55, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:80529550.68, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:80529550.68, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:80078622.29, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:80057759.51, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:80057759.51, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:80019291.68, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:80019291.68, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:79712856.53, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:79451027.26, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:79298470.95, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'drought_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:79254248.94, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:79254248.94, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:78261351.38, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:78261351.38, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:78025069.56, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:77829866.58, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:77475828.95, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:77475828.95, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:77100113.36, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_cold_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:76979984.32, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:76887865.71, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:76591816.52, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:76263758.88, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:75962556.73, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:75783087.28, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:75395661.15, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:75395661.15, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:75383970.32, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:75289737.43, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'drought_recovery_2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:75172356.03, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:75011394.26, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:74846135.13, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:74846135.13, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:74828360.37, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:74828360.37, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:74792589.11, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:74561071.3, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:74209648.95, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:74201696.77, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:74064253.79, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:74015939.41, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'control_recovery_2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:74015740.32, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:73784065.47, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:73549398.09, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:72654484.57, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:72190314.38, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'control_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:72190314.38, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:72149768.48, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:72115814.28, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:71993787.27, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:71813477.5, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:71813477.5, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:71795903.71, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:71746113.5, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:71681537.81, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:71250943.19, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:71204525.86, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:70849429.84, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:70849429.84, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:70771257.27, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_heat_2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:70424530.97, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:70384990.58, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:70355994.39, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_heat_3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:70337182.52, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:70271776.48, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:69811575.03, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:69768666.31, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:69768666.31, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_recovery_3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:69753139.18, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:69278799.26, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'high_light_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:69278799.26, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:69227325.68, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:69227325.68, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:69191287.26, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:69098130.29, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:69065362.52, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'drought_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:69065362.52, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'control_3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:69010028.58, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:68785335.61, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:68621909.34, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:68621909.34, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:68346313.59, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:68194044.13, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:68194044.13, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:68138109.01, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:68001458.03, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:67562505.72, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:67562505.72, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:67412150.57, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:66902467.73, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:66890594.4, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:66703113.26, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:66702085.94, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:66535656.03, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:66461327.35, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:66444008.62, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:66444008.62, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:65935092.34, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:65718989.55, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:65718989.55, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:65682923.57, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:65579869.15, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:65539368.53, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_heat_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:65333252.21, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:65219909.67, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:65219909.67, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_recovery_3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:65088426.83, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:65007300.58, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:64984717.86, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:64616404.79, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:64616404.79, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:64494623.2, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:64298074.61, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:64298074.61, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:64291357.5, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:64291357.5, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:64202503.85, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:64202503.85, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:64089154.22, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'control_3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:64084914.0, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:63989947.67, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:63693700.95, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:63657091.25, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:63583870.54, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:63485405.07, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:63324133.86, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:63277146.39, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'control_recovery_3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:63153957.85, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'control_3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:63088866.56, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:63056155.73, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'control_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:62918097.02, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:62918097.02, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:62774353.05, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:62358248.08, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_cold_3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:62056440.87, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:61982122.12, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:61982122.12, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:61601503.04, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:61457819.58, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_recovery_3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:61450643.62, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:61297851.64, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:61238878.38, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_heat_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:61238878.38, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_cold_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:61018575.45, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:61018575.45, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:60963192.71, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:60963192.71, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_recovery_2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:60868959.85, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:60722745.97, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'control_recovery_2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:60704875.1, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:60665761.42, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:60661951.09, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:60459565.46, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:60432030.72, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'control_3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:60230525.87, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:60161536.07, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:60134417.2, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:60131815.3, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:60129908.89, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:59761262.92, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_heat_3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:59660721.83, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:59456664.3, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:59238119.89, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:59227231.4, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:59227231.4, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:59132869.29, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:59132869.29, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:59049619.02, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:58946268.44, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:58890477.78, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:58856247.01, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:58832154.92, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:58827317.94, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'drought_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:58827317.94, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'drought_2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:58795674.6, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:58788178.77, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:58379210.62, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:58366674.42, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:58136827.55, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'control_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:58136827.55, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_recovery_3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:57834843.42, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:57721181.05, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:57519948.02, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:57478624.85, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_cold_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:57478624.85, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_recovery_2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:57459994.27, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:57402531.26, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:57364675.6, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:56995292.2, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:56989527.98, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:56697724.87, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:56697724.87, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_cold_3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:56658167.8, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:56642619.19, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:56536275.67, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:56427942.75, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:56427942.75, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:56368060.82, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:56080959.59, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'control_3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:55874282.49, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:55834724.47, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:55588753.81, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:55286644.78, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:55286644.78, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:55096324.55, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:55096324.55, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:55000220.56, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:55000220.56, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:54772116.54, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:54755437.42, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:54719067.87, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:54698670.42, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:54695292.66, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:54695292.66, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_heat_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:54617060.09, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:54617060.09, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:54530310.89, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:54530310.89, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:54495836.15, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:54428158.91, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:54411663.51, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:54411663.51, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'high_light_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:54344914.89, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:54344914.89, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:54202920.99, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:54096680.66, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:53995203.33, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:53809450.24, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:53800867.06, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:53800867.06, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:53604398.69, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:53410585.57, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:53410585.57, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:53365824.8, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'control_3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:53284438.88, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:53249676.98, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:53163149.24, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:53144189.26, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_cold_3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:53043473.85, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:52751512.61, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:52751512.61, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:52706570.89, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:52696244.85, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:52661580.47, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:52643495.87, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'high_light_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:52632167.61, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:52593322.75, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:52453974.21, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:52399366.24, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_heat_3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:52388073.25, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:52288737.0, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:52215841.8, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:52202947.24, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:52180645.28, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:52039785.79, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:52021736.84, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:51817790.03, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:51817790.03, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'high_light_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:51785636.09, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'high_light_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:51785636.09, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'control_recovery_2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:51523347.03, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:51453918.18, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:51453918.18, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:51383305.17, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:51383305.17, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:51348880.18, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:51224199.26, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:51224199.26, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:51144358.14, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:51144358.14, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:51056056.53, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:50879238.06, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:50879238.06, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:50837079.92, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:50824494.09, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:50813569.89, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:50493966.18, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:50439996.89, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:50131721.72, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:50131721.72, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:50085258.15, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:49971851.23, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:49806302.97, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:49806302.97, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:49663883.01, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:49663883.01, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:49650123.91, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:49638506.47, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:49521790.84, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:49508160.04, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:49508160.04, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:49439623.24, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:49439623.24, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:49246884.95, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'high_light_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:49246884.95, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'high_light_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:49213168.39, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:49213168.39, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:48933086.0, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:48645178.35, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:48597623.44, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:48597623.44, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:48576876.33, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:48576876.33, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:48514735.45, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:48508914.27, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:48486731.02, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'high_light_recovery_2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:48420951.8, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:48377490.38, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:48359541.71, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_heat_2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:48236638.38, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:47970126.08, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:47970126.08, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:47948964.82, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:47934196.12, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:47934196.12, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:47921113.17, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:47921113.17, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:47893128.89, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:47861862.75, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:47701868.87, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:47382282.83, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:47293630.66, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_recovery_2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:47237978.13, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:47037574.07, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:46963066.46, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:46944867.46, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:46944867.46, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:46883655.9, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:46763322.55, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:46493351.67, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:46493351.67, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:46490107.68, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:46361711.99, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:46319292.67, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:46276328.5, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:46271228.66, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:46271228.66, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:46267149.4, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:46205355.84, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:46205355.84, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:46115683.95, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:46115683.95, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:46012890.29, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:45878614.05, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:45869257.55, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:45670481.33, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:45670481.33, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:45576819.51, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:45576819.51, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:45536629.93, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:45440768.68, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:45440768.68, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:45334211.42, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:45306801.68, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:45204792.65, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:45187999.92, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:45045313.17, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_heat_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:45045313.17, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:44972124.9, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:44892118.64, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:44876013.23, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:44875403.41, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:44875403.41, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:44824250.6, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:44783803.15, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:44783803.15, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:44680335.01, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:44680335.01, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:44626667.55, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:44523905.01, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:44523905.01, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:44409186.36, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:44288403.91, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:44288403.91, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'drought_3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:44280248.42, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:43899253.32, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:43899253.32, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'drought_recovery_2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:43844775.53, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:43815226.01, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'control_recovery_3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:43771068.71, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:43731269.83, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:43604091.0, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:43580223.1, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:43498014.98, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'drought_3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:43451257.68, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:43234975.38, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:43175692.95, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:43175692.95, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:43155982.41, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:42894555.89, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:42894555.89, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:42878179.68, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:42865176.85, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:42828391.88, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:42762273.54, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:42566683.61, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:42558002.32, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:42451677.28, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:42451677.28, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:42337249.6, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:42291629.08, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:42200452.23, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:42176641.72, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:42105281.71, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:42084693.53, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:42064442.91, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'high_light_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:42042488.86, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:41980155.05, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_cold_2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:41963704.94, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:41840122.33, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:41840122.33, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:41839025.59, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_recovery_2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:41773569.69, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:41766617.55, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:41712407.33, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:41712407.33, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:41460859.43, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:41459348.12, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'drought_recovery_3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:41389160.63, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:41374837.64, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:41223530.58, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:41162647.28, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_recovery_2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:41135034.74, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:41028474.66, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:41028474.66, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:40923576.35, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:40910883.86, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:40910883.86, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:40732777.17, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:40668735.64, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:40656011.36, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:40574093.22, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:40574093.22, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'drought_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:40538228.5, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:40477949.21, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:40336923.73, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_recovery_3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:40301063.3, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:40200115.03, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:40200115.03, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'control_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:39884471.21, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:39858591.86, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:39800313.11, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:39800313.11, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:39674659.65, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:39674659.65, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:39456088.83, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'drought_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:39451087.36, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:39451087.36, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:39425797.11, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:39336952.38, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:39336952.38, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:39313225.51, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:39235132.6, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:39218877.84, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:39218877.84, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:39209011.98, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:39203607.33, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:39176642.62, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:39147475.68, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:39016755.3, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:38948737.07, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:38888522.38, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:38790903.1, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:38530734.98, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:38529252.78, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:38529252.78, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:38500471.94, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:38500471.94, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:38492259.57, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:38492259.57, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:38325608.91, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:38244143.14, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:38244143.14, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:38237403.78, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:38143554.02, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:38094002.93, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:38073915.23, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:38050814.97, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:38050814.97, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:38049339.28, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:38049339.28, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:38016422.02, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:38003020.29, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:38001831.75, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:37980116.59, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:37974139.21, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:37855491.35, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:37825341.38, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:37825341.38, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:37637077.22, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:37637077.22, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:37614241.86, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:37539264.66, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:37539264.66, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'drought_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:37533523.21, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:37338531.6, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:37260794.65, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:37205542.39, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:37205275.41, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:37125395.95, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'high_light_2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:37066033.96, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:37038200.45, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:36919015.0, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:36848510.52, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'high_light_recovery_3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:36826798.61, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:36822748.56, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:36784412.16, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:36784412.16, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:36723192.0, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:36723192.0, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:36653561.06, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'drought_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:36430620.49, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:36339701.86, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:36316063.27, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:36289663.52, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:36267012.6, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:36267012.6, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:36217726.57, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_heat_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:35978373.61, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:35960199.11, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:35740669.7, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:35727601.73, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'control_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:35727601.73, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:35592289.81, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:35543817.73, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:35543817.73, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:35410449.54, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:35410449.54, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:35398861.95, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_cold_2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:35255793.56, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:35150376.4, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:35067110.21, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:35067110.21, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:35055595.67, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:35053386.21, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:35041233.09, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:35041233.09, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:35038735.01, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:34955928.04, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:34955928.04, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:34893950.51, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:34807764.28, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:34762567.18, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:34762567.18, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:34584564.74, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:34511203.76, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:34511203.76, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:34494732.23, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:34398090.37, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:34393942.5, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:34393942.5, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:34309913.52, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:34309913.52, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:34280512.49, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_recovery_2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:34236496.91, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_recovery_3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:34136077.8, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:34047960.39, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:34047241.97, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:33973299.31, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:33907125.67, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:33858280.89, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:33543348.56, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:33543348.56, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:33530159.99, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:33491340.4, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:33366647.2, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:33364554.13, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:33253057.04, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:33207316.3, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:33183452.29, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:33179827.92, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_heat_3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:33167205.75, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'control_recovery_3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:33166703.69, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:33159755.24, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:33077241.15, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:33011535.12, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:33011535.12, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_recovery_3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:32813331.83, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:32811188.83, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:32722077.53, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:32722077.53, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:32707995.54, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:32580623.35, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:32484911.81, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:32484911.81, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:32483806.54, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:32430952.98, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:32430952.98, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:32424003.2, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:32409263.36, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'drought_2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:32392673.49, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:32304679.04, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:32163169.34, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:32163169.34, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_recovery_3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:32099306.09, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:32050926.05, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:32050659.98, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:32049407.95, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:31914653.81, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:31870529.77, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:31870529.77, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:31847354.02, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_recovery_2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:31837698.08, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:31761804.46, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:31761804.46, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:31713290.99, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_cold_3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:31648559.89, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:31611273.44, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'control_3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:31602104.18, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:31601515.68, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:31593071.49, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:31571669.69, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:31517406.89, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_heat_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:31517406.89, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:31509391.29, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'high_light_recovery_3', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:31478960.17, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:31393841.31, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:31378945.8, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:31378945.8, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:31368943.03, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:31368943.03, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:31335166.89, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:31331464.98, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:31297873.4, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:31297873.4, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:31103037.65, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:31051123.54, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:30928372.24, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:30928372.24, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:30888831.0, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:30839419.82, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:30828231.67, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:30828231.67, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:30738937.53, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:30616720.02, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:30616720.02, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:30559539.6, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:30552767.88, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:30535129.31, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:30515613.32, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:30514811.58, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:30514811.58, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:30487552.87, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:30450040.12, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:30428565.64, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:30406809.27, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:30382040.39, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:30367276.17, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:30319163.64, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:30273078.42, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:30246361.89, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:30198647.0, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:30197801.04, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:30176212.47, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'high_light_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:30176212.47, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:30172011.16, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:30045739.2, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:30024112.73, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:29975770.94, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:29962118.71, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:29962118.71, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:29863998.44, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:29856333.57, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:29790413.58, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'control_3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:29775416.79, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:29761282.17, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:29761282.17, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:29699897.99, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:29699897.99, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:29681861.56, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:29681861.56, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:29635229.12, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:29608438.75, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:29608438.75, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:29500398.54, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:29500398.54, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:29473474.36, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:29473474.36, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:29425833.84, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:29425833.84, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:29328302.57, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:29208148.94, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:29171079.76, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:29170283.96, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:29092601.99, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:29050078.37, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:29015452.0, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:29015452.0, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:28912068.13, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:28910326.22, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:28821671.28, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'control_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:28818046.06, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'control_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:28818046.06, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_recovery_2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:28734346.3, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_heat_2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:28717734.26, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:28600426.09, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:28568879.86, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'drought_recovery_3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:28555788.19, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:28372273.6, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:28372273.6, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:28262838.72, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:28243888.1, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:28243888.1, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'high_light_recovery_3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:28218862.75, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:28196152.26, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:28188190.99, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_heat_2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:28187340.97, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:28150162.55, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:28150162.55, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:28114300.46, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:28089276.12, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_recovery_3', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:28056743.27, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:28045640.17, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:28026149.95, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:27979614.12, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:27937718.92, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:27937718.92, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:27793552.25, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:27744941.35, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:27679655.13, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:27631356.39, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:27628569.45, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:27601931.21, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:27581131.16, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:27558649.93, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:27514932.03, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:27477420.56, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:27477420.56, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:27445809.23, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:27445809.23, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:27438386.9, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:27438386.9, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:27415969.19, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:27413097.73, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_recovery_3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:27404377.22, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:27392969.82, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:27383863.92, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:27352752.45, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:27352752.45, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:27351442.22, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:27351442.22, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:27324345.36, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'high_light_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:27270593.98, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:27270593.98, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_recovery_2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:27267751.47, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:27264740.3, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:27264740.3, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:27253863.57, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:27202323.22, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:27185097.5, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_recovery_3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:27166978.02, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:27094418.07, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:27094418.07, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:27038618.08, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:26934859.39, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:26930216.2, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_recovery_3', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:26877731.05, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:26806427.5, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:26710969.54, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:26673300.77, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:26598483.97, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:26584626.42, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:26584626.42, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:26557626.27, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:26549103.04, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:26449029.36, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:26449029.36, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:26397524.41, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:26397524.41, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:26393843.56, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:26321540.41, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:26303821.62, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:26295175.88, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:26285777.34, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'control_recovery_3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:26272995.57, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:26186889.07, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:26157405.95, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:26070074.5, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:26049058.39, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:26007264.07, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:25845522.0, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:25840568.75, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:25840568.75, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:25764118.79, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:25738980.34, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:25733206.59, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:25720949.06, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:25685111.02, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:25685111.02, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:25667850.64, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:25661760.34, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:25636312.76, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'control_recovery_2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:25563891.75, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:25521550.86, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:25502743.25, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:25502743.25, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:25487691.95, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:25478274.08, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:25422945.65, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'control_2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:25398581.41, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:25357985.67, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:25321913.74, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:25309516.09, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:25292291.25, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:25282805.91, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:25264786.06, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:25252762.68, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:25247468.14, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:25213036.49, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:25115436.97, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:25076066.61, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:25076066.61, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:24980918.25, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:24861052.65, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:24822332.9, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:24814344.98, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:24814344.98, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:24807558.58, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'control_2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:24807353.13, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:24785231.02, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:24752926.89, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:24641050.93, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:24641050.93, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:24616572.32, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:24616572.32, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:24565271.46, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:24535993.78, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:24518673.53, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:24516083.21, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:24496373.37, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:24480845.38, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:24480845.38, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:24461066.91, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:24452818.48, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:24402793.22, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_recovery_2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:24394590.26, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:24375545.4, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:24367471.48, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:24349101.85, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:24344962.67, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:24332600.53, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:24316925.69, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:24289860.35, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:24273115.99, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:24273115.99, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:24211813.46, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:24179513.77, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:24176314.27, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:24176314.27, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:24054998.22, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:23955219.19, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:23955219.19, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:23900980.8, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:23885872.73, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:23844981.77, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:23820755.98, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'control_3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:23813410.1, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:23788096.32, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:23786678.9, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:23786678.9, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:23675918.24, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:23620931.48, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:23602230.22, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:23602230.22, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:23513645.94, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:23487239.53, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:23440518.92, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:23419354.76, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:23417415.9, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:23394489.43, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:23392323.78, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:23386716.4, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:23368012.18, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:23368012.18, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:23319388.18, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'drought_2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:23317433.24, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:23303164.45, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:23303164.45, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:23297675.61, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:23286523.53, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:23245302.8, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:23239297.46, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:23218839.33, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:23218839.33, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:23217891.89, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:23142942.64, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:23142942.64, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:23139780.09, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:23135747.85, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:23135747.85, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:23121042.69, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:23111617.03, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:23108447.52, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:23108447.52, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:23097780.68, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:23061838.31, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:23055260.48, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:23055260.48, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:23045680.36, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:23045680.36, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:23010518.96, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:22999247.28, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:22993784.69, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:22993784.69, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:22951805.92, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:22882120.51, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:22879222.72, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'control_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:22879222.72, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:22876559.87, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'control_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:22861264.33, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:22861264.33, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:22809573.61, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:22753117.72, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:22753117.72, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:22698858.19, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:22671818.37, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_cold_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:22635544.97, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:22635544.97, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:22617604.96, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'control_2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:22612811.29, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:22582075.42, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:22579662.94, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:22576188.63, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:22563084.55, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_cold_3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:22555860.29, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:22548022.07, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:22548022.07, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:22514462.07, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:22508216.88, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:22483870.37, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:22478148.7, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:22428105.68, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:22425205.18, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:22425205.18, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_recovery_3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:22424158.08, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:22387895.41, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:22387895.41, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:22369686.81, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:22354777.6, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:22354777.6, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:22338440.98, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:22338440.98, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:22336504.85, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:22305442.37, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:22302643.6, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:22249179.4, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:22249179.4, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:22249049.26, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:22246227.43, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:22233863.99, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_heat_3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:22230813.09, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:22208874.65, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:22208874.65, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:22142417.08, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:22142417.08, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:22120974.94, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:22120974.94, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:22097629.36, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:22097629.36, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:22055068.0, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:22052560.16, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:22035453.09, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:21989893.44, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:21971597.95, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:21971597.95, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:21944322.85, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:21944322.85, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'control_recovery_2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:21917256.19, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:21816182.87, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:21786925.83, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:21737340.74, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:21693392.52, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:21671578.16, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:21671578.16, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:21637130.73, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:21622003.99, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'drought_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:21622003.99, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:21594088.31, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:21498247.9, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:21498247.9, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:21496380.77, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:21458839.13, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:21454111.31, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:21424240.81, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:21418895.81, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:21418281.14, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:21418281.14, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:21377386.96, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:21369399.68, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:21369399.68, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:21360242.93, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:21357704.28, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_recovery_2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:21349294.04, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:21319227.41, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:21311082.69, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:21302835.19, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:21276358.91, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:21265045.51, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:21265045.51, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:21242934.11, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:21202820.25, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:21202820.25, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:21150651.94, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:21149897.82, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:21092924.78, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:21091613.11, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:21087801.46, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:21029006.06, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:20994470.59, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:20964502.66, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:20964502.66, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:20938311.37, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:20882484.09, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:20881448.0, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:20856131.9, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:20830715.46, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_heat_3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:20813660.1, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'control_recovery_3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:20756473.28, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:20614365.83, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:20614365.83, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:20594647.38, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:20573610.88, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'high_light_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:20573610.88, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:20571771.95, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:20556080.36, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:20556080.36, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:20534720.81, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:20530995.04, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:20508726.57, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:20508726.57, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:20506053.7, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:20493441.44, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:20493441.44, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:20460598.61, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:20418288.59, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:20335427.81, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:20326084.46, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:20320943.11, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'control_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:20320943.11, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'drought_3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:20313536.24, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'drought_3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:20283544.5, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_3', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:20256597.62, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:20214506.79, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:20214506.79, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:20206750.39, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:20206750.39, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:20171102.34, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_cold_2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:20164495.12, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:20139354.02, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:20139354.02, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:20126409.23, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:20126409.23, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:20118893.18, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:20116299.36, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:20077768.18, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:20035415.53, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:20009073.72, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:19989451.97, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:19974878.0, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:19974878.0, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:19969237.71, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:19968845.65, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:19968845.65, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:19963216.91, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:19947397.87, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:19937302.8, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:19937302.8, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:19932699.98, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'control_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:19932699.98, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:19837341.23, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:19837341.23, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:19788177.27, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:19787261.01, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:19787261.01, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:19774306.34, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:19734855.43, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:19732701.48, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:19732701.48, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:19711831.6, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:19698443.47, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_recovery_2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:19695567.09, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:19684603.32, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:19684603.32, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:19661242.32, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:19653571.41, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:19653571.41, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:19634701.32, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_recovery_3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:19629924.65, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:19625019.74, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:19625019.74, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:19574489.58, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:19574489.58, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:19529062.3, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'high_light_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:19529062.3, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:19525596.11, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:19521013.3, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:19500544.2, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:19497037.89, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:19462135.01, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:19462008.69, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:19427957.06, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:19406008.72, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:19406008.72, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:19400624.61, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:19398374.73, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:19369513.13, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:19328117.26, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:19314734.55, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:19314734.55, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:19306569.51, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:19284889.79, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_recovery_2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:19275326.92, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'control_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:19256314.39, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'control_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:19256314.39, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'control_recovery_2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:19233732.77, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'control_3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:19232099.41, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:19224661.81, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_3', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:19220371.6, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:19202688.88, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:19179738.59, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:19171741.06, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:19158045.17, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:19108943.59, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'control_3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:19042829.08, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:19004126.67, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:18971634.66, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:18966938.95, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:18946168.59, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'drought_3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:18912471.02, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:18891968.4, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:18891968.4, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:18837986.82, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:18837986.82, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:18818405.08, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_heat_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:18801003.84, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:18801003.84, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:18797151.47, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:18748665.91, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:18748041.74, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:18748041.74, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:18734214.23, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:18731618.8, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:18731618.8, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:18699822.2, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:18603170.09, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:18596374.37, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:18574945.03, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:18545703.58, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:18545703.58, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:18538715.74, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_heat_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:18538715.74, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:18510171.46, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:18427793.8, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:18411421.38, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:18407193.35, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:18391312.84, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:18381546.34, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:18381546.34, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:18380867.16, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_heat_3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:18331103.45, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:18304708.71, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:18231477.5, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:18231477.5, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:18220132.86, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:18190415.02, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:18190415.02, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:18125262.53, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:18112266.81, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:18107899.51, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:18107899.51, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:18083822.27, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:18083332.42, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:18083332.42, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:18069701.62, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_recovery_3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:18017103.8, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:18002761.99, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'high_light_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:17985003.37, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:17985003.37, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:17980785.18, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:17950134.93, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:17938245.45, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:17934491.65, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:17934491.65, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:17929231.4, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:17929231.4, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:17906771.63, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:17854365.24, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:17753440.27, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:17726897.58, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:17696212.99, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:17644207.66, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:17639797.27, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:17636937.78, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:17629933.94, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'control_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:17629933.94, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:17615678.28, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:17605161.76, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:17548279.79, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:17533572.73, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'high_light_2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:17468332.32, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_heat_2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:17446029.58, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:17438533.53, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:17438533.53, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:17409268.79, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:17405453.84, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:17392994.77, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:17360104.68, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:17351912.53, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_heat_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:17351912.53, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:17344336.0, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:17340873.78, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:17330739.85, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:17299448.45, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:17299448.45, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_3', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:17278133.2, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:17255024.04, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:17238568.62, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:17200733.95, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:17200733.95, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:17160668.71, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:17131977.15, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:17131977.15, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'drought_recovery_2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:17063418.17, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:17062408.32, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:17053437.28, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:17053437.28, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'high_light_recovery_3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:17044728.79, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:17006745.92, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:17005806.93, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:16997408.56, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:16997408.56, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:16994842.99, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:16974961.05, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:16964513.48, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_recovery_2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:16935706.48, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:16902994.32, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:16898943.74, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:16889148.78, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:16889148.78, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:16823587.47, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:16823587.47, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:16818160.07, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:16810067.22, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:16802912.47, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:16795820.18, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:16770388.51, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:16770388.51, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:16762257.38, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:16743406.09, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:16722525.14, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:16679196.38, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:16668244.75, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:16653671.13, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:16649347.79, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:16635254.72, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:16625301.98, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:16616175.87, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:16616175.87, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:16615782.07, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:16598528.06, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:16552810.45, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'high_light_3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:16543856.05, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:16517872.82, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:16517872.82, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:16512770.7, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:16477716.81, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:16455355.51, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:16432976.22, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:16432976.22, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:16430466.77, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:16421507.47, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:16406984.28, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:16384232.01, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:16362703.66, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:16361054.99, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:16357323.85, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:16357323.85, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:16329445.08, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:16329445.08, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:16316925.18, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:16316925.18, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:16316872.55, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:16311484.12, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:16311484.12, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:16281092.3, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:16268928.97, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:16268928.97, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:16265625.64, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:16246036.65, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:16243985.09, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:16243985.09, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:16206887.01, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:16202093.66, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_3', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:16172741.59, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'control_recovery_3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:16125904.52, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:16118637.52, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_3', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:16107774.89, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:16091205.89, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:16091205.89, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:16074175.97, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:16061148.66, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_heat_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:16053018.26, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:16050911.13, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:16023301.95, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:15990352.5, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'control_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:15990352.5, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:15958339.7, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:15950897.78, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:15950897.78, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:15901088.21, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:15890938.52, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:15835897.88, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:15807741.86, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:15805382.9, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:15774620.33, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:15772001.21, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:15772001.21, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:15752454.14, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:15752454.14, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'high_light_2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:15746571.15, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:15741037.2, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:15704540.71, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:15700166.33, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:15700166.33, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_recovery_3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:15695624.38, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:15667679.56, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:15651214.05, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:15651214.05, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:15647630.06, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:15631857.27, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:15631857.27, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:15615214.26, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:15601515.89, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'high_light_recovery_3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:15580020.87, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:15566412.97, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:15564363.41, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_recovery_3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:15563364.88, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:15516035.0, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_recovery_2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:15483853.09, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:15442875.73, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:15323655.99, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:15305128.03, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'control_2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:15286830.54, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:15279350.0, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:15279350.0, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:15242510.03, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:15190042.4, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:15165061.11, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:15165061.11, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:15155451.13, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:15155451.13, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:15128654.39, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:15117869.29, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:15117869.29, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:15104142.55, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:15101691.24, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:15101610.01, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:15090682.55, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_recovery_2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:15081175.87, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:15069839.06, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:15050767.44, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:14997027.44, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:14997027.44, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:14961412.92, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:14924362.41, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:14907104.8, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'drought_recovery_2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:14906442.16, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:14881845.56, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:14818828.97, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:14818828.97, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:14813035.16, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:14808690.15, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:14790425.83, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:14790425.83, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:14768595.4, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:14768595.4, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:14725414.47, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:14725414.47, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:14704498.54, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:14695658.51, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_cold_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:14687788.53, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:14687788.53, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:14679383.44, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:14668674.31, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:14667646.9, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:14667646.9, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:14662068.16, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:14656127.97, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:14614348.85, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'high_light_recovery_3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:14604025.74, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:14600139.74, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:14597303.15, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:14597303.15, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:14584780.31, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:14584780.31, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:14579564.5, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:14560513.56, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'control_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:14560513.56, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:14554418.86, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:14554418.86, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:14536607.12, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:14516180.55, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:14505239.44, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:14498029.94, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:14498029.94, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:14478737.07, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:14427512.56, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:14400604.3, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:14397392.68, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:14391115.68, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:14384367.83, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:14379209.43, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'high_light_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:14379209.43, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:14369971.57, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:14369971.57, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:14362630.22, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:14362630.22, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:14360734.2, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:14339683.04, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:14339083.73, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:14338320.65, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:14330183.31, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:14319829.37, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:14297995.66, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:14280314.03, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'high_light_recovery_3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:14275959.78, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:14273579.66, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:14216196.07, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:14216196.07, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:14202130.35, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:14104992.77, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:14038146.24, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:14013279.99, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_recovery_2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:14003412.75, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:14003300.63, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:13964376.18, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:13950699.14, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:13946603.88, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:13930046.89, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:13930046.89, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_recovery_3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:13925909.95, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:13912785.91, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:13869865.36, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:13866748.8, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:13860406.45, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:13815814.67, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:13800860.04, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:13796116.75, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:13784718.19, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'control_recovery_2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:13736839.03, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:13733777.43, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:13719303.42, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:13658526.89, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_heat_2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:13652131.53, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:13642510.7, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:13642510.7, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:13606591.86, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:13591031.8, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:13590327.74, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:13579194.7, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:13571260.54, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:13571260.54, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:13543763.77, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:13543763.77, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:13528138.74, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:13501036.23, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:13492471.31, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:13488208.8, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:13482144.6, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_heat_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:13470929.13, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:13449579.83, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:13449579.83, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:13409790.32, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_heat_2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:13404557.63, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:13398459.68, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:13390924.45, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:13390924.45, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:13331258.57, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:13331258.57, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:13329773.91, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:13298544.58, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:13298544.58, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_cold_2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:13259981.33, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:13235977.41, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_recovery_3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:13226691.94, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:13210698.72, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:13210698.72, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:13207241.0, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:13207241.0, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:13197552.82, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:13197552.82, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:13167659.2, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:13154349.57, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:13121367.25, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:13121367.25, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:13106287.49, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:13103713.06, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:13103713.06, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:13102754.58, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:13102222.63, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:13102222.63, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_heat_3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:13097880.13, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_heat_2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:13072401.16, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:13071481.52, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:13050273.39, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:13050273.39, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:13041700.35, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:13034668.99, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:13034556.91, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:13009741.93, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:13007428.31, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:13007428.31, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:12991200.58, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:12989128.59, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:12959307.99, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:12959307.99, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:12939318.44, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:12922399.38, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:12914680.08, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:12914680.08, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:12905752.44, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:12902765.25, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:12902765.25, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:12898877.17, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:12875198.07, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:12871826.4, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:12858916.08, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:12858916.08, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:12820323.29, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:12804391.05, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:12804391.05, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:12804289.34, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:12798003.27, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:12754199.06, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:12708446.09, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:12701154.04, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_heat_2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:12691544.68, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:12685820.72, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:12619386.18, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:12619386.18, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:12614599.55, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:12613472.0, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'control_2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:12612533.24, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:12610754.88, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'control_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:12608758.1, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'control_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:12608758.1, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:12606160.45, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:12575137.52, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_3', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:12545628.95, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:12533405.63, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:12533405.63, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:12514917.65, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_heat_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:12511194.11, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:12511194.11, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:12473443.25, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:12455133.97, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:12447621.21, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:12446147.52, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:12445653.44, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:12430377.8, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'control_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:12430377.8, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:12424150.39, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:12411754.92, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:12410385.23, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:12379031.54, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:12365230.89, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_heat_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:12365230.89, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:12311751.02, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_cold_2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:12296657.53, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:12287658.45, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:12272720.13, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:12267408.26, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'control_recovery_3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:12266268.67, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:12251333.87, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_cold_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:12250723.87, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:12231269.16, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:12214996.36, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:12213840.4, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:12207650.09, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:12194085.75, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:12190044.4, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:12187179.49, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:12171165.74, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:12150301.53, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:12147688.71, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:12144583.33, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:12142686.52, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:12142686.52, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:12079224.29, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:12049796.87, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:12041852.91, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:12016811.85, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:12016811.85, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_3', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:12009805.77, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:12006966.84, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:11994323.27, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:11994323.27, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:11975411.62, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:11940431.06, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:11923940.94, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:11914569.71, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:11885955.04, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:11884454.34, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:11884454.34, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:11883542.77, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:11883542.77, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11869917.56, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11869917.56, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:11861414.66, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:11855310.45, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_3', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:11783278.33, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11772636.98, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11757315.69, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:11748750.34, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'control_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:11741252.07, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:11741252.07, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:11704558.67, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:11704558.67, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:11703220.25, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:11696779.69, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:11673713.69, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:11673037.72, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:11667301.82, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:11664957.82, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:11664957.82, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:11663733.78, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:11663733.78, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:11655005.07, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11635392.88, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11614551.45, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11614551.45, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:11607995.34, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:11607995.34, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'drought_recovery_3', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:11598652.01, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'drought_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11584173.94, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11584173.94, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:11557849.62, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:11555975.05, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:11555830.32, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:11555830.32, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:11553765.12, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:11514584.31, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:11514584.31, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:11490007.75, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:11486410.11, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:11478481.36, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'drought_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:11478481.36, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:11474847.12, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'drought_3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:11459869.98, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_cold_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:11423429.32, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:11386787.61, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:11364866.41, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:11364866.41, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:11347029.87, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11324024.0, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11324024.0, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:11305227.31, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:11234100.87, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11229537.81, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11229537.81, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:11221789.3, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:11209515.58, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:11207587.85, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:11201516.71, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:11197679.55, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:11177892.58, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:11123062.76, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:11121547.43, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'drought_2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:11114159.45, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:11080649.59, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:11078371.24, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:11070270.98, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:11068239.77, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:11057118.86, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:11042332.61, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:11037014.63, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:11037014.63, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:11026688.71, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:10948878.46, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:10948878.46, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10927525.39, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:10897812.34, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:10897812.34, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:10892725.75, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:10888414.14, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:10881136.89, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:10881136.89, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:10856173.05, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:10853884.19, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:10853869.22, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:10853869.22, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:10843971.52, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:10813455.68, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:10777520.41, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:10777520.41, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:10751613.92, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'high_light_recovery_3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:10736927.06, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:10736310.64, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:10724344.38, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:10723424.54, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:10723424.54, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:10707814.94, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'drought_recovery_3', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:10694956.84, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10656424.17, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:10655382.74, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:10651208.95, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:10651208.95, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10647929.8, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:10644543.24, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'drought_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:10639875.31, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:10639875.31, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:10607902.35, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10606677.98, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:10586570.91, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:10575561.17, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:10574405.77, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:10574405.77, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'high_light_recovery_2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:10574189.33, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:10562089.58, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'drought_2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:10556660.79, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'drought_3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10547584.92, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:10543818.37, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:10543801.15, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:10502398.51, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'control_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:10502398.51, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:10502199.99, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:10490362.92, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:10481942.76, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:10481179.49, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'control_recovery_2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10472563.25, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:10469403.39, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:10464996.11, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:10464996.11, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:10457776.25, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:10448768.66, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:10427177.31, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:10422281.67, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:10418653.82, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:10410349.24, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:10393636.64, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10379926.05, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10379926.05, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:10370997.02, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:10367143.63, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:10367143.63, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:10361394.93, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:10361085.47, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:10361085.47, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:10343095.63, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:10339295.51, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:10318830.2, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:10306558.85, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:10306558.85, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:10300940.38, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:10295748.39, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_cold_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:10295748.39, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:10288106.19, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:10288106.19, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:10283957.07, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:10283957.07, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:10270253.06, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:10250617.44, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:10237784.23, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:10233769.55, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:10233038.1, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:10231896.54, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'control_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:10231896.54, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:10225492.62, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:10216530.13, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:10216530.13, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:10204433.05, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'drought_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:10204433.05, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10190106.03, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10181573.02, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:10176842.31, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'drought_recovery_2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:10176013.82, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10146879.72, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:10134894.67, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:10134220.62, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10131496.71, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10131496.71, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:10111349.98, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:10111349.98, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:10104382.64, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:10104382.64, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:10104192.12, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:10061723.64, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:10061723.64, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:10022146.71, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:10015302.08, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:9979778.595, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:9978493.387, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:9972068.732, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:9968791.115, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:9966578.812, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:9964048.0, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:9959404.915, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:9939388.818, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'drought_recovery_3', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:9924288.667, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:9911536.807, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:9911313.405, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:9897707.406, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:9897536.748, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:9897536.748, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:9895217.628, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:9875183.967, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:9875183.967, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:9869612.42, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:9868312.007, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:9868312.007, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:9863802.261, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:9862388.749, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_recovery_3', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:9857694.148, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:9853677.871, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:9846574.606, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:9830323.526, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:9830323.526, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_recovery_2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:9818163.343, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:9816759.205, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:9816708.693, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:9812690.318, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:9812690.318, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:9805058.952, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:9797951.729, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:9793081.734, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:9793081.734, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:9783320.114, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'control_3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:9765190.021, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_cold_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:9753781.564, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:9744771.968, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:9742625.01, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:9742625.01, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:9740582.523, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'drought_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:9728991.585, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'drought_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:9728991.585, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:9690832.093, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:9672309.658, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:9658261.525, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:9652488.087, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:9652488.087, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:9650454.962, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:9634426.298, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:9595838.714, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:9595838.714, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:9587174.747, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:9585342.899, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:9579714.542, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:9577640.423, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:9573150.343, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:9571761.624, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:9553136.984, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:9546752.941, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:9546752.941, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:9538098.609, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:9533555.456, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:9533555.456, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:9492910.646, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:9476295.072, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:9476295.072, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:9472710.533, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:9458291.726, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:9458291.726, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:9447199.125, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:9444551.409, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_recovery_3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:9438723.472, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:9433124.403, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:9424960.556, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:9406433.227, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:9406433.227, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:9399076.321, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:9384299.03, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'drought_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:9351136.203, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'drought_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:9351136.203, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'control_3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:9314120.515, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:9296865.434, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:9295980.209, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:9285930.066, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:9270403.034, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:9264653.022, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:9233862.543, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:9225594.774, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:9220648.52, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:9210647.557, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:9196248.427, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:9196248.427, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:9194223.006, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:9192917.282, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:9167528.687, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:9159490.865, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:9147642.33, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:9147057.966, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:9147057.966, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:9145721.432, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:9141554.57, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:9139842.818, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:9126886.75, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:9126886.75, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:9120746.805, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:9111565.51, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:9110859.586, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:9110859.586, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:9088882.018, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:9085117.069, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:9055965.01, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:9055965.01, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:9055606.49, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_heat_2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:9051626.53, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:9051196.747, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:9047652.938, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:9047652.938, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:9043466.773, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:9043466.773, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:9028937.564, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:9028937.564, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_3', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:9027782.722, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:8995376.782, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:8995376.782, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:8993780.731, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:8993780.731, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:8979750.289, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_3', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:8958345.238, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:8936538.744, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:8936538.744, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:8912032.24, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:8907503.452, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:8905247.464, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:8905247.464, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:8901803.31, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:8889041.727, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_cold_3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:8888283.934, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:8865783.991, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:8865783.991, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:8862740.743, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:8858960.996, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:8856738.278, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:8831596.82, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:8831068.981, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:8831068.981, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:8785588.194, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:8785588.194, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:8727516.819, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:8712079.851, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:8711674.217, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:8708785.451, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:8708785.451, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:8694508.284, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:8693494.148, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:8687140.421, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_recovery_2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:8684616.765, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:8668049.438, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:8661070.681, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:8660602.126, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:8639335.21, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:8629534.308, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_heat_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:8629534.308, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:8617723.851, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'high_light_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:8617723.851, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:8608092.622, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:8599056.763, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:8582020.13, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:8581431.332, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:8579968.545, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:8579968.545, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:8577021.36, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:8572070.632, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:8572070.632, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'control_recovery_3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:8571751.465, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:8555416.238, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:8555416.238, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'high_light_recovery_2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:8544107.49, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:8538521.588, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:8534601.9, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:8522734.649, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:8522734.649, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:8519194.008, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:8519194.008, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:8511036.104, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:8504861.716, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'high_light_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:8472768.246, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:8472768.246, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:8472312.01, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:8467689.021, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:8467689.021, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:8446770.606, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:8442377.828, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:8424135.766, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:8411328.329, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:8400272.52, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:8398970.04, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:8396792.88, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:8396792.88, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:8392333.905, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:8385790.011, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:8374613.726, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:8362330.521, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:8362330.521, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:8348350.644, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:8347676.319, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:8329896.696, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:8329896.696, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:8329887.513, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:8329887.513, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:8326471.576, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:8320855.991, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:8287668.494, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:8286534.003, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:8283455.678, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:8274468.765, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:8274468.765, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:8271168.489, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:8269634.215, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:8260948.554, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:8260948.554, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:8260754.301, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:8259027.363, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:8243456.356, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:8243456.356, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_recovery_3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:8230601.64, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:8229873.87, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:8223873.102, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:8223873.102, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:8221650.876, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:8219649.112, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:8216778.358, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:8201379.015, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:8195731.766, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:8190974.053, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:8185900.313, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:8185900.313, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:8182154.29, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_recovery_3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:8179684.472, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:8173429.607, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:8170827.979, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_cold_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:8170827.979, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:8170074.16, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:8164304.798, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_cold_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:8155656.961, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:8155656.961, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:8155218.797, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:8154626.783, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:8151153.92, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:8150997.184, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:8148033.166, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:8131361.151, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:8123473.876, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:8123473.876, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:8105620.385, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:8095423.833, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:8092573.077, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:8091934.384, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:8086504.06, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:8080345.061, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:8080344.6, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:8080344.6, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:8076405.708, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:8071050.027, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:8065879.513, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:8056602.249, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:8054082.468, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:8054082.468, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:8045104.166, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:8036184.634, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:8036184.634, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'control_recovery_2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:8013873.613, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:8010928.953, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:8010856.72, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:8010856.72, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:8007900.353, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:8007900.353, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:8002631.669, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:7995695.59, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:7993236.183, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_heat_2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:7991171.879, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_recovery_3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:7990869.616, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7983833.086, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'control_recovery_2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:7968346.223, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:7967542.233, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7961500.926, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'control_recovery_3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:7955050.957, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:7939643.783, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:7939643.783, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:7931605.824, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:7931605.824, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:7923925.954, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:7922341.679, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:7922252.511, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7921999.663, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7921999.663, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:7920716.812, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:7918658.479, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:7916545.487, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:7909502.325, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:7909442.857, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:7876425.268, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:7876425.268, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7866461.685, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:7857504.591, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:7857504.591, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'control_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:7855358.646, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:7855358.646, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:7837440.776, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'drought_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:7837440.776, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7829562.889, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:7797362.469, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:7797254.902, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:7796851.985, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7796601.753, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7796601.753, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:7793994.709, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:7783488.445, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:7771471.021, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:7769057.325, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:7765051.47, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'control_recovery_2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:7753463.61, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:7749681.591, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:7749681.591, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:7743041.25, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:7743041.25, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:7725074.92, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:7722370.592, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:7716031.092, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:7715536.748, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:7715536.748, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:7713207.157, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:7713207.157, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'control_3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7710377.106, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:7694338.77, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:7694338.77, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:7687102.212, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:7671980.29, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7650595.607, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7650595.607, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:7641709.149, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:7635854.34, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:7631234.722, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:7630521.411, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:7623730.285, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:7613580.52, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'high_light_recovery_3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:7608068.918, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:7579731.788, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:7572061.534, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7571852.261, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'high_light_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7571852.261, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7565490.094, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7565490.094, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:7545326.731, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:7536400.065, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:7536400.065, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7518769.271, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:7516087.258, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:7516087.258, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7509934.02, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:7497190.186, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'drought_3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:7492940.215, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:7488736.292, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:7446150.176, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:7442170.731, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'control_recovery_2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:7430636.089, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:7424942.534, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:7422634.719, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:7415984.22, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:7411681.59, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:7411681.59, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'high_light_recovery_2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:7411675.667, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:7409658.488, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:7409658.488, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:7409497.466, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:7408340.435, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7406906.743, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:7400026.817, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:7400026.817, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7388377.23, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'control_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7388377.23, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'drought_3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:7371753.252, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'drought_recovery_3', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:7360959.317, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7354123.492, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7354123.492, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:7348516.657, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:7328883.024, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7328575.622, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:7315938.868, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:7315938.868, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:7297927.072, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:7297927.072, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:7297622.076, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_recovery_3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:7284282.737, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:7283178.424, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_cold_2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:7275118.86, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:7265904.507, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:7259353.946, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:7259353.946, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7234437.838, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:7222377.476, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:7222377.476, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7218349.359, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7218349.359, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:7214015.631, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:7205603.785, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_recovery_2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:7198145.513, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7171059.209, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:7163321.348, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:7155759.244, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:7154991.264, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:7152897.484, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:7152897.484, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:7145095.854, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:7135382.804, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:7134103.632, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:7125546.533, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:7125546.533, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'high_light_2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:7125042.544, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:7124044.278, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:7119073.73, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:7117319.869, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7110283.451, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'high_light_recovery_2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:7105364.963, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:7100645.766, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:7099196.499, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:7094259.645, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:7094259.645, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7093835.141, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:7093835.141, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:7089231.374, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:7082267.299, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:7081309.965, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:7080804.663, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:7080804.663, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:7072344.259, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_recovery_3', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:7070360.988, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:7066665.095, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7053099.064, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:7048723.675, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:7036734.859, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:7021632.197, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'high_light_recovery_3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:7016016.496, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7014165.115, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7014165.115, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:7011748.29, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:7011748.29, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:7007164.426, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:7007164.426, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7001698.582, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:7001698.582, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:6996766.061, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:6987560.398, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'drought_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:6971368.717, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:6971368.717, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:6963808.274, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:6959672.454, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:6954121.987, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:6954121.987, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:6944616.919, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:6942308.058, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_recovery_2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:6926057.426, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:6913972.28, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_cold_3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:6904192.382, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:6896531.966, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:6891659.639, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:6881119.036, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:6873150.473, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:6871360.233, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_recovery_3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:6864385.046, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:6862514.816, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:6857070.506, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:6849450.683, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_cold_2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:6847199.814, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'control_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:6840364.386, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:6840364.386, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:6839092.03, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:6839092.03, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:6832051.792, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:6831544.731, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:6831544.731, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:6830139.844, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:6825834.127, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'high_light_3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:6823888.123, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:6823677.177, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:6821395.17, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:6819356.443, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'high_light_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:6817500.144, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:6817500.144, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:6814881.286, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:6808834.862, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:6808834.862, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:6795768.218, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:6792094.241, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:6792094.241, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_recovery_3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:6781149.634, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:6777483.712, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:6777483.712, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:6777252.205, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:6777252.205, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:6769626.238, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:6765002.232, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:6756287.726, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:6752527.779, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:6752527.779, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:6751490.823, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:6751490.823, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:6747788.921, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:6744073.729, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:6739021.313, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:6734729.59, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:6733381.237, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:6733381.237, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:6732005.205, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:6732005.205, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:6725741.979, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:6725741.979, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:6685898.422, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_cold_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:6685081.98, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:6685081.98, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:6681205.555, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:6671833.337, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:6671833.337, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:6671630.647, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:6657216.295, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:6653264.588, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:6647379.895, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:6647379.895, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:6640315.604, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:6640071.813, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:6637188.391, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'control_recovery_3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:6637012.995, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:6634801.309, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:6623616.579, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:6614331.182, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:6614331.182, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:6597626.119, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:6591243.599, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:6590151.154, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:6587259.17, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:6587259.17, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:6576224.927, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:6576224.927, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:6571043.575, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:6556592.372, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_cold_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:6556592.372, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:6554862.393, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:6549443.485, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:6542481.945, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:6542481.945, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:6539084.332, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:6534911.689, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'control_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:6533877.014, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:6533877.014, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_3', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:6531995.176, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_3', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:6522375.771, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:6520060.078, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:6517663.072, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:6510504.167, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:6509000.058, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:6509000.058, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:6486937.268, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:6486038.525, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:6485248.519, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:6482035.796, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:6472301.057, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:6466726.423, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:6465909.814, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:6456469.892, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:6436605.697, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_recovery_2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:6428915.398, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:6419185.768, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:6417312.286, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:6415516.117, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:6410600.672, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:6410600.672, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:6406930.204, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_cold_2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:6403949.927, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:6395835.398, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:6394954.078, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_recovery_3', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:6390112.304, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:6367492.885, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:6367492.885, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:6365567.478, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:6365567.478, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:6355992.013, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:6352342.94, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:6351644.733, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:6351162.311, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:6338420.109, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:6338420.109, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:6336299.877, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:6336299.877, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:6334173.395, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:6332464.928, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:6320006.713, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:6320006.713, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:6298144.583, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:6294061.026, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:6287054.348, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:6275781.243, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:6266764.095, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:6266764.095, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:6261013.57, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:6252947.3, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:6252947.3, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:6236819.735, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:6234118.013, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:6228775.481, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:6222110.1, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:6221109.438, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:6221109.438, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:6216661.109, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:6214679.102, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:6203064.084, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:6187530.887, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:6174376.725, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:6172632.992, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:6172632.992, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:6152569.222, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:6136782.089, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:6117718.903, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:6111844.564, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:6111844.564, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:6097174.182, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:6091722.37, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:6090501.875, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:6087178.201, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:6085566.659, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:6082258.508, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:6082077.998, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:6081300.817, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:6081300.817, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:6076982.825, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:6076982.825, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:6072541.722, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:6068761.046, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:6065958.947, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:6065147.695, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:6065147.695, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:6061117.68, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_recovery_2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:6060462.798, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:6048846.578, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:6041482.105, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:6041482.105, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:6039448.74, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:6030139.07, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:6030139.07, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:6025648.472, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:6025517.828, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:6025424.984, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:6025424.984, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'control_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:6013624.972, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:6013624.972, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:6010798.184, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:6010798.184, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:6007707.177, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'control_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:6006298.622, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:6006298.622, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:6004345.015, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:5997046.457, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:5997046.457, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:5996130.988, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:5990973.896, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:5990952.553, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:5990689.135, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:5987666.891, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:5987319.813, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:5984425.186, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:5980473.272, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_heat_3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:5979844.165, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:5977040.031, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:5971328.792, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:5968101.137, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'control_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:5966011.297, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5961402.718, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5957927.208, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5957927.208, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:5956299.909, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:5956299.909, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:5943173.647, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'control_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:5933551.441, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:5933551.441, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5923709.954, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:5914149.314, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:5912513.269, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:5912513.269, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:5909857.212, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:5907347.737, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:5901669.604, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:5889336.086, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:5876366.45, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:5876366.45, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:5866179.248, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:5857881.954, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5857838.657, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5857838.657, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:5856240.193, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5854818.517, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5846687.457, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:5843987.603, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:5838522.681, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:5838007.076, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:5830907.31, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:5827846.345, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:5824270.489, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5823698.715, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_cold_3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:5820557.347, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:5820058.341, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:5820058.341, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:5815024.032, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:5815024.032, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:5810921.587, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_3', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:5809862.88, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5808900.003, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:5806801.824, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:5806801.824, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:5805703.493, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:5783068.704, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:5783068.704, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:5765910.225, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:5761796.954, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:5758201.647, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_recovery_3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:5756771.491, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:5755811.977, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:5755811.977, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:5748359.111, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:5732471.555, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:5732471.555, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:5729751.184, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:5721039.406, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:5721039.406, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:5719488.058, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:5719488.058, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:5718129.359, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:5718129.359, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:5714766.226, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:5708648.938, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5707497.856, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5706475.896, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'control_3', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:5705712.618, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:5702436.082, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:5699995.241, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:5693574.399, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:5693574.399, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:5693244.946, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:5682073.804, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:5669449.39, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:5665959.792, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:5643660.304, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:5643660.304, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:5629757.898, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5619925.579, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:5618878.706, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:5618878.706, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:5616158.248, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:5608203.075, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5607947.304, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5607947.304, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5604084.165, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:5595812.071, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:5595075.876, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5592077.801, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:5591525.253, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5590979.729, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'drought_recovery_2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:5585998.998, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'control_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5580667.264, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5580667.264, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5579434.45, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5578163.052, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5578163.052, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:5575337.133, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:5574745.556, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:5574570.37, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:5564072.599, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:5557318.142, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:5551309.467, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5551170.005, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5549336.397, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5540071.743, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5540071.743, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:5537891.128, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'drought_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:5524562.592, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:5523573.5, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_recovery_3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:5514079.992, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:5513762.9, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:5513762.9, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:5501275.351, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:5494919.021, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:5494834.917, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:5494834.917, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:5492425.443, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:5482213.999, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:5472400.611, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:5461603.211, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5452676.832, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_3', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:5451075.755, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:5449120.264, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:5441802.636, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:5440016.742, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_recovery_2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5434451.477, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:5433660.554, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:5433660.554, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:5432991.346, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5432831.789, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:5432352.364, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:5431693.464, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:5428854.356, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:5426251.229, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:5425206.042, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:5425206.042, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:5419914.968, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:5419272.471, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:5414710.232, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:5412552.708, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:5410178.021, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:5410178.021, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:5404052.131, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:5394729.083, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:5394729.083, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:5391662.196, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:5390479.281, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:5390479.281, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5385614.016, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5385614.016, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5382394.693, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5375924.373, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:5370450.285, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:5367497.916, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:5362746.946, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:5359022.674, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:5358810.201, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:5358810.201, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:5354225.888, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:5354225.888, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:5352496.531, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:5352496.531, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5348732.75, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5347885.37, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5347885.37, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:5347688.931, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5338673.592, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5338673.592, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:5335849.181, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:5331028.949, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:5331028.949, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:5330729.09, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:5325738.786, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:5325738.786, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5325051.177, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:5324252.353, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:5323578.526, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:5320707.861, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:5320707.861, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:5320146.563, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:5319774.307, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:5313635.951, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:5313635.951, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:5302099.238, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:5290090.743, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:5290090.743, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:5286022.174, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:5283199.134, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:5271849.436, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:5266085.17, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:5260976.633, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:5260976.633, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:5259631.241, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:5256260.399, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5253543.603, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5253543.603, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:5251660.194, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5250191.292, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5250191.292, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5245604.566, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:5236111.695, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:5236111.695, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:5226504.334, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5223277.351, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:5219402.265, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:5219402.265, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'drought_2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:5207180.265, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_recovery_2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:5205860.479, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5203337.406, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:5202630.089, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:5190652.793, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:5190652.793, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5189895.452, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5177318.742, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5160487.419, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'control_recovery_3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:5159708.13, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:5152568.486, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:5150610.611, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:5149202.388, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:5118365.038, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:5113879.83, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:5113879.83, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'high_light_recovery_3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:5111225.153, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_recovery_2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:5096506.921, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:5095406.633, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:5093470.587, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:5087350.237, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:5080599.625, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:5080599.625, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:5070841.172, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:5070236.16, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:5070236.16, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:5067070.803, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:5064102.984, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:5053631.136, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:5048739.993, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:5048653.927, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:5048653.927, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:5048612.719, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:5047758.223, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:5046255.45, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5041241.223, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:5040068.334, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5035642.37, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:5024528.157, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'control_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5020081.11, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:5020081.11, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:5019807.566, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:5018763.035, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:5018763.035, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:5017371.26, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:5012691.56, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:5012691.56, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:5009588.407, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'drought_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:5009588.407, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_cold_2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:5007644.636, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:5003958.008, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:5003958.008, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:4994045.652, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_cold_2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4991199.334, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'high_light_recovery_2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:4980368.76, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4967436.815, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4967436.815, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:4960433.788, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:4936359.126, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:4936359.126, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:4928148.653, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:4928148.653, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:4916696.169, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:4916696.169, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:4908389.223, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:4908389.223, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4895536.523, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4895536.523, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:4888970.1, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:4888970.1, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:4888673.604, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_3', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4887525.004, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:4876842.327, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:4871261.472, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:4868238.662, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:4863445.566, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:4863059.244, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_3', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:4848335.552, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:4847362.721, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'high_light_3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:4845606.597, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:4841840.395, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:4841116.775, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'control_recovery_3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:4833130.72, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:4824593.276, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:4820745.2, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:4811589.307, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:4811589.307, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:4809845.789, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_recovery_2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:4809107.28, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:4807813.894, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:4779809.618, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:4779809.618, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:4773190.374, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:4766661.31, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:4753299.7, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:4746163.654, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:4746163.654, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_3', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4743294.254, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:4738916.386, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:4734652.867, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4734600.562, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:4730998.503, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:4725687.978, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:4724709.62, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:4719340.769, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4713707.458, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:4712144.104, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:4706426.773, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_recovery_3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:4706017.522, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:4697938.943, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:4695037.332, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:4695037.332, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:4693431.823, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:4689941.48, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:4665695.541, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:4664649.137, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:4664649.137, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4662576.435, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4662576.435, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:4653015.182, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:4652884.999, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:4648718.656, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:4648361.541, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'control_recovery_2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:4643106.355, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4642700.793, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4642700.793, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:4641168.74, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:4638719.507, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4636703.605, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'high_light_3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:4630321.715, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:4627825.531, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:4607233.587, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:4605104.317, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:4602825.324, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:4602825.324, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_heat_2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:4585624.531, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4584812.163, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_3', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:4578467.403, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4569472.157, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:4555302.128, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:4555302.128, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:4552086.242, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:4539946.96, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:4538090.318, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:4529800.787, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:4525759.001, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4517925.94, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4516450.085, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:4516342.895, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:4513529.689, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:4513296.643, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:4513153.147, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:4513153.147, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:4509537.074, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4503128.645, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:4503033.446, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:4493989.6, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:4493989.6, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:4481294.914, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:4480676.583, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:4478563.334, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:4475994.404, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:4475994.404, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:4468078.008, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:4467394.153, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:4467394.153, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:4464040.307, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:4461732.333, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:4461068.546, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:4461068.546, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:4451532.659, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4450947.492, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4449917.22, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:4443914.767, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:4443914.767, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:4442771.47, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:4442771.47, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_recovery_2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:4439959.895, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:4433840.8, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:4420871.711, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:4420536.166, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:4419497.149, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4418977.104, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:4415297.774, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:4407385.546, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4397888.992, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4397888.992, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:4391322.074, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:4391322.074, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:4388198.368, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:4386121.023, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:4379324.826, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'control_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:4379324.826, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'control_recovery_2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:4364631.128, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:4357613.735, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:4357613.735, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:4356238.545, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:4350220.006, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:4349710.771, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:4344998.99, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:4342760.139, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:4337516.983, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:4332455.436, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:4332238.896, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:4327222.485, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:4325965.203, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:4321111.135, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:4321111.135, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:4317602.68, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:4317602.68, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:4316708.046, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:4316708.046, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:4312052.218, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:4309851.623, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:4309851.623, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:4309391.538, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:4308368.944, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:4307989.955, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_recovery_3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:4304673.89, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:4301179.01, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:4291341.487, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:4288662.908, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:4278010.602, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:4270043.171, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:4269101.473, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:4260559.199, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_recovery_2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:4260446.91, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:4250353.533, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:4248662.554, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4246686.959, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:4242161.183, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:4242161.183, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:4231876.634, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:4221879.074, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:4221879.074, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:4210822.969, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:4201786.485, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:4197315.374, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:4194541.938, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:4184628.268, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:4177412.489, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:4173041.514, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:4172952.098, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4172321.596, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:4171112.478, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:4167163.64, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:4167163.64, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:4165698.427, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:4164160.158, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_cold_2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:4159119.467, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:4158749.605, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:4154278.437, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:4148161.961, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:4147907.467, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:4144872.408, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4143865.717, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:4134060.548, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:4134060.548, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:4115639.263, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:4115639.263, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:4114935.563, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:4104506.365, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4100643.002, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4096409.232, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:4096409.232, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'high_light_recovery_2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:4095746.295, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:4067405.026, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:4067405.026, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:4064922.026, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4061184.653, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4061184.653, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:4059970.437, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:4059970.437, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:4056358.991, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'control_3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:4055164.965, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4055026.632, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4055026.632, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:4051598.272, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:4051147.394, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:4039048.987, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:4039048.987, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:4038137.355, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:4034379.264, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:4031945.869, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:4029459.736, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:4029459.736, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:4028192.72, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:4019437.219, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:4019437.219, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:4010626.215, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:4010626.215, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:4009256.629, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'control_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:4009256.629, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:4006081.89, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3999820.054, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:3997082.887, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:3997082.887, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3990948.234, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:3990478.091, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:3990478.091, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:3973462.428, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:3973462.428, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:3958489.696, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:3958489.696, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3947591.659, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:3946597.234, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:3946597.234, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:3945746.409, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:3933899.554, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:3932486.183, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:3930015.617, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:3924018.137, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:3920175.555, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:3920175.555, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3918681.386, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3918681.386, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:3916268.634, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:3916235.607, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:3907289.724, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:3907289.724, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:3904897.689, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3904497.909, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:3902755.996, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:3902499.782, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:3900772.778, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:3894283.77, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3889671.466, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:3888525.04, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:3888525.04, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:3887965.301, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_heat_2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:3877630.496, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3876622.668, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:3873047.242, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3871722.313, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:3867599.121, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:3867599.121, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:3859443.476, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:3856087.769, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_recovery_3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:3855076.819, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_3', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:3853092.983, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:3852002.737, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_heat_3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:3850860.068, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:3842070.459, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:3838218.193, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:3838218.193, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:3834677.286, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:3834531.566, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3831760.643, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3831760.643, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:3831710.698, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:3831710.698, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:3823187.835, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_heat_3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:3821266.329, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3810577.696, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3807223.496, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:3801916.586, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:3789691.885, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:3785179.582, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3781741.118, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3779758.999, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3775607.278, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:3767264.137, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:3764834.272, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3763358.114, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:3762125.416, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:3753607.005, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:3753607.005, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:3752745.043, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:3752712.615, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3752140.088, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3752140.088, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:3751963.839, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:3750079.763, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:3745265.084, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:3744069.38, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:3736164.263, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:3732046.054, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3728802.0, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:3724344.013, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:3722866.5, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:3722866.5, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:3722779.056, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:3722495.082, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:3714516.4, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:3714516.4, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:3707430.758, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:3706672.189, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:3706672.189, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:3703393.26, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:3697963.601, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:3695638.068, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'control_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:3684721.166, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:3684721.166, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:3678967.023, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:3676027.518, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:3676027.518, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:3672590.167, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:3672590.167, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:3672203.794, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:3669772.321, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:3669605.066, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3667540.647, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3667540.647, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:3662998.759, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:3653560.159, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3650877.337, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:3647052.922, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:3646208.986, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:3646208.986, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:3645698.052, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:3643142.302, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:3643142.302, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:3638501.769, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:3638501.769, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:3638107.649, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:3632596.958, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3625891.124, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:3624786.786, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3621923.426, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3621923.426, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:3620173.54, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3617328.159, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3615594.626, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3609804.096, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3609804.096, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:3605156.105, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:3603772.532, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:3601769.114, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:3601769.114, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:3599583.628, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:3599583.628, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'control_3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:3597774.507, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'drought_recovery_3', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3592005.592, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'drought_2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:3589228.041, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:3586225.12, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:3584839.825, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:3575749.51, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'high_light_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:3575749.51, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:3574817.212, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:3563267.331, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:3558830.281, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:3558830.281, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_heat_2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:3549116.834, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:3543493.037, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:3543493.037, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:3540477.502, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3536898.446, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3536898.446, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:3535362.017, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:3535269.948, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:3535269.948, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:3527861.678, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:3527861.678, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:3522422.221, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:3522422.221, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:3521673.423, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3516935.742, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3516935.742, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:3516135.584, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:3514491.589, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:3514277.797, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:3509860.162, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3502840.348, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:3501161.142, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:3499749.902, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:3497050.275, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'drought_2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:3495298.63, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:3495026.982, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:3495026.982, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:3490620.837, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:3490620.837, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:3489493.653, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:3486333.119, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:3484073.774, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:3481786.859, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:3470900.071, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:3470055.677, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3439844.5, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:3434604.192, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:3430663.437, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:3426275.356, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:3425286.764, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:3421087.98, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3420851.11, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3420851.11, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:3410772.615, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:3401477.154, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3400462.33, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:3386055.57, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3382569.605, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:3375166.799, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:3373467.73, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:3370402.847, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:3368091.814, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:3365192.144, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_heat_2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3355064.742, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:3354499.537, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:3354499.537, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:3353376.036, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:3352912.396, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3349276.42, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:3347974.727, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3345598.776, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3340098.429, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:3338892.804, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:3336831.254, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:3332642.142, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3329793.518, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3329793.518, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3325583.425, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3325353.987, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:3324577.938, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:3324577.938, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:3321491.27, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3318960.349, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3318960.349, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:3317871.857, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:3316861.325, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:3315205.719, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:3312221.095, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:3309280.612, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:3309280.612, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:3309004.283, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:3309004.283, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:3297824.325, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:3297824.325, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3294998.675, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:3285147.006, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:3283753.39, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:3283753.39, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:3277530.298, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:3276260.018, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3274266.15, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3274266.15, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:3273284.486, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:3273284.486, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:3269739.53, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:3269531.404, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:3266233.415, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:3266233.415, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:3264076.149, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:3263066.102, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:3263066.102, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_3', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:3249794.33, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:3248517.426, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:3234987.725, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:3225869.02, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:3225869.02, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:3217674.618, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:3216496.248, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:3206761.206, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:3205646.895, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3204111.904, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3201920.452, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:3200896.341, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:3196189.886, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:3196189.886, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:3196178.48, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:3191184.569, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3188418.872, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3188418.872, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:3185800.245, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:3178719.137, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:3178288.464, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:3173565.184, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:3171359.795, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'control_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:3171359.795, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:3170519.996, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:3166583.642, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:3166540.157, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:3159747.698, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:3159058.771, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:3158943.957, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:3152598.722, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:3141753.857, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3140069.315, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:3132839.608, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3129409.604, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:3125865.674, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:3125011.664, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:3125011.664, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:3123983.556, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:3119206.55, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:3119206.55, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:3116772.765, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'drought_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:3116772.765, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:3108727.666, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3100461.792, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:3098076.464, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:3098076.464, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:3096694.758, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:3096694.758, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:3094573.65, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:3089500.284, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:3084905.942, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:3081600.57, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:3080368.13, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:3080368.13, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3080311.331, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3080311.331, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:3074125.566, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_recovery_2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:3072946.439, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:3070922.186, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:3070922.186, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:3070260.32, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:3063149.511, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3059356.75, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:3054722.191, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:3051693.265, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3039521.467, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:3038566.474, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:3038566.474, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:3035224.967, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:3035224.967, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:3034239.968, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:3033715.959, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:3033715.959, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:3023581.279, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:3023402.041, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:3022492.325, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_recovery_3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:3019272.292, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:3013936.107, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:3013936.107, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:3011779.646, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:3011062.598, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:3010565.347, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:3009874.576, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:3009671.372, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:3008244.493, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:3002774.898, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2998665.817, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2998665.817, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2997232.758, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'control_3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:2996963.532, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2993559.4, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:2986068.971, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:2979043.097, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2978009.518, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2968203.226, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2962053.97, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2961565.041, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:2961441.793, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:2959322.753, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_3', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:2951571.753, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:2947775.849, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'control_recovery_3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2936103.281, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'high_light_2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:2935908.277, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2933947.492, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:2932100.956, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:2932100.956, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2931642.652, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2931642.652, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2930803.874, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:2927345.657, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:2913795.685, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2911226.854, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:2910575.371, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:2910575.371, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2905571.076, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:2904287.57, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:2903443.192, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:2903443.192, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'drought_recovery_2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:2902740.318, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2900877.289, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2900877.289, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2900143.848, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:2899301.473, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'control_recovery_2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2895177.062, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:2895073.46, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:2895056.836, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:2895056.836, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2894260.663, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2890214.55, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2890214.55, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:2883682.445, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_cold_2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:2881330.847, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2877662.333, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2873018.445, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:2871994.078, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2870641.711, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:2866540.892, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_cold_3', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:2865273.213, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2864962.028, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2864962.028, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2864888.809, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2864568.2, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:2862959.66, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2852861.682, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2852445.735, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:2852190.426, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2851374.16, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2844674.339, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2840508.656, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2840404.354, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2840404.354, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2839905.269, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2839905.269, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:2834806.869, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:2834806.869, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2834143.013, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2830661.206, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2830175.331, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2826968.494, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'control_2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:2823511.023, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:2822770.214, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2820436.783, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2808648.207, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:2802297.235, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_cold_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:2802297.235, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2801512.258, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2801512.258, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2799531.569, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2798403.078, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2798403.078, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2796973.556, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2796973.556, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2792388.433, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2783386.293, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2783386.293, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2783217.565, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2781017.188, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:2780921.928, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2779984.798, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2778974.929, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2778974.929, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:2772911.714, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2766523.48, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2766523.48, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2763784.096, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2763784.096, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:2763415.988, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2762770.212, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2760188.592, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:2759385.629, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:2757723.089, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:2756953.23, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2749441.984, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2749441.984, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:2749315.514, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:2749315.514, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2749093.117, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2749093.117, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2747266.568, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:2745293.867, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2741704.087, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2741704.087, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2728308.536, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:2726101.993, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2725620.164, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2725620.164, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:2724253.338, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:2724253.338, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_recovery_2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2723587.939, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2720477.287, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2720228.163, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_cold_3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2719873.874, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2718678.198, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:2718634.856, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:2718634.856, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2708788.978, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2708225.992, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'control_recovery_2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2704352.525, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:2702980.825, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2699668.741, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2691003.578, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2691003.578, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'high_light_2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:2683147.584, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2677826.889, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2677826.889, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_recovery_3', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:2675219.529, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2672896.417, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:2672527.586, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2668939.553, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2668939.553, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2667687.94, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2664437.234, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2664437.234, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2661705.581, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:2659910.345, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2658236.941, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:2657481.703, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2656124.267, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2653829.255, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:2650692.236, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:2650692.236, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2646563.887, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_recovery_3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2644284.064, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'control_3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2642447.019, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:2639294.041, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'drought_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2637993.12, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2635959.924, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2634789.217, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2634789.217, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2634242.678, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'control_recovery_3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2633347.37, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2631977.653, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:2631914.623, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2626542.121, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'high_light_2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:2626164.244, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_3', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:2625117.792, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2624839.306, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2623170.867, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2619972.267, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2619972.267, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2616010.06, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:2611756.661, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_3', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2611223.876, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2610738.75, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2609230.738, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_heat_2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2608094.873, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:2607927.652, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:2607927.652, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2606094.88, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_recovery_3', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:2602184.488, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2599222.969, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2599222.969, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2597925.908, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2593861.003, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2593861.003, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'control_3', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2593438.789, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2590682.836, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2588883.599, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2588414.202, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2588414.202, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:2585865.413, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_cold_2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2583717.412, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:2581171.455, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:2580560.965, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2577425.756, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2575836.575, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2575385.44, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2575385.44, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:2573749.795, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2567845.883, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2564750.77, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2563750.158, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2561800.122, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:2561668.262, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:2561668.262, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2561418.879, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2561418.879, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:2561070.433, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2559234.814, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:2554236.857, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2552944.473, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_cold_2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2550776.113, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2549604.035, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2549604.035, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:2547341.673, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2545193.683, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2543903.273, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2543903.273, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_cold_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2539466.949, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:2532300.048, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2531050.174, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:2530830.865, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:2530830.865, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2529455.979, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2528798.549, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2527154.571, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2527154.571, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:2526236.474, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:2526236.474, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2523447.97, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'control_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2523447.97, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_recovery_2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:2523332.724, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:2516003.509, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:2516003.509, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2513026.971, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2510547.446, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_heat_2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2505372.591, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:2505004.872, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2504970.576, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2504578.917, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:2499098.538, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:2495761.412, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_3', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:2495539.045, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'drought_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2492487.858, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2486920.028, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:2486452.532, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:2485064.085, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2484739.734, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2484739.734, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:2483453.288, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:2483453.288, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:2483153.669, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2482246.694, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2481656.951, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2478439.57, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:2477484.279, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2476610.643, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2473511.182, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2468844.082, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2466650.508, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2466650.508, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2463719.39, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2462798.284, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2462509.42, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:2462000.321, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2461386.042, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2460428.777, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:2456854.588, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2454283.799, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2451065.439, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2450331.896, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2450331.896, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2447200.06, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2446639.204, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:2446114.353, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2444887.808, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'control_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2444887.808, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:2443930.427, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2443797.016, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2440282.311, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2439467.539, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2437341.148, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2435865.896, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2433240.389, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2432535.609, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2432526.302, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2432217.532, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2432217.532, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2430689.963, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2429816.505, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2428717.072, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2428087.796, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2428087.796, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2427204.559, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2427079.77, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2422935.345, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2419273.991, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2418226.091, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2418226.091, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2416103.419, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2416103.419, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2415988.66, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2415988.66, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2415210.152, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:2414503.041, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2413881.816, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2412127.434, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2409912.437, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2409555.198, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2407957.428, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2407957.428, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_heat_3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2404493.097, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2402621.788, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2402621.788, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2400446.112, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:2396457.818, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_cold_3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:2395762.555, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:2389919.083, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2389026.991, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2389026.991, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2388634.771, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2388634.771, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2386296.171, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2386296.171, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:2385614.019, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2383976.603, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2383110.867, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'drought_recovery_2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:2383095.309, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2383075.433, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:2382389.259, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:2382389.259, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2380103.541, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2366981.842, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2366981.842, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2364602.251, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:2358976.67, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_cold_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:2358976.67, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:2349432.776, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2345692.525, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2342799.121, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2339731.496, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2338839.587, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2338512.94, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:2337233.2, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:2337233.2, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:2336871.452, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:2335529.399, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2334705.165, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2334705.165, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:2334311.833, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'control_2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2329469.589, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2328903.774, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2326962.847, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2326083.206, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2326083.206, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2325687.245, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2322593.209, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2322593.209, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2321966.445, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2321291.952, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2321225.958, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:2318451.736, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2317963.682, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2317963.682, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_3', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:2315988.639, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2315652.029, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2314382.145, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2314382.145, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'control_2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:2314087.346, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2304566.92, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2304566.92, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:2300163.677, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2297976.81, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2296025.686, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_recovery_2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2293527.472, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2292833.242, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2292820.804, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2289928.494, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2289928.494, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2289175.507, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2286483.723, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_recovery_2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:2285410.877, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2278477.325, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_recovery_2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:2276330.543, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2274164.271, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2263630.377, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:2258623.409, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2256993.066, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2256993.066, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2246957.645, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:2244383.269, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2242512.771, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2242512.771, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_cold_2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2242423.924, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2238313.561, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2238313.561, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:2236389.947, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2236107.686, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2231877.231, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2225487.3, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_cold_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2218228.212, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2217078.995, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2217078.995, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:2212314.492, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2211999.406, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2207900.333, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2207900.333, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2206536.694, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'high_light_2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2202448.047, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2197530.291, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2197530.291, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2196383.659, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2193773.753, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:2192727.457, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:2191471.883, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_cold_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2191241.105, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2190005.529, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_cold_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2190005.529, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2188663.874, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'control_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:2187980.379, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:2187980.379, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2186057.853, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2184999.544, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2184581.295, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2184581.295, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_3', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2183444.763, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2182949.557, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2182140.632, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2180039.705, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:2176195.116, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:2176195.116, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2173368.418, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2173368.418, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:2171383.76, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:2171383.76, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:2170175.443, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:2170175.443, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:2164924.041, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:2164924.041, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_recovery_2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2159625.893, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_cold_2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2158471.433, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2157359.912, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2148231.685, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2146712.535, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2146431.201, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2146039.464, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:2146039.464, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2145622.334, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2140776.587, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2140776.587, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2133200.437, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:2133019.152, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:2132351.584, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:2131978.969, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2129270.942, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:2120089.528, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2118350.24, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'control_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2118350.24, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:2117807.74, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2117780.531, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'high_light_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2117780.531, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2111366.634, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2111366.634, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2108937.714, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2108937.714, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_cold_3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2108650.545, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2104811.76, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2094861.12, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'control_recovery_3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:2094314.928, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'control_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2093291.752, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2093291.752, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2089220.309, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:2086953.049, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:2083951.057, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:2083951.057, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2083840.194, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2083840.194, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2083140.66, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2083140.66, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:2075726.936, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2072293.631, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'control_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2072293.631, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_cold_3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2064520.797, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2063824.057, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2063824.057, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:2062707.488, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_heat_3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:2061697.072, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:2060786.931, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:2054595.349, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2052533.182, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2050990.05, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:2049892.425, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:2049892.425, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2043856.769, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:2043856.769, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:2036102.579, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2030882.783, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:2029169.381, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:2029169.381, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:2028581.144, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2027887.593, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2027887.593, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:2016754.485, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:2016097.098, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_heat_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:2015400.183, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2000242.15, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:1994313.282, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1992394.016, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1992394.016, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1990184.299, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1990184.299, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1983216.513, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_recovery_2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1981728.162, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1981553.553, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1981553.553, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1981521.27, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1979277.233, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:1973780.548, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1973729.822, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1971209.413, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1970345.226, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1967412.608, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1967412.608, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1966874.922, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1966874.922, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_3', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1966492.98, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1964811.561, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1964758.441, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_cold_3', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1963094.613, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1954459.531, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1949635.662, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1947072.896, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1947072.896, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1939502.677, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1932449.148, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1931619.726, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1929086.868, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1929086.868, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:1926220.565, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1925470.133, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1925125.775, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1924983.893, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1924340.895, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_cold_2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1919701.828, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1918226.271, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1916795.912, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1916218.185, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1904716.069, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1897826.444, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1895535.866, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1891152.776, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1885784.699, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1885784.699, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:1882085.572, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1878937.113, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1877715.176, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1877715.176, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1874350.938, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'control_2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1874294.732, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1873940.635, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1871576.449, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1869973.506, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1866203.812, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1856376.049, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1856376.049, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1854703.436, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1851898.652, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1851898.652, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1851782.445, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1851066.238, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1851066.238, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'control_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1847167.03, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'control_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1847167.03, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1846711.293, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1846711.293, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'control_3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1841867.841, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'control_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1832043.106, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'control_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1832043.106, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1828001.529, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1828001.529, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:1826721.242, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1821880.268, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1819333.438, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:1817135.154, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1805122.446, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1805122.446, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1799905.606, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1799905.606, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:1796724.435, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:1796724.435, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:1790150.095, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:1790150.095, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:1787088.387, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1776718.058, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1769707.748, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1765294.058, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1760487.144, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:1757463.44, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:1757084.6, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1756658.987, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1756658.987, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1755212.983, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1754672.868, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1751244.618, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1741259.899, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1741259.899, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1738299.67, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1736179.512, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1734537.434, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1733768.031, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1732939.698, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1732939.698, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:1732132.693, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:1724133.16, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1721869.634, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:1717699.961, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:1717699.961, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1710517.773, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1705904.511, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1705904.511, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1705712.144, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1704939.49, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1702639.956, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1696256.985, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1680620.144, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1675856.149, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1672646.657, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_recovery_3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1670651.944, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1665716.031, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1644162.182, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1644162.182, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1643076.627, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1639367.666, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1638657.011, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1638657.011, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:1628152.528, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1620643.8, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1620643.8, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1620507.415, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:1611958.524, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1606990.031, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1602979.46, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1600802.33, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1599367.864, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1591850.583, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:1591087.017, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1583160.975, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1582646.686, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1582646.686, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1575200.489, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1575200.489, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1569754.39, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:1569658.324, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1563322.912, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1560968.465, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1555149.729, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1549282.917, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1549282.917, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1545226.069, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1538340.563, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1538340.563, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1531326.87, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1528269.804, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1526415.287, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:1522956.456, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1512374.279, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1507095.123, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1507095.123, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'control_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1505265.211, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:1501584.207, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:1501584.207, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1498925.584, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1498925.584, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_3', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1498554.942, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1490410.349, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1490410.349, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1487605.208, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'high_light_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1486568.416, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1485967.189, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1483305.74, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1483305.74, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:1479518.299, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1476688.614, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1460506.566, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:1450135.461, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1441958.384, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_heat_3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1439848.034, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1438517.601, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1438294.668, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'high_light_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1438294.668, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'control_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1438082.383, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1438082.383, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1437666.057, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1436498.558, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'control_3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1435985.945, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_heat_3', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1435569.038, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1434993.875, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:1429799.741, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:1429799.741, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_recovery_2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1424858.539, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1423828.842, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_recovery_2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:1422922.743, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1421657.515, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1413377.873, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1404742.741, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1397003.502, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1396979.596, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1391619.196, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1388366.581, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1388366.581, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1386800.619, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1386800.619, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1385261.208, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1381288.572, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1381288.572, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1378055.102, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1378055.102, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1375566.66, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1369284.524, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'control_recovery_2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1368471.417, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1356423.083, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1355087.445, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1353610.411, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1353610.411, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:1346021.779, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_recovery_2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1345750.265, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1345309.009, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'control_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1341294.904, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1341294.904, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1340938.065, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1340582.49, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1338647.234, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1336325.674, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1334313.919, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1332217.276, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1319189.536, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:1316036.064, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1315892.566, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1311094.564, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1310037.948, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_cold_2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1304124.059, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_heat_3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1300739.204, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1299755.956, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:1294265.962, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1283488.932, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1283315.549, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1283315.549, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1280086.154, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1280086.154, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1279023.667, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1277224.549, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1273051.037, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1273051.037, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1270237.473, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'control_2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1269824.456, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1267585.458, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'control_3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:1267275.769, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1267177.748, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1263622.221, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_cold_3', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1259588.358, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:1257049.513, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1255383.276, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1245985.099, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1245985.099, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1243170.983, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1239437.082, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1238201.053, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1238201.053, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1229642.439, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1226702.601, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1224200.185, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1224200.185, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1223080.611, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1223080.611, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1221510.808, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1216400.335, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_heat_2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1209694.688, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1203361.851, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1199635.769, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1191306.624, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1182078.303, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1182078.303, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1181417.709, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1178561.586, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1178561.586, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:1178178.865, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1176793.833, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1174242.88, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1171645.559, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1156522.87, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:1155817.803, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1154929.749, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1154929.749, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'control_recovery_3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1151276.882, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1147258.004, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1144329.882, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1144329.882, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'control_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:1142612.737, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:1142612.737, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1138257.328, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1138257.328, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1134986.016, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1132982.235, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:1132499.168, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:1132499.168, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1130204.668, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1117580.363, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1117580.363, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'control_2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1114592.521, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1113402.897, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_recovery_2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1110422.982, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1095885.384, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1088654.528, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1088654.528, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1081758.399, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1081091.285, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1081091.285, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1076667.61, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1070109.123, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1064016.743, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:1062400.549, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1058721.669, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1058721.669, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1058681.746, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1058681.746, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1056866.586, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1051683.973, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1047867.538, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1047867.538, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1037958.598, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1034914.565, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_cold_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1034914.565, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1030404.162, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1030404.162, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_recovery_3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1028559.536, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:1026435.018, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1025506.224, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1025506.224, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'high_light_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1024250.899, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1023289.899, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_heat_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1020774.084, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_heat_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1020774.084, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_heat_3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1008533.662, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1006035.355, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1004946.211, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1001394.609, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1001177.319, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:996176.013, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:992104.4247, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:992104.4247, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:991424.2411, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:991424.2411, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:985636.6343, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:985636.6343, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:985295.8333, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:978330.2208, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:978147.2849, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:974908.2374, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:974908.2374, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:970843.6002, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'high_light_3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:969886.4063, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:959923.1906, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:959239.9261, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'high_light_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:959239.9261, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:951869.9538, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:950807.144, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:947715.961, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:944812.7268, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:942974.526, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:937598.72, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:934140.2645, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:933528.2329, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:933208.8954, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:930170.9313, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:930170.9313, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:930016.9094, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:929860.7236, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:928296.1489, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:915263.47, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:915263.47, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:912818.6425, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:912259.7519, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:904338.0936, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_cold_3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:904114.2345, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:902609.9826, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:898969.041, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:898405.9901, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:898405.9901, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'control_3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:895543.9272, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:894202.6827, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:893051.2726, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:891061.001, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:891061.001, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:889773.3769, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:884482.0658, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:882757.3066, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_recovery_2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:880423.7463, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:874792.9489, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:873392.0707, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:868609.1019, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:868609.1019, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'high_light_3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:868300.8902, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:858063.4814, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:858056.3698, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:854254.4637, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:854254.4637, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:853035.8688, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_recovery_3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:852602.1219, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:850935.7538, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:850498.72, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:843276.021, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:832226.6656, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:830787.7389, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:826763.6549, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_recovery.3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:822602.8839, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:821847.8468, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:818012.4814, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'control_3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:802243.8109, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'control_2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:801306.1308, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:800964.3212, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:800964.3212, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:793607.2182, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:787228.4187, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:787228.4187, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:787195.4775, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:786478.0277, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:784783.6702, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:782522.0904, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:779458.3376, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:779458.3376, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:776467.6926, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:776467.6926, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:772704.5681, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:772443.0831, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:772182.3631, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:772182.3631, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:768266.4605, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_cold_3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:766517.3832, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:763193.653, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:763193.653, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:759299.3009, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:759299.3009, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:758441.6424, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:757353.0594, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:752904.7769, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:752904.7769, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:745860.1756, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:744539.0797, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:736966.8706, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:736966.8706, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:736572.964, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:726333.9283, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'control_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:726333.9283, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'control_3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:724989.8034, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:723874.4265, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:722979.7616, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:720714.8775, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:720396.9572, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:720396.9572, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:719542.9158, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'high_light_2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:717785.6195, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:715141.3554, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:703851.8081, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:699894.2854, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:699894.2854, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_heat_2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:698457.7196, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:694868.6076, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:694868.6076, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:689362.3883, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:689362.3883, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:684617.7502, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:684617.7502, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:682957.0394, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:682752.2372, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:681383.6343, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:681103.9267, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:681005.0843, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:680002.7549, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:677087.8896, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:672687.4803, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:669901.3184, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:669901.3184, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:666540.5763, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:662691.6236, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:662691.6236, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:659981.9472, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'control_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:659316.5683, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'control_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:659316.5683, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:655974.0998, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:655974.0998, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:653979.2898, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:653979.2898, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:650963.629, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_recovery_3', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:650188.3563, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_cold_3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:646734.5568, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:646417.8065, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:637322.0254, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:634041.333, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:630606.4383, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:629483.456, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:625459.9937, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'high_light_2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:623709.1331, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:621729.3714, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_heat_recovery_3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:616500.3999, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:613087.4869, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:612430.0714, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:609189.8078, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:609189.8078, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:607902.6892, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:605063.7786, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:605063.7786, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:603900.9663, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:603426.8299, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:603426.8299, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:599926.5342, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:599926.5342, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_recovery_3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:591640.4138, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:585621.0634, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:585621.0634, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:585440.1047, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:583948.8188, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:581746.1972, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:580039.7885, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:580039.7885, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:575210.0817, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:570724.3075, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_cold_2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:569118.3846, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:568796.0884, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:568796.0884, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:568234.4399, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_recovery_2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:567096.7912, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:567083.9539, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:566717.0064, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'control_2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:565188.7108, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:563768.1867, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:563768.1867, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:559646.5145, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:558382.9718, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:558382.9718, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:558359.5943, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:558192.3099, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:558192.3099, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:552474.5781, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_heat_3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:552428.0572, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:550746.3355, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:548405.7301, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:548373.1087, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:546117.1114, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:546117.1114, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:545812.0306, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:545617.9182, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:543565.4266, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:543565.4266, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:537203.4406, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_heat_3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:537081.9579, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:535389.2627, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:535389.2627, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:532708.0076, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:532708.0076, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:530965.6027, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:530965.6027, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:530746.9981, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:525574.3567, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:525574.3567, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:524248.8882, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:523393.0192, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'control_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:523393.0192, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:523113.481, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:519197.4965, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:516305.0797, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:508644.7244, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:506654.3072, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:505994.9895, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:505994.9895, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'high_light_3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:505831.5914, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:502506.9027, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:502506.9027, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:500932.9351, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:499612.2119, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_heat_2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:498377.5773, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_heat_2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:495121.626, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:494969.5462, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:494135.861, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:494135.861, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:493136.0851, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_cold_2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:490503.1462, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:484397.1298, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:482606.1331, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:480166.0209, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:480166.0209, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_3', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:474620.9539, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:474508.6417, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:466903.3734, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:466160.7939, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:465212.1484, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:464575.1616, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:464575.1616, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:464372.8151, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:463883.1858, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:458249.7857, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:458249.7857, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'control_3', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:456869.6935, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:448863.754, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:448474.6127, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:448474.6127, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:445527.376, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:445372.629, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:445372.629, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:442925.0024, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:438111.0926, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:436778.8645, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:435628.439, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:435628.439, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:435349.9818, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_3', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:434167.9745, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:432837.1294, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:429546.7306, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:426647.4933, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:423164.9148, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:418070.2671, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:415303.7796, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:412362.812, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:412362.812, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:410649.3944, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:410649.3944, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:409606.7923, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:409606.7923, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_3', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:407922.0007, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:403572.3353, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:401533.0109, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:401533.0109, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:399806.4613, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_3', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:399782.441, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:398396.3268, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:396622.2313, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:392597.3968, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:391110.126, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:390938.7746, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:390897.2338, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_3', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:380319.2143, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:379738.2484, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:379180.1058, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:377962.4442, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:377962.4442, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:376093.1664, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:372328.988, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:372328.988, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:372147.9206, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:366655.1769, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:364481.2498, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:364270.9032, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:364270.9032, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:361780.4104, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:361780.4104, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:361662.0993, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:361662.0993, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:361251.2427, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:359069.7558, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:357487.6441, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:354873.8062, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'high_light_2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:351958.9663, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'high_light_3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:350181.6305, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_recovery_2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:349587.491, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:345138.1282, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:345138.1282, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:339846.6469, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:339846.6469, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:328625.4067, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:324479.0962, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:322734.0665, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:322734.0665, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:321346.0385, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:319167.1534, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:317337.6043, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:315697.0039, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:315697.0039, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:307308.2301, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:307308.2301, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:307015.2179, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:302180.41, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:300925.7975, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:296960.1739, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:296960.1739, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:296950.323, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:296950.323, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:296610.6818, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:295435.831, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_3', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:291705.4571, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:291126.3858, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:288429.4728, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:286014.5654, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_cold_2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:285791.8886, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:285289.3853, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:282303.9792, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:281471.0672, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:278587.0086, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_heat_3', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:274662.4158, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:263016.508, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_heat_recovery_2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:259581.2822, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:258565.041, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:246766.1738, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_3', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:242090.0733, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:239530.5556, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:236984.523, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_cold_3', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:236403.5085, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:223037.858, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:216258.1216, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:213287.6967, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:210432.5729, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:207233.1467, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:191089.7518, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:190907.0467, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:180743.2777, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:176888.146, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:174796.32, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:173989.6523, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:173989.6523, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:170684.3491, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:163840.8552, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_3', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:162107.3323, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_3', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:157595.1532, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:151835.1588, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:151483.7133, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:151483.7133, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:139554.2761, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:139554.2761, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_recovery_2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:136647.8048, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:136621.1758, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:136297.913, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:132501.3121, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:130902.604, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'high_light_recovery_2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:112699.6205, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_recovery_2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:110173.591, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_recovery_3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:101256.0905, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:100107.2356, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:100107.2356, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:100087.7563, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:100087.7563, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_3', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:96129.30992, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:96113.3086, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:92886.99153, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:86337.64938, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:85184.47135, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:85184.47135, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:80967.54607, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:80967.54607, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:77551.21175, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:72464.43493, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:68783.70082, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:64646.36733, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:57085.04643, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:54035.77744, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:54035.77744, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:52641.11706, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:52641.11706, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:52438.17335, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:50175.76447, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:50175.76447, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_heat_3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:48787.01706, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_3', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:48467.65454, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_3', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:47103.26663, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:45212.80972, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:45024.90051, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:45024.90051, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:38945.39163, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:37700.77905, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:33958.60587, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:33958.60587, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:32956.57553, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:27052.72629, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_3', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:26420.16758, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_3', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:19356.05109, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_3', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:18792.20161, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:15707.38403, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_3', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:9371.869229, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:7037.005762, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:29.71761099, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_heat_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:29.71761099, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:26.98949345, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:26.98949345, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:26.97050975, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:26.97050975, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_heat_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:26.69672187, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:26.69672187, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:25.46407554, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:25.46407554, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:23.31428499, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:23.31428499, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:22.1519653, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:22.1519653, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:18.40671552, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:18.40671552, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:16.53026317, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:16.53026317, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:16.18187557, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:16.18187557, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:15.46450432, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:15.46450432, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:13.35696669, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:13.35696669, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:12.70666681, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:12.70666681, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:11.53274487, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:11.53274487, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:11.29431206, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:11.29431206, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:10.29586062, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:10.29586062, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:9.172283939, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:9.172283939, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:7.945190509, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:7.945190509, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:7.694398782, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:7.694398782, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:7.510568364, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:7.510568364, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:7.054656935, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:7.054656935, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:6.257531578, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:6.257531578, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5.91054778, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5.91054778, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5.831276538, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:5.831276538, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:5.556175654, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'drought_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:5.556175654, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:4.965062571, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:4.965062571, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_heat_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:4.926550049, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_heat_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:4.926550049, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:4.640793914, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:4.640793914, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:4.631641913, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:4.631641913, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:4.629639249, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_heat_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:4.629639249, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:4.600248506, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:4.600248506, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:4.521561166, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:4.521561166, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:4.466052419, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:4.466052419, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:4.164200563, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:4.164200563, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:4.120888364, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:4.120888364, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_heat_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:4.050306877, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:4.050306877, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:4.023398631, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:4.023398631, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:3.987672919, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:3.987672919, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:3.918254032, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:3.918254032, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:3.744344383, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:3.744344383, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:3.716808771, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:3.716808771, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:3.687721543, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:3.687721543, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:3.66025809, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:3.66025809, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3.629621519, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3.629621519, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:3.579312064, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:3.579312064, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:3.556580327, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'high_light_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:3.556580327, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:3.420629814, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:3.420629814, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3.371811764, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:3.371811764, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:3.315895475, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:3.315895475, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:3.300204502, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:3.300204502, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3.292271276, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:3.292271276, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3.234046282, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3.234046282, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:3.215576562, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:3.215576562, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:3.046062012, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:3.046062012, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3.017316909, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:3.017316909, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2.958645232, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:2.958645232, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:2.909094567, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:2.909094567, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:2.840354317, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:2.840354317, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2.825625501, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:2.825625501, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:2.803599782, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:2.803599782, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:2.777439361, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:2.777439361, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:2.762026785, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:2.762026785, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:2.760899529, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:2.760899529, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_heat_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:2.745552864, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_heat_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:2.745552864, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'drought_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2.72889141, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:2.72889141, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:2.710752999, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:2.710752999, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:2.681097181, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:2.681097181, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:2.658307266, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:2.658307266, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2.628387912, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:2.628387912, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2.573933795, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2.573933795, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2.546305012, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2.546305012, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:2.537410805, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:2.537410805, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:2.53449836, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:2.53449836, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:2.532695449, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:2.532695449, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:2.515510858, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:2.515510858, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:2.468613956, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:2.468613956, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2.389553028, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2.389553028, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:2.377788544, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:2.377788544, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_heat_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:2.332606688, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:2.332606688, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2.327261061, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2.327261061, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:2.310340849, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:2.310340849, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:2.298199605, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:2.298199605, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2.291309943, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:2.291309943, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:2.279732893, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:2.279732893, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2.263461878, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:2.263461878, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:2.259307359, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:2.259307359, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:2.240685655, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:2.240685655, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2.229452226, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:2.229452226, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2.194808543, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:2.194808543, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:2.170843878, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:2.170843878, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:2.150317697, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:2.150317697, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:2.136738436, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:2.136738436, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2.121975534, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2.121975534, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:2.115590358, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:2.115590358, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2.099138146, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2.099138146, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:2.080425624, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:2.080425624, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2.071541008, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:2.071541008, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:2.065134687, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:2.065134687, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:1.993626374, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:1.993626374, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:1.987796531, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:1.987796531, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1.974931392, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1.974931392, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1.973244562, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1.973244562, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:1.94963069, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:1.94963069, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.94604098, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.94604098, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.93975906, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.93975906, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'high_light_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.935801934, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'high_light_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.935801934, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.912072979, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.912072979, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.908741102, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.908741102, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1.907486436, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1.907486436, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.8849928, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.8849928, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.871846685, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.871846685, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:1.870607822, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:1.870607822, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1.864480379, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1.864480379, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.862465967, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.862465967, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.862023527, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.862023527, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:1.82532779, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:1.82532779, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.817470705, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.817470705, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.816213476, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'drought_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.816213476, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'drought_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:1.789645913, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'drought_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:1.789645913, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'drought_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.788282548, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.788282548, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.783544896, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.783544896, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1.781454196, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1.781454196, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1.768730665, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1.768730665, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.766465618, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'high_light_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.766465618, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.765153148, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.765153148, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.755329166, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.755329166, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.746186171, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.746186171, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1.743666815, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1.743666815, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.737050822, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.737050822, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1.724158205, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1.724158205, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1.716503578, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1.716503578, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:1.705948794, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:1.705948794, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.699239135, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.699239135, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.683679272, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.683679272, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.673610157, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.673610157, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1.666472433, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1.666472433, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.665190416, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.665190416, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1.662949907, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1.662949907, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1.656533159, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1.656533159, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.655887331, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.655887331, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.649897189, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.649897189, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:1.647359559, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:1.647359559, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1.638090016, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1.638090016, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.635447218, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.635447218, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.635431342, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.635431342, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.622738748, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.622738748, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1.619135284, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1.619135284, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1.619000085, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1.619000085, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:1.607040598, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:1.607040598, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.605981939, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.605981939, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:1.604918755, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:1.604918755, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.604889284, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.604889284, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1.602786796, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1.602786796, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1.592330827, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1.592330827, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.592043188, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.592043188, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_heat_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.587984864, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.587984864, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1.587821931, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1.587821931, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:1.579634205, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'drought_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:1.579634205, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.566154529, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.566154529, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.56309394, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_heat_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.56309394, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1.556679844, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1.556679844, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:1.553954446, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:1.553954446, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.545517394, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.545517394, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.544864338, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.544864338, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.543382328, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.543382328, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:1.536804324, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:1.536804324, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.532703524, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.532703524, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.522687858, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.522687858, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:1.522170868, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:1.522170868, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.505862819, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.505862819, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1.499205966, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1.499205966, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.494713127, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.494713127, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1.485746187, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1.485746187, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1.484358178, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1.484358178, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:1.478937208, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:1.478937208, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:1.474702889, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:1.474702889, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1.470253675, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1.470253675, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.465585657, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_cold_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.465585657, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_cold_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.465176534, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.465176534, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1.45829347, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1.45829347, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.45682742, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.45682742, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.453229015, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.453229015, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:1.449942136, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:1.449942136, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.447820669, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.447820669, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.446948685, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.446948685, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.445674328, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_heat_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.445674328, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1.442981273, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1.442981273, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.435974196, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.435974196, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1.434975136, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1.434975136, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1.427070211, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1.427070211, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:1.414850543, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:1.414850543, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.411449547, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.411449547, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.405156692, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.405156692, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.40386202, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.40386202, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:1.400904268, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:1.400904268, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1.400851215, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1.400851215, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:1.393700494, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:1.393700494, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:1.391419878, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:1.391419878, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1.381425392, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1.381425392, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:1.381163303, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:1.381163303, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.381146729, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'drought_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.381146729, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.376775081, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.376775081, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.374791941, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.374791941, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.367574512, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.367574512, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.365410765, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.365410765, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1.364939533, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'high_light_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1.364939533, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'drought_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1.363431422, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1.363431422, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.363296436, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.363296436, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:1.362490412, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:1.362490412, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.362209622, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.362209622, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.351491899, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.351491899, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1.347146736, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1.347146736, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.342853614, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.342853614, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1.341564442, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1.341564442, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.341494803, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.341494803, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:1.331913239, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:1.331913239, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1.329904314, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1.329904314, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:1.327163442, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:1.327163442, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.326916544, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.326916544, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1.32355644, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1.32355644, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1.323074172, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1.323074172, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.319434376, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.319434376, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:1.316993515, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:1.316993515, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:1.310750658, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:1.310750658, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.310427944, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.310427944, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.307824748, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.307824748, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.306995834, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.306995834, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.304747294, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.304747294, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:1.30358242, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:1.30358242, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1.303318789, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1.303318789, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:1.301938503, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:1.301938503, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:1.299136284, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:1.299136284, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1.298740438, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1.298740438, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:1.293104996, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:1.293104996, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:1.288565494, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:1.288565494, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:1.287591241, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:1.287591241, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.282860426, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.282860426, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.281670381, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.281670381, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:1.28063814, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:1.28063814, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:1.279706465, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:1.279706465, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.279018211, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.279018211, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:1.276004177, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:1.276004177, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1.275356218, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1.275356218, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1.272662244, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1.272662244, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:1.27232473, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:1.27232473, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.270133097, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.270133097, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.26186056, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.26186056, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.261372293, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.261372293, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:1.260957196, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:1.260957196, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:1.260720002, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:1.260720002, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'drought_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1.259780138, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'drought_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1.259780138, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'high_light_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1.257781759, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1.257781759, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.256417156, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.256417156, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:1.2564045, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:1.2564045, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.253479131, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.253479131, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1.251150892, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1.251150892, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.248965215, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.248965215, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.244632901, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.244632901, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.237262139, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.237262139, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1.236530137, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1.236530137, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1.231439091, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1.231439091, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1.231156836, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1.231156836, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:1.23102998, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:1.23102998, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1.229375531, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1.229375531, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.22817508, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.22817508, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1.227094405, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1.227094405, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.226108443, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.226108443, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:1.224982416, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:1.224982416, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.221628136, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.221628136, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.216068057, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.216068057, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:1.21504566, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:1.21504566, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.214028149, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.214028149, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'drought_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1.213937271, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1.213937271, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.213096734, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.213096734, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.211146627, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.211146627, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.21014643, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.21014643, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.203463046, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.203463046, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.202808619, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.202808619, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.199401466, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.199401466, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.198193901, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.198193901, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:1.196332469, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:1.196332469, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:1.195876315, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:1.195876315, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:1.193528555, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:1.193528555, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.191926644, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.191926644, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.186818913, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.186818913, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:1.184196575, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:1.184196575, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:1.18402884, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:1.18402884, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.182221675, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.182221675, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:1.17737209, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_heat_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:1.17737209, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.175854244, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'drought_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.175854244, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:1.175486882, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:1.175486882, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:1.171585788, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:1.171585788, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.171353651, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.171353651, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1.167640599, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1.167640599, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.1675121, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.1675121, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1.165589794, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1.165589794, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1.161478701, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1.161478701, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.158207965, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.158207965, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1.153677236, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1.153677236, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1.152684569, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1.152684569, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.151597392, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.151597392, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.149838059, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.149838059, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1.146907036, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1.146907036, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:1.146012966, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:1.146012966, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1.145775559, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1.145775559, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.145516079, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.145516079, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.144292174, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.144292174, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1.143728893, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1.143728893, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.136078583, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.136078583, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.135460835, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.135460835, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:1.130419259, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:1.130419259, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.129414754, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.129414754, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1.124032832, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1.124032832, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.122639144, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.122639144, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_heat_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.12023368, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.12023368, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.118700438, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.118700438, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.118238124, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.118238124, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.116340617, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.116340617, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:1.116289448, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:1.116289448, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.112256701, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.112256701, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1.11181012, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1.11181012, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.111030611, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.111030611, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.107542705, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.107542705, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:1.106006883, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:1.106006883, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.104619799, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.104619799, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.101431854, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.101431854, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.100920742, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.100920742, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1.098989051, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1.098989051, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1.095347879, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1.095347879, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1.095031627, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1.095031627, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.094668993, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.094668993, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.093669114, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_heat_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.093669114, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.092539893, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.092539893, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_cold_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.087732139, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.087732139, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.086491229, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.086491229, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:1.08547515, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:1.08547515, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.082626019, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.082626019, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:1.082589235, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:1.082589235, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.081986869, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.081986869, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.078692572, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.078692572, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1.077325566, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1.077325566, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.076336022, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.076336022, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1.07385652, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1.07385652, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:1.072261202, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:1.072261202, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.072224579, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.072224579, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.071759581, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.071759581, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.071612472, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.071612472, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.070831061, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.070831061, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:1.067498169, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:1.067498169, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'drought_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:1.064025615, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'drought_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:1.064025615, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:1.061757375, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:1.061757375, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.06154512, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.06154512, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.060856042, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.060856042, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.060379392, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.060379392, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.05669299, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.05669299, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1.055310528, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1.055310528, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:1.055295534, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:1.055295534, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:1.055258017, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:1.055258017, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.055252258, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.055252258, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.049666354, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.049666354, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1.048774356, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1.048774356, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.048628928, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.048628928, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:1.046131515, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:1.046131515, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.045571159, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.045571159, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1.044103816, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1.044103816, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:1.042512189, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:1.042512189, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.040791558, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.040791558, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1.039519756, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1.039519756, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1.039240393, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1.039240393, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:1.039127831, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:1.039127831, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.038937027, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.038937027, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.037662189, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.037662189, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.0374344, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_cold_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.0374344, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_cold_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1.036387322, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1.036387322, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:1.036062084, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:1.036062084, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.035936891, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.035936891, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.033825988, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_cold_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.033825988, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1.033630029, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1.033630029, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1.033030624, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1.033030624, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.032153743, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'high_light_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.032153743, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'drought_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.031265394, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.031265394, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:1.029220017, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:1.029220017, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1.027560706, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1.027560706, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1.025815979, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1.025815979, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.024832927, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'high_light_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.024832927, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'drought_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1.024528835, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1.024528835, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:1.024520497, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:1.024520497, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:1.024096256, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:1.024096256, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:1.023585614, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:1.023585614, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.02339856, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.02339856, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:1.022748507, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:1.022748507, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.022713723, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.022713723, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:1.021074267, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:1.021074267, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1.020447335, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1.020447335, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:1.018535003, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:1.018535003, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.018529551, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.018529551, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1.018508113, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1.018508113, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:1.017848631, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:1.017848631, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.01551564, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.01551564, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1.015057127, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1.015057127, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.007327522, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.007327522, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.007300796, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.007300796, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1.006562043, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1.006562043, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1.005871948, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1.005871948, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:1.005795606, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:1.005795606, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:1.003110673, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:1.003110673, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.000081645, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'high_light_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.000081645, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'control_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:1.0, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:1.0, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.0, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:1.0, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'control_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:1.0, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'control_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:1.0, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'control_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.0, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'control_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:1.0, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'control_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1.0, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'control_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:1.0, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'control_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1.0, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:1.0, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1.0, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:1.0, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:1.0, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:1.0, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'control_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:1.0, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'control_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1.0, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:1.0, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.0, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:1.0, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:1.0, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:1.0, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:1.0, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:1.0, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:1.0, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:1.0, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:1.0, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:1.0, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:1.0, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:1.0, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.0, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:1.0, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.0, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:1.0, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.0, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'control_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:1.0, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'control_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1.0, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:1.0, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.0, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:1.0, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1.0, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:1.0, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1.0, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:1.0, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.0, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:1.0, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'control_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:1.0, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'control_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:1.0, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:1.0, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.0, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:1.0, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'control_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:1.0, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'control_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:1.0, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'control_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.0, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:1.0, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'control_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:1.0, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'control_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:1.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:1.0, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:1.0, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:1.0, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.0, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'control_recovery_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:1.0, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'control_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.0, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'control_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:1.0, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'control_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:1.0, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:1.0, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:1.0, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:1.0, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1.0, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:1.0, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:1.0, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:1.0, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:1.0, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:1.0, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:1.0, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:1.0, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.0, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:1.0, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.0, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:1.0, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'control_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:1.0, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:1.0, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1.0, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:1.0, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:1.0, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:1.0, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:1.0, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:1.0, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1.0, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:1.0, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'control_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.0, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:1.0, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1.0, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:1.0, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'control_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1.0, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:1.0, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.0, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:1.0, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1.0, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:1.0, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1.0, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:1.0, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:1.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:1.0, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'control_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:1.0, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'control_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:1.0, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'control_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:1.0, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'control_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:1.0, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'control_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:1.0, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'control_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:1.0, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'control_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:1.0, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'control_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:1.0, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'control_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1.0, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'control_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:1.0, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'control_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1.0, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:1.0, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1.0, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:1.0, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1.0, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:1.0, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.0, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'control_recovery_1', polarity:'negative', mz:205.096997826, rt:439.957815819, intensity:1.0, predictions:[['206.1055277', 'C11H14N2O2', 0.001253874000013866]], hc:1.27272727273, oc:0.181818181818, nc:0.181818181818},{sample_id:'control_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.0, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:207.065138369, rt:362.018787023, intensity:1.0, predictions:[['208.0735589', 'C11H12O4', 0.001144530999994231]], hc:1.09090909091, oc:0.363636363636, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:1.0, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:1.0, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'control_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1.0, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'control_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:1.0, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'control_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:1.0, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'control_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:1.0, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'control_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.0, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:1.0, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:1.0, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'control_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:1.0, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'control_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1.0, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:1.0, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:1.0, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'control_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:1.0, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'control_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:1.0, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'control_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:1.0, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'control_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.0, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:1.0, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'control_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1.0, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:1.0, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1.0, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:1.0, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'control_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:1.0, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'control_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:1.0, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:0.999753278, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:0.999753278, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:0.998338957, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:0.998338957, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:0.995363835, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:0.995363835, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:0.994930404, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:0.994930404, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.994906291, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.994906291, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:0.994613634, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:0.994613634, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:0.994023799, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:0.994023799, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.993384303, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.993384303, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.991148734, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.991148734, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:0.988493263, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:0.988493263, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.986363783, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.986363783, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.986258059, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.986258059, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.985336911, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.985336911, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.985123916, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.985123916, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:0.983324081, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:0.983324081, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:0.982120726, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:0.982120726, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:0.981732204, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:0.981732204, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:0.98078509, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:0.98078509, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.979461279, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.979461279, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.977803452, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.977803452, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.976564709, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.976564709, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.975642216, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.975642216, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.975055186, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.975055186, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.968234049, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.968234049, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.967036457, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.967036457, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:0.965438509, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:0.965438509, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.964873957, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.964873957, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:0.964410131, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:0.964410131, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:0.964325388, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:0.964325388, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.961385177, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.961385177, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.961031296, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'high_light_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.961031296, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_heat_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.960667693, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.960667693, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:0.960319525, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_heat_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:0.960319525, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:0.9601344, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:138.055097593, rt:368.650817077, intensity:0.9601344, predictions:[['139.0633285', 'C7H9NO2', 0.0009549070000218762]], hc:1.28571428571, oc:0.285714285714, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.956928015, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.956928015, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.953722965, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.953722965, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.951245113, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.951245113, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.950743869, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.950743869, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.944924661, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.944924661, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.943469626, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.943469626, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:0.943220835, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:0.943220835, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'drought_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.940981942, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.940981942, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.939925453, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.939925453, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.937204941, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.937204941, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.936714615, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.936714615, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:0.935336277, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:0.935336277, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.933574162, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.933574162, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.931427691, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.931427691, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:0.9287189, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:0.9287189, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:0.926235017, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:0.926235017, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.926096157, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.926096157, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:0.926053067, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:0.926053067, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:0.923470883, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:0.923470883, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.923138565, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.923138565, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.918165132, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.918165132, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.917821212, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.917821212, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:0.917818705, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:0.917818705, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:0.916103024, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:0.916103024, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:0.915275117, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:0.915275117, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.915003183, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.915003183, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:0.913712241, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:0.913712241, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.912866008, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.912866008, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.912700243, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.912700243, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:0.912425704, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:0.912425704, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.912296031, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_heat_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.912296031, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:0.912048482, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:0.912048482, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:0.910094824, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:0.910094824, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.909639673, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.909639673, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:0.907924972, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:0.907924972, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.90689283, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.90689283, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.906879014, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.906879014, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.906005658, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.906005658, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:0.905480603, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:0.905480603, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.904433042, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.904433042, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.902983619, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.902983619, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:0.901473118, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:0.901473118, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:0.901008137, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'drought_recovery_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:0.901008137, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:0.900233091, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:0.900233091, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.898346682, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.898346682, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.897484422, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.897484422, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.89717674, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.89717674, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.896426424, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.896426424, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.895776726, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.895776726, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:0.895568653, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:0.895568653, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:0.895202588, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:0.895202588, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.894502212, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.894502212, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.894442388, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.894442388, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.894388274, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.894388274, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:0.890213839, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:0.890213839, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:0.889904775, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:0.889904775, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.8888101, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.8888101, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:0.884957405, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:0.884957405, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'high_light_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.884780756, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.884780756, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:0.883626399, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_cold_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:0.883626399, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:0.882900596, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:0.882900596, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.879723925, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.879723925, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.878724852, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.878724852, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.875536679, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.875536679, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'high_light_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.874444814, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.874444814, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:0.873606789, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:0.873606789, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:0.870907485, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:0.870907485, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.86954965, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.86954965, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.869476986, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.869476986, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:0.869434981, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:0.869434981, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_cold_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:0.865305923, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:121.064869668, rt:326.093475744, intensity:0.865305923, predictions:[['122.0731649', 'C8H10O', 0.001019231999990211]], hc:1.25, oc:0.125, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.8637406, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.8637406, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.863366869, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.863366869, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.862336769, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.862336769, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.861815714, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.861815714, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:0.860013018, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:0.860013018, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.859708392, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.859708392, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.858155718, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.858155718, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.858141964, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.858141964, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.854703114, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.854703114, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:0.85138696, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'basal_cold_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:0.85138696, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.850084967, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.850084967, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.848890671, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.848890671, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.84885982, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.84885982, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.848653941, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.848653941, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.847809681, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.847809681, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:0.845182718, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:0.845182718, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.844220492, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.844220492, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.84362552, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.84362552, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.841626173, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.841626173, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.841448153, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.841448153, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.838376411, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.838376411, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.837029216, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.837029216, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.83561208, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.83561208, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.834525379, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.834525379, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.834230386, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.834230386, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:0.83363909, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:0.83363909, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:0.831940543, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:0.831940543, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:0.831257579, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:0.831257579, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'acquired_cold_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:0.83125214, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:162.076178141, rt:605.902027638, intensity:0.83125214, predictions:[['163.0844579', 'C6H13NO4', 0.0010037589999853935]], hc:2.16666666667, oc:0.666666666667, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:0.830869048, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:0.830869048, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.82956886, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.82956886, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.828310975, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.828310975, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:0.828273167, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_cold_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:0.828273167, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'drought_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.827577662, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.827577662, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.826888178, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.826888178, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:0.82540915, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_cold_1', polarity:'negative', mz:138.091419931, rt:326.528822771, intensity:0.82540915, predictions:[['139.099714', 'C8H13NO', 0.0010180690000254344]], hc:1.625, oc:0.125, nc:0.125},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.824933624, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.824933624, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.824146632, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.824146632, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.82388211, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.82388211, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:0.822917428, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:0.822917428, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:0.822582374, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:0.822582374, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.822100405, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.822100405, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.821367988, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.821367988, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.821129971, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.821129971, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.820548167, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'high_light_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.820548167, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:0.818539171, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:0.818539171, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.818378397, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.818378397, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:0.818085596, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:201.087271934, rt:404.380901513, intensity:0.818085596, predictions:[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]], hc:1.75, oc:0.5, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.817280598, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.817280598, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.816059329, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.816059329, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.815613347, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'high_light_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.815613347, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.815253524, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.815253524, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.814563954, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.814563954, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.812126462, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.812126462, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:0.811722738, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:0.811722738, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:0.811195214, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:0.811195214, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.810542601, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.810542601, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.808021845, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.808021845, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:0.806909369, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:0.806909369, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.806621335, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.806621335, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.805662599, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.805662599, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.803429734, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.803429734, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:0.801768222, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'high_light_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:0.801768222, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'high_light_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.799378736, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.799378736, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.798583136, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.798583136, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.793305118, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.793305118, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:0.792428001, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:0.792428001, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:0.791774735, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_cold_1', polarity:'negative', mz:116.070593566, rt:454.32394417, intensity:0.791774735, predictions:[['117.0789786', 'C5H11NO2', 0.0011090339999952903]], hc:2.2, oc:0.4, nc:0.2},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.79090649, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.79090649, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.789328033, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.789328033, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.783435128, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.783435128, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.783105492, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.783105492, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:0.78309679, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:268.102707317, rt:340.036339548, intensity:0.78309679, predictions:[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]], hc:1.46153846154, oc:0.230769230769, nc:0.0769230769231},{sample_id:'high_light_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.782651648, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.782651648, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.781617618, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.781617618, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.777996376, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'acquired_cold_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.777996376, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:0.775680086, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:225.075448787, rt:353.021782816, intensity:0.775680086, predictions:[['226.0841236', 'C11H14O5', 0.0013988130000086585]], hc:1.27272727273, oc:0.454545454545, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.773547045, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.773547045, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.77312737, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.77312737, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:0.772623852, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:166.086252765, rt:407.956289771, intensity:0.772623852, predictions:[['167.0946287', 'C9H13NO2', 0.0010999349999849528]], hc:1.44444444444, oc:0.222222222222, nc:0.111111111111},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.772544786, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.772544786, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.770201165, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.770201165, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.768992737, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.768992737, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.765615037, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.765615037, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.765176128, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.765176128, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'high_light_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.764254431, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.764254431, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.764123745, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_cold_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.764123745, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:0.763494311, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:0.763494311, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.76030509, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.76030509, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.757167179, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.757167179, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.756171782, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.756171782, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.75372526, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.75372526, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.753127374, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.753127374, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.750099395, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.750099395, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.749830972, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.749830972, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.746280851, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.746280851, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:0.743837604, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_cold_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:0.743837604, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_cold_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.742944056, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.742944056, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.739795301, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.739795301, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:0.738831137, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:0.738831137, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:0.733546425, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:0.733546425, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.731334617, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.731334617, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:0.731320085, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:0.731320085, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.728878153, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.728878153, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.728293977, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.728293977, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.72539694, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.72539694, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.723544926, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.723544926, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.72280332, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.72280332, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.720960948, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.720960948, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.719370662, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.719370662, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:0.717923948, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_cold_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:0.717923948, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'high_light_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.714856604, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.714856604, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.713710312, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.713710312, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.711637324, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.711637324, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.707637908, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.707637908, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:0.705376367, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:0.705376367, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:0.700984534, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:0.700984534, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_cold_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.698062189, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.698062189, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:0.696620492, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'high_light_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:0.696620492, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.694594464, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.694594464, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:0.694229447, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_heat_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:0.694229447, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'high_light_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.694059301, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'high_light_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.694059301, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_cold_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.691017, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.691017, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:0.690229601, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:0.690229601, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.689286462, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.689286462, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.68832223, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.68832223, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.687629574, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.687629574, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.68414318, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.68414318, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:0.683910634, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:0.683910634, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:0.683332462, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:0.683332462, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.682833903, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.682833903, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.6825115, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.6825115, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.682181334, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'high_light_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.682181334, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.681752277, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.681752277, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.680520904, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.680520904, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.680134437, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.680134437, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.67928761, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.67928761, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.678396644, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.678396644, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.676161914, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.676161914, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.675523182, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.675523182, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.675410274, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.675410274, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:0.672468893, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:0.672468893, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:0.671106364, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:163.075487247, rt:362.719769144, intensity:0.671106364, predictions:[['164.0837296', 'C10H12O2', 0.000966352999995479]], hc:1.2, oc:0.2, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:0.668067395, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:0.668067395, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.667671404, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.667671404, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.665349738, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.665349738, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.664509195, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.664509195, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:0.664484219, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:0.664484219, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.663546393, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.663546393, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.662365201, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.662365201, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.661755566, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.661755566, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:0.661026886, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:0.661026886, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.660438756, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.660438756, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.658902066, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.658902066, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.656436362, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.656436362, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.655325235, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.655325235, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.653194312, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.653194312, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.651910481, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.651910481, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_cold_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.649672313, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.649672313, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.649314443, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.649314443, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'high_light_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.649023176, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.649023176, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:0.648556046, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:0.648556046, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.648318114, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.648318114, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.646213941, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.646213941, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.644983945, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.644983945, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.64373294, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.64373294, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.643479699, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.643479699, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.64207259, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.64207259, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.634507468, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.634507468, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'high_light_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.632721353, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'high_light_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.632721353, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:0.63212114, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_cold_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:0.63212114, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.629252918, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.629252918, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:0.626274031, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:0.626274031, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:0.626121177, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:0.626121177, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:0.624028388, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:0.624028388, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:0.619504485, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:0.619504485, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.616618974, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.616618974, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:0.616427109, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:0.616427109, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'basal_cold_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.614319814, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_cold_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.614319814, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.613881178, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.613881178, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.61382028, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.61382028, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.610360843, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.610360843, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.609549803, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.609549803, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:0.608428838, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'drought_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:0.608428838, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.607458057, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.607458057, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.607093366, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.607093366, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.60421662, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.60421662, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.601687891, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.601687891, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:0.600558383, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:0.600558383, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:0.600141117, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'high_light_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:0.600141117, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.599198845, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.599198845, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:0.598958355, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:0.598958355, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.597294535, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.597294535, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.597005152, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.597005152, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.595031848, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.595031848, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.592397751, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.592397751, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:0.590851234, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:0.590851234, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.586698789, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_cold_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.586698789, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.586240255, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.586240255, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.583820187, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.583820187, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.580100926, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.580100926, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:0.579308689, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:128.070716726, rt:402.227959004, intensity:0.579308689, predictions:[['129.0789786', 'C6H11NO2', 0.0009858740000083799]], hc:1.83333333333, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.57889409, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.57889409, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.576760809, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.576760809, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.572885287, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.572885287, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.568555924, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.568555924, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.568337664, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.568337664, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'acquired_cold_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.567731722, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.567731722, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.565681646, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.565681646, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.565406672, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.565406672, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.565372728, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.565372728, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.563937297, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.563937297, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.560103184, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.560103184, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.559711638, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.559711638, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.556982944, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.556982944, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:0.556101611, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:161.092104354, rt:442.102334595, intensity:0.556101611, predictions:[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.55590288, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.55590288, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.555726325, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.555726325, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:0.552579976, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:131.081554456, rt:524.085314834, intensity:0.552579976, predictions:[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]], hc:2.4, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:0.550188856, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:0.550188856, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.550157877, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.550157877, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.549261391, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.549261391, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.549179829, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.549179829, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.549058689, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'high_light_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.549058689, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.547415383, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.547415383, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.546583754, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.546583754, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'high_light_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:0.544642037, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'high_light_recovery_1', polarity:'negative', mz:182.081257963, rt:546.453034008, intensity:0.544642037, predictions:[['183.0895433', 'C9H13NO3', 0.0010093369999992774]], hc:1.44444444444, oc:0.333333333333, nc:0.111111111111},{sample_id:'acquired_heat_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.544258473, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.544258473, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.542965821, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.542965821, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.53778411, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'high_light_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.53778411, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.537472657, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.537472657, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.536999671, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.536999671, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:0.536077652, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:112.050591326, rt:558.97645159, intensity:0.536077652, predictions:[['113.0589119', 'C4H7N3O', 0.0010445739999909165]], hc:1.75, oc:0.25, nc:0.75},{sample_id:'high_light_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.529910901, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.529910901, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.528222742, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'high_light_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.528222742, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:0.524630239, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:127.039045173, rt:478.908976206, intensity:0.524630239, predictions:[['128.0473441', 'C6H8O3', 0.001022927000008167]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.52359026, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'high_light_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.52359026, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.520004172, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.520004172, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.51620159, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.51620159, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.515237468, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.515237468, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:0.507894851, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:145.049606173, rt:478.126835649, intensity:0.507894851, predictions:[['146.0579088', 'C6H10O4', 0.0010266270000158784]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:0.507540869, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:0.507540869, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'high_light_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.50236005, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.50236005, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:0.501425155, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:165.054706951, rt:545.894258025, intensity:0.501425155, predictions:[['166.0629942', 'C9H10O3', 0.0010112490000153684]], hc:1.11111111111, oc:0.333333333333, nc:0.0},{sample_id:'high_light_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.500077717, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.500077717, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.499405369, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_cold_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.499405369, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:0.498250885, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.049869314, rt:638.058869627, intensity:0.498250885, predictions:[['131.0582432', 'C5H9NO3', 0.0010978859999966062]], hc:1.8, oc:0.6, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.497928136, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.497928136, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'high_light_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.49572028, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.49572028, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:0.492854602, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:130.065229003, rt:287.187393972, intensity:0.492854602, predictions:[['131.0734993', 'C9H9N', 0.0009942970000054174]], hc:1.0, oc:0.0, nc:0.111111111111},{sample_id:'basal_cold_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.492782818, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.492782818, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.492581779, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_heat_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.492581779, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_cold_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.488522744, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.488522744, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:0.484686281, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:0.484686281, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.482263467, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.482263467, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.478278311, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.478278311, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.476994402, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.476994402, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.471349679, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.471349679, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.470116878, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.470116878, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.46856581, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.46856581, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.466814194, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.466814194, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.462276157, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.462276157, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.461671763, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.461671763, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.459559295, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.459559295, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:0.45705664, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'drought_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:0.45705664, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'acquired_heat_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.455724792, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:145.049624973, rt:732.288711427, intensity:0.455724792, predictions:[['146.0579088', 'C6H10O4', 0.0010078270000235534]], hc:1.66666666667, oc:0.666666666667, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.454180364, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.454180364, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:0.439683142, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.065785327, rt:638.634926081, intensity:0.439683142, predictions:[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.432461362, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.432461362, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.431616356, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.431616356, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.43137549, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.43137549, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_cold_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.428372757, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.428372757, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.420403254, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.420403254, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:0.419566203, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.065947839, rt:415.863706246, intensity:0.419566203, predictions:[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]], hc:2.0, oc:0.4, nc:0.4},{sample_id:'high_light_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:0.419537775, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'high_light_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:0.419537775, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'basal_cold_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.414774413, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:161.082301556, rt:152.040443946, intensity:0.414774413, predictions:[['162.0892089', 'C7H14O4', -0.00036865600000624]], hc:2.0, oc:0.571428571429, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:0.409764603, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:120.065516217, rt:597.617158274, intensity:0.409764603, predictions:[['121.0738932', 'C4H11NO3', 0.0011009830000006104]], hc:2.75, oc:0.75, nc:0.25},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.40441425, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.40441425, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.401481498, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_recovery.2', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.401481498, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.396404161, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.396404161, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'acquired_cold_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.394406215, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.394406215, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:0.392030458, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:0.392030458, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.390927589, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.390927589, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.389291016, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.389291016, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.387545466, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.387545466, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.383428505, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.383428505, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.381256418, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.381256418, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.374559276, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.374559276, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.373886218, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.373886218, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.367712136, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.367712136, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.367113577, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.367113577, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:0.361328132, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:0.361328132, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'acquired_heat_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.361150242, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.361150242, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.353152009, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.353152009, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.347456359, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.347456359, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.344882045, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.344882045, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.342810792, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.342810792, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.341772409, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'drought_recovery_1', polarity:'negative', mz:169.035751827, rt:567.096044524, intensity:0.341772409, predictions:[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]], hc:1.2, oc:0.6, nc:0.8},{sample_id:'basal_heat_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.340717734, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.340717734, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.340661797, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.340661797, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.339830078, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.339830078, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.337083848, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.337083848, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:0.336467861, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:133.031933396, rt:442.294358949, intensity:0.336467861, predictions:[['134.0401503', 'C5H10O2S', 0.0009409040000036839]], hc:2.0, oc:0.4, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.333930513, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039350582, rt:345.785256941, intensity:0.333930513, predictions:[['125.0476785', 'C6H7NO2', 0.0010519180000017059]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.331243096, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.331243096, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.326498307, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.326498307, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.324424958, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.324424958, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.32203455, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.32203455, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.319316195, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.319316195, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.318821529, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.318821529, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.316194892, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:109.028456527, rt:733.20884566, intensity:0.316194892, predictions:[['110.0367794', 'C6H6O2', 0.0010468729999928428]], hc:1.0, oc:0.333333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.315664518, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.315664518, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.315302082, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.315302082, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.313713754, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.313713754, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.313049996, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'acquired_cold_1', polarity:'negative', mz:127.039055675, rt:732.713879133, intensity:0.313049996, predictions:[['128.0473441', 'C6H8O3', 0.0010124249999989843]], hc:1.33333333333, oc:0.5, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.309698967, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.309698967, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.308390021, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.308390021, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'drought_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.307259349, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.307259349, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:0.302440812, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:128.10709995, rt:285.189766771, intensity:0.302440812, predictions:[['129.1153641', 'C7H15NO', 0.0009881500000119559]], hc:2.14285714286, oc:0.142857142857, nc:0.142857142857},{sample_id:'acquired_heat_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.297659161, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.297659161, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.297604627, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:195.049508504, rt:746.350639308, intensity:0.297604627, predictions:[['196.0583027', 'C6H12O7', 0.0015181960000347772]], hc:2.0, oc:1.16666666667, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.297184787, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.297184787, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'basal_heat_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.295240754, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.295240754, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.292256698, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'basal_heat_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.292256698, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'high_light_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.289628254, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.289628254, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.289426316, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.289426316, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:0.28764381, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:0.28764381, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.285421959, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.285421959, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.284381773, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.284381773, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.27632397, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:325.110961944, rt:732.001078015, intensity:0.27632397, predictions:[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]], hc:1.83333333333, oc:0.833333333333, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.275568288, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.275568288, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:0.271588772, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:258.10859871, rt:766.684498265, intensity:0.271588772, predictions:[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]], hc:1.7, oc:0.5, nc:0.3},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.270728268, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:157.060754467, rt:673.395787895, intensity:0.270728268, predictions:[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]], hc:1.66666666667, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.262823916, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.262823916, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.258794075, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:161.092044112, rt:555.351269753, intensity:0.258794075, predictions:[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]], hc:2.33333333333, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.257006288, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'drought_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.257006288, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.25578463, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:218.117141617, rt:63.4203134757, intensity:0.25578463, predictions:[['219.1259288', 'C13H17NO2', 0.0015111830000194004]], hc:1.30769230769, oc:0.153846153846, nc:0.0769230769231},{sample_id:'high_light_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:0.239528808, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'high_light_recovery_1', polarity:'negative', mz:113.034523864, rt:346.164817875, intensity:0.239528808, predictions:[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]], hc:1.5, oc:0.5, nc:0.5},{sample_id:'drought_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.239084869, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:226.070598166, rt:632.340656791, intensity:0.239084869, predictions:[['227.0793725', 'C10H13NO5', 0.0014983340000185308]], hc:1.3, oc:0.5, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.234541873, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.234541873, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.221665232, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.221665232, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.217164434, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_cold_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.217164434, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:0.211040568, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'drought_recovery_1', polarity:'negative', mz:110.071328817, rt:867.935393029, intensity:0.211040568, predictions:[['111.0796473', 'C5H9N3', 0.0010424830000062002]], hc:1.8, oc:0.0, nc:0.6},{sample_id:'drought_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.206874201, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:134.044842716, rt:735.778198352, intensity:0.206874201, predictions:[['135.0531578', 'C4H9NO4', 0.0010390840000127355]], hc:2.25, oc:1.0, nc:0.25},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.20515973, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.20515973, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.203665127, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:210.076174871, rt:556.414916611, intensity:0.203665127, predictions:[['211.0844579', 'C10H13NO4', 0.0010070289999930537]], hc:1.3, oc:0.4, nc:0.1},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.197473743, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.197473743, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_cold_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.196247188, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.196247188, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.195509219, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.054742348, rt:473.08756594, intensity:0.195509219, predictions:[['130.0629942', 'C6H10O3', 0.0009758520000104909]], hc:1.66666666667, oc:0.5, nc:0.0},{sample_id:'basal_cold_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.188337256, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_cold_1', polarity:'negative', mz:139.05031348, rt:413.204094087, intensity:0.188337256, predictions:[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]], hc:1.33333333333, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.187644141, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:277.101437375, rt:768.482729939, intensity:0.187644141, predictions:[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]], hc:0.636363636364, oc:0.0, nc:0.0},{sample_id:'acquired_heat_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.185472101, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.185472101, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.1837081, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.1837081, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.176760252, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:192.050472469, rt:513.214176912, intensity:0.176760252, predictions:[['193.0586371', 'C6H11NO6', 0.0008886310000093545]], hc:1.83333333333, oc:1.0, nc:0.166666666667},{sample_id:'acquired_heat_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.175020723, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'acquired_heat_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.175020723, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.172508838, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:148.096909953, rt:556.044083324, intensity:0.172508838, predictions:[['149.1051934', 'C6H15NO3', 0.001007447000006323]], hc:2.5, oc:0.5, nc:0.166666666667},{sample_id:'high_light_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.164878177, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'high_light_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.164878177, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.163954984, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.163954984, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.162890768, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:141.0659958, rt:531.807534215, intensity:0.162890768, predictions:[['142.0742276', 'C6H10N2O2', 0.000955800000014051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.159876414, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.159876414, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.144855939, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.144855939, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:0.143210302, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'drought_recovery_1', polarity:'negative', mz:133.06075433, rt:667.643542766, intensity:0.143210302, predictions:[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]], hc:2.5, oc:0.75, nc:0.5},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.13821683, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.13821683, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.13694674, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:116.034275331, rt:671.712362191, intensity:0.13694674, predictions:[['117.0425931', 'C4H7NO3', 0.0010417689999968616]], hc:1.75, oc:0.75, nc:0.25},{sample_id:'acquired_heat_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.135095152, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.135095152, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.129534499, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'drought_recovery_1', polarity:'negative', mz:245.095407817, rt:720.45724836, intensity:0.129534499, predictions:[['246.1004423', 'C13H14N2O3', -0.002241516999987425]], hc:1.07692307692, oc:0.230769230769, nc:0.153846153846},{sample_id:'drought_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.125917378, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:203.102959813, rt:922.142129909, intensity:0.125917378, predictions:[['204.111007', 'C8H16N2O4', 0.0007711869999980081]], hc:2.0, oc:0.5, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.121255724, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:160.075855395, rt:65.4178107604, intensity:0.121255724, predictions:[['161.084064', 'C10H11NO', 0.000932605000031117]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.109273299, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.109273299, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.107160367, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:166.072040805, rt:626.85306269, intensity:0.107160367, predictions:[['167.0807099', 'C6H9N5O', 0.0013930949999974018]], hc:1.5, oc:0.166666666667, nc:0.833333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:0.104062752, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:135.064922543, rt:671.83915346, intensity:0.104062752, predictions:[['136.0735589', 'C5H12O4', 0.0013603570000100262]], hc:2.4, oc:0.8, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.096346543, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:143.081552215, rt:413.938579194, intensity:0.096346543, predictions:[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]], hc:2.0, oc:0.333333333333, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.095866323, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'acquired_heat_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.095866323, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.094970283, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.094970283, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.091793095, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.091793095, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.091789082, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:219.097087479, rt:668.370758562, intensity:0.091789082, predictions:[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]], hc:2.0, oc:0.625, nc:0.25},{sample_id:'drought_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.088666954, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:159.076469963, rt:709.608605344, intensity:0.088666954, predictions:[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]], hc:2.0, oc:0.5, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:0.085372134, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:146.060090727, rt:528.080048428, intensity:0.085372134, predictions:[['147.0684139', 'C9H9NO', 0.0010471730000176649]], hc:1.0, oc:0.111111111111, nc:0.111111111111},{sample_id:'drought_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.084453221, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:595.16565303, rt:510.108375093, intensity:0.084453221, predictions:[['596.1741204', 'C27H32O15', 0.001191369999901326]], hc:1.18518518519, oc:0.555555555556, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.076174123, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:114.054991387, rt:708.933736893, intensity:0.076174123, predictions:[['115.0633285', 'C5H9NO2', 0.0010611129999915647]], hc:1.8, oc:0.4, nc:0.2},{sample_id:'drought_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.069011691, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:229.086134186, rt:75.4572130113, intensity:0.069011691, predictions:[['230.0942943', 'C14H14O3', 0.0008841140000015457]], hc:1.0, oc:0.214285714286, nc:0.0},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.06396995, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.06396995, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.058617401, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:141.066024093, rt:333.035450274, intensity:0.058617401, predictions:[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]], hc:1.66666666667, oc:0.333333333333, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.055094091, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:115.086648151, rt:417.997247466, intensity:0.055094091, predictions:[['116.094963', 'C5H12N2O', 0.0010388489999968442]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.050838889, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:115.086576502, rt:897.299789636, intensity:0.050838889, predictions:[['116.094963', 'C5H12N2O', 0.0011104980000027354]], hc:2.4, oc:0.2, nc:0.4},{sample_id:'drought_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.049941548, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'drought_recovery_1', polarity:'negative', mz:174.076085448, rt:664.71059456, intensity:0.049941548, predictions:[['175.0844579', 'C7H13NO4', 0.0010964520000129596]], hc:1.85714285714, oc:0.571428571429, nc:0.142857142857},{sample_id:'basal_heat_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.046231533, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.046231533, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.041997813, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039346937, rt:606.311521329, intensity:0.041997813, predictions:[['125.0476785', 'C6H7NO2', 0.0010555629999942084]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.040694027, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_cold_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.040694027, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.037803516, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.037803516, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.036176096, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'drought_recovery_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.036176096, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.030898305, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'basal_heat_recovery_1', polarity:'negative', mz:130.086348069, rt:412.147868481, intensity:0.030898305, predictions:[['131.0946287', 'C6H13NO2', 0.0010046310000006997]], hc:2.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.028530359, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:125.023379586, rt:500.87044907, intensity:0.028530359, predictions:[['126.0316941', 'C6H6O3', 0.0010385139999868898]], hc:1.0, oc:0.5, nc:0.0},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.025666975, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:124.039378692, rt:163.709299272, intensity:0.025666975, predictions:[['125.0476785', 'C6H7NO2', 0.0010238079999993488]], hc:1.16666666667, oc:0.333333333333, nc:0.166666666667},{sample_id:'acquired_cold_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.024959664, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_cold_1', polarity:'negative', mz:160.075754826, rt:271.403513484, intensity:0.024959664, predictions:[['161.084064', 'C10H11NO', 0.0010331740000140144]], hc:1.1, oc:0.1, nc:0.1},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.021509138, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'acquired_heat_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.021509138, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.016222586, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'basal_heat_1', polarity:'negative', mz:129.102293431, rt:306.737242727, intensity:0.016222586, predictions:[['130.1106131', 'C6H14N2O', 0.0010436690000119597]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:0.014171728, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:140.034389249, rt:507.171563189, intensity:0.014171728, predictions:[['141.0425931', 'C6H7NO3', 0.0009278510000285678]], hc:1.16666666667, oc:0.5, nc:0.166666666667},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.012743815, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333},{sample_id:'drought_recovery_1', polarity:'negative', mz:129.102363635, rt:62.7787763415, intensity:0.012743815, predictions:[['130.1106131', 'C6H14N2O', 0.0009734650000154943]], hc:2.33333333333, oc:0.166666666667, nc:0.333333333333}]
-
-d3.select("#checkboxes").selectAll("option")
-  .data(d3.map(data, d => d.sample_id).keys())
-    .enter()
-      .append("label")
-        .attr("id", d => d)
-        .attr("value",d => d)
-        .text(d=>d)
-        .append("input")
-        .attr("value", d => d)
-        .attr("class", "sample-checkbox")
-        .attr("type", "checkbox")
-        .property("checked", true)
-	.style("float", "left");
-
-var chartDiv = document.getElementById("chart");
-
-var margin = {top: 20, right: 10, bottom: 30, left: 40};
-
-function draw() {
-  var width = chartDiv.clientWidth;
-  var height = chartDiv.clientHeight;
-
-  var svg = d3.select("#chart").append("svg")
-    .attr("width", width + margin.left + margin.right)
-    .attr("height", height + margin.top + margin.bottom)
-    .style("float", "left")
-    .attr("position", "absolute")
-    .append("g")
-      .attr("transform", "translate(" + margin.left + " " + margin.top + ")");
-
-  var x = d3.scaleLinear()
-    .range([0, width]);
-
-  var y = d3.scaleLinear()
-    .range([height, 0]);
-
-  var xg = svg.append("g")
-    .attr("class", "x axis")
-    .attr("transform", "translate(0," + height + ")");
-
-  var yg = svg.append("g")
-    .attr("class", "y axis");
-
-  var chartArea = d3.select("#chart").append("div")
-    .style("margin-left", margin.left + "px")
-    .style("margin-top", margin.top + "px")
-    .style("float", "left")
-    .style("position", "absolute");
-
-  var canvas = chartArea.append("canvas")
-    .attr("width", width)
-    .attr("height", height)
-    .style("position", "absolute");
-
-  var offscreen = d3.select(document.createElement("canvas"))
-    .attr("width", width)
-    .attr("height", height)
-
-  var context = canvas.node().getContext("2d"),
-      picker = offscreen.node().getContext("2d");
-
-  context.fillStyle = "#f0f";
-
-  // Layer on top of canvas, example of selection details
-  var highlight = chartArea.append("svg")
-    .attr("width", width)
-    .attr("height", height)
-      .append("circle")
-        .classed("hidden", true);
-
-  var samples_active = [];
-
-  d3.selectAll("input.sample-checkbox:checked").each(function() {
-    samples_active.push(this.value)
-  });
-
-  var intensity_max = d3.max(data, d=> d.intensity);
-  var intensity_threshold = document.getElementById("intensity-threshold").value;
-  var data_visible = data.filter(d => samples_active.indexOf(d.sample_id) >= 0).filter(d => d.intensity/intensity_max >= Math.pow(intensity_threshold,2)/Math.pow(500,2));
-
-  var size_max = document.getElementById("size-max").value;
-  var size_min = document.getElementById("size-min").value;
-
-  var opacity = document.getElementById("opacity").value;
-
-  var size_algorithm = document.getElementById("size-algorithm").selectedIndex;
-
-  var x_axis = document.getElementById("x-axis").selectedIndex;
-  var y_axis = document.getElementById("y-axis").selectedIndex;
-
-  data_visible.forEach(function(d) {
-    if(size_algorithm == 0) {
-      temp = size_max*(1/Math.PI);
-    } else if (size_algorithm == 1) {
-      temp = size_max*((d.intensity/intensity_max)/Math.PI);
-    } else {
-      temp = size_max*((Math.log(d.intensity+1)/Math.log(intensity_max+1))/Math.PI);
-    }
-    if(temp > size_min) {
-      d.size = temp;
-    } else {
-      d.size = size_min;
-    }
-
-    if(x_axis == 0) {
-      d.x = d.hc;
-    } else if (x_axis == 1) {
-      d.x = d.nc;
-    } else {
-      d.x = d.oc; 
-    }
-    if(y_axis == 0) {
-      d.y = d.hc;
-    } else if (y_axis == 1) {
-      d.y = d.nc;
-    } else {
-      d.y = d.oc; 
-    }
-  });
-  // Redraw axes
-  x.domain([0, d3.max(data, d => d.x)]);
-  y.domain([0, d3.max(data, d => d.y)]);
-  xg.call(d3.axisBottom(x));
-  yg.call(d3.axisLeft(y)); 
-
-  var colors = {};
-
-  // Update canvas
-  context.clearRect(0, 0, width, height);
-  picker.clearRect(0, 0, width, height);
-
-  var rt_max = d3.max(data, d=> d.rt);
-
-  data_visible.forEach(function(p,i){
-    // Space out the colors a bit
-    var color = getColor(i * 1000 + 1);
-    colors[color] = p;
-    picker.fillStyle = "rgb(" + color + ")";
-
-    context.fillStyle = d3.interpolateViridis(p.rt/rt_max);
-    context.globalAlpha = opacity/100;
-
-    context.beginPath();
-    picker.beginPath();
-
-    context.arc(x(p.x), y(p.y), p.size, 0, 2 * Math.PI);
-    picker.arc(x(p.x), y(p.y), p.size, 0, 2 * Math.PI);
-
-    context.fill();
-    picker.fill();
-  });
-
-  canvas.on("mousemove",function(){
-    var xy = d3.mouse(this);
-
-    // Get pixel from offscreen canvas
-    var color = picker.getImageData(xy[0], xy[1], 1, 1).data;
-        selected = colors[color.slice(0,3).toString()];
-
-    highlight.classed("hidden", !selected);
-
-    // If it matches a point, highlight it
-    if (selected) {
-      highlight.attr("cx", x(selected.x))
-        .attr("cy", y(selected.y))
-        .attr("r", selected.size);
-    }
-  });
-
-  canvas.on("click",function(){
-    if (selected) {
-      console.log(selected);
-      document.getElementById("sample_id").innerHTML = selected.sample_id;
-      document.getElementById("polarity").innerHTML = selected.polarity;
-      document.getElementById("mz").innerHTML = selected.mz;
-      document.getElementById("intensity").innerHTML = selected.intensity;
-      document.getElementById("rt").innerHTML = selected.rt;
-      document.getElementById("predictions").innerHTML = selected.predictions;
-    }
-  });
-};
-
-function getColor(i) {
-  return (i % 256) + "," + (Math.floor(i / 256) % 256) + "," + (Math.floor(i / 65536) % 256);
-}
-
-// inital draw
-draw(); 
-
-function redraw() {
-  d3.select("#chart svg").remove();
-  d3.select("#chart div").remove();
-  draw();
-}
-
-// redraw on browser window resize
-window.addEventListener("resize", redraw);
-
-var samples_expanded = false;
-
-function showCheckboxes() {
-  var checkboxes = document.getElementById("checkboxes");
-  if (!samples_expanded) {
-    checkboxes.style.display = "block";
-    samples_expanded = true;
-  } else {
-    checkboxes.style.display = "none";
-    samples_expanded = false;
-  }
-}
-</script>
-</body>
-</html>
--- a/foo.tsv	Tue Jul 10 17:58:35 2018 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7195 +0,0 @@
-sample_id	polarity	mz	rt	intensity	predictions	hc	oc	nc
-basal_cold_recovery_1	negative	116.070593566	454.32394417	14683557824.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_cold_recovery_1	negative	116.070593566	454.32394417	8997400092.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_cold_recovery_1	negative	116.070593566	454.32394417	8997400092.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_cold_recovery_2	negative	116.070593566	454.32394417	7354278461.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_recovery.2	negative	133.06075433	667.643542766	6916576064.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_recovery_2	negative	116.070593566	454.32394417	5501609526.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_recovery.2	negative	133.06075433	667.643542766	5475926276.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_cold_recovery.2	negative	133.06075433	667.643542766	5475926276.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_cold_recovery_1	negative	133.06075433	667.643542766	5070847390.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_recovery_3	negative	116.070593566	454.32394417	4954363991.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-control_recovery_3	negative	133.06075433	667.643542766	4937831596.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-drought_recovery_1	negative	116.070593566	454.32394417	4817466069.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_heat_3	negative	166.086252765	407.956289771	4726758126.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_recovery_2	negative	130.049869314	638.058869627	4677515587.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_2	negative	116.070593566	454.32394417	4672639743.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_heat_recovery_3	negative	130.049869314	638.058869627	4664051589.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_recovery_2	negative	130.049869314	638.058869627	4518154583.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_recovery_1	negative	116.070593566	454.32394417	4457116182.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_recovery_1	negative	116.070593566	454.32394417	4457116182.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_2	negative	116.070593566	454.32394417	4444629055.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_recovery.3	negative	133.06075433	667.643542766	4440355374.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_recovery_3	negative	130.049869314	638.058869627	4398636479.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_recovery_3	negative	116.070593566	454.32394417	4358924527.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-control_recovery_2	negative	133.06075433	667.643542766	4328522418.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_recovery_1	negative	130.049869314	638.058869627	4320501461.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_recovery_1	negative	130.049869314	638.058869627	4320501461.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_cold_recovery_1	negative	130.049869314	638.058869627	4319430247.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-control_recovery_1	negative	133.06075433	667.643542766	4302733347.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-control_recovery_1	negative	133.06075433	667.643542766	4302733347.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_2	negative	130.049869314	638.058869627	4198642707.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_3	negative	116.070593566	454.32394417	4160905598.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_recovery_1	negative	130.049869314	638.058869627	4142075971.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_recovery_1	negative	130.049869314	638.058869627	4142075971.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_cold_recovery_2	negative	133.06075433	667.643542766	4046885085.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_1	negative	116.070593566	454.32394417	3998224991.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_1	negative	116.070593566	454.32394417	3998224991.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_cold_recovery_3	negative	133.06075433	667.643542766	3981991034.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_3	negative	116.070593566	454.32394417	3929495537.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_heat_recovery_3	negative	133.06075433	667.643542766	3926253501.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_cold_recovery.3	negative	130.049869314	638.058869627	3896119883.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_recovery_3	negative	116.070593566	454.32394417	3784373738.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_heat_recovery_1	negative	130.049869314	638.058869627	3779298213.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_3	negative	130.049869314	638.058869627	3771259704.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_cold_recovery_3	negative	130.049869314	638.058869627	3769849931.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_recovery_1	negative	116.070593566	454.32394417	3711396752.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-drought_recovery_1	negative	116.070593566	454.32394417	3711396752.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_recovery_3	negative	133.06075433	667.643542766	3661191154.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_1	negative	116.070593566	454.32394417	3657748923.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_heat_1	negative	116.070593566	454.32394417	3657748923.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_recovery_3	negative	130.049869314	638.058869627	3654783592.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-control_recovery_1	negative	133.06075433	667.643542766	3641846027.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_cold_recovery.2	negative	130.049869314	638.058869627	3626442407.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_cold_recovery.2	negative	130.049869314	638.058869627	3626442407.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_cold_recovery_1	negative	130.049869314	638.058869627	3600412243.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_cold_recovery_1	negative	130.049869314	638.058869627	3600412243.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_cold_recovery_2	negative	130.049869314	638.058869627	3594369125.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_1	negative	130.049869314	638.058869627	3548082156.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_cold_recovery_1	negative	133.06075433	667.643542766	3521955788.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_recovery_1	negative	133.06075433	667.643542766	3521955788.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_recovery_1	negative	116.070593566	454.32394417	3510814492.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_cold_recovery_1	negative	130.049869314	638.058869627	3437017672.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_2	negative	130.049869314	638.058869627	3434208126.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_1	negative	130.049869314	638.058869627	3391840854.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_1	negative	130.049869314	638.058869627	3391840854.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_1	negative	116.070593566	454.32394417	3389140319.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-control_recovery_3	negative	130.049869314	638.058869627	3380577996.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_1	negative	166.086252765	407.956289771	3366339350.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_1	negative	166.086252765	407.956289771	3366339350.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_recovery.3	negative	116.070593566	454.32394417	3362061719.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_recovery_1	negative	130.049869314	638.058869627	3350075849.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_1	negative	130.049869314	638.058869627	3262760214.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_1	negative	130.049869314	638.058869627	3262760214.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_recovery_2	negative	133.06075433	667.643542766	3257702048.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-high_light_recovery_1	negative	130.049869314	638.058869627	3243311474.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_recovery_1	negative	130.049869314	638.058869627	3243311474.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_1	negative	130.049869314	638.058869627	3237076521.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_1	negative	130.049869314	638.058869627	3237076521.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_recovery_3	negative	116.070593566	454.32394417	3227780069.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_1	negative	130.049869314	638.058869627	3211974335.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_2	negative	166.086252765	407.956289771	3186827428.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_recovery.2	negative	116.070593566	454.32394417	3184512178.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-control_recovery_2	negative	116.070593566	454.32394417	3184179589.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-control_recovery_1	negative	130.049869314	638.058869627	3169157746.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-control_recovery_1	negative	130.049869314	638.058869627	3169157746.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-control_recovery_2	negative	130.049869314	638.058869627	3161111254.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_3	negative	130.049869314	638.058869627	3142098181.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-control_recovery_3	negative	116.070593566	454.32394417	3132196390.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-drought_2	negative	130.049869314	638.058869627	3114586912.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_recovery_2	negative	130.049869314	638.058869627	3099274120.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_3	negative	130.049869314	638.058869627	3048560494.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_recovery_1	negative	133.06075433	667.643542766	3016149531.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_recovery_1	negative	133.06075433	667.643542766	3016149531.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_recovery_1	negative	116.070593566	454.32394417	3009198114.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_recovery.2	negative	116.070593566	454.32394417	3003770905.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_recovery.2	negative	116.070593566	454.32394417	3003770905.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_recovery_1	negative	116.070593566	454.32394417	2982164272.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_recovery_1	negative	116.070593566	454.32394417	2982164272.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-control_recovery_1	negative	116.070593566	454.32394417	2981920813.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-control_recovery_1	negative	116.070593566	454.32394417	2981920813.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_recovery_1	negative	130.049869314	638.058869627	2975876710.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-control_recovery_1	negative	130.049869314	638.058869627	2965783989.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_2	negative	133.06075433	667.643542766	2924397409.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-high_light_recovery_2	negative	116.070593566	454.32394417	2907908768.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_recovery_1	negative	116.070593566	454.32394417	2810803978.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_2	negative	130.049869314	638.058869627	2744095758.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_3	negative	116.070593566	454.32394417	2719406592.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_3	negative	166.086252765	407.956289771	2687294472.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_recovery_2	negative	116.070593566	454.32394417	2686664183.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_recovery.2	negative	130.049869314	638.058869627	2663777089.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-control_recovery_1	negative	116.070593566	454.32394417	2629386461.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_1	negative	130.049869314	638.058869627	2624808182.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_1	negative	130.049869314	638.058869627	2613103029.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_1	negative	130.049869314	638.058869627	2613103029.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_cold_1	negative	130.049869314	638.058869627	2592586469.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_recovery_1	negative	133.06075433	667.643542766	2582247199.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-high_light_recovery_1	negative	133.06075433	667.643542766	2582247199.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_recovery_1	negative	133.06075433	667.643542766	2536991244.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-drought_recovery_2	negative	116.070593566	454.32394417	2532350449.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_2	negative	133.06075433	667.643542766	2511468294.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_3	negative	133.06075433	667.643542766	2501161401.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_recovery_1	negative	116.070593566	454.32394417	2485845752.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_heat_recovery_1	negative	116.070593566	454.32394417	2485845752.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_3	negative	130.049869314	638.058869627	2470405147.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_cold_recovery_1	negative	116.070593566	454.32394417	2464738817.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_1	negative	133.06075433	667.643542766	2434438320.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_1	negative	133.06075433	667.643542766	2434438320.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_3	negative	133.06075433	667.643542766	2419903692.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_1	negative	130.049869314	638.058869627	2398098231.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_cold_1	negative	130.049869314	638.058869627	2398098231.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_1	negative	133.06075433	667.643542766	2371942976.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_2	negative	130.049869314	638.058869627	2371137771.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_1	negative	116.070593566	454.32394417	2371111490.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-drought_1	negative	116.070593566	454.32394417	2330401195.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-drought_1	negative	116.070593566	454.32394417	2330401195.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-drought_2	negative	116.070593566	454.32394417	2256096363.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_heat_1	negative	133.06075433	667.643542766	2236035761.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_1	negative	133.06075433	667.643542766	2236035761.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_3	negative	130.049869314	638.058869627	2230570452.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_cold_3	negative	130.049869314	638.058869627	2215414443.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_1	negative	130.049869314	638.058869627	2205620151.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_1	negative	166.086252765	407.956289771	2185432496.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-control_2	negative	130.049869314	638.058869627	2181655772.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_recovery_1	negative	133.06075433	667.643542766	2124545087.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-control_1	negative	130.049869314	638.058869627	2112004358.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-control_1	negative	130.049869314	638.058869627	2112004358.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-control_3	negative	130.049869314	638.058869627	2105594372.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_1	negative	166.086252765	407.956289771	2061782874.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_1	negative	166.086252765	407.956289771	2061782874.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_1	negative	116.070593566	454.32394417	2015700629.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_2	negative	130.049869314	638.058869627	1986791899.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_cold_1	negative	130.049869314	638.058869627	1975434293.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_cold_1	negative	130.049869314	638.058869627	1975434293.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_recovery_2	negative	133.06075433	667.643542766	1961005357.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_2	negative	166.086252765	407.956289771	1934075726.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_recovery_2	negative	133.06075433	667.643542766	1910628463.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_recovery_1	negative	133.06075433	667.643542766	1864493044.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_recovery_3	negative	133.06075433	667.643542766	1833402112.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-drought_recovery_1	negative	130.049869314	638.058869627	1801530791.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_1	negative	116.070593566	454.32394417	1789413715.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_2	negative	116.070593566	454.32394417	1789225642.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_heat_recovery_3	negative	116.070593566	454.32394417	1761674958.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-drought_2	negative	133.06075433	667.643542766	1728768827.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_cold_1	negative	130.049869314	638.058869627	1724096537.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_1	negative	116.070593566	454.32394417	1688046171.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_1	negative	116.070593566	454.32394417	1688046171.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_2	negative	133.06075433	667.643542766	1633926785.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_recovery_2	negative	166.086252765	407.956289771	1618826321.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_recovery_3	negative	166.086252765	407.956289771	1579642422.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_recovery_1	negative	130.049869314	638.058869627	1579035652.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_recovery_1	negative	130.049869314	638.058869627	1579035652.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-control_3	negative	116.070593566	454.32394417	1574653708.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_1	negative	166.086252765	407.956289771	1563978425.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-high_light_1	negative	133.06075433	667.643542766	1562508142.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_recovery_1	negative	133.06075433	667.643542766	1554698601.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_recovery_1	negative	133.06075433	667.643542766	1554698601.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-drought_recovery_2	negative	130.049869314	638.058869627	1543713419.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_3	negative	116.070593566	454.32394417	1485499155.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_recovery_1	negative	166.086252765	407.956289771	1447479288.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_recovery_1	negative	166.086252765	407.956289771	1447479288.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_recovery.2	negative	134.044842716	735.778198352	1402567236.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-drought_recovery_3	negative	130.049869314	638.058869627	1391862746.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_1	negative	133.06075433	667.643542766	1390578517.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-high_light_1	negative	133.06075433	667.643542766	1390578517.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_2	negative	133.06075433	667.643542766	1307690619.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-drought_1	negative	133.06075433	667.643542766	1283443811.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-drought_1	negative	133.06075433	667.643542766	1283443811.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_1	negative	133.06075433	667.643542766	1282548473.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-control_1	negative	116.070593566	454.32394417	1236291828.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-control_1	negative	116.070593566	454.32394417	1236291828.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_cold_2	negative	116.070593566	454.32394417	1211113695.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_recovery_1	negative	166.086252765	407.956289771	1143969121.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_3	negative	133.06075433	667.643542766	1119805283.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_cold_3	negative	116.070593566	454.32394417	1070798242.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-control_3	negative	133.06075433	667.643542766	1069853009.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-control_recovery_2	negative	134.044842716	735.778198352	1062789932.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-control_2	negative	133.06075433	667.643542766	1061901177.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_1	negative	116.070593566	454.32394417	1052562742.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_cold_1	negative	116.070593566	454.32394417	1052562742.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_recovery.2	negative	134.044842716	735.778198352	1050975048.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_recovery.2	negative	134.044842716	735.778198352	1050975048.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_1	negative	133.06075433	667.643542766	1039615387.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_1	negative	133.06075433	667.643542766	1039615387.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-control_1	negative	133.06075433	667.643542766	1018783970.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-control_1	negative	133.06075433	667.643542766	1018783970.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_2	negative	120.065516217	597.617158274	1006122971.0	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_recovery_2	negative	120.065516217	597.617158274	1003211744.0	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_1	negative	133.06075433	667.643542766	1001757322.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_recovery_2	negative	120.065516217	597.617158274	1001184278.0	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-control_2	negative	116.070593566	454.32394417	992004869.6	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_2	negative	116.070593566	454.32394417	991968738.3	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_cold_1	negative	116.070593566	454.32394417	980890673.2	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_1	negative	116.070593566	454.32394417	978864635.2	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_1	negative	116.070593566	454.32394417	978864635.2	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_3	negative	133.06075433	667.643542766	975300622.5	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_3	negative	116.070593566	454.32394417	965683857.5	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_cold_1	negative	133.06075433	667.643542766	957899263.3	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_cold_recovery.2	negative	120.065516217	597.617158274	954101457.8	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_recovery.3	negative	134.044842716	735.778198352	937639012.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_heat_3	negative	120.065516217	597.617158274	927241139.4	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_recovery_1	negative	120.065516217	597.617158274	924412931.9	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_recovery_1	negative	120.065516217	597.617158274	924412931.9	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_3	negative	120.065516217	597.617158274	923836443.9	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_recovery_1	negative	133.06075433	667.643542766	920065229.8	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_recovery_1	negative	120.065516217	597.617158274	915268279.3	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_recovery_3	negative	120.065516217	597.617158274	909787505.0	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_recovery_1	negative	120.065516217	597.617158274	907894323.9	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_recovery_1	negative	120.065516217	597.617158274	907894323.9	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_cold_recovery_3	negative	134.044842716	735.778198352	892570027.8	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_recovery_2	negative	134.044842716	735.778198352	889793815.7	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-control_recovery_1	negative	134.044842716	735.778198352	887626223.4	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-control_recovery_1	negative	134.044842716	735.778198352	887626223.4	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_1	negative	116.070593566	454.32394417	873826925.1	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-control_recovery_3	negative	134.044842716	735.778198352	872474466.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_1	negative	120.065516217	597.617158274	870764558.4	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_1	negative	120.065516217	597.617158274	870764558.4	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_2	negative	120.065516217	597.617158274	865457126.5	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_recovery_3	negative	120.065516217	597.617158274	854758772.1	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_cold_3	negative	133.06075433	667.643542766	853256278.1	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_recovery_1	negative	134.044842716	735.778198352	838739908.3	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_recovery_1	negative	134.044842716	735.778198352	838739908.3	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_heat_1	negative	120.065516217	597.617158274	832716715.6	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_1	negative	120.065516217	597.617158274	832716715.6	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_recovery_3	negative	134.044842716	735.778198352	827318988.2	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_1	negative	120.065516217	597.617158274	823000104.9	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_recovery_1	negative	134.044842716	735.778198352	812718895.5	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_recovery_1	negative	120.065516217	597.617158274	812711188.9	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_3	negative	133.06075433	667.643542766	790247017.2	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-control_recovery_2	negative	120.065516217	597.617158274	774670688.9	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_recovery_3	negative	166.086252765	407.956289771	754375582.6	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_recovery_2	negative	182.081257963	546.453034008	747622388.8	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-control_recovery_3	negative	120.065516217	597.617158274	742098428.3	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_recovery_2	negative	166.086252765	407.956289771	739194869.5	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_2	negative	133.06075433	667.643542766	736752076.6	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_recovery_1	negative	134.044842716	735.778198352	733855881.4	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_1	negative	133.06075433	667.643542766	731409409.8	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_cold_1	negative	133.06075433	667.643542766	731409409.8	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-control_recovery_1	negative	134.044842716	735.778198352	727614271.5	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_recovery.2	negative	120.065516217	597.617158274	716464691.5	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_recovery.2	negative	120.065516217	597.617158274	716464691.5	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_recovery_1	negative	134.044842716	735.778198352	694702126.9	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-high_light_recovery_1	negative	134.044842716	735.778198352	694702126.9	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-high_light_1	negative	166.086252765	407.956289771	693862129.7	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-control_recovery_1	negative	120.065516217	597.617158274	686200625.1	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-control_recovery_1	negative	120.065516217	597.617158274	686200625.1	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_cold_recovery_2	negative	120.065516217	597.617158274	677462758.2	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_recovery.2	negative	166.086252765	407.956289771	673580756.3	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_1	negative	133.06075433	667.643542766	667229135.5	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_recovery_1	negative	166.086252765	407.956289771	657024897.5	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_recovery_1	negative	166.086252765	407.956289771	657024897.5	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-high_light_recovery_2	negative	134.044842716	735.778198352	653192183.3	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-drought_recovery_3	negative	133.06075433	667.643542766	647320029.9	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_recovery_1	negative	120.065516217	597.617158274	635458193.6	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_cold_recovery_1	negative	120.065516217	597.617158274	635458193.6	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_recovery.3	negative	120.065516217	597.617158274	632781992.2	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_cold_recovery_3	negative	120.065516217	597.617158274	630500675.9	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_recovery_3	negative	134.044842716	735.778198352	619076066.6	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-drought_recovery_1	negative	133.06075433	667.643542766	616195740.2	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-drought_recovery_1	negative	133.06075433	667.643542766	616195740.2	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-drought_recovery_2	negative	133.06075433	667.643542766	616014924.4	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-drought_2	negative	166.086252765	407.956289771	611170532.1	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-high_light_recovery_1	negative	134.044842716	735.778198352	603595209.1	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_recovery_1	negative	120.065516217	597.617158274	598411146.8	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_recovery_1	negative	182.081257963	546.453034008	595263714.4	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_recovery_1	negative	182.081257963	546.453034008	595263714.4	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-drought_recovery_1	negative	133.06075433	667.643542766	585252266.3	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-high_light_1	negative	166.086252765	407.956289771	578835879.3	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-high_light_1	negative	166.086252765	407.956289771	578835879.3	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_cold_2	negative	166.086252765	407.956289771	574539134.4	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-high_light_recovery_3	negative	120.065516217	597.617158274	571577585.6	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_recovery_3	negative	182.081257963	546.453034008	571303609.7	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_1	negative	120.065516217	597.617158274	564786036.3	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_recovery_1	negative	120.065516217	597.617158274	562510624.5	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_2	negative	182.081257963	546.453034008	554612269.4	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_recovery_2	negative	134.044842716	735.778198352	552837109.3	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-control_recovery_1	negative	120.065516217	597.617158274	541832758.0	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_recovery_1	negative	134.044842716	735.778198352	541772290.3	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_heat_recovery_1	negative	134.044842716	735.778198352	541772290.3	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_2	negative	182.081257963	546.453034008	538981769.9	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_2	negative	166.086252765	407.956289771	531092877.4	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_2	negative	120.065516217	597.617158274	517839023.9	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_3	negative	182.081257963	546.453034008	512411805.2	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_3	negative	166.086252765	407.956289771	511552630.8	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_2	negative	205.096997826	439.957815819	502498497.5	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_1	negative	166.086252765	407.956289771	497373553.6	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_1	negative	166.086252765	407.956289771	497373553.6	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_1	negative	182.081257963	546.453034008	490344244.3	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_1	negative	182.081257963	546.453034008	490344244.3	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_3	negative	182.081257963	546.453034008	481794032.0	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_2	negative	205.096997826	439.957815819	478523333.0	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_recovery_1	negative	166.086252765	407.956289771	477504240.2	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_recovery.2	negative	159.076469963	709.608605344	472773176.5	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_3	negative	205.096997826	439.957815819	472357800.7	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-high_light_recovery_1	negative	120.065516217	597.617158274	469299904.2	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_recovery_1	negative	120.065516217	597.617158274	469299904.2	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_1	negative	120.065516217	597.617158274	467638155.1	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_recovery_1	negative	182.081257963	546.453034008	466865144.7	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_recovery_1	negative	134.044842716	735.778198352	453403694.9	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_heat_3	negative	205.096997826	439.957815819	452730867.4	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_1	negative	166.086252765	407.956289771	448460651.8	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_cold_1	negative	166.086252765	407.956289771	446439614.5	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_cold_1	negative	166.086252765	407.956289771	446439614.5	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_1	negative	120.065516217	597.617158274	443230938.4	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_1	negative	120.065516217	597.617158274	443230938.4	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_2	negative	120.065516217	597.617158274	439762124.2	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_3	negative	120.065516217	597.617158274	435613524.6	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_1	negative	120.065516217	597.617158274	435087631.6	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_1	negative	120.065516217	597.617158274	435087631.6	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_1	negative	205.096997826	439.957815819	432703677.9	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_heat_1	negative	205.096997826	439.957815819	432703677.9	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_heat_recovery_1	negative	268.102707317	340.036339548	432595397.2	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_3	negative	166.086252765	407.956289771	432489476.8	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-high_light_recovery_1	negative	120.065516217	597.617158274	428165290.4	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_recovery_3	negative	268.102707317	340.036339548	426589139.2	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_1	negative	182.081257963	546.453034008	426565208.1	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_1	negative	182.081257963	546.453034008	426565208.1	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_recovery_1	negative	268.102707317	340.036339548	425084895.0	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_heat_recovery_1	negative	268.102707317	340.036339548	425084895.0	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_heat_1	negative	182.081257963	546.453034008	419639157.6	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_3	negative	166.086252765	407.956289771	416883400.7	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_recovery_2	negative	268.102707317	340.036339548	416070148.7	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_recovery_1	negative	166.086252765	407.956289771	415044545.1	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-high_light_recovery_2	negative	120.065516217	597.617158274	408156836.6	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_recovery_2	negative	166.086252765	407.956289771	402041268.2	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-high_light_3	negative	120.065516217	597.617158274	397862615.5	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_recovery_1	negative	166.086252765	407.956289771	394616553.7	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_recovery_1	negative	166.086252765	407.956289771	394616553.7	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_1	negative	205.096997826	439.957815819	392704473.1	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_1	negative	205.096997826	439.957815819	392704473.1	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-control_3	negative	134.044842716	735.778198352	391701260.5	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-drought_1	negative	120.065516217	597.617158274	376240266.6	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_recovery.2	negative	166.086252765	407.956289771	371246493.6	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_recovery.2	negative	166.086252765	407.956289771	371246493.6	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_1	negative	166.086252765	407.956289771	368417611.7	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-control_3	negative	120.065516217	597.617158274	368085166.6	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_recovery_3	negative	166.086252765	407.956289771	366763847.8	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_recovery_3	negative	258.10859871	766.684498265	364316254.0	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_3	negative	166.086252765	407.956289771	359333387.6	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_2	negative	134.044842716	735.778198352	356626072.9	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_1	negative	166.086252765	407.956289771	347896308.4	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_1	negative	205.096997826	439.957815819	347229899.9	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_1	negative	166.086252765	407.956289771	344501443.6	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_1	negative	166.086252765	407.956289771	344501443.6	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_cold_3	negative	134.044842716	735.778198352	332452367.9	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-high_light_2	negative	134.044842716	735.778198352	330983575.4	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-drought_3	negative	134.044842716	735.778198352	326065731.4	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_recovery.2	negative	159.076469963	709.608605344	324628450.2	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_recovery.2	negative	159.076469963	709.608605344	324628450.2	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-control_1	negative	134.044842716	735.778198352	320829879.1	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-control_1	negative	134.044842716	735.778198352	320829879.1	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_1	negative	134.044842716	735.778198352	319195665.2	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_1	negative	134.044842716	735.778198352	319195665.2	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_heat_recovery_2	negative	258.10859871	766.684498265	318006999.3	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_cold_1	negative	134.044842716	735.778198352	316776086.3	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_recovery_3	negative	134.044842716	735.778198352	314328372.3	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-drought_1	negative	134.044842716	735.778198352	313311137.4	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-drought_1	negative	134.044842716	735.778198352	313311137.4	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-control_recovery_3	negative	159.076469963	709.608605344	312018804.4	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-control_1	negative	120.065516217	597.617158274	310588038.9	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-control_1	negative	120.065516217	597.617158274	310588038.9	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_cold_2	negative	134.044842716	735.778198352	308358541.4	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_3	negative	120.065516217	597.617158274	308272180.2	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_recovery_1	negative	258.10859871	766.684498265	306042862.8	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_heat_recovery_1	negative	258.10859871	766.684498265	306042862.8	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_2	negative	166.086252765	407.956289771	305753331.6	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_recovery_3	negative	120.065516217	597.617158274	303223008.4	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_2	negative	120.065516217	597.617158274	300291194.0	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_1	negative	134.044842716	735.778198352	297119318.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-high_light_1	negative	134.044842716	735.778198352	297119318.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-high_light_1	negative	134.044842716	735.778198352	296408031.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_3	negative	120.065516217	597.617158274	294734109.7	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-control_2	negative	134.044842716	735.778198352	288401062.2	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_1	negative	120.065516217	597.617158274	287677517.4	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_1	negative	120.065516217	597.617158274	287677517.4	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_recovery_3	negative	205.096997826	439.957815819	286294944.3	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_recovery_2	negative	120.065516217	597.617158274	285925153.5	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_cold_2	negative	120.065516217	597.617158274	282783672.2	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_cold_1	negative	120.065516217	597.617158274	282664566.6	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_cold_1	negative	120.065516217	597.617158274	282664566.6	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_recovery_1	negative	120.065516217	597.617158274	281180726.7	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_recovery_1	negative	120.065516217	597.617158274	281180726.7	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-control_2	negative	120.065516217	597.617158274	279974604.8	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_recovery_2	negative	134.044842716	735.778198352	276496245.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_1	negative	120.065516217	597.617158274	270475917.9	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_3	negative	134.044842716	735.778198352	263966347.7	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-control_recovery_3	negative	166.086252765	407.956289771	263923422.5	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_recovery_1	negative	134.044842716	735.778198352	263789010.2	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_recovery_1	negative	134.044842716	735.778198352	263789010.2	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-control_recovery_2	negative	159.076469963	709.608605344	262971501.6	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_1	negative	134.044842716	735.778198352	257241607.9	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_1	negative	268.102707317	340.036339548	255051220.3	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_cold_1	negative	120.065516217	597.617158274	254469178.0	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_recovery_1	negative	120.065516217	597.617158274	254394018.2	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_recovery_1	negative	159.076469963	709.608605344	253718958.7	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_recovery.2	negative	116.034275331	671.712362191	253342864.8	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_recovery_1	negative	159.076469963	709.608605344	252120735.0	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-control_recovery_1	negative	159.076469963	709.608605344	252120735.0	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_recovery.3	negative	159.076469963	709.608605344	247393215.4	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_heat_1	negative	182.081257963	546.453034008	243289322.9	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_recovery_1	negative	258.10859871	766.684498265	235805335.2	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_recovery_1	negative	166.086252765	407.956289771	232989211.1	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-control_recovery_1	negative	166.086252765	407.956289771	231317935.8	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-control_recovery_1	negative	166.086252765	407.956289771	231317935.8	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_recovery_3	negative	134.044842716	735.778198352	231202720.1	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_recovery_1	negative	205.096997826	439.957815819	229878743.5	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_heat_recovery_1	negative	205.096997826	439.957815819	229878743.5	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_recovery_1	negative	166.086252765	407.956289771	228082780.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_cold_recovery_3	negative	159.076469963	709.608605344	225094096.9	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_cold_recovery_1	negative	166.086252765	407.956289771	223085360.8	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_cold_recovery_1	negative	166.086252765	407.956289771	223085360.8	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_1	negative	205.096997826	439.957815819	222884054.3	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_recovery_2	negative	166.086252765	407.956289771	222716117.9	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_2	negative	134.044842716	735.778198352	222232031.2	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-drought_recovery_3	negative	130.086348069	412.147868481	221956246.8	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_3	negative	134.044842716	735.778198352	220939588.5	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_3	negative	134.044842716	735.778198352	218892797.6	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_recovery_3	negative	166.086252765	407.956289771	218457184.5	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-control_recovery_1	negative	166.086252765	407.956289771	215579410.9	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-control_recovery_2	negative	166.086252765	407.956289771	214450974.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_recovery_1	negative	205.096997826	439.957815819	211683651.0	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_recovery_2	negative	159.076469963	709.608605344	210937291.8	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_2	negative	134.044842716	735.778198352	210899840.9	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_recovery.3	negative	166.086252765	407.956289771	207169513.4	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_recovery.2	negative	124.039378692	163.709299272	204854427.2	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	116.034275331	671.712362191	202306711.4	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_cold_recovery.2	negative	116.034275331	671.712362191	202306711.4	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_recovery_1	negative	134.044842716	735.778198352	200542413.3	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-high_light_recovery_3	negative	166.086252765	407.956289771	195398875.6	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_cold_recovery_1	negative	159.076469963	709.608605344	195027249.5	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_cold_recovery_1	negative	159.076469963	709.608605344	195027249.5	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_recovery_3	negative	159.076469963	709.608605344	194023728.6	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_1	negative	134.044842716	735.778198352	192240893.1	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_1	negative	134.044842716	735.778198352	192240893.1	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_recovery_2	negative	205.096997826	439.957815819	191657635.1	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-control_recovery_2	negative	124.039378692	163.709299272	189513426.9	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_3	negative	134.044842716	735.778198352	188552430.7	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_1	negative	134.044842716	735.778198352	188230501.6	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_1	negative	134.044842716	735.778198352	188230501.6	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_recovery_1	negative	116.034275331	671.712362191	187761436.5	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_cold_2	negative	134.044842716	735.778198352	186774875.5	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-drought_recovery_1	negative	134.044842716	735.778198352	183626966.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-drought_recovery_1	negative	134.044842716	735.778198352	183626966.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_2	negative	268.102707317	340.036339548	183298721.2	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_recovery_3	negative	116.034275331	671.712362191	182353579.2	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_recovery_2	negative	134.044842716	735.778198352	181782536.6	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_1	negative	268.102707317	340.036339548	181569256.2	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_heat_1	negative	268.102707317	340.036339548	181569256.2	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_recovery_1	negative	159.076469963	709.608605344	181371899.0	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_recovery.2	negative	124.039346937	606.311521329	179066499.6	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	166.086252765	407.956289771	178721754.5	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-high_light_recovery_1	negative	166.086252765	407.956289771	178721754.5	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_1	negative	134.044842716	735.778198352	175360399.8	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_heat_1	negative	134.044842716	735.778198352	175360399.8	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_recovery_2	negative	258.10859871	766.684498265	175262487.6	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_recovery.2	negative	258.10859871	766.684498265	173898035.4	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_recovery_2	negative	166.086252765	407.956289771	173195380.6	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-high_light_recovery_3	negative	258.10859871	766.684498265	169709142.1	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-control_3	negative	127.039055675	732.713879133	169626508.1	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-control_recovery_3	negative	124.039378692	163.709299272	168468973.8	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	124.039378692	163.709299272	168216265.8	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	124.039378692	163.709299272	168216265.8	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	166.086252765	407.956289771	167571007.3	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-control_3	negative	166.086252765	407.956289771	166364755.5	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_recovery.3	negative	116.034275331	671.712362191	165815832.7	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_recovery_2	negative	116.034275331	671.712362191	163089349.2	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_recovery_1	negative	116.034275331	671.712362191	160438999.8	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_recovery_1	negative	116.034275331	671.712362191	160438999.8	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_cold_recovery_1	negative	258.10859871	766.684498265	159297982.3	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_recovery.2	negative	124.039378692	163.709299272	157570634.6	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	124.039378692	163.709299272	157570634.6	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	134.044842716	735.778198352	156977040.9	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_recovery_1	negative	258.10859871	766.684498265	152416795.4	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_cold_recovery_1	negative	258.10859871	766.684498265	152416795.4	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_heat_recovery_2	negative	130.065229003	287.187393972	149868025.9	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_recovery_1	negative	159.076469963	709.608605344	149050359.8	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-control_recovery_3	negative	258.10859871	766.684498265	148541917.5	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_heat_1	negative	134.044842716	735.778198352	146930040.8	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_recovery_2	negative	116.034275331	671.712362191	146815761.9	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_recovery_1	negative	124.039378692	163.709299272	146666396.8	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_3	negative	116.034275331	671.712362191	146133216.8	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_recovery_3	negative	130.065229003	287.187393972	145004398.3	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_recovery_3	negative	116.034275331	671.712362191	139566657.2	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_recovery_1	negative	134.044842716	735.778198352	137895641.4	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_recovery.3	negative	124.039378692	163.709299272	137036181.4	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	207.065138369	362.018787023	136800108.9	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_recovery_1	negative	116.034275331	671.712362191	135874071.0	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_cold_recovery.2	negative	258.10859871	766.684498265	134646575.1	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_recovery.2	negative	258.10859871	766.684498265	134646575.1	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_recovery_1	negative	159.076469963	709.608605344	133601526.0	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_recovery_1	negative	159.076469963	709.608605344	133601526.0	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_recovery.2	negative	245.095407817	720.45724836	132593089.5	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-high_light_recovery_1	negative	258.10859871	766.684498265	131810438.2	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_recovery_1	negative	258.10859871	766.684498265	131810438.2	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_recovery_1	negative	124.039378692	163.709299272	130821295.4	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	116.034275331	671.712362191	129638216.6	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_cold_recovery_1	negative	116.034275331	671.712362191	129638216.6	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_recovery_1	negative	258.10859871	766.684498265	128709032.4	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-control_recovery_1	negative	258.10859871	766.684498265	128709032.4	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_recovery_3	negative	116.034275331	671.712362191	128092827.1	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_recovery_1	negative	130.065229003	287.187393972	127987275.8	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_heat_recovery_1	negative	130.065229003	287.187393972	127987275.8	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-control_recovery_2	negative	124.039346937	606.311521329	127308126.3	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-drought_3	negative	159.076469963	709.608605344	125988589.1	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-control_1	negative	166.086252765	407.956289771	124727770.7	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-control_1	negative	166.086252765	407.956289771	124727770.7	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_recovery_2	negative	121.064869668	326.093475744	124268736.0	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-drought_recovery_1	negative	268.102707317	340.036339548	122842100.9	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_recovery_3	negative	258.10859871	766.684498265	122689916.3	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_recovery_1	negative	258.10859871	766.684498265	121517743.6	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_recovery.2	negative	124.039346937	606.311521329	120581314.8	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	124.039346937	606.311521329	120581314.8	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	258.10859871	766.684498265	118862954.3	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-control_recovery_2	negative	143.081552215	413.938579194	118759088.4	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-control_recovery_2	negative	258.10859871	766.684498265	118722225.5	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_recovery_1	negative	258.10859871	766.684498265	118451403.2	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_heat_recovery_2	negative	116.034275331	671.712362191	118168047.2	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_1	negative	159.076469963	709.608605344	117038171.7	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_heat_recovery_2	negative	205.096997826	439.957815819	116179147.4	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_1	negative	134.044842716	735.778198352	115296737.3	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-drought_recovery_1	negative	268.102707317	340.036339548	114644871.2	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_recovery_1	negative	268.102707317	340.036339548	114644871.2	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_1	negative	159.076469963	709.608605344	113928606.5	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_1	negative	159.076469963	709.608605344	113928606.5	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_recovery_3	negative	268.102707317	340.036339548	113633371.9	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-high_light_recovery_3	negative	124.039378692	163.709299272	112377111.2	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	146.060090727	528.080048428	111605088.3	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_recovery.3	negative	258.10859871	766.684498265	111590286.7	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-drought_3	negative	130.065229003	287.187393972	111424838.3	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_recovery_3	negative	182.081257963	546.453034008	111210201.9	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_recovery_1	negative	207.065138369	362.018787023	109217193.4	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_recovery_1	negative	207.065138369	362.018787023	109217193.4	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_recovery_1	negative	116.034275331	671.712362191	109182093.2	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_recovery_1	negative	116.034275331	671.712362191	109182093.2	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_recovery_2	negative	207.065138369	362.018787023	108979518.1	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_recovery_1	negative	124.039378692	163.709299272	108870471.4	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_2	negative	159.076469963	709.608605344	108750075.5	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_recovery_1	negative	124.039378692	163.709299272	108007053.5	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	124.039378692	163.709299272	108007053.5	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_3	negative	143.081552215	413.938579194	107916472.6	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_cold_recovery_3	negative	124.039378692	163.709299272	107681979.9	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_2	negative	268.102707317	340.036339548	107459140.7	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_recovery_3	negative	205.096997826	439.957815819	106657906.6	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_heat_3	negative	268.102707317	340.036339548	106357827.0	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_heat_3	negative	207.065138369	362.018787023	105580449.2	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_cold_recovery_2	negative	124.039378692	163.709299272	105452136.5	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	121.064869668	326.093475744	104457721.1	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_heat_recovery_1	negative	121.064869668	326.093475744	104457721.1	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_recovery_2	negative	258.10859871	766.684498265	104204428.8	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_heat_recovery_2	negative	182.081257963	546.453034008	103364675.3	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_recovery_2	negative	124.039378692	163.709299272	102773577.8	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	124.039378692	163.709299272	102536191.7	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	124.039378692	163.709299272	102536191.7	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_3	negative	207.065138369	362.018787023	101739205.9	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-drought_recovery_3	negative	207.065138369	362.018787023	99816037.75	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_recovery_1	negative	143.081552215	413.938579194	99597125.09	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-control_recovery_1	negative	143.081552215	413.938579194	99597125.09	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_2	negative	130.065229003	287.187393972	99484052.17	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_recovery_1	negative	205.096997826	439.957815819	98967102.6	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_recovery_1	negative	205.096997826	439.957815819	98967102.6	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-control_2	negative	166.086252765	407.956289771	98886367.95	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_2	negative	159.076469963	709.608605344	98759058.75	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-control_recovery_1	negative	124.039346937	606.311521329	98435139.32	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	124.039346937	606.311521329	98435139.32	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	159.076469963	709.608605344	98030773.75	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_heat_2	negative	207.065138369	362.018787023	97738407.58	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_1	negative	207.065138369	362.018787023	97018014.81	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_1	negative	207.065138369	362.018787023	97018014.81	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_3	negative	207.065138369	362.018787023	96462848.34	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_recovery_3	negative	124.039346937	606.311521329	96201387.98	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	116.034275331	671.712362191	95965671.04	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_1	negative	130.065229003	287.187393972	94974943.28	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_1	negative	130.065229003	287.187393972	94974943.28	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_heat_2	negative	207.065138369	362.018787023	94693685.03	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_recovery_3	negative	121.064869668	326.093475744	94641663.01	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_recovery_1	negative	124.039378692	163.709299272	94474458.69	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	121.064869668	326.093475744	94462764.15	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_1	negative	207.065138369	362.018787023	94361640.33	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_recovery_2	negative	138.091419931	326.528822771	93692136.59	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_2	negative	207.065138369	362.018787023	92940118.75	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_recovery_1	negative	116.034275331	671.712362191	92534927.29	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-high_light_recovery_1	negative	116.034275331	671.712362191	92534927.29	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_cold_recovery_1	negative	124.039346937	606.311521329	91740115.87	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	207.065138369	362.018787023	91576430.91	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_recovery.2	negative	245.095407817	720.45724836	91011773.33	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_recovery.2	negative	245.095407817	720.45724836	91011773.33	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_recovery.3	negative	124.039346937	606.311521329	90937329.01	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_3	negative	130.065229003	287.187393972	89226082.69	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_heat_recovery_1	negative	130.065229003	287.187393972	89089403.13	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_recovery_1	negative	182.081257963	546.453034008	88930239.68	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_recovery_1	negative	182.081257963	546.453034008	88930239.68	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_1	negative	207.065138369	362.018787023	88535795.49	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_1	negative	207.065138369	362.018787023	88535795.49	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_cold_2	negative	207.065138369	362.018787023	88509921.13	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_cold_recovery_2	negative	130.086348069	412.147868481	87363211.02	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	207.065138369	362.018787023	86673264.86	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_1	negative	207.065138369	362.018787023	86673264.86	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_3	negative	207.065138369	362.018787023	86583598.16	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_2	negative	116.034275331	671.712362191	86307655.85	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_cold_3	negative	207.065138369	362.018787023	85219875.51	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_recovery_3	negative	159.076469963	709.608605344	84644453.38	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_2	negative	207.065138369	362.018787023	84640730.9	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_recovery_3	negative	130.086348069	412.147868481	84597316.42	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	146.060090727	528.080048428	84500084.85	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_recovery.2	negative	146.060090727	528.080048428	84500084.85	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_recovery_1	negative	143.081552215	413.938579194	83928507.67	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	595.16565303	510.108375093	83154537.32	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_recovery_3	negative	130.065229003	287.187393972	83093373.34	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-control_recovery_2	negative	245.095407817	720.45724836	82858355.79	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_recovery.2	negative	143.081552215	413.938579194	82345301.9	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-control_2	negative	159.076469963	709.608605344	82181807.57	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_cold_1	negative	207.065138369	362.018787023	81959855.04	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_cold_1	negative	207.065138369	362.018787023	81959855.04	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_recovery_3	negative	207.065138369	362.018787023	81871953.2	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_recovery_2	negative	165.054706951	545.894258025	81414892.51	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_3	negative	207.065138369	362.018787023	81017423.35	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_recovery_3	negative	245.095407817	720.45724836	81016342.51	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_2	negative	258.10859871	766.684498265	80952484.82	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-drought_2	negative	182.081257963	546.453034008	80873990.55	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_cold_1	negative	207.065138369	362.018787023	80529550.68	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_1	negative	207.065138369	362.018787023	80529550.68	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_recovery_3	negative	124.039346937	606.311521329	80078622.29	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	130.086348069	412.147868481	80057759.51	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	130.086348069	412.147868481	80057759.51	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	143.081552215	413.938579194	80019291.68	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	143.081552215	413.938579194	80019291.68	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_heat_recovery_3	negative	207.065138369	362.018787023	79712856.53	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_recovery_2	negative	130.065229003	287.187393972	79451027.26	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_2	negative	258.10859871	766.684498265	79298470.95	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-drought_recovery_1	negative	207.065138369	362.018787023	79254248.94	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-drought_recovery_1	negative	207.065138369	362.018787023	79254248.94	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_recovery_1	negative	138.091419931	326.528822771	78261351.38	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_heat_recovery_1	negative	138.091419931	326.528822771	78261351.38	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_2	negative	207.065138369	362.018787023	78025069.56	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_recovery_3	negative	146.060090727	528.080048428	77829866.58	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-drought_1	negative	182.081257963	546.453034008	77475828.95	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-drought_1	negative	182.081257963	546.453034008	77475828.95	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_3	negative	268.102707317	340.036339548	77100113.36	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_cold_1	negative	207.065138369	362.018787023	76979984.32	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_recovery.3	negative	146.060090727	528.080048428	76887865.71	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_recovery_1	negative	130.065229003	287.187393972	76591816.52	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_3	negative	182.081257963	546.453034008	76263758.88	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_recovery_1	negative	116.034275331	671.712362191	75962556.73	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_recovery_1	negative	124.039350582	345.785256941	75783087.28	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	207.065138369	362.018787023	75395661.15	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_recovery_1	negative	207.065138369	362.018787023	75395661.15	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_recovery_2	negative	124.039350582	345.785256941	75383970.32	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	182.081257963	546.453034008	75289737.43	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-drought_recovery_2	negative	207.065138369	362.018787023	75172356.03	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_recovery_1	negative	268.102707317	340.036339548	75011394.26	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_1	negative	159.076469963	709.608605344	74846135.13	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-control_1	negative	159.076469963	709.608605344	74846135.13	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_1	negative	207.065138369	362.018787023	74828360.37	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-drought_1	negative	207.065138369	362.018787023	74828360.37	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_recovery_1	negative	207.065138369	362.018787023	74792589.11	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_2	negative	124.039350582	345.785256941	74561071.3	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_2	negative	116.034275331	671.712362191	74209648.95	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_3	negative	116.034275331	671.712362191	74201696.77	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_recovery_1	negative	205.096997826	439.957815819	74064253.79	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_1	negative	130.065229003	287.187393972	74015939.41	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-control_recovery_2	negative	595.16565303	510.108375093	74015740.32	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_cold_recovery.3	negative	143.081552215	413.938579194	73784065.47	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_recovery_2	negative	116.034275331	671.712362191	73549398.09	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_3	negative	207.065138369	362.018787023	72654484.57	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_recovery_1	negative	245.095407817	720.45724836	72190314.38	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-control_recovery_1	negative	245.095407817	720.45724836	72190314.38	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_1	negative	207.065138369	362.018787023	72149768.48	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_recovery_1	negative	143.081552215	413.938579194	72115814.28	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	138.091419931	326.528822771	71993787.27	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_heat_recovery_1	negative	130.065229003	287.187393972	71813477.5	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_recovery_1	negative	130.065229003	287.187393972	71813477.5	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-control_recovery_1	negative	124.039346937	606.311521329	71795903.71	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_2	negative	268.102707317	340.036339548	71746113.5	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_heat_recovery_2	negative	207.065138369	362.018787023	71681537.81	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_recovery.3	negative	245.095407817	720.45724836	71250943.19	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_recovery.2	negative	174.076085448	664.71059456	71204525.86	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_1	negative	116.034275331	671.712362191	70849429.84	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_1	negative	116.034275331	671.712362191	70849429.84	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_recovery_1	negative	146.060090727	528.080048428	70771257.27	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_heat_2	negative	268.102707317	340.036339548	70424530.97	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_2	negative	124.039350582	345.785256941	70384990.58	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	268.102707317	340.036339548	70355994.39	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_heat_3	negative	116.034275331	671.712362191	70337182.52	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_recovery_2	negative	116.034275331	671.712362191	70271776.48	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_recovery_1	negative	116.034275331	671.712362191	69811575.03	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_recovery_1	negative	146.060090727	528.080048428	69768666.31	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-control_recovery_1	negative	146.060090727	528.080048428	69768666.31	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_recovery_3	negative	143.081552215	413.938579194	69753139.18	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_1	negative	268.102707317	340.036339548	69278799.26	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-high_light_1	negative	268.102707317	340.036339548	69278799.26	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_1	negative	268.102707317	340.036339548	69227325.68	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_1	negative	268.102707317	340.036339548	69227325.68	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_cold_recovery_1	negative	245.095407817	720.45724836	69191287.26	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_heat_recovery_3	negative	138.091419931	326.528822771	69098130.29	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_1	negative	258.10859871	766.684498265	69065362.52	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-drought_1	negative	258.10859871	766.684498265	69065362.52	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-control_3	negative	124.039350582	345.785256941	69010028.58	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_2	negative	124.039350582	345.785256941	68785335.61	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	124.039350582	345.785256941	68621909.34	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	124.039350582	345.785256941	68621909.34	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_3	negative	121.064869668	326.093475744	68346313.59	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_cold_1	negative	124.039350582	345.785256941	68194044.13	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	124.039350582	345.785256941	68194044.13	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_2	negative	124.039346937	606.311521329	68138109.01	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	116.034275331	671.712362191	68001458.03	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_1	negative	207.065138369	362.018787023	67562505.72	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_1	negative	207.065138369	362.018787023	67562505.72	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_2	negative	268.102707317	340.036339548	67412150.57	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_2	negative	225.075448787	353.021782816	66902467.73	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_cold_1	negative	124.039350582	345.785256941	66890594.4	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_3	negative	115.086648151	417.997247466	66703113.26	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-drought_recovery_1	negative	258.10859871	766.684498265	66702085.94	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_3	negative	124.039350582	345.785256941	66535656.03	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_3	negative	268.102707317	340.036339548	66461327.35	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_1	negative	124.039350582	345.785256941	66444008.62	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	124.039350582	345.785256941	66444008.62	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_3	negative	258.10859871	766.684498265	65935092.34	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_recovery.2	negative	174.076085448	664.71059456	65718989.55	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_recovery.2	negative	174.076085448	664.71059456	65718989.55	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_recovery.2	negative	210.076174871	556.414916611	65682923.57	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_3	negative	268.102707317	340.036339548	65579869.15	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_1	negative	258.10859871	766.684498265	65539368.53	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_heat_1	negative	207.065138369	362.018787023	65333252.21	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_1	negative	116.034275331	671.712362191	65219909.67	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_1	negative	116.034275331	671.712362191	65219909.67	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_recovery_3	negative	595.16565303	510.108375093	65088426.83	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_cold_recovery_1	negative	146.060090727	528.080048428	65007300.58	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_2	negative	130.065229003	287.187393972	64984717.86	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_recovery_1	negative	124.039346937	606.311521329	64616404.79	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	124.039346937	606.311521329	64616404.79	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.3	negative	174.076085448	664.71059456	64494623.2	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_recovery_1	negative	165.054706951	545.894258025	64298074.61	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_recovery_1	negative	165.054706951	545.894258025	64298074.61	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-control_1	negative	127.039055675	732.713879133	64291357.5	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-control_1	negative	127.039055675	732.713879133	64291357.5	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	130.065229003	287.187393972	64202503.85	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_recovery_1	negative	130.065229003	287.187393972	64202503.85	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_2	negative	159.076469963	709.608605344	64089154.22	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-control_3	negative	225.075448787	353.021782816	64084914.0	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_recovery_3	negative	116.034275331	671.712362191	63989947.67	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_cold_recovery.2	negative	268.102707317	340.036339548	63693700.95	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_2	negative	207.065138369	362.018787023	63657091.25	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_recovery_2	negative	159.076469963	709.608605344	63583870.54	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_1	negative	124.039350582	345.785256941	63485405.07	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	268.102707317	340.036339548	63324133.86	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_recovery_3	negative	174.076085448	664.71059456	63277146.39	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-control_recovery_3	negative	174.076085448	664.71059456	63153957.85	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-control_3	negative	159.076469963	709.608605344	63088866.56	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_cold_recovery_3	negative	245.095407817	720.45724836	63056155.73	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-control_recovery_1	negative	595.16565303	510.108375093	62918097.02	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_recovery_1	negative	595.16565303	510.108375093	62918097.02	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_recovery_1	negative	207.065138369	362.018787023	62774353.05	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-drought_3	negative	258.10859871	766.684498265	62358248.08	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_cold_3	negative	124.039350582	345.785256941	62056440.87	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	595.16565303	510.108375093	61982122.12	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_cold_recovery.2	negative	595.16565303	510.108375093	61982122.12	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_3	negative	258.10859871	766.684498265	61601503.04	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_recovery_1	negative	174.076085448	664.71059456	61457819.58	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_recovery_3	negative	595.16565303	510.108375093	61450643.62	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_recovery_1	negative	225.075448787	353.021782816	61297851.64	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_1	negative	258.10859871	766.684498265	61238878.38	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_heat_1	negative	258.10859871	766.684498265	61238878.38	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_cold_1	negative	159.076469963	709.608605344	61018575.45	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_cold_1	negative	159.076469963	709.608605344	61018575.45	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_recovery.2	negative	130.065229003	287.187393972	60963192.71	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_cold_recovery.2	negative	130.065229003	287.187393972	60963192.71	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_recovery_2	negative	130.065229003	287.187393972	60868959.85	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_recovery_2	negative	245.095407817	720.45724836	60722745.97	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-control_recovery_2	negative	146.060090727	528.080048428	60704875.1	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_heat_recovery_3	negative	165.054706951	545.894258025	60665761.42	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-drought_1	negative	124.039378692	163.709299272	60661951.09	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_2	negative	121.064869668	326.093475744	60459565.46	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-control_recovery_2	negative	174.076085448	664.71059456	60432030.72	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-control_3	negative	145.049624973	732.288711427	60230525.87	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_3	negative	245.095407817	720.45724836	60161536.07	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_3	negative	159.076469963	709.608605344	60134417.2	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_heat_recovery_2	negative	174.076085448	664.71059456	60131815.3	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_2	negative	124.039350582	345.785256941	60129908.89	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_3	negative	146.060090727	528.080048428	59761262.92	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_heat_3	negative	121.064869668	326.093475744	59660721.83	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_recovery_3	negative	130.065229003	287.187393972	59456664.3	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_2	negative	130.086348069	412.147868481	59238119.89	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	124.039346937	606.311521329	59227231.4	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	124.039346937	606.311521329	59227231.4	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	159.076469963	709.608605344	59132869.29	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_heat_recovery_1	negative	159.076469963	709.608605344	59132869.29	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_cold_recovery_3	negative	124.039346937	606.311521329	59049619.02	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_2	negative	130.065229003	287.187393972	58946268.44	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_1	negative	207.065138369	362.018787023	58890477.78	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_2	negative	121.064869668	326.093475744	58856247.01	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_1	negative	159.076469963	709.608605344	58832154.92	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_recovery_1	negative	258.10859871	766.684498265	58827317.94	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-drought_recovery_1	negative	258.10859871	766.684498265	58827317.94	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-drought_2	negative	124.039378692	163.709299272	58795674.6	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_2	negative	268.102707317	340.036339548	58788178.77	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_2	negative	268.102707317	340.036339548	58379210.62	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_recovery_2	negative	595.16565303	510.108375093	58366674.42	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_recovery_1	negative	174.076085448	664.71059456	58136827.55	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-control_recovery_1	negative	174.076085448	664.71059456	58136827.55	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_recovery_3	negative	146.060090727	528.080048428	57834843.42	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_recovery_2	negative	146.060090727	528.080048428	57721181.05	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_2	negative	205.096997826	439.957815819	57519948.02	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_1	negative	268.102707317	340.036339548	57478624.85	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_cold_1	negative	268.102707317	340.036339548	57478624.85	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_recovery_2	negative	115.086648151	417.997247466	57459994.27	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_recovery_1	negative	124.039346937	606.311521329	57402531.26	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.3	negative	130.065229003	287.187393972	57364675.6	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_1	negative	225.075448787	353.021782816	56995292.2	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_1	negative	268.102707317	340.036339548	56989527.98	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_1	negative	268.102707317	340.036339548	56697724.87	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_1	negative	268.102707317	340.036339548	56697724.87	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_cold_3	negative	268.102707317	340.036339548	56658167.8	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_2	negative	165.054706951	545.894258025	56642619.19	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_recovery_2	negative	127.039055675	732.713879133	56536275.67	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_heat_recovery_1	negative	121.064869668	326.093475744	56427942.75	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_recovery_1	negative	121.064869668	326.093475744	56427942.75	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_recovery_2	negative	124.039346937	606.311521329	56368060.82	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_3	negative	130.065229003	287.187393972	56080959.59	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-control_3	negative	124.039378692	163.709299272	55874282.49	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_2	negative	112.050591326	558.97645159	55834724.47	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_cold_recovery_3	negative	595.16565303	510.108375093	55588753.81	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_cold_recovery_1	negative	146.060090727	528.080048428	55286644.78	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_recovery_1	negative	146.060090727	528.080048428	55286644.78	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_1	negative	124.039350582	345.785256941	55096324.55	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	124.039350582	345.785256941	55096324.55	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	116.034275331	671.712362191	55000220.56	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_recovery_1	negative	116.034275331	671.712362191	55000220.56	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_2	negative	124.039350582	345.785256941	54772116.54	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_3	negative	121.064869668	326.093475744	54755437.42	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_3	negative	124.039350582	345.785256941	54719067.87	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_3	negative	124.039350582	345.785256941	54698670.42	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	268.102707317	340.036339548	54695292.66	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_recovery_1	negative	268.102707317	340.036339548	54695292.66	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_heat_1	negative	121.064869668	326.093475744	54617060.09	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_heat_1	negative	121.064869668	326.093475744	54617060.09	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_recovery_1	negative	130.065229003	287.187393972	54530310.89	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_recovery_1	negative	130.065229003	287.187393972	54530310.89	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_recovery_2	negative	174.076085448	664.71059456	54495836.15	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_2	negative	258.10859871	766.684498265	54428158.91	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_cold_recovery_1	negative	245.095407817	720.45724836	54411663.51	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_recovery_1	negative	245.095407817	720.45724836	54411663.51	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-high_light_recovery_1	negative	595.16565303	510.108375093	54344914.89	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_recovery_1	negative	595.16565303	510.108375093	54344914.89	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_recovery_3	negative	174.076085448	664.71059456	54202920.99	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_2	negative	165.054706951	545.894258025	54096680.66	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-control_recovery_3	negative	130.065229003	287.187393972	53995203.33	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_recovery_2	negative	138.091419931	326.528822771	53809450.24	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_1	negative	130.065229003	287.187393972	53800867.06	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_1	negative	130.065229003	287.187393972	53800867.06	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_cold_recovery.2	negative	182.081257963	546.453034008	53604398.69	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_recovery_1	negative	595.16565303	510.108375093	53410585.57	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_cold_recovery_1	negative	595.16565303	510.108375093	53410585.57	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_1	negative	258.10859871	766.684498265	53365824.8	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-control_3	negative	268.102707317	340.036339548	53284438.88	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_recovery_2	negative	143.081552215	413.938579194	53249676.98	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_recovery_1	negative	595.16565303	510.108375093	53163149.24	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_recovery_3	negative	268.102707317	340.036339548	53144189.26	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_cold_3	negative	159.076469963	709.608605344	53043473.85	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_cold_recovery_1	negative	130.086348069	412.147868481	52751512.61	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	130.086348069	412.147868481	52751512.61	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.3	negative	595.16565303	510.108375093	52706570.89	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_recovery_1	negative	245.095407817	720.45724836	52696244.85	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_2	negative	124.039350582	345.785256941	52661580.47	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_3	negative	268.102707317	340.036339548	52643495.87	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-high_light_1	negative	205.096997826	439.957815819	52632167.61	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_recovery_3	negative	245.095407817	720.45724836	52593322.75	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_2	negative	225.075448787	353.021782816	52453974.21	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_recovery.2	negative	226.070598166	632.340656791	52399366.24	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_heat_3	negative	124.039350582	345.785256941	52388073.25	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_3	negative	595.16565303	510.108375093	52288737.0	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_recovery_1	negative	182.081257963	546.453034008	52215841.8	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_2	negative	159.076469963	709.608605344	52202947.24	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_3	negative	225.075448787	353.021782816	52180645.28	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_3	negative	124.039350582	345.785256941	52039785.79	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_3	negative	165.054706951	545.894258025	52021736.84	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_cold_recovery.2	negative	268.102707317	340.036339548	51817790.03	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_cold_recovery.2	negative	268.102707317	340.036339548	51817790.03	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-high_light_1	negative	205.096997826	439.957815819	51785636.09	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-high_light_1	negative	205.096997826	439.957815819	51785636.09	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-control_recovery_2	negative	210.076174871	556.414916611	51523347.03	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_recovery_1	negative	115.086648151	417.997247466	51453918.18	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-control_recovery_1	negative	115.086648151	417.997247466	51453918.18	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-control_1	negative	124.039350582	345.785256941	51383305.17	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-control_1	negative	124.039350582	345.785256941	51383305.17	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_2	negative	130.065229003	287.187393972	51348880.18	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_1	negative	258.10859871	766.684498265	51224199.26	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_1	negative	258.10859871	766.684498265	51224199.26	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_heat_recovery_1	negative	174.076085448	664.71059456	51144358.14	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_heat_recovery_1	negative	174.076085448	664.71059456	51144358.14	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_2	negative	159.076469963	709.608605344	51056056.53	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-control_recovery_1	negative	130.065229003	287.187393972	50879238.06	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-control_recovery_1	negative	130.065229003	287.187393972	50879238.06	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_recovery_2	negative	268.102707317	340.036339548	50837079.92	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_recovery_1	negative	174.076085448	664.71059456	50824494.09	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_recovery_1	negative	165.054706951	545.894258025	50813569.89	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_recovery_1	negative	124.039346937	606.311521329	50493966.18	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	124.039350582	345.785256941	50439996.89	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	124.039350582	345.785256941	50131721.72	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	124.039350582	345.785256941	50131721.72	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery_1	negative	595.16565303	510.108375093	50085258.15	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_recovery_3	negative	138.091419931	326.528822771	49971851.23	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_recovery_1	negative	143.081552215	413.938579194	49806302.97	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_recovery_1	negative	143.081552215	413.938579194	49806302.97	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_cold_1	negative	159.076469963	709.608605344	49663883.01	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_1	negative	159.076469963	709.608605344	49663883.01	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-control_recovery_1	negative	595.16565303	510.108375093	49650123.91	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_3	negative	138.091419931	326.528822771	49638506.47	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_recovery_3	negative	174.076085448	664.71059456	49521790.84	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_1	negative	225.075448787	353.021782816	49508160.04	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-high_light_1	negative	225.075448787	353.021782816	49508160.04	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_1	negative	165.054706951	545.894258025	49439623.24	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_1	negative	165.054706951	545.894258025	49439623.24	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_recovery_1	negative	245.095407817	720.45724836	49246884.95	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-high_light_recovery_1	negative	245.095407817	720.45724836	49246884.95	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-high_light_recovery_1	negative	146.060090727	528.080048428	49213168.39	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_recovery_1	negative	146.060090727	528.080048428	49213168.39	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_recovery.2	negative	130.065229003	287.187393972	48933086.0	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_recovery_1	negative	130.065229003	287.187393972	48645178.35	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-control_recovery_1	negative	130.086348069	412.147868481	48597623.44	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	130.086348069	412.147868481	48597623.44	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	159.076469963	709.608605344	48576876.33	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_1	negative	159.076469963	709.608605344	48576876.33	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_2	negative	225.075448787	353.021782816	48514735.45	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_3	negative	165.054706951	545.894258025	48508914.27	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-drought_2	negative	116.034275331	671.712362191	48486731.02	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-high_light_recovery_2	negative	595.16565303	510.108375093	48420951.8	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_cold_recovery_1	negative	146.060090727	528.080048428	48377490.38	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_3	negative	130.065229003	287.187393972	48359541.71	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_heat_2	negative	138.091419931	326.528822771	48236638.38	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_heat_1	negative	124.039350582	345.785256941	47970126.08	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	124.039350582	345.785256941	47970126.08	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_2	negative	225.075448787	353.021782816	47948964.82	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_1	negative	124.039378692	163.709299272	47934196.12	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	124.039378692	163.709299272	47934196.12	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	225.075448787	353.021782816	47921113.17	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_1	negative	225.075448787	353.021782816	47921113.17	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_2	negative	121.064869668	326.093475744	47893128.89	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-control_2	negative	124.039350582	345.785256941	47861862.75	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_2	negative	226.070598166	632.340656791	47701868.87	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_recovery.2	negative	121.064869668	326.093475744	47382282.83	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-control_recovery_1	negative	130.065229003	287.187393972	47293630.66	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_recovery_2	negative	146.060090727	528.080048428	47237978.13	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_1	negative	159.076469963	709.608605344	47037574.07	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_heat_recovery_2	negative	225.075448787	353.021782816	46963066.46	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-control_1	negative	124.039378692	163.709299272	46944867.46	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-control_1	negative	124.039378692	163.709299272	46944867.46	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery_1	negative	268.102707317	340.036339548	46883655.9	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_recovery_1	negative	130.065229003	287.187393972	46763322.55	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_recovery_1	negative	143.081552215	413.938579194	46493351.67	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	143.081552215	413.938579194	46493351.67	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_3	negative	159.076469963	709.608605344	46490107.68	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_1	negative	182.081257963	546.453034008	46361711.99	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_2	negative	182.081257963	546.453034008	46319292.67	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_recovery_1	negative	595.16565303	510.108375093	46276328.5	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_recovery_1	negative	225.075448787	353.021782816	46271228.66	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_recovery_1	negative	225.075448787	353.021782816	46271228.66	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_3	negative	225.075448787	353.021782816	46267149.4	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_cold_1	negative	225.075448787	353.021782816	46205355.84	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_cold_1	negative	225.075448787	353.021782816	46205355.84	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_1	negative	268.102707317	340.036339548	46115683.95	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_1	negative	268.102707317	340.036339548	46115683.95	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_recovery_2	negative	595.16565303	510.108375093	46012890.29	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_3	negative	258.10859871	766.684498265	45878614.05	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_2	negative	116.034275331	671.712362191	45869257.55	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_1	negative	225.075448787	353.021782816	45670481.33	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_1	negative	225.075448787	353.021782816	45670481.33	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_recovery_1	negative	127.039055675	732.713879133	45576819.51	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	127.039055675	732.713879133	45576819.51	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_recovery_2	negative	245.095407817	720.45724836	45536629.93	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_recovery_1	negative	174.076085448	664.71059456	45440768.68	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_cold_recovery_1	negative	174.076085448	664.71059456	45440768.68	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_1	negative	121.064869668	326.093475744	45334211.42	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_recovery_1	negative	143.081552215	413.938579194	45306801.68	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_3	negative	205.096997826	439.957815819	45204792.65	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_recovery_1	negative	130.065229003	287.187393972	45187999.92	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_heat_1	negative	138.091419931	326.528822771	45045313.17	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_heat_1	negative	138.091419931	326.528822771	45045313.17	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_1	negative	124.039350582	345.785256941	44972124.9	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	159.076469963	709.608605344	44892118.64	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_recovery.3	negative	268.102707317	340.036339548	44876013.23	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_1	negative	121.064869668	326.093475744	44875403.41	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-drought_1	negative	121.064869668	326.093475744	44875403.41	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_recovery_2	negative	245.095407817	720.45724836	44824250.6	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_1	negative	130.065229003	287.187393972	44783803.15	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_cold_1	negative	130.065229003	287.187393972	44783803.15	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_1	negative	124.039350582	345.785256941	44680335.01	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	124.039350582	345.785256941	44680335.01	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	116.034275331	671.712362191	44626667.55	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_recovery_1	negative	138.091419931	326.528822771	44523905.01	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_heat_recovery_1	negative	138.091419931	326.528822771	44523905.01	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_3	negative	225.075448787	353.021782816	44409186.36	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_recovery.2	negative	210.076174871	556.414916611	44288403.91	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_cold_recovery.2	negative	210.076174871	556.414916611	44288403.91	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-drought_3	negative	225.075448787	353.021782816	44280248.42	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-high_light_1	negative	182.081257963	546.453034008	43899253.32	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_1	negative	182.081257963	546.453034008	43899253.32	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-drought_recovery_2	negative	258.10859871	766.684498265	43844775.53	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_1	negative	130.065229003	287.187393972	43815226.01	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-control_recovery_3	negative	182.081257963	546.453034008	43771068.71	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_2	negative	130.065229003	287.187393972	43731269.83	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_3	negative	225.075448787	353.021782816	43604091.0	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-high_light_3	negative	225.075448787	353.021782816	43580223.1	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_recovery_2	negative	245.095407817	720.45724836	43498014.98	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-drought_3	negative	138.091419931	326.528822771	43451257.68	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_heat_1	negative	124.039350582	345.785256941	43234975.38	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	165.054706951	545.894258025	43175692.95	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_heat_1	negative	165.054706951	545.894258025	43175692.95	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_recovery_3	negative	127.039055675	732.713879133	43155982.41	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_heat_recovery_1	negative	595.16565303	510.108375093	42894555.89	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_recovery_1	negative	595.16565303	510.108375093	42894555.89	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_recovery_3	negative	146.060090727	528.080048428	42878179.68	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_recovery_3	negative	130.086348069	412.147868481	42865176.85	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	130.086348069	412.147868481	42828391.88	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_heat_2	negative	225.075448787	353.021782816	42762273.54	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-high_light_recovery_1	negative	146.060090727	528.080048428	42566683.61	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_1	negative	225.075448787	353.021782816	42558002.32	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_1	negative	225.075448787	353.021782816	42451677.28	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_1	negative	225.075448787	353.021782816	42451677.28	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_2	negative	121.064869668	326.093475744	42337249.6	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_heat_recovery_1	negative	140.034389249	507.171563189	42291629.08	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_1	negative	165.054706951	545.894258025	42200452.23	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_cold_2	negative	130.065229003	287.187393972	42176641.72	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_3	negative	205.096997826	439.957815819	42105281.71	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_3	negative	124.039378692	163.709299272	42084693.53	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_2	negative	205.096997826	439.957815819	42064442.91	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-high_light_recovery_1	negative	245.095407817	720.45724836	42042488.86	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_1	negative	130.065229003	287.187393972	41980155.05	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_cold_2	negative	225.075448787	353.021782816	41963704.94	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_1	negative	225.075448787	353.021782816	41840122.33	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_1	negative	225.075448787	353.021782816	41840122.33	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_3	negative	115.086576502	897.299789636	41839025.59	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-control_recovery_2	negative	121.064869668	326.093475744	41773569.69	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_2	negative	130.065229003	287.187393972	41766617.55	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_1	negative	130.065229003	287.187393972	41712407.33	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_1	negative	130.065229003	287.187393972	41712407.33	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_recovery_3	negative	124.039346937	606.311521329	41460859.43	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_2	negative	182.081257963	546.453034008	41459348.12	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-drought_recovery_3	negative	225.075448787	353.021782816	41389160.63	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_recovery_3	negative	245.095407817	720.45724836	41374837.64	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_recovery_3	negative	124.039378692	163.709299272	41223530.58	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	258.10859871	766.684498265	41162647.28	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_recovery_2	negative	143.081552215	413.938579194	41135034.74	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	245.095407817	720.45724836	41028474.66	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_recovery_1	negative	245.095407817	720.45724836	41028474.66	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_recovery_3	negative	143.081552215	413.938579194	40923576.35	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-control_1	negative	225.075448787	353.021782816	40910883.86	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-control_1	negative	225.075448787	353.021782816	40910883.86	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-high_light_recovery_3	negative	130.086348069	412.147868481	40732777.17	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-control_2	negative	124.039378692	163.709299272	40668735.64	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_3	negative	121.064869668	326.093475744	40656011.36	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_heat_recovery_1	negative	112.050591326	558.97645159	40574093.22	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_recovery_1	negative	112.050591326	558.97645159	40574093.22	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-drought_1	negative	116.034275331	671.712362191	40538228.5	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_recovery_1	negative	121.064869668	326.093475744	40477949.21	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_1	negative	130.065229003	287.187393972	40336923.73	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_recovery_3	negative	121.064869668	326.093475744	40301063.3	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-drought_1	negative	205.096997826	439.957815819	40200115.03	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_1	negative	205.096997826	439.957815819	40200115.03	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-control_recovery_1	negative	130.086348069	412.147868481	39884471.21	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_2	negative	115.086648151	417.997247466	39858591.86	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_1	negative	124.039378692	163.709299272	39800313.11	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	124.039378692	163.709299272	39800313.11	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	210.076174871	556.414916611	39674659.65	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_recovery_1	negative	210.076174871	556.414916611	39674659.65	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_recovery_1	negative	245.095407817	720.45724836	39456088.83	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-drought_1	negative	116.034275331	671.712362191	39451087.36	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_1	negative	116.034275331	671.712362191	39451087.36	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_cold_3	negative	130.065229003	287.187393972	39425797.11	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_1	negative	116.034275331	671.712362191	39336952.38	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-high_light_1	negative	116.034275331	671.712362191	39336952.38	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_cold_2	negative	124.039378692	163.709299272	39313225.51	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	124.039378692	163.709299272	39235132.6	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-control_1	negative	268.102707317	340.036339548	39218877.84	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_1	negative	268.102707317	340.036339548	39218877.84	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_1	negative	124.039350582	345.785256941	39209011.98	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-control_2	negative	225.075448787	353.021782816	39203607.33	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-high_light_2	negative	124.039378692	163.709299272	39176642.62	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	225.075448787	353.021782816	39147475.68	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-high_light_3	negative	182.081257963	546.453034008	39016755.3	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_cold_recovery.3	negative	115.086648151	417.997247466	38948737.07	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_2	negative	138.091419931	326.528822771	38888522.38	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_heat_recovery_1	negative	140.034389249	507.171563189	38790903.1	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-high_light_recovery_1	negative	143.081552215	413.938579194	38530734.98	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_1	negative	121.064869668	326.093475744	38529252.78	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_1	negative	121.064869668	326.093475744	38529252.78	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_cold_recovery.2	negative	226.070598166	632.340656791	38500471.94	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_recovery.2	negative	226.070598166	632.340656791	38500471.94	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-control_recovery_1	negative	182.081257963	546.453034008	38492259.57	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-control_recovery_1	negative	182.081257963	546.453034008	38492259.57	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_1	negative	225.075448787	353.021782816	38325608.91	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_recovery_1	negative	140.034389249	507.171563189	38244143.14	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_recovery_1	negative	140.034389249	507.171563189	38244143.14	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_heat_recovery_3	negative	268.102707317	340.036339548	38237403.78	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_3	negative	130.086348069	412.147868481	38143554.02	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_3	negative	112.050591326	558.97645159	38094002.93	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_recovery_2	negative	124.039346937	606.311521329	38073915.23	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	124.039378692	163.709299272	38050814.97	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	124.039378692	163.709299272	38050814.97	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	182.081257963	546.453034008	38049339.28	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_cold_recovery.2	negative	182.081257963	546.453034008	38049339.28	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_recovery_3	negative	258.10859871	766.684498265	38016422.02	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_cold_1	negative	124.039378692	163.709299272	38003020.29	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	135.064922543	671.83915346	38001831.75	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-control_recovery_2	negative	268.102707317	340.036339548	37980116.59	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_cold_recovery.3	negative	210.076174871	556.414916611	37974139.21	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_3	negative	210.076174871	556.414916611	37855491.35	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_recovery_1	negative	226.070598166	632.340656791	37825341.38	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-control_recovery_1	negative	226.070598166	632.340656791	37825341.38	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-control_recovery_1	negative	268.102707317	340.036339548	37637077.22	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_recovery_1	negative	268.102707317	340.036339548	37637077.22	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_3	negative	121.064869668	326.093475744	37614241.86	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_heat_recovery_1	negative	245.095407817	720.45724836	37539264.66	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_heat_recovery_1	negative	245.095407817	720.45724836	37539264.66	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-drought_1	negative	121.064869668	326.093475744	37533523.21	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_heat_2	negative	130.065229003	287.187393972	37338531.6	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_heat_1	negative	138.091419931	326.528822771	37260794.65	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_3	negative	124.039378692	163.709299272	37205542.39	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_3	negative	226.070598166	632.340656791	37205275.41	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_2	negative	116.034275331	671.712362191	37125395.95	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-high_light_2	negative	127.039055675	732.713879133	37066033.96	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	127.039055675	732.713879133	37038200.45	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_recovery_3	negative	210.076174871	556.414916611	36919015.0	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_heat_recovery_2	negative	140.034389249	507.171563189	36848510.52	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-high_light_recovery_3	negative	210.076174871	556.414916611	36826798.61	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_cold_recovery.2	negative	115.086648151	417.997247466	36822748.56	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_recovery_1	negative	174.076085448	664.71059456	36784412.16	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_recovery_1	negative	174.076085448	664.71059456	36784412.16	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_recovery.2	negative	115.086648151	417.997247466	36723192.0	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_cold_recovery.2	negative	115.086648151	417.997247466	36723192.0	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_heat_recovery_2	negative	258.10859871	766.684498265	36653561.06	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-drought_1	negative	205.096997826	439.957815819	36430620.49	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_1	negative	124.039378692	163.709299272	36339701.86	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	225.075448787	353.021782816	36316063.27	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_recovery_1	negative	225.075448787	353.021782816	36289663.52	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_1	negative	124.039378692	163.709299272	36267012.6	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	124.039378692	163.709299272	36267012.6	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-control_2	negative	268.102707317	340.036339548	36217726.57	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_heat_1	negative	159.076469963	709.608605344	35978373.61	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_heat_recovery_2	negative	146.060090727	528.080048428	35960199.11	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_3	negative	124.039378692	163.709299272	35740669.7	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-control_1	negative	130.065229003	287.187393972	35727601.73	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-control_1	negative	130.065229003	287.187393972	35727601.73	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_heat_recovery_3	negative	140.034389249	507.171563189	35592289.81	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_recovery_1	negative	225.075448787	353.021782816	35543817.73	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_recovery_1	negative	225.075448787	353.021782816	35543817.73	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_recovery_1	negative	146.060090727	528.080048428	35410449.54	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_heat_recovery_1	negative	146.060090727	528.080048428	35410449.54	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_heat_recovery_2	negative	210.076174871	556.414916611	35398861.95	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_cold_2	negative	124.039378692	163.709299272	35255793.56	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	116.034275331	671.712362191	35150376.4	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_recovery_1	negative	225.075448787	353.021782816	35067110.21	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_recovery_1	negative	225.075448787	353.021782816	35067110.21	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_recovery_1	negative	121.064869668	326.093475744	35055595.67	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_heat_recovery_3	negative	225.075448787	353.021782816	35053386.21	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_recovery.2	negative	121.064869668	326.093475744	35041233.09	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_cold_recovery.2	negative	121.064869668	326.093475744	35041233.09	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_cold_recovery.2	negative	115.086576502	897.299789636	35038735.01	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_recovery_1	negative	258.10859871	766.684498265	34955928.04	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_heat_recovery_1	negative	258.10859871	766.684498265	34955928.04	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_2	negative	121.064869668	326.093475744	34893950.51	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_recovery_3	negative	127.039055675	732.713879133	34807764.28	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_heat_recovery_1	negative	124.039346937	606.311521329	34762567.18	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	124.039346937	606.311521329	34762567.18	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_3	negative	115.086648151	417.997247466	34584564.74	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_recovery_1	negative	124.039378692	163.709299272	34511203.76	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	124.039378692	163.709299272	34511203.76	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_2	negative	174.076085448	664.71059456	34494732.23	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_recovery_1	negative	115.086648151	417.997247466	34398090.37	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-control_1	negative	121.064869668	326.093475744	34393942.5	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-control_1	negative	121.064869668	326.093475744	34393942.5	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_heat_1	negative	130.065229003	287.187393972	34309913.52	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_heat_1	negative	130.065229003	287.187393972	34309913.52	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_2	negative	138.091419931	326.528822771	34280512.49	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_recovery_2	negative	115.086648151	417.997247466	34236496.91	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-control_recovery_3	negative	210.076174871	556.414916611	34136077.8	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_2	negative	205.096997826	439.957815819	34047960.39	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_recovery_2	negative	124.039378692	163.709299272	34047241.97	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_2	negative	143.081552215	413.938579194	33973299.31	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_recovery_2	negative	225.075448787	353.021782816	33907125.67	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_recovery_2	negative	225.075448787	353.021782816	33858280.89	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_cold_recovery_1	negative	115.086648151	417.997247466	33543348.56	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_recovery_1	negative	115.086648151	417.997247466	33543348.56	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_recovery_3	negative	121.064869668	326.093475744	33530159.99	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-drought_1	negative	595.16565303	510.108375093	33491340.4	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_recovery_2	negative	146.060090727	528.080048428	33366647.2	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-control_recovery_1	negative	210.076174871	556.414916611	33364554.13	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_recovery_1	negative	205.096997826	439.957815819	33253057.04	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_1	negative	268.102707317	340.036339548	33207316.3	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_2	negative	121.064869668	326.093475744	33183452.29	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_3	negative	138.091419931	326.528822771	33179827.92	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_heat_3	negative	130.065229003	287.187393972	33167205.75	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-control_recovery_3	negative	121.064869668	326.093475744	33166703.69	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_cold_recovery_1	negative	182.081257963	546.453034008	33159755.24	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_cold_recovery.2	negative	138.091419931	326.528822771	33077241.15	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_1	negative	138.091419931	326.528822771	33011535.12	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_1	negative	138.091419931	326.528822771	33011535.12	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_recovery_3	negative	115.086648151	417.997247466	32813331.83	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_2	negative	121.064869668	326.093475744	32811188.83	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-drought_recovery_1	negative	121.064869668	326.093475744	32722077.53	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-drought_recovery_1	negative	121.064869668	326.093475744	32722077.53	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_recovery_2	negative	143.081552215	413.938579194	32707995.54	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_1	negative	225.075448787	353.021782816	32580623.35	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-control_recovery_1	negative	121.064869668	326.093475744	32484911.81	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-control_recovery_1	negative	121.064869668	326.093475744	32484911.81	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-control_2	negative	130.065229003	287.187393972	32483806.54	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_recovery_1	negative	121.064869668	326.093475744	32430952.98	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_recovery_1	negative	121.064869668	326.093475744	32430952.98	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_heat_1	negative	130.065229003	287.187393972	32424003.2	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_heat_recovery_2	negative	210.076174871	556.414916611	32409263.36	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-drought_2	negative	595.16565303	510.108375093	32392673.49	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_cold_recovery_1	negative	174.076085448	664.71059456	32304679.04	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_heat_1	negative	130.065229003	287.187393972	32163169.34	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_1	negative	130.065229003	287.187393972	32163169.34	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_recovery_3	negative	182.081257963	546.453034008	32099306.09	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_cold_recovery_1	negative	226.070598166	632.340656791	32050926.05	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_heat_recovery_2	negative	159.076469963	709.608605344	32050659.98	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_cold_recovery_2	negative	121.064869668	326.093475744	32049407.95	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_recovery_2	negative	121.064869668	326.093475744	31914653.81	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_1	negative	127.039055675	732.713879133	31870529.77	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_1	negative	127.039055675	732.713879133	31870529.77	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_recovery_2	negative	268.102707317	340.036339548	31847354.02	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_recovery_2	negative	130.065229003	287.187393972	31837698.08	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_1	negative	121.064869668	326.093475744	31761804.46	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_1	negative	121.064869668	326.093475744	31761804.46	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_recovery_1	negative	121.064869668	326.093475744	31713290.99	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_cold_3	negative	121.064869668	326.093475744	31648559.89	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_3	negative	130.065229003	287.187393972	31611273.44	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-control_3	negative	116.034275331	671.712362191	31602104.18	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_cold_recovery_3	negative	268.102707317	340.036339548	31601515.68	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_recovery_2	negative	127.039055675	732.713879133	31593071.49	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_recovery_3	negative	226.070598166	632.340656791	31571669.69	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_1	negative	138.091419931	326.528822771	31517406.89	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_heat_1	negative	138.091419931	326.528822771	31517406.89	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_recovery_2	negative	268.102707317	340.036339548	31509391.29	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-high_light_recovery_3	negative	268.102707317	340.036339548	31478960.17	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_recovery_2	negative	226.070598166	632.340656791	31393841.31	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_recovery_1	negative	210.076174871	556.414916611	31378945.8	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_1	negative	210.076174871	556.414916611	31378945.8	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_1	negative	121.064869668	326.093475744	31368943.03	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_1	negative	121.064869668	326.093475744	31368943.03	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-drought_recovery_1	negative	225.075448787	353.021782816	31335166.89	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_2	negative	121.064869668	326.093475744	31331464.98	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-drought_1	negative	130.086348069	412.147868481	31297873.4	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-drought_1	negative	130.086348069	412.147868481	31297873.4	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	127.039055675	732.713879133	31103037.65	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_cold_recovery.3	negative	226.070598166	632.340656791	31051123.54	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_recovery.2	negative	135.064922543	671.83915346	30928372.24	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_recovery.2	negative	135.064922543	671.83915346	30928372.24	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_cold_3	negative	121.064869668	326.093475744	30888831.0	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-control_2	negative	139.05031348	413.204094087	30839419.82	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-control_1	negative	116.034275331	671.712362191	30828231.67	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_1	negative	116.034275331	671.712362191	30828231.67	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_recovery_1	negative	116.034275331	671.712362191	30738937.53	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_recovery_1	negative	115.086648151	417.997247466	30616720.02	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-drought_recovery_1	negative	115.086648151	417.997247466	30616720.02	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_cold_recovery.2	negative	169.035751827	567.096044524	30559539.6	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_heat_recovery_3	negative	225.075448787	353.021782816	30552767.88	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-high_light_3	negative	121.064869668	326.093475744	30535129.31	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_3	negative	143.081552215	413.938579194	30515613.32	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	115.086576502	897.299789636	30514811.58	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_recovery.2	negative	115.086576502	897.299789636	30514811.58	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_recovery_1	negative	121.064869668	326.093475744	30487552.87	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-control_3	negative	595.16565303	510.108375093	30450040.12	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_recovery_3	negative	115.086648151	417.997247466	30428565.64	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_1	negative	121.064869668	326.093475744	30406809.27	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_recovery_1	negative	595.16565303	510.108375093	30382040.39	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_3	negative	138.091419931	326.528822771	30367276.17	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_recovery.2	negative	129.065785327	638.634926081	30319163.64	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_recovery_2	negative	595.16565303	510.108375093	30273078.42	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_recovery_1	negative	182.081257963	546.453034008	30246361.89	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-control_recovery_1	negative	115.086648151	417.997247466	30198647.0	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_heat_recovery_1	negative	258.10859871	766.684498265	30197801.04	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_recovery_1	negative	268.102707317	340.036339548	30176212.47	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-high_light_recovery_1	negative	268.102707317	340.036339548	30176212.47	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_2	negative	130.086348069	412.147868481	30172011.16	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	182.081257963	546.453034008	30045739.2	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_recovery_1	negative	174.076085448	664.71059456	30024112.73	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-drought_recovery_1	negative	159.076469963	709.608605344	29975770.94	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_1	negative	143.081552215	413.938579194	29962118.71	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_1	negative	143.081552215	413.938579194	29962118.71	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_3	negative	143.081552215	413.938579194	29863998.44	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_1	negative	121.064869668	326.093475744	29856333.57	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_recovery_1	negative	138.091419931	326.528822771	29790413.58	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-control_3	negative	130.065229003	287.187393972	29775416.79	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_cold_1	negative	121.064869668	326.093475744	29761282.17	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_cold_1	negative	121.064869668	326.093475744	29761282.17	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_recovery_1	negative	127.039055675	732.713879133	29699897.99	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_heat_recovery_1	negative	127.039055675	732.713879133	29699897.99	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	121.064869668	326.093475744	29681861.56	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_recovery_1	negative	121.064869668	326.093475744	29681861.56	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_1	negative	127.039055675	732.713879133	29635229.12	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	210.076174871	556.414916611	29608438.75	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_heat_recovery_1	negative	210.076174871	556.414916611	29608438.75	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_1	negative	116.034275331	671.712362191	29500398.54	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_cold_1	negative	116.034275331	671.712362191	29500398.54	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_cold_recovery_1	negative	268.102707317	340.036339548	29473474.36	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_recovery_1	negative	268.102707317	340.036339548	29473474.36	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_1	negative	115.086576502	897.299789636	29425833.84	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_1	negative	115.086576502	897.299789636	29425833.84	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_3	negative	116.034275331	671.712362191	29328302.57	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_cold_recovery_1	negative	210.076174871	556.414916611	29208148.94	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_2	negative	116.034275331	671.712362191	29171079.76	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_recovery_1	negative	159.076469963	709.608605344	29170283.96	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_recovery_1	negative	115.086576502	897.299789636	29092601.99	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_recovery_1	negative	135.064922543	671.83915346	29050078.37	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_recovery_1	negative	210.076174871	556.414916611	29015452.0	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-high_light_recovery_1	negative	210.076174871	556.414916611	29015452.0	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-high_light_recovery_1	negative	121.064869668	326.093475744	28912068.13	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_3	negative	127.039055675	732.713879133	28910326.22	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-control_recovery_2	negative	138.091419931	326.528822771	28821671.28	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-control_1	negative	138.091419931	326.528822771	28818046.06	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-control_1	negative	138.091419931	326.528822771	28818046.06	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_recovery_2	negative	174.076085448	664.71059456	28734346.3	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_heat_2	negative	127.039055675	732.713879133	28717734.26	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_heat_recovery_3	negative	143.081552215	413.938579194	28600426.09	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-control_recovery_1	negative	226.070598166	632.340656791	28568879.86	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-drought_recovery_3	negative	138.091419931	326.528822771	28555788.19	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_recovery_1	negative	130.086348069	412.147868481	28372273.6	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	130.086348069	412.147868481	28372273.6	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	124.039378692	163.709299272	28262838.72	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	205.096997826	439.957815819	28243888.1	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_1	negative	205.096997826	439.957815819	28243888.1	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-high_light_recovery_3	negative	121.064869668	326.093475744	28218862.75	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_recovery_2	negative	210.076174871	556.414916611	28196152.26	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_2	negative	138.091419931	326.528822771	28188190.99	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_heat_2	negative	595.16565303	510.108375093	28187340.97	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_recovery_1	negative	182.081257963	546.453034008	28150162.55	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-drought_recovery_1	negative	182.081257963	546.453034008	28150162.55	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_recovery_3	negative	210.076174871	556.414916611	28114300.46	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_1	negative	116.034275331	671.712362191	28089276.12	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_recovery_3	negative	160.075754826	271.403513484	28056743.27	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-drought_1	negative	146.060090727	528.080048428	28045640.17	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_recovery_1	negative	130.086348069	412.147868481	28026149.95	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-high_light_2	negative	138.091419931	326.528822771	27979614.12	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_recovery_1	negative	115.086648151	417.997247466	27937718.92	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_recovery_1	negative	115.086648151	417.997247466	27937718.92	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_heat_recovery_1	negative	112.050591326	558.97645159	27793552.25	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_recovery_1	negative	245.095407817	720.45724836	27744941.35	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_recovery.2	negative	112.050591326	558.97645159	27679655.13	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_recovery_3	negative	115.086648151	417.997247466	27631356.39	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_cold_recovery.2	negative	124.039350582	345.785256941	27628569.45	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_3	negative	226.070598166	632.340656791	27601931.21	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_recovery_1	negative	130.086348069	412.147868481	27581131.16	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	124.039350582	345.785256941	27558649.93	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_3	negative	116.034275331	671.712362191	27514932.03	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_recovery_1	negative	130.086348069	412.147868481	27477420.56	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	130.086348069	412.147868481	27477420.56	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	143.081552215	413.938579194	27445809.23	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	143.081552215	413.938579194	27445809.23	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	226.070598166	632.340656791	27438386.9	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_recovery_1	negative	226.070598166	632.340656791	27438386.9	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_recovery_1	negative	174.076085448	664.71059456	27415969.19	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_recovery.3	negative	115.086576502	897.299789636	27413097.73	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-control_recovery_3	negative	135.064922543	671.83915346	27404377.22	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_recovery_1	negative	146.060090727	528.080048428	27392969.82	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_recovery.3	negative	182.081257963	546.453034008	27383863.92	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_1	negative	143.081552215	413.938579194	27352752.45	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_cold_1	negative	143.081552215	413.938579194	27352752.45	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	146.060090727	528.080048428	27351442.22	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_heat_recovery_1	negative	146.060090727	528.080048428	27351442.22	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-drought_1	negative	268.102707317	340.036339548	27324345.36	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-high_light_recovery_1	negative	226.070598166	632.340656791	27270593.98	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_recovery_1	negative	226.070598166	632.340656791	27270593.98	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_recovery_2	negative	210.076174871	556.414916611	27267751.47	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_1	negative	595.16565303	510.108375093	27264740.3	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_1	negative	595.16565303	510.108375093	27264740.3	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_cold_recovery.3	negative	121.064869668	326.093475744	27253863.57	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_recovery_1	negative	268.102707317	340.036339548	27202323.22	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_recovery_1	negative	115.086648151	417.997247466	27185097.5	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-control_recovery_3	negative	124.039350582	345.785256941	27166978.02	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	124.039350582	345.785256941	27094418.07	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	124.039350582	345.785256941	27094418.07	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	121.064869668	326.093475744	27038618.08	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_heat_3	negative	130.086348069	412.147868481	26934859.39	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery_1	negative	205.096997826	439.957815819	26930216.2	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_recovery_3	negative	130.065229003	287.187393972	26877731.05	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_2	negative	130.086348069	412.147868481	26806427.5	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_2	negative	127.039045173	478.908976206	26710969.54	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-control_recovery_3	negative	115.086576502	897.299789636	26673300.77	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-high_light_1	negative	130.086348069	412.147868481	26598483.97	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-drought_1	negative	595.16565303	510.108375093	26584626.42	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_1	negative	595.16565303	510.108375093	26584626.42	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_recovery_2	negative	124.039350582	345.785256941	26557626.27	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.3	negative	205.096997826	439.957815819	26549103.04	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_recovery_1	negative	205.096997826	439.957815819	26449029.36	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_recovery_1	negative	205.096997826	439.957815819	26449029.36	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_recovery_1	negative	210.076174871	556.414916611	26397524.41	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_recovery_1	negative	210.076174871	556.414916611	26397524.41	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_1	negative	205.096997826	439.957815819	26393843.56	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_recovery_3	negative	115.086576502	897.299789636	26321540.41	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_1	negative	121.064869668	326.093475744	26303821.62	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_2	negative	143.081552215	413.938579194	26295175.88	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_cold_recovery_2	negative	182.081257963	546.453034008	26285777.34	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-control_recovery_3	negative	127.039055675	732.713879133	26272995.57	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_recovery_1	negative	115.086648151	417.997247466	26186889.07	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_cold_3	negative	205.096997826	439.957815819	26157405.95	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_heat_recovery_3	negative	146.060090727	528.080048428	26070074.5	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-drought_1	negative	143.081552215	413.938579194	26049058.39	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_cold_recovery.3	negative	124.039350582	345.785256941	26007264.07	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	226.070598166	632.340656791	25845522.0	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_recovery.2	negative	124.039350582	345.785256941	25840568.75	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	124.039350582	345.785256941	25840568.75	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_3	negative	182.081257963	546.453034008	25764118.79	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_3	negative	130.086348069	412.147868481	25738980.34	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.3	negative	135.064922543	671.83915346	25733206.59	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_2	negative	595.16565303	510.108375093	25720949.06	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_cold_recovery.2	negative	138.091419931	326.528822771	25685111.02	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_recovery.2	negative	138.091419931	326.528822771	25685111.02	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_heat_recovery_1	negative	245.095407817	720.45724836	25667850.64	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_heat_recovery_2	negative	110.071328817	867.935393029	25661760.34	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_2	negative	245.095407817	720.45724836	25636312.76	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-control_recovery_2	negative	135.064922543	671.83915346	25563891.75	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_recovery_2	negative	115.086648151	417.997247466	25521550.86	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_1	negative	138.091419931	326.528822771	25502743.25	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_1	negative	138.091419931	326.528822771	25502743.25	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_2	negative	182.081257963	546.453034008	25487691.95	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_recovery_1	negative	115.086648151	417.997247466	25478274.08	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_cold_3	negative	138.091419931	326.528822771	25422945.65	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-control_2	negative	182.081257963	546.453034008	25398581.41	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_2	negative	127.039055675	732.713879133	25357985.67	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	113.034523864	346.164817875	25321913.74	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_recovery_1	negative	268.102707317	340.036339548	25309516.09	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_3	negative	325.110961944	732.001078015	25292291.25	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_2	negative	595.16565303	510.108375093	25282805.91	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_recovery_2	negative	130.086348069	412.147868481	25264786.06	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	115.086576502	897.299789636	25252762.68	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_cold_1	negative	143.081552215	413.938579194	25247468.14	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_2	negative	143.081552215	413.938579194	25213036.49	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_recovery_2	negative	138.091419931	326.528822771	25115436.97	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_recovery_1	negative	130.065229003	287.187393972	25076066.61	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_recovery_1	negative	130.065229003	287.187393972	25076066.61	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_2	negative	127.039055675	732.713879133	24980918.25	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_cold_recovery.2	negative	110.071328817	867.935393029	24861052.65	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_2	negative	210.076174871	556.414916611	24822332.9	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_1	negative	115.086648151	417.997247466	24814344.98	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_recovery_1	negative	115.086648151	417.997247466	24814344.98	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_2	negative	138.091419931	326.528822771	24807558.58	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-control_2	negative	595.16565303	510.108375093	24807353.13	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_recovery_3	negative	205.096997826	439.957815819	24785231.02	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_recovery_1	negative	124.039346937	606.311521329	24752926.89	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-control_1	negative	145.049624973	732.288711427	24641050.93	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-control_1	negative	145.049624973	732.288711427	24641050.93	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-control_recovery_1	negative	135.064922543	671.83915346	24616572.32	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-control_recovery_1	negative	135.064922543	671.83915346	24616572.32	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-drought_recovery_1	negative	116.034275331	671.712362191	24565271.46	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_recovery_2	negative	145.049624973	732.288711427	24535993.78	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_cold_2	negative	205.096997826	439.957815819	24518673.53	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_recovery_1	negative	138.091419931	326.528822771	24516083.21	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_recovery_3	negative	138.091419931	326.528822771	24496373.37	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_recovery.2	negative	205.096997826	439.957815819	24480845.38	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_recovery.2	negative	205.096997826	439.957815819	24480845.38	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_3	negative	127.039055675	732.713879133	24461066.91	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_cold_2	negative	138.091419931	326.528822771	24452818.48	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_recovery.2	negative	219.097087479	668.370758562	24402793.22	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_recovery_2	negative	226.070598166	632.340656791	24394590.26	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_1	negative	165.054706951	545.894258025	24375545.4	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_heat_3	negative	595.16565303	510.108375093	24367471.48	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_3	negative	138.091419931	326.528822771	24349101.85	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_3	negative	124.039378692	163.709299272	24344962.67	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_3	negative	595.16565303	510.108375093	24332600.53	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_3	negative	245.095407817	720.45724836	24316925.69	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_3	negative	205.096997826	439.957815819	24289860.35	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_recovery.2	negative	127.039055675	732.713879133	24273115.99	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_cold_recovery.2	negative	127.039055675	732.713879133	24273115.99	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_recovery_1	negative	138.091419931	326.528822771	24211813.46	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_1	negative	138.091419931	326.528822771	24179513.77	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_recovery_1	negative	138.091419931	326.528822771	24176314.27	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_recovery_1	negative	138.091419931	326.528822771	24176314.27	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_1	negative	160.075754826	271.403513484	24054998.22	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_cold_1	negative	138.091419931	326.528822771	23955219.19	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_1	negative	138.091419931	326.528822771	23955219.19	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_1	negative	245.095407817	720.45724836	23900980.8	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_recovery_1	negative	124.039350582	345.785256941	23885872.73	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_2	negative	205.096997826	439.957815819	23844981.77	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_recovery_2	negative	138.091419931	326.528822771	23820755.98	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-control_3	negative	143.081552215	413.938579194	23813410.1	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_cold_3	negative	143.081552215	413.938579194	23788096.32	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_cold_1	negative	138.091419931	326.528822771	23786678.9	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_1	negative	138.091419931	326.528822771	23786678.9	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_3	negative	138.091419931	326.528822771	23675918.24	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_1	negative	143.081552215	413.938579194	23620931.48	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_heat_1	negative	127.039055675	732.713879133	23602230.22	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_1	negative	127.039055675	732.713879133	23602230.22	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-control_recovery_2	negative	127.039055675	732.713879133	23513645.94	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_2	negative	127.039055675	732.713879133	23487239.53	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_3	negative	595.16565303	510.108375093	23440518.92	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_recovery_1	negative	115.086648151	417.997247466	23419354.76	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_recovery_1	negative	124.039350582	345.785256941	23417415.9	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_3	negative	138.091419931	326.528822771	23394489.43	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_heat_recovery_2	negative	115.086648151	417.997247466	23392323.78	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_recovery_3	negative	110.071328817	867.935393029	23386716.4	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_1	negative	205.096997826	439.957815819	23368012.18	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_1	negative	205.096997826	439.957815819	23368012.18	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_recovery_1	negative	226.070598166	632.340656791	23319388.18	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-drought_2	negative	115.086576502	897.299789636	23317433.24	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-high_light_recovery_1	negative	138.091419931	326.528822771	23303164.45	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_recovery_1	negative	138.091419931	326.528822771	23303164.45	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_recovery_1	negative	138.091419931	326.528822771	23297675.61	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_3	negative	116.034275331	671.712362191	23286523.53	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_cold_recovery_3	negative	182.081257963	546.453034008	23245302.8	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_3	negative	210.076174871	556.414916611	23239297.46	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_1	negative	127.039055675	732.713879133	23218839.33	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_heat_1	negative	127.039055675	732.713879133	23218839.33	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_1	negative	127.039055675	732.713879133	23217891.89	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	159.076469963	709.608605344	23142942.64	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_recovery_1	negative	159.076469963	709.608605344	23142942.64	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_recovery_2	negative	124.039350582	345.785256941	23139780.09	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	595.16565303	510.108375093	23135747.85	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_recovery_1	negative	595.16565303	510.108375093	23135747.85	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_1	negative	115.086576502	897.299789636	23121042.69	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_heat_1	negative	130.065229003	287.187393972	23111617.03	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_cold_recovery.2	negative	169.035751827	567.096044524	23108447.52	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_cold_recovery.2	negative	169.035751827	567.096044524	23108447.52	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_recovery_1	negative	140.034389249	507.171563189	23097780.68	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-control_recovery_1	negative	205.096997826	439.957815819	23061838.31	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_recovery_1	negative	182.081257963	546.453034008	23055260.48	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_recovery_1	negative	182.081257963	546.453034008	23055260.48	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_recovery_1	negative	174.076085448	664.71059456	23045680.36	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_recovery_1	negative	174.076085448	664.71059456	23045680.36	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_cold_recovery_2	negative	135.064922543	671.83915346	23010518.96	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_3	negative	210.076174871	556.414916611	22999247.28	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-high_light_recovery_1	negative	124.039350582	345.785256941	22993784.69	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	124.039350582	345.785256941	22993784.69	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	210.076174871	556.414916611	22951805.92	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_recovery_1	negative	210.076174871	556.414916611	22882120.51	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_recovery_1	negative	138.091419931	326.528822771	22879222.72	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-control_recovery_1	negative	138.091419931	326.528822771	22879222.72	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_1	negative	138.091419931	326.528822771	22876559.87	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-control_recovery_1	negative	127.039055675	732.713879133	22861264.33	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-control_recovery_1	negative	127.039055675	732.713879133	22861264.33	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-drought_recovery_2	negative	121.064869668	326.093475744	22809573.61	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_1	negative	595.16565303	510.108375093	22753117.72	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_1	negative	595.16565303	510.108375093	22753117.72	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_recovery_1	negative	127.039055675	732.713879133	22698858.19	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_recovery_3	negative	110.071328817	867.935393029	22671818.37	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_cold_1	negative	182.081257963	546.453034008	22635544.97	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_1	negative	182.081257963	546.453034008	22635544.97	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_recovery_1	negative	146.060090727	528.080048428	22617604.96	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-control_2	negative	115.086576502	897.299789636	22612811.29	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-high_light_2	negative	143.081552215	413.938579194	22582075.42	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_recovery_3	negative	127.039055675	732.713879133	22579662.94	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_recovery_3	negative	135.064922543	671.83915346	22576188.63	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_heat_recovery_3	negative	174.076085448	664.71059456	22563084.55	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_cold_3	negative	127.039055675	732.713879133	22555860.29	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-drought_1	negative	146.060090727	528.080048428	22548022.07	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-drought_1	negative	146.060090727	528.080048428	22548022.07	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-control_recovery_1	negative	121.064869668	326.093475744	22514462.07	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-control_recovery_3	negative	219.097087479	668.370758562	22508216.88	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_1	negative	138.091419931	326.528822771	22483870.37	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_heat_recovery_2	negative	124.039346937	606.311521329	22478148.7	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_2	negative	113.034523864	346.164817875	22428105.68	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_recovery_1	negative	113.034523864	346.164817875	22425205.18	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_recovery_1	negative	113.034523864	346.164817875	22425205.18	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_recovery_3	negative	124.039350582	345.785256941	22424158.08	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	595.16565303	510.108375093	22387895.41	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_1	negative	595.16565303	510.108375093	22387895.41	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_cold_2	negative	182.081257963	546.453034008	22369686.81	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-drought_recovery_1	negative	159.076469963	709.608605344	22354777.6	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_recovery_1	negative	159.076469963	709.608605344	22354777.6	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_1	negative	127.039055675	732.713879133	22338440.98	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-drought_1	negative	127.039055675	732.713879133	22338440.98	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_recovery_2	negative	127.039055675	732.713879133	22336504.85	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-drought_recovery_2	negative	182.081257963	546.453034008	22305442.37	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_1	negative	182.081257963	546.453034008	22302643.6	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_1	negative	130.086348069	412.147868481	22249179.4	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	130.086348069	412.147868481	22249179.4	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_3	negative	205.096997826	439.957815819	22249049.26	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_3	negative	127.039055675	732.713879133	22246227.43	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_2	negative	210.076174871	556.414916611	22233863.99	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_heat_3	negative	127.039055675	732.713879133	22230813.09	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_1	negative	595.16565303	510.108375093	22208874.65	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_cold_1	negative	595.16565303	510.108375093	22208874.65	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_1	negative	595.16565303	510.108375093	22142417.08	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_1	negative	595.16565303	510.108375093	22142417.08	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_1	negative	130.086348069	412.147868481	22120974.94	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-control_1	negative	130.086348069	412.147868481	22120974.94	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	159.076469963	709.608605344	22097629.36	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_1	negative	159.076469963	709.608605344	22097629.36	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_recovery.3	negative	127.039055675	732.713879133	22055068.0	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-drought_2	negative	245.095407817	720.45724836	22052560.16	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_2	negative	595.16565303	510.108375093	22035453.09	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_cold_1	negative	138.091419931	326.528822771	21989893.44	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_recovery_1	negative	116.034275331	671.712362191	21971597.95	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_recovery_1	negative	116.034275331	671.712362191	21971597.95	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_recovery_1	negative	205.096997826	439.957815819	21944322.85	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_recovery_1	negative	205.096997826	439.957815819	21944322.85	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-control_recovery_2	negative	219.097087479	668.370758562	21917256.19	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_3	negative	143.081552215	413.938579194	21816182.87	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-control_recovery_1	negative	268.102707317	340.036339548	21786925.83	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_2	negative	160.075754826	271.403513484	21737340.74	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_cold_3	negative	182.081257963	546.453034008	21693392.52	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_1	negative	127.039055675	732.713879133	21671578.16	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_1	negative	127.039055675	732.713879133	21671578.16	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_recovery_3	negative	159.076469963	709.608605344	21637130.73	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_1	negative	245.095407817	720.45724836	21622003.99	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-drought_1	negative	245.095407817	720.45724836	21622003.99	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_3	negative	116.034275331	671.712362191	21594088.31	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_1	negative	143.081552215	413.938579194	21498247.9	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-control_1	negative	143.081552215	413.938579194	21498247.9	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_recovery_3	negative	138.091419931	326.528822771	21496380.77	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_2	negative	130.086348069	412.147868481	21458839.13	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	163.075487247	362.719769144	21454111.31	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_cold_recovery.2	negative	148.096909953	556.044083324	21424240.81	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_heat_2	negative	130.086348069	412.147868481	21418895.81	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	130.086348069	412.147868481	21418281.14	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	130.086348069	412.147868481	21418281.14	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_2	negative	127.039055675	732.713879133	21377386.96	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	110.071328817	867.935393029	21369399.68	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_heat_recovery_1	negative	110.071328817	867.935393029	21369399.68	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_2	negative	124.039346937	606.311521329	21360242.93	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_3	negative	205.096997826	439.957815819	21357704.28	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_recovery_2	negative	205.096997826	439.957815819	21349294.04	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_3	negative	595.16565303	510.108375093	21319227.41	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_recovery_2	negative	130.086348069	412.147868481	21311082.69	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-drought_1	negative	138.091419931	326.528822771	21302835.19	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_2	negative	124.039346937	606.311521329	21276358.91	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	115.086576502	897.299789636	21265045.51	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-control_recovery_1	negative	115.086576502	897.299789636	21265045.51	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_heat_3	negative	110.071328817	867.935393029	21242934.11	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_1	negative	143.081552215	413.938579194	21202820.25	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_1	negative	143.081552215	413.938579194	21202820.25	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_cold_1	negative	595.16565303	510.108375093	21150651.94	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_recovery_3	negative	135.064922543	671.83915346	21149897.82	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-drought_recovery_2	negative	116.034275331	671.712362191	21092924.78	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_3	negative	210.076174871	556.414916611	21091613.11	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-high_light_recovery_1	negative	205.096997826	439.957815819	21087801.46	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_recovery_1	negative	143.081552215	413.938579194	21029006.06	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_1	negative	595.16565303	510.108375093	20994470.59	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_recovery_1	negative	182.081257963	546.453034008	20964502.66	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_recovery_1	negative	182.081257963	546.453034008	20964502.66	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_2	negative	245.095407817	720.45724836	20938311.37	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_recovery_1	negative	210.076174871	556.414916611	20882484.09	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_recovery_1	negative	135.064922543	671.83915346	20881448.0	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_2	negative	110.071328817	867.935393029	20856131.9	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_1	negative	245.095407817	720.45724836	20830715.46	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_heat_3	negative	245.095407817	720.45724836	20813660.1	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-control_recovery_3	negative	160.075855395	65.4178107604	20756473.28	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_recovery_1	negative	138.091419931	326.528822771	20614365.83	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_recovery_1	negative	138.091419931	326.528822771	20614365.83	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_3	negative	127.039055675	732.713879133	20594647.38	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	205.096997826	439.957815819	20573610.88	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-high_light_recovery_1	negative	205.096997826	439.957815819	20573610.88	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_heat_recovery_3	negative	124.039378692	163.709299272	20571771.95	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	182.081257963	546.453034008	20556080.36	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_cold_1	negative	182.081257963	546.453034008	20556080.36	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_recovery_2	negative	124.039378692	163.709299272	20534720.81	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_3	negative	595.16565303	510.108375093	20530995.04	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_1	negative	210.076174871	556.414916611	20508726.57	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_heat_1	negative	210.076174871	556.414916611	20508726.57	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_recovery_1	negative	115.086576502	897.299789636	20506053.7	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_cold_recovery_1	negative	127.039055675	732.713879133	20493441.44	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_recovery_1	negative	127.039055675	732.713879133	20493441.44	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_recovery_2	negative	124.039350582	345.785256941	20460598.61	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_2	negative	143.081552215	413.938579194	20418288.59	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	130.086348069	412.147868481	20335427.81	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	124.039350582	345.785256941	20326084.46	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-control_1	negative	245.095407817	720.45724836	20320943.11	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-control_1	negative	245.095407817	720.45724836	20320943.11	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-drought_3	negative	146.060090727	528.080048428	20313536.24	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-drought_3	negative	124.039350582	345.785256941	20283544.5	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_3	negative	116.034275331	671.712362191	20256597.62	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_recovery_1	negative	127.039045173	478.908976206	20214506.79	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	127.039045173	478.908976206	20214506.79	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_heat_1	negative	143.081552215	413.938579194	20206750.39	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_1	negative	143.081552215	413.938579194	20206750.39	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_recovery_2	negative	169.035751827	567.096044524	20171102.34	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_cold_2	negative	116.034275331	671.712362191	20164495.12	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_recovery_1	negative	145.049624973	732.288711427	20139354.02	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_1	negative	145.049624973	732.288711427	20139354.02	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_cold_1	negative	127.039055675	732.713879133	20126409.23	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_cold_1	negative	127.039055675	732.713879133	20126409.23	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-drought_3	negative	130.086348069	412.147868481	20118893.18	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_3	negative	182.081257963	546.453034008	20116299.36	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_recovery_3	negative	127.039045173	478.908976206	20077768.18	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_1	negative	124.039346937	606.311521329	20035415.53	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-control_3	negative	163.075487247	362.719769144	20009073.72	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_heat_2	negative	245.095407817	720.45724836	19989451.97	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_1	negative	130.086348069	412.147868481	19974878.0	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	130.086348069	412.147868481	19974878.0	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_heat_3	negative	245.095407817	720.45724836	19969237.71	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_recovery_1	negative	135.064922543	671.83915346	19968845.65	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_cold_recovery_1	negative	135.064922543	671.83915346	19968845.65	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_recovery.2	negative	205.096997826	439.957815819	19963216.91	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_recovery_1	negative	169.035751827	567.096044524	19947397.87	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_cold_recovery.2	negative	219.097087479	668.370758562	19937302.8	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_cold_recovery.2	negative	219.097087479	668.370758562	19937302.8	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-control_recovery_1	negative	205.096997826	439.957815819	19932699.98	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-control_recovery_1	negative	205.096997826	439.957815819	19932699.98	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_1	negative	116.034275331	671.712362191	19837341.23	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_cold_1	negative	116.034275331	671.712362191	19837341.23	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_1	negative	127.039055675	732.713879133	19788177.27	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_cold_1	negative	130.086348069	412.147868481	19787261.01	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	130.086348069	412.147868481	19787261.01	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	127.039055675	732.713879133	19774306.34	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_cold_2	negative	595.16565303	510.108375093	19734855.43	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_cold_recovery_1	negative	124.039350582	345.785256941	19732701.48	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	124.039350582	345.785256941	19732701.48	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_3	negative	595.16565303	510.108375093	19711831.6	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_recovery_1	negative	205.096997826	439.957815819	19698443.47	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_recovery_2	negative	159.076469963	709.608605344	19695567.09	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_recovery.2	negative	112.050591326	558.97645159	19684603.32	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_cold_recovery.2	negative	112.050591326	558.97645159	19684603.32	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_cold_recovery_1	negative	127.039055675	732.713879133	19661242.32	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_cold_recovery.2	negative	130.086348069	412.147868481	19653571.41	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	130.086348069	412.147868481	19653571.41	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	182.081257963	546.453034008	19634701.32	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_recovery_3	negative	135.064922543	671.83915346	19629924.65	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_1	negative	143.081552215	413.938579194	19625019.74	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_cold_1	negative	143.081552215	413.938579194	19625019.74	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-control_recovery_1	negative	219.097087479	668.370758562	19574489.58	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-control_recovery_1	negative	219.097087479	668.370758562	19574489.58	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_1	negative	245.095407817	720.45724836	19529062.3	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-high_light_1	negative	245.095407817	720.45724836	19529062.3	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_heat_recovery_3	negative	113.034523864	346.164817875	19525596.11	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_recovery_3	negative	145.049624973	732.288711427	19521013.3	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-control_recovery_2	negative	169.035751827	567.096044524	19500544.2	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_recovery_1	negative	210.076174871	556.414916611	19497037.89	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_2	negative	110.071328817	867.935393029	19462135.01	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_recovery.3	negative	138.091419931	326.528822771	19462008.69	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_1	negative	205.096997826	439.957815819	19427957.06	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_recovery_1	negative	127.039055675	732.713879133	19406008.72	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-drought_recovery_1	negative	127.039055675	732.713879133	19406008.72	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_cold_recovery_1	negative	130.086348069	412.147868481	19400624.61	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	161.092044112	555.351269753	19398374.73	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_3	negative	127.039055675	732.713879133	19369513.13	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_2	negative	110.071328817	867.935393029	19328117.26	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_recovery.2	negative	110.071328817	867.935393029	19314734.55	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_recovery.2	negative	110.071328817	867.935393029	19314734.55	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_3	negative	130.086348069	412.147868481	19306569.51	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-drought_2	negative	146.060090727	528.080048428	19284889.79	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_recovery_2	negative	205.096997826	439.957815819	19275326.92	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-control_1	negative	182.081257963	546.453034008	19256314.39	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-control_1	negative	182.081257963	546.453034008	19256314.39	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-control_recovery_2	negative	112.050591326	558.97645159	19233732.77	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-control_3	negative	258.10859871	766.684498265	19232099.41	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_recovery.3	negative	130.086348069	412.147868481	19224661.81	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-high_light_recovery_3	negative	127.039055675	732.713879133	19220371.6	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-control_recovery_3	negative	205.096997826	439.957815819	19202688.88	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_3	negative	124.039346937	606.311521329	19179738.59	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-control_2	negative	143.081552215	413.938579194	19171741.06	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-control_3	negative	109.028456527	733.20884566	19158045.17	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-control_recovery_3	negative	169.035751827	567.096044524	19108943.59	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-control_3	negative	124.039346937	606.311521329	19042829.08	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	182.081257963	546.453034008	19004126.67	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_1	negative	127.039055675	732.713879133	18971634.66	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_heat_3	negative	124.039378692	163.709299272	18966938.95	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_2	negative	146.060090727	528.080048428	18946168.59	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-drought_3	negative	245.095407817	720.45724836	18912471.02	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_1	negative	115.086576502	897.299789636	18891968.4	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_cold_1	negative	115.086576502	897.299789636	18891968.4	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_1	negative	210.076174871	556.414916611	18837986.82	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-drought_1	negative	210.076174871	556.414916611	18837986.82	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_cold_recovery.3	negative	169.035751827	567.096044524	18818405.08	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_heat_1	negative	210.076174871	556.414916611	18801003.84	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_1	negative	210.076174871	556.414916611	18801003.84	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_recovery_1	negative	127.039055675	732.713879133	18797151.47	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_heat_recovery_2	negative	129.065947839	415.863706246	18748665.91	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_1	negative	595.16565303	510.108375093	18748041.74	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_cold_1	negative	595.16565303	510.108375093	18748041.74	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_2	negative	163.075487247	362.719769144	18734214.23	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-control_1	negative	139.05031348	413.204094087	18731618.8	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-control_1	negative	139.05031348	413.204094087	18731618.8	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_2	negative	210.076174871	556.414916611	18699822.2	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_heat_recovery_1	negative	595.16565303	510.108375093	18603170.09	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_cold_1	negative	130.086348069	412.147868481	18596374.37	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	127.039055675	732.713879133	18574945.03	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_1	negative	130.086348069	412.147868481	18545703.58	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	130.086348069	412.147868481	18545703.58	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	245.095407817	720.45724836	18538715.74	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_heat_1	negative	245.095407817	720.45724836	18538715.74	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_recovery_1	negative	219.097087479	668.370758562	18510171.46	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_recovery_2	negative	226.070598166	632.340656791	18427793.8	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_recovery_3	negative	124.039350582	345.785256941	18411421.38	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	127.039055675	732.713879133	18407193.35	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_heat_recovery_3	negative	169.035751827	567.096044524	18391312.84	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_recovery_1	negative	124.039378692	163.709299272	18381546.34	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	124.039378692	163.709299272	18381546.34	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	138.091419931	326.528822771	18380867.16	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_heat_3	negative	143.081552215	413.938579194	18331103.45	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_heat_2	negative	159.076469963	709.608605344	18304708.71	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_heat_1	negative	245.095407817	720.45724836	18231477.5	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_1	negative	245.095407817	720.45724836	18231477.5	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_recovery_2	negative	219.097087479	668.370758562	18220132.86	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_cold_recovery.2	negative	129.065785327	638.634926081	18190415.02	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_cold_recovery.2	negative	129.065785327	638.634926081	18190415.02	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_recovery_2	negative	182.081257963	546.453034008	18125262.53	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_2	negative	143.081552215	413.938579194	18112266.81	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	110.071328817	867.935393029	18107899.51	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_recovery_1	negative	110.071328817	867.935393029	18107899.51	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_recovery_1	negative	163.075487247	362.719769144	18083822.27	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_heat_recovery_1	negative	124.039346937	606.311521329	18083332.42	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	124.039346937	606.311521329	18083332.42	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_3	negative	210.076174871	556.414916611	18069701.62	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_recovery_3	negative	129.065947839	415.863706246	18017103.8	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_2	negative	245.095407817	720.45724836	18002761.99	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-high_light_1	negative	124.039346937	606.311521329	17985003.37	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	124.039346937	606.311521329	17985003.37	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	115.086576502	897.299789636	17980785.18	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_cold_3	negative	245.095407817	720.45724836	17950134.93	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_2	negative	124.039346937	606.311521329	17938245.45	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	143.081552215	413.938579194	17934491.65	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_heat_1	negative	143.081552215	413.938579194	17934491.65	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-control_1	negative	124.039346937	606.311521329	17929231.4	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-control_1	negative	124.039346937	606.311521329	17929231.4	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_2	negative	135.064922543	671.83915346	17906771.63	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_cold_2	negative	258.10859871	766.684498265	17854365.24	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_1	negative	116.034275331	671.712362191	17753440.27	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_recovery_2	negative	163.075487247	362.719769144	17726897.58	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-control_recovery_3	negative	110.071328817	867.935393029	17696212.99	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_heat_recovery_3	negative	143.081552215	413.938579194	17644207.66	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_3	negative	115.086648151	417.997247466	17639797.27	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_heat_3	negative	110.071328817	867.935393029	17636937.78	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_recovery_1	negative	169.035751827	567.096044524	17629933.94	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-control_recovery_1	negative	169.035751827	567.096044524	17629933.94	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_recovery_3	negative	127.039045173	478.908976206	17615678.28	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_cold_1	negative	182.081257963	546.453034008	17605161.76	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_1	negative	595.16565303	510.108375093	17548279.79	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_recovery_2	negative	205.096997826	439.957815819	17533572.73	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-high_light_2	negative	146.060090727	528.080048428	17468332.32	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_heat_2	negative	129.065947839	415.863706246	17446029.58	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_1	negative	245.095407817	720.45724836	17438533.53	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_1	negative	245.095407817	720.45724836	17438533.53	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_3	negative	129.065947839	415.863706246	17409268.79	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-high_light_3	negative	143.081552215	413.938579194	17405453.84	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_recovery_3	negative	159.076469963	709.608605344	17392994.77	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_1	negative	143.081552215	413.938579194	17360104.68	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_heat_1	negative	110.071328817	867.935393029	17351912.53	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_heat_1	negative	110.071328817	867.935393029	17351912.53	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_heat_recovery_3	negative	124.039346937	606.311521329	17344336.0	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_3	negative	127.039045173	478.908976206	17340873.78	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_cold_2	negative	124.039346937	606.311521329	17330739.85	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	124.039346937	606.311521329	17299448.45	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	124.039346937	606.311521329	17299448.45	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_3	negative	139.05031348	413.204094087	17278133.2	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_heat_2	negative	124.039346937	606.311521329	17255024.04	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_2	negative	124.039346937	606.311521329	17238568.62	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	160.075754826	271.403513484	17200733.95	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-drought_1	negative	160.075754826	271.403513484	17200733.95	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_cold_2	negative	115.086648151	417.997247466	17160668.71	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_1	negative	110.071328817	867.935393029	17131977.15	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_1	negative	110.071328817	867.935393029	17131977.15	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-drought_recovery_2	negative	127.039055675	732.713879133	17063418.17	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_2	negative	115.086576502	897.299789636	17062408.32	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-high_light_1	negative	210.076174871	556.414916611	17053437.28	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-high_light_1	negative	210.076174871	556.414916611	17053437.28	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-high_light_recovery_3	negative	169.035751827	567.096044524	17044728.79	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_recovery_2	negative	124.039350582	345.785256941	17006745.92	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_2	negative	143.081552215	413.938579194	17005806.93	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	129.065947839	415.863706246	16997408.56	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_recovery_1	negative	129.065947839	415.863706246	16997408.56	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_recovery_3	negative	226.070598166	632.340656791	16994842.99	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_3	negative	146.060090727	528.080048428	16974961.05	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_recovery_1	negative	110.071328817	867.935393029	16964513.48	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_recovery_2	negative	129.065947839	415.863706246	16935706.48	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_1	negative	146.060090727	528.080048428	16902994.32	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_recovery.3	negative	219.097087479	668.370758562	16898943.74	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_recovery_1	negative	127.039045173	478.908976206	16889148.78	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_heat_recovery_1	negative	127.039045173	478.908976206	16889148.78	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_1	negative	115.086576502	897.299789636	16823587.47	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-high_light_1	negative	115.086576502	897.299789636	16823587.47	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-high_light_3	negative	245.095407817	720.45724836	16818160.07	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_3	negative	115.086648151	417.997247466	16810067.22	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_recovery_2	negative	130.086348069	412.147868481	16802912.47	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-control_2	negative	245.095407817	720.45724836	16795820.18	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_recovery_1	negative	169.035751827	567.096044524	16770388.51	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_heat_recovery_1	negative	169.035751827	567.096044524	16770388.51	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_3	negative	163.075487247	362.719769144	16762257.38	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-high_light_3	negative	115.086576502	897.299789636	16743406.09	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_1	negative	210.076174871	556.414916611	16722525.14	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_3	negative	129.065947839	415.863706246	16679196.38	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_recovery.2	negative	129.065947839	415.863706246	16668244.75	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_recovery_3	negative	160.075754826	271.403513484	16653671.13	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_2	negative	124.039378692	163.709299272	16649347.79	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	210.076174871	556.414916611	16635254.72	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_2	negative	127.039045173	478.908976206	16625301.98	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_1	negative	163.075487247	362.719769144	16616175.87	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-high_light_1	negative	163.075487247	362.719769144	16616175.87	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-control_recovery_2	negative	115.086576502	897.299789636	16615782.07	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_recovery_1	negative	129.065947839	415.863706246	16598528.06	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_3	negative	245.095407817	720.45724836	16552810.45	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-high_light_3	negative	124.039346937	606.311521329	16543856.05	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-control_1	negative	115.086576502	897.299789636	16517872.82	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-control_1	negative	115.086576502	897.299789636	16517872.82	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_recovery_1	negative	130.065229003	287.187393972	16512770.7	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_1	negative	127.039055675	732.713879133	16477716.81	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_2	negative	210.076174871	556.414916611	16455355.51	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_1	negative	163.075487247	362.719769144	16432976.22	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_recovery_1	negative	163.075487247	362.719769144	16432976.22	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-high_light_2	negative	145.049624973	732.288711427	16430466.77	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-control_recovery_1	negative	138.091419931	326.528822771	16421507.47	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_3	negative	115.086648151	417.997247466	16406984.28	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_2	negative	169.035751827	567.096044524	16384232.01	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_1	negative	245.095407817	720.45724836	16362703.66	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_heat_recovery_1	negative	145.049624973	732.288711427	16361054.99	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_1	negative	135.064922543	671.83915346	16357323.85	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_recovery_1	negative	135.064922543	671.83915346	16357323.85	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_heat_recovery_1	negative	143.081552215	413.938579194	16329445.08	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	143.081552215	413.938579194	16329445.08	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	226.070598166	632.340656791	16316925.18	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_recovery_1	negative	226.070598166	632.340656791	16316925.18	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_heat_recovery_1	negative	127.039045173	478.908976206	16316872.55	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_cold_recovery.2	negative	129.065947839	415.863706246	16311484.12	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_recovery.2	negative	129.065947839	415.863706246	16311484.12	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_2	negative	146.060090727	528.080048428	16281092.3	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_recovery_1	negative	127.039055675	732.713879133	16268928.97	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	127.039055675	732.713879133	16268928.97	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_cold_recovery.2	negative	125.023379586	500.87044907	16265625.64	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_2	negative	205.096997826	439.957815819	16246036.65	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_1	negative	124.039346937	606.311521329	16243985.09	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	124.039346937	606.311521329	16243985.09	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	127.039045173	478.908976206	16206887.01	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-control_3	negative	210.076174871	556.414916611	16202093.66	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_3	negative	182.081257963	546.453034008	16172741.59	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-control_recovery_3	negative	148.096909953	556.044083324	16125904.52	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_recovery.3	negative	110.071328817	867.935393029	16118637.52	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_3	negative	139.05031348	413.204094087	16107774.89	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_1	negative	124.039346937	606.311521329	16091205.89	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	124.039346937	606.311521329	16091205.89	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_3	negative	129.065947839	415.863706246	16074175.97	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_2	negative	245.095407817	720.45724836	16061148.66	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_heat_1	negative	210.076174871	556.414916611	16053018.26	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-high_light_1	negative	124.039346937	606.311521329	16050911.13	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	140.034389249	507.171563189	16023301.95	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-control_recovery_1	negative	112.050591326	558.97645159	15990352.5	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-control_recovery_1	negative	112.050591326	558.97645159	15990352.5	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_cold_1	negative	124.039346937	606.311521329	15958339.7	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	115.086576502	897.299789636	15950897.78	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_heat_recovery_1	negative	115.086576502	897.299789636	15950897.78	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_1	negative	130.086348069	412.147868481	15901088.21	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_heat_3	negative	124.039346937	606.311521329	15890938.52	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_2	negative	115.086576502	897.299789636	15835897.88	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_recovery_1	negative	112.050591326	558.97645159	15807741.86	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_3	negative	124.039378692	163.709299272	15805382.9	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	110.071328817	867.935393029	15774620.33	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_recovery_1	negative	127.039045173	478.908976206	15772001.21	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-control_recovery_1	negative	127.039045173	478.908976206	15772001.21	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-control_1	negative	210.076174871	556.414916611	15752454.14	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_1	negative	210.076174871	556.414916611	15752454.14	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-high_light_2	negative	115.086576502	897.299789636	15746571.15	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_recovery_1	negative	159.076469963	709.608605344	15741037.2	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_heat_1	negative	595.16565303	510.108375093	15704540.71	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_recovery_1	negative	129.065947839	415.863706246	15700166.33	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-control_recovery_1	negative	129.065947839	415.863706246	15700166.33	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-control_recovery_3	negative	112.050591326	558.97645159	15695624.38	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_cold_recovery.3	negative	129.065947839	415.863706246	15667679.56	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_1	negative	245.095407817	720.45724836	15651214.05	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_1	negative	245.095407817	720.45724836	15651214.05	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_3	negative	130.086348069	412.147868481	15647630.06	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	219.097087479	668.370758562	15631857.27	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_cold_recovery_1	negative	219.097087479	668.370758562	15631857.27	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_recovery_3	negative	129.065947839	415.863706246	15615214.26	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_recovery_2	negative	201.087271934	404.380901513	15601515.89	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-high_light_recovery_3	negative	129.065947839	415.863706246	15580020.87	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_recovery.3	negative	112.050591326	558.97645159	15566412.97	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_recovery_1	negative	129.065947839	415.863706246	15564363.41	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-control_recovery_3	negative	125.023379586	500.87044907	15563364.88	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_2	negative	115.086576502	897.299789636	15516035.0	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-control_recovery_2	negative	148.096909953	556.044083324	15483853.09	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_3	negative	124.039346937	606.311521329	15442875.73	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	210.076174871	556.414916611	15323655.99	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_2	negative	219.097087479	668.370758562	15305128.03	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-control_2	negative	124.039346937	606.311521329	15286830.54	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	115.086648151	417.997247466	15279350.0	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-drought_1	negative	115.086648151	417.997247466	15279350.0	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_2	negative	130.086348069	412.147868481	15242510.03	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	595.16565303	510.108375093	15190042.4	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_recovery_1	negative	124.039350582	345.785256941	15165061.11	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	124.039350582	345.785256941	15165061.11	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	148.096909953	556.044083324	15155451.13	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_recovery.2	negative	148.096909953	556.044083324	15155451.13	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_recovery_2	negative	112.050591326	558.97645159	15128654.39	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_1	negative	124.039378692	163.709299272	15117869.29	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	124.039378692	163.709299272	15117869.29	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	145.049624973	732.288711427	15104142.55	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_cold_recovery_3	negative	115.086576502	897.299789636	15101691.24	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_3	negative	115.086576502	897.299789636	15101610.01	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_1	negative	110.071328817	867.935393029	15090682.55	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_recovery_2	negative	127.039055675	732.713879133	15081175.87	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_2	negative	163.075487247	362.719769144	15069839.06	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-control_recovery_1	negative	127.039045173	478.908976206	15050767.44	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_cold_1	negative	115.086648151	417.997247466	14997027.44	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_1	negative	115.086648151	417.997247466	14997027.44	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_recovery_3	negative	145.049624973	732.288711427	14961412.92	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-control_recovery_2	negative	127.039045173	478.908976206	14924362.41	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_heat_2	negative	131.081554456	524.085314834	14907104.8	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-drought_recovery_2	negative	138.091419931	326.528822771	14906442.16	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_heat_recovery_3	negative	124.039350582	345.785256941	14881845.56	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	124.039378692	163.709299272	14818828.97	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	124.039378692	163.709299272	14818828.97	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	245.095407817	720.45724836	14813035.16	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_recovery_3	negative	219.097087479	668.370758562	14808690.15	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_1	negative	124.039346937	606.311521329	14790425.83	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	124.039346937	606.311521329	14790425.83	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	110.071328817	867.935393029	14768595.4	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_recovery_1	negative	110.071328817	867.935393029	14768595.4	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_recovery_1	negative	160.075754826	271.403513484	14725414.47	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-control_recovery_1	negative	160.075754826	271.403513484	14725414.47	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_3	negative	124.039346937	606.311521329	14704498.54	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_3	negative	110.071328817	867.935393029	14695658.51	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_cold_1	negative	163.075487247	362.719769144	14687788.53	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_1	negative	163.075487247	362.719769144	14687788.53	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_2	negative	135.064922543	671.83915346	14679383.44	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_1	negative	143.081552215	413.938579194	14668674.31	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_1	negative	129.065947839	415.863706246	14667646.9	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_1	negative	129.065947839	415.863706246	14667646.9	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_3	negative	210.076174871	556.414916611	14662068.16	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-drought_recovery_1	negative	112.050591326	558.97645159	14656127.97	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_cold_recovery_3	negative	169.035751827	567.096044524	14614348.85	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-high_light_recovery_3	negative	115.086576502	897.299789636	14604025.74	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_cold_2	negative	146.060090727	528.080048428	14600139.74	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_1	negative	145.049624973	732.288711427	14597303.15	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-high_light_1	negative	145.049624973	732.288711427	14597303.15	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-control_recovery_1	negative	148.096909953	556.044083324	14584780.31	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-control_recovery_1	negative	148.096909953	556.044083324	14584780.31	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_recovery_2	negative	110.071328817	867.935393029	14579564.5	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_1	negative	205.096997826	439.957815819	14560513.56	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-control_1	negative	205.096997826	439.957815819	14560513.56	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_recovery_1	negative	140.034389249	507.171563189	14554418.86	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_heat_recovery_1	negative	140.034389249	507.171563189	14554418.86	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_1	negative	130.086348069	412.147868481	14536607.12	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_3	negative	129.065947839	415.863706246	14516180.55	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-high_light_recovery_1	negative	127.039055675	732.713879133	14505239.44	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_1	negative	146.060090727	528.080048428	14498029.94	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_1	negative	146.060090727	528.080048428	14498029.94	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_heat_recovery_2	negative	145.049624973	732.288711427	14478737.07	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_1	negative	124.039346937	606.311521329	14427512.56	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_3	negative	160.075855395	65.4178107604	14400604.3	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_1	negative	115.086648151	417.997247466	14397392.68	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_2	negative	163.075487247	362.719769144	14391115.68	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_recovery_2	negative	129.065947839	415.863706246	14384367.83	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-high_light_recovery_1	negative	169.035751827	567.096044524	14379209.43	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-high_light_recovery_1	negative	169.035751827	567.096044524	14379209.43	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-high_light_recovery_1	negative	129.065947839	415.863706246	14369971.57	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-high_light_recovery_1	negative	129.065947839	415.863706246	14369971.57	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_recovery_1	negative	115.086576502	897.299789636	14362630.22	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_cold_recovery_1	negative	115.086576502	897.299789636	14362630.22	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_cold_3	negative	115.086576502	897.299789636	14360734.2	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_1	negative	245.095407817	720.45724836	14339683.04	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_recovery_3	negative	130.086348069	412.147868481	14339083.73	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	143.081552215	413.938579194	14338320.65	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	207.065138369	362.018787023	14330183.31	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_cold_recovery_1	negative	135.064922543	671.83915346	14319829.37	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-control_recovery_1	negative	219.097087479	668.370758562	14297995.66	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-control_recovery_1	negative	169.035751827	567.096044524	14280314.03	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-high_light_recovery_3	negative	219.097087479	668.370758562	14275959.78	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_recovery_3	negative	226.070598166	632.340656791	14273579.66	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_recovery_1	negative	129.065947839	415.863706246	14216196.07	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_recovery_1	negative	129.065947839	415.863706246	14216196.07	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_1	negative	130.086348069	412.147868481	14202130.35	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	130.086348069	412.147868481	14104992.77	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	124.039378692	163.709299272	14038146.24	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_2	negative	160.075855395	65.4178107604	14013279.99	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-control_recovery_2	negative	110.071328817	867.935393029	14003412.75	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_3	negative	163.075487247	362.719769144	14003300.63	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_recovery_1	negative	127.039045173	478.908976206	13964376.18	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	129.065947839	415.863706246	13950699.14	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_2	negative	129.065947839	415.863706246	13946603.88	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_recovery_1	negative	110.071328817	867.935393029	13930046.89	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_cold_recovery_1	negative	110.071328817	867.935393029	13930046.89	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_recovery_3	negative	112.050591326	558.97645159	13925909.95	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_cold_recovery_1	negative	129.065785327	638.634926081	13912785.91	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-drought_3	negative	595.16565303	510.108375093	13869865.36	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_cold_recovery_1	negative	219.097087479	668.370758562	13866748.8	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_1	negative	145.049624973	732.288711427	13860406.45	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_3	negative	163.075487247	362.719769144	13815814.67	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_2	negative	115.086648151	417.997247466	13800860.04	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_3	negative	130.086348069	412.147868481	13796116.75	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	112.050591326	558.97645159	13784718.19	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-control_recovery_2	negative	161.092044112	555.351269753	13736839.03	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_recovery_2	negative	125.023379586	500.87044907	13733777.43	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_heat_recovery_2	negative	219.097087479	668.370758562	13719303.42	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_2	negative	131.081554456	524.085314834	13658526.89	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_heat_2	negative	159.076469963	709.608605344	13652131.53	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_1	negative	146.060090727	528.080048428	13642510.7	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_heat_1	negative	146.060090727	528.080048428	13642510.7	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_heat_recovery_1	negative	124.039350582	345.785256941	13606591.86	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	143.081552215	413.938579194	13591031.8	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_recovery_2	negative	207.065138369	362.018787023	13590327.74	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_recovery_2	negative	129.065947839	415.863706246	13579194.7	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_1	negative	146.060090727	528.080048428	13571260.54	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_1	negative	146.060090727	528.080048428	13571260.54	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_recovery_1	negative	135.064922543	671.83915346	13543763.77	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_recovery_1	negative	135.064922543	671.83915346	13543763.77	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_recovery_1	negative	226.070598166	632.340656791	13528138.74	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_3	negative	145.049624973	732.288711427	13501036.23	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_cold_2	negative	145.049624973	732.288711427	13492471.31	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_3	negative	163.075487247	362.719769144	13488208.8	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-high_light_recovery_1	negative	169.035751827	567.096044524	13482144.6	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_heat_1	negative	140.034389249	507.171563189	13470929.13	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_1	negative	129.065947839	415.863706246	13449579.83	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_1	negative	129.065947839	415.863706246	13449579.83	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-control_2	negative	146.060090727	528.080048428	13409790.32	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_heat_2	negative	145.049624973	732.288711427	13404557.63	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_3	negative	135.064922543	671.83915346	13398459.68	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_1	negative	210.076174871	556.414916611	13390924.45	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_cold_1	negative	210.076174871	556.414916611	13390924.45	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_recovery_1	negative	169.035751827	567.096044524	13331258.57	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_recovery_1	negative	169.035751827	567.096044524	13331258.57	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_heat_recovery_2	negative	115.086576502	897.299789636	13329773.91	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_cold_1	negative	210.076174871	556.414916611	13298544.58	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_1	negative	210.076174871	556.414916611	13298544.58	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_cold_2	negative	210.076174871	556.414916611	13259981.33	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_3	negative	219.097087479	668.370758562	13235977.41	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_recovery_3	negative	110.071328817	867.935393029	13226691.94	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_1	negative	163.075487247	362.719769144	13210698.72	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-control_1	negative	163.075487247	362.719769144	13210698.72	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_recovery_1	negative	145.049624973	732.288711427	13207241.0	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_1	negative	145.049624973	732.288711427	13207241.0	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_cold_recovery.2	negative	161.092044112	555.351269753	13197552.82	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.2	negative	161.092044112	555.351269753	13197552.82	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_2	negative	210.076174871	556.414916611	13167659.2	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_3	negative	226.070598166	632.340656791	13154349.57	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_recovery.2	negative	127.039045173	478.908976206	13121367.25	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_cold_recovery.2	negative	127.039045173	478.908976206	13121367.25	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-control_3	negative	205.096997826	439.957815819	13106287.49	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_1	negative	115.086576502	897.299789636	13103713.06	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_1	negative	115.086576502	897.299789636	13103713.06	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_3	negative	169.035751827	567.096044524	13102754.58	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_1	negative	131.081554456	524.085314834	13102222.63	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_1	negative	131.081554456	524.085314834	13102222.63	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_heat_3	negative	169.035751827	567.096044524	13097880.13	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_heat_2	negative	133.031933396	442.294358949	13072401.16	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_2	negative	135.064922543	671.83915346	13071481.52	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-control_recovery_1	negative	125.023379586	500.87044907	13050273.39	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_recovery_1	negative	125.023379586	500.87044907	13050273.39	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_recovery_1	negative	112.050591326	558.97645159	13041700.35	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_3	negative	131.081554456	524.085314834	13034668.99	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_1	negative	146.060090727	528.080048428	13034556.91	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_recovery.2	negative	129.102363635	62.7787763415	13009741.93	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_recovery_1	negative	219.097087479	668.370758562	13007428.31	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_recovery_1	negative	219.097087479	668.370758562	13007428.31	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_3	negative	146.060090727	528.080048428	12991200.58	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_heat_recovery_2	negative	145.049606173	478.126835649	12989128.59	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_heat_1	negative	124.039346937	606.311521329	12959307.99	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	124.039346937	606.311521329	12959307.99	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_3	negative	163.075487247	362.719769144	12939318.44	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_2	negative	174.076085448	664.71059456	12922399.38	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_recovery_1	negative	129.065947839	415.863706246	12914680.08	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_recovery_1	negative	129.065947839	415.863706246	12914680.08	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_2	negative	163.075487247	362.719769144	12905752.44	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_recovery_1	negative	112.050591326	558.97645159	12902765.25	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_cold_recovery_1	negative	112.050591326	558.97645159	12902765.25	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_1	negative	124.039378692	163.709299272	12898877.17	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_3	negative	210.076174871	556.414916611	12875198.07	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_recovery_3	negative	112.050591326	558.97645159	12871826.4	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_cold_recovery.2	negative	125.023379586	500.87044907	12858916.08	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_recovery.2	negative	125.023379586	500.87044907	12858916.08	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_recovery.3	negative	148.096909953	556.044083324	12820323.29	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_1	negative	146.060090727	528.080048428	12804391.05	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_1	negative	146.060090727	528.080048428	12804391.05	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_recovery_1	negative	169.035751827	567.096044524	12804289.34	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_heat_1	negative	124.039378692	163.709299272	12798003.27	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_2	negative	129.065947839	415.863706246	12754199.06	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_recovery.3	negative	127.039045173	478.908976206	12708446.09	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_heat_3	negative	131.081554456	524.085314834	12701154.04	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_heat_2	negative	124.039378692	163.709299272	12691544.68	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_3	negative	129.065785327	638.634926081	12685820.72	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_cold_1	negative	115.086648151	417.997247466	12619386.18	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_cold_1	negative	115.086648151	417.997247466	12619386.18	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_3	negative	146.060090727	528.080048428	12614599.55	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_heat_1	negative	131.081554456	524.085314834	12613472.0	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-control_2	negative	130.086348069	412.147868481	12612533.24	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-high_light_recovery_2	negative	169.035751827	567.096044524	12610754.88	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-control_1	negative	146.060090727	528.080048428	12608758.1	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-control_1	negative	146.060090727	528.080048428	12608758.1	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-control_recovery_1	negative	110.071328817	867.935393029	12606160.45	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_cold_recovery_2	negative	169.035751827	567.096044524	12575137.52	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_3	negative	139.05031348	413.204094087	12545628.95	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_heat_1	negative	146.060090727	528.080048428	12533405.63	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_heat_1	negative	146.060090727	528.080048428	12533405.63	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_recovery_1	negative	110.071328817	867.935393029	12514917.65	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_heat_1	negative	135.064922543	671.83915346	12511194.11	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_heat_1	negative	135.064922543	671.83915346	12511194.11	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_heat_recovery_2	negative	129.065947839	415.863706246	12473443.25	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_1	negative	135.064922543	671.83915346	12455133.97	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-drought_2	negative	145.049624973	732.288711427	12447621.21	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	128.070716726	402.227959004	12446147.52	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_3	negative	145.049624973	732.288711427	12445653.44	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-control_1	negative	258.10859871	766.684498265	12430377.8	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-control_1	negative	258.10859871	766.684498265	12430377.8	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_cold_recovery_3	negative	129.065785327	638.634926081	12424150.39	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_1	negative	124.039346937	606.311521329	12411754.92	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	157.060754467	673.395787895	12410385.23	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_1	negative	146.060090727	528.080048428	12379031.54	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_heat_1	negative	169.035751827	567.096044524	12365230.89	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_heat_1	negative	169.035751827	567.096044524	12365230.89	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_2	negative	112.050591326	558.97645159	12311751.02	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_cold_2	negative	146.060090727	528.080048428	12296657.53	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_3	negative	145.049624973	732.288711427	12287658.45	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_2	negative	160.075754826	271.403513484	12272720.13	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_3	negative	146.060090727	528.080048428	12267408.26	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-control_recovery_3	negative	161.092044112	555.351269753	12266268.67	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_heat_3	negative	169.035751827	567.096044524	12251333.87	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_cold_1	negative	210.076174871	556.414916611	12250723.87	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_1	negative	163.075487247	362.719769144	12231269.16	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_heat_3	negative	163.075487247	362.719769144	12214996.36	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_3	negative	159.076469963	709.608605344	12213840.4	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_heat_3	negative	145.049624973	732.288711427	12207650.09	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_2	negative	129.065785327	638.634926081	12194085.75	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_recovery_1	negative	129.065947839	415.863706246	12190044.4	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_2	negative	145.049624973	732.288711427	12187179.49	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_2	negative	169.035751827	567.096044524	12171165.74	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_recovery_1	negative	115.086576502	897.299789636	12150301.53	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-control_recovery_1	negative	129.065947839	415.863706246	12147688.71	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-control_recovery_1	negative	148.096909953	556.044083324	12144583.33	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_1	negative	145.049624973	732.288711427	12142686.52	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_cold_1	negative	145.049624973	732.288711427	12142686.52	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_1	negative	174.076085448	664.71059456	12079224.29	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_1	negative	145.049624973	732.288711427	12049796.87	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	207.065138369	362.018787023	12041852.91	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_recovery_1	negative	160.075754826	271.403513484	12016811.85	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_heat_recovery_1	negative	160.075754826	271.403513484	12016811.85	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_3	negative	159.076469963	709.608605344	12009805.77	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_3	negative	135.064922543	671.83915346	12006966.84	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_1	negative	163.075487247	362.719769144	11994323.27	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_cold_1	negative	163.075487247	362.719769144	11994323.27	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_cold_2	negative	163.075487247	362.719769144	11975411.62	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-high_light_3	negative	140.034389249	507.171563189	11940431.06	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_recovery_2	negative	127.039045173	478.908976206	11923940.94	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_heat_3	negative	133.031933396	442.294358949	11914569.71	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_1	negative	129.065947839	415.863706246	11885955.04	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_1	negative	131.081554456	524.085314834	11884454.34	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_heat_1	negative	131.081554456	524.085314834	11884454.34	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_recovery_1	negative	219.097087479	668.370758562	11883542.77	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_recovery_1	negative	219.097087479	668.370758562	11883542.77	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_cold_recovery.2	negative	145.049624973	732.288711427	11869917.56	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_cold_recovery.2	negative	145.049624973	732.288711427	11869917.56	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	110.071328817	867.935393029	11861414.66	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_1	negative	124.039346937	606.311521329	11855310.45	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_3	negative	160.075754826	271.403513484	11783278.33	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_cold_2	negative	145.049624973	732.288711427	11772636.98	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	145.049624973	732.288711427	11757315.69	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_1	negative	169.035751827	567.096044524	11748750.34	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-control_recovery_1	negative	161.092044112	555.351269753	11741252.07	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_recovery_1	negative	161.092044112	555.351269753	11741252.07	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_heat_recovery_1	negative	129.065785327	638.634926081	11704558.67	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_heat_recovery_1	negative	129.065785327	638.634926081	11704558.67	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_cold_recovery.3	negative	125.023379586	500.87044907	11703220.25	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_cold_2	negative	210.076174871	556.414916611	11696779.69	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_heat_recovery_2	negative	129.065785327	638.634926081	11673713.69	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_heat_3	negative	133.031933396	442.294358949	11673037.72	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_2	negative	133.031933396	442.294358949	11667301.82	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_recovery_1	negative	226.070598166	632.340656791	11664957.82	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_heat_recovery_1	negative	226.070598166	632.340656791	11664957.82	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_1	negative	163.075487247	362.719769144	11663733.78	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_1	negative	163.075487247	362.719769144	11663733.78	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-high_light_recovery_3	negative	127.039045173	478.908976206	11655005.07	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-control_recovery_3	negative	145.049624973	732.288711427	11635392.88	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_1	negative	145.049624973	732.288711427	11614551.45	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_1	negative	145.049624973	732.288711427	11614551.45	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_1	negative	112.050591326	558.97645159	11607995.34	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_1	negative	112.050591326	558.97645159	11607995.34	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-drought_recovery_3	negative	245.095407817	720.45724836	11598652.01	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-drought_1	negative	145.049624973	732.288711427	11584173.94	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	145.049624973	732.288711427	11584173.94	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_2	negative	160.075855395	65.4178107604	11557849.62	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_recovery.2	negative	131.081554456	524.085314834	11555975.05	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-drought_1	negative	129.065947839	415.863706246	11555830.32	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-drought_1	negative	129.065947839	415.863706246	11555830.32	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_recovery_2	negative	226.070598166	632.340656791	11553765.12	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_1	negative	135.064922543	671.83915346	11514584.31	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_1	negative	135.064922543	671.83915346	11514584.31	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_2	negative	127.039045173	478.908976206	11490007.75	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_heat_3	negative	219.097087479	668.370758562	11486410.11	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_1	negative	110.071328817	867.935393029	11478481.36	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-drought_1	negative	110.071328817	867.935393029	11478481.36	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_recovery_1	negative	110.071328817	867.935393029	11474847.12	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-drought_3	negative	110.071328817	867.935393029	11459869.98	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_cold_1	negative	115.086648151	417.997247466	11423429.32	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-control_2	negative	127.039055675	732.713879133	11386787.61	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-control_recovery_1	negative	160.075855395	65.4178107604	11364866.41	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-control_recovery_1	negative	160.075855395	65.4178107604	11364866.41	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_heat_3	negative	174.076085448	664.71059456	11347029.87	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_1	negative	145.049624973	732.288711427	11324024.0	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_cold_1	negative	145.049624973	732.288711427	11324024.0	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-control_3	negative	115.086648151	417.997247466	11305227.31	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-drought_3	negative	138.055097593	368.650817077	11234100.87	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_1	negative	145.049624973	732.288711427	11229537.81	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_1	negative	145.049624973	732.288711427	11229537.81	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_cold_recovery_1	negative	148.096909953	556.044083324	11221789.3	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_recovery_3	negative	162.076178141	605.902027638	11209515.58	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_heat_recovery_3	negative	160.075754826	271.403513484	11207587.85	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_cold_1	negative	115.086648151	417.997247466	11201516.71	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_heat_1	negative	113.034523864	346.164817875	11197679.55	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_recovery_3	negative	165.054706951	545.894258025	11177892.58	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_recovery_2	negative	161.092044112	555.351269753	11123062.76	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_heat_1	negative	174.076085448	664.71059456	11121547.43	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-drought_2	negative	110.071328817	867.935393029	11114159.45	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_recovery.3	negative	145.049624973	732.288711427	11080649.59	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_3	negative	160.075855395	65.4178107604	11078371.24	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_heat_recovery_3	negative	219.097087479	668.370758562	11070270.98	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_cold_1	negative	163.075487247	362.719769144	11068239.77	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_3	negative	129.065947839	415.863706246	11057118.86	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_recovery_3	negative	112.050591326	558.97645159	11042332.61	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_recovery_1	negative	112.050591326	558.97645159	11037014.63	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_recovery_1	negative	112.050591326	558.97645159	11037014.63	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_recovery_3	negative	161.092044112	555.351269753	11026688.71	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_heat_1	negative	169.035751827	567.096044524	10948878.46	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_1	negative	169.035751827	567.096044524	10948878.46	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_recovery_2	negative	145.049624973	732.288711427	10927525.39	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_1	negative	133.031933396	442.294358949	10897812.34	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_1	negative	133.031933396	442.294358949	10897812.34	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_recovery_1	negative	219.097087479	668.370758562	10892725.75	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_3	negative	127.039045173	478.908976206	10888414.14	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_1	negative	169.035751827	567.096044524	10881136.89	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_1	negative	169.035751827	567.096044524	10881136.89	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_1	negative	129.065947839	415.863706246	10856173.05	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_1	negative	140.034389249	507.171563189	10853884.19	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_recovery_1	negative	201.087271934	404.380901513	10853869.22	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_heat_recovery_1	negative	201.087271934	404.380901513	10853869.22	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_heat_1	negative	127.039045173	478.908976206	10843971.52	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_heat_recovery_2	negative	161.092044112	555.351269753	10813455.68	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	127.039045173	478.908976206	10777520.41	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_cold_recovery_1	negative	127.039045173	478.908976206	10777520.41	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_heat_1	negative	162.076178141	605.902027638	10751613.92	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-high_light_recovery_3	negative	129.065785327	638.634926081	10736927.06	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_recovery_1	negative	127.039045173	478.908976206	10736310.64	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-control_2	negative	169.035751827	567.096044524	10724344.38	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_1	negative	163.075487247	362.719769144	10723424.54	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_1	negative	163.075487247	362.719769144	10723424.54	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_recovery_1	negative	112.050591326	558.97645159	10707814.94	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-drought_recovery_3	negative	143.081552215	413.938579194	10694956.84	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_recovery_1	negative	145.049624973	732.288711427	10656424.17	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_1	negative	129.065947839	415.863706246	10655382.74	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_recovery_1	negative	160.075855395	65.4178107604	10651208.95	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_heat_recovery_1	negative	160.075855395	65.4178107604	10651208.95	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_cold_1	negative	145.049624973	732.288711427	10647929.8	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_2	negative	174.076085448	664.71059456	10644543.24	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-drought_1	negative	128.070716726	402.227959004	10639875.31	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_1	negative	128.070716726	402.227959004	10639875.31	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_recovery_1	negative	125.023379586	500.87044907	10607902.35	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_heat_3	negative	145.049624973	732.288711427	10606677.98	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_3	negative	124.039346937	606.311521329	10586570.91	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_3	negative	125.023379586	500.87044907	10575561.17	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_heat_1	negative	162.076178141	605.902027638	10574405.77	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_heat_1	negative	162.076178141	605.902027638	10574405.77	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-high_light_recovery_2	negative	135.064922543	671.83915346	10574189.33	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_heat_3	negative	226.070598166	632.340656791	10562089.58	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-drought_2	negative	174.076085448	664.71059456	10556660.79	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-drought_3	negative	145.049624973	732.288711427	10547584.92	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_2	negative	165.054706951	545.894258025	10543818.37	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-control_2	negative	163.075487247	362.719769144	10543801.15	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-control_1	negative	169.035751827	567.096044524	10502398.51	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-control_1	negative	169.035751827	567.096044524	10502398.51	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_3	negative	162.076178141	605.902027638	10502199.99	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_heat_recovery_2	negative	160.075754826	271.403513484	10490362.92	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-high_light_recovery_2	negative	219.097087479	668.370758562	10481942.76	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_recovery_1	negative	219.097087479	668.370758562	10481179.49	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-control_recovery_2	negative	145.049624973	732.288711427	10472563.25	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_2	negative	162.076178141	605.902027638	10469403.39	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_recovery_1	negative	129.065785327	638.634926081	10464996.11	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_recovery_1	negative	129.065785327	638.634926081	10464996.11	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_2	negative	110.071328817	867.935393029	10457776.25	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_recovery_1	negative	127.039045173	478.908976206	10448768.66	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	135.064922543	671.83915346	10427177.31	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-drought_2	negative	128.070716726	402.227959004	10422281.67	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	277.101437375	768.482729939	10418653.82	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_2	negative	226.070598166	632.340656791	10410349.24	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_recovery_3	negative	133.031933396	442.294358949	10393636.64	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_recovery_1	negative	145.049624973	732.288711427	10379926.05	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_cold_recovery_1	negative	145.049624973	732.288711427	10379926.05	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_2	negative	162.076178141	605.902027638	10370997.02	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_heat_1	negative	133.031933396	442.294358949	10367143.63	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_1	negative	133.031933396	442.294358949	10367143.63	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_recovery_3	negative	145.049606173	478.126835649	10361394.93	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	207.065138369	362.018787023	10361085.47	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_recovery_1	negative	207.065138369	362.018787023	10361085.47	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_1	negative	110.071328817	867.935393029	10343095.63	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_recovery.3	negative	129.065785327	638.634926081	10339295.51	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_2	negative	219.097087479	668.370758562	10318830.2	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_recovery_1	negative	160.075855395	65.4178107604	10306558.85	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_heat_recovery_1	negative	160.075855395	65.4178107604	10306558.85	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_heat_recovery_2	negative	162.076178141	605.902027638	10300940.38	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_1	negative	258.10859871	766.684498265	10295748.39	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_cold_1	negative	258.10859871	766.684498265	10295748.39	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_recovery_1	negative	110.071328817	867.935393029	10288106.19	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_recovery_1	negative	110.071328817	867.935393029	10288106.19	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_1	negative	115.086648151	417.997247466	10283957.07	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-control_1	negative	115.086648151	417.997247466	10283957.07	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-drought_2	negative	169.035751827	567.096044524	10270253.06	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_cold_recovery.2	negative	207.065138369	362.018787023	10250617.44	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-drought_1	negative	139.05031348	413.204094087	10237784.23	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	129.065785327	638.634926081	10233769.55	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_2	negative	128.070716726	402.227959004	10233038.1	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-control_1	negative	226.070598166	632.340656791	10231896.54	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-control_1	negative	226.070598166	632.340656791	10231896.54	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_recovery.3	negative	161.092044112	555.351269753	10225492.62	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-high_light_1	negative	127.039045173	478.908976206	10216530.13	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_1	negative	127.039045173	478.908976206	10216530.13	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_1	negative	138.055097593	368.650817077	10204433.05	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-drought_1	negative	138.055097593	368.650817077	10204433.05	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_recovery_3	negative	145.049624973	732.288711427	10190106.03	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_1	negative	145.049624973	732.288711427	10181573.02	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_3	negative	226.070598166	632.340656791	10176842.31	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-drought_recovery_2	negative	143.081552215	413.938579194	10176013.82	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_recovery_3	negative	145.049624973	732.288711427	10146879.72	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_recovery_3	negative	127.039045173	478.908976206	10134894.67	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	128.070716726	402.227959004	10134220.62	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-control_recovery_1	negative	145.049624973	732.288711427	10131496.71	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-control_recovery_1	negative	145.049624973	732.288711427	10131496.71	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_1	negative	159.076469963	709.608605344	10111349.98	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_heat_1	negative	159.076469963	709.608605344	10111349.98	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_recovery_1	negative	219.097087479	668.370758562	10104382.64	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_recovery_1	negative	219.097087479	668.370758562	10104382.64	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_recovery_2	negative	135.064922543	671.83915346	10104192.12	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_1	negative	110.071328817	867.935393029	10061723.64	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_1	negative	110.071328817	867.935393029	10061723.64	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_cold_recovery_1	negative	145.049624973	732.288711427	10022146.71	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_1	negative	135.064922543	671.83915346	10015302.08	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-control_recovery_2	negative	129.102363635	62.7787763415	9979778.595	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_recovery_2	negative	131.081554456	524.085314834	9978493.387	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-drought_1	negative	165.054706951	545.894258025	9972068.732	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_cold_recovery_1	negative	161.092044112	555.351269753	9968791.115	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_heat_2	negative	138.055097593	368.650817077	9966578.812	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_cold_recovery.2	negative	160.075754826	271.403513484	9964048.0	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_recovery_3	negative	161.092044112	555.351269753	9959404.915	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_heat_recovery_3	negative	138.055097593	368.650817077	9939388.818	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-drought_recovery_3	negative	124.039350582	345.785256941	9924288.667	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_3	negative	129.065785327	638.634926081	9911536.807	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_heat_recovery_2	negative	160.075855395	65.4178107604	9911313.405	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_recovery_2	negative	226.070598166	632.340656791	9897707.406	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_recovery_1	negative	162.076178141	605.902027638	9897536.748	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_heat_recovery_1	negative	162.076178141	605.902027638	9897536.748	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_2	negative	258.10859871	766.684498265	9895217.628	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_recovery_1	negative	127.039045173	478.908976206	9875183.967	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	127.039045173	478.908976206	9875183.967	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_recovery_3	negative	148.096909953	556.044083324	9869612.42	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_heat_recovery_1	negative	145.049606173	478.126835649	9868312.007	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_1	negative	145.049606173	478.126835649	9868312.007	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-control_recovery_3	negative	129.102363635	62.7787763415	9863802.261	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_3	negative	160.075855395	65.4178107604	9862388.749	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-control_recovery_3	negative	139.05031348	413.204094087	9857694.148	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-control_recovery_1	negative	125.023379586	500.87044907	9853677.871	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_2	negative	115.086648151	417.997247466	9846574.606	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_recovery_1	negative	115.086576502	897.299789636	9830323.526	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-high_light_recovery_1	negative	115.086576502	897.299789636	9830323.526	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-control_recovery_2	negative	229.086134186	75.4572130113	9818163.343	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_recovery_2	negative	130.086348069	412.147868481	9816759.205	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-drought_recovery_3	negative	226.070598166	632.340656791	9816708.693	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_heat_1	negative	174.076085448	664.71059456	9812690.318	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_1	negative	174.076085448	664.71059456	9812690.318	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_heat_recovery_3	negative	148.096909953	556.044083324	9805058.952	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_1	negative	163.075487247	362.719769144	9797951.729	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_heat_recovery_1	negative	129.065785327	638.634926081	9793081.734	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_recovery_1	negative	129.065785327	638.634926081	9793081.734	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_3	negative	258.10859871	766.684498265	9783320.114	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-control_3	negative	169.035751827	567.096044524	9765190.021	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_cold_1	negative	145.049624973	732.288711427	9753781.564	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	138.055097593	368.650817077	9744771.968	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_1	negative	219.097087479	668.370758562	9742625.01	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_1	negative	219.097087479	668.370758562	9742625.01	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_recovery_1	negative	112.050591326	558.97645159	9740582.523	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-drought_recovery_1	negative	112.050591326	558.97645159	9728991.585	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-drought_recovery_1	negative	112.050591326	558.97645159	9728991.585	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_cold_recovery_3	negative	133.031933396	442.294358949	9690832.093	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_recovery_3	negative	127.039045173	478.908976206	9672309.658	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_heat_2	negative	127.039045173	478.908976206	9658261.525	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_heat_recovery_1	negative	161.092044112	555.351269753	9652488.087	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_heat_recovery_1	negative	161.092044112	555.351269753	9652488.087	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_3	negative	129.065947839	415.863706246	9650454.962	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-drought_2	negative	138.055097593	368.650817077	9634426.298	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-drought_recovery_1	negative	143.081552215	413.938579194	9595838.714	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_recovery_1	negative	143.081552215	413.938579194	9595838.714	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_1	negative	129.065947839	415.863706246	9587174.747	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-control_2	negative	115.086648151	417.997247466	9585342.899	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_2	negative	129.065947839	415.863706246	9579714.542	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_2	negative	258.10859871	766.684498265	9577640.423	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_heat_recovery_3	negative	161.092104354	442.102334595	9573150.343	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_2	negative	129.065785327	638.634926081	9571761.624	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_recovery_2	negative	133.031933396	442.294358949	9553136.984	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_recovery_1	negative	160.075754826	271.403513484	9546752.941	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_recovery_1	negative	160.075754826	271.403513484	9546752.941	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-high_light_2	negative	169.035751827	567.096044524	9538098.609	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_recovery_1	negative	145.049624973	732.288711427	9533555.456	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_recovery_1	negative	145.049624973	732.288711427	9533555.456	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_2	negative	148.096909953	556.044083324	9492910.646	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_recovery.2	negative	157.060754467	673.395787895	9476295.072	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_recovery.2	negative	157.060754467	673.395787895	9476295.072	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_3	negative	169.035751827	567.096044524	9472710.533	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_recovery_1	negative	140.034389249	507.171563189	9458291.726	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_recovery_1	negative	140.034389249	507.171563189	9458291.726	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_recovery_2	negative	124.039350582	345.785256941	9447199.125	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_2	negative	112.050591326	558.97645159	9444551.409	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_recovery_3	negative	161.092044112	555.351269753	9438723.472	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_recovery_2	negative	245.095407817	720.45724836	9433124.403	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_recovery_1	negative	145.049624973	732.288711427	9424960.556	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-control_1	negative	325.110961944	732.001078015	9406433.227	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_1	negative	325.110961944	732.001078015	9406433.227	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_cold_recovery_1	negative	129.065785327	638.634926081	9399076.321	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_3	negative	110.071328817	867.935393029	9384299.03	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-drought_recovery_1	negative	245.095407817	720.45724836	9351136.203	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-drought_recovery_1	negative	245.095407817	720.45724836	9351136.203	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-control_3	negative	115.086576502	897.299789636	9314120.515	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_heat_1	negative	110.071328817	867.935393029	9296865.434	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_recovery.2	negative	166.072040805	626.85306269	9295980.209	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_recovery_1	negative	127.039045173	478.908976206	9285930.066	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_1	negative	169.035751827	567.096044524	9270403.034	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_heat_recovery_2	negative	133.031933396	442.294358949	9264653.022	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_recovery_2	negative	112.050591326	558.97645159	9233862.543	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_recovery_2	negative	325.110961944	732.001078015	9225594.774	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_recovery_1	negative	161.092044112	555.351269753	9220648.52	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_3	negative	146.060090727	528.080048428	9210647.557	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_1	negative	129.065947839	415.863706246	9196248.427	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_1	negative	129.065947839	415.863706246	9196248.427	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-drought_2	negative	135.064922543	671.83915346	9194223.006	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_2	negative	127.039045173	478.908976206	9192917.282	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	226.070598166	632.340656791	9167528.687	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_2	negative	129.065947839	415.863706246	9159490.865	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_1	negative	129.065947839	415.863706246	9147642.33	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-high_light_1	negative	129.065947839	415.863706246	9147057.966	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-high_light_1	negative	129.065947839	415.863706246	9147057.966	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-drought_2	negative	127.039045173	478.908976206	9145721.432	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_cold_1	negative	146.060090727	528.080048428	9141554.57	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_recovery_2	negative	148.096909953	556.044083324	9139842.818	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_recovery_1	negative	133.031933396	442.294358949	9126886.75	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_recovery_1	negative	133.031933396	442.294358949	9126886.75	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_1	negative	129.065947839	415.863706246	9120746.805	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_1	negative	133.031933396	442.294358949	9111565.51	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_1	negative	174.076085448	664.71059456	9110859.586	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_heat_1	negative	174.076085448	664.71059456	9110859.586	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_heat_1	negative	245.095407817	720.45724836	9088882.018	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_3	negative	226.070598166	632.340656791	9085117.069	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_recovery_1	negative	133.031933396	442.294358949	9055965.01	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_recovery_1	negative	133.031933396	442.294358949	9055965.01	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_recovery_2	negative	110.071328817	867.935393029	9055606.49	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_heat_2	negative	163.075487247	362.719769144	9051626.53	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_3	negative	128.070716726	402.227959004	9051196.747	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_recovery_1	negative	124.039350582	345.785256941	9047652.938	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	124.039350582	345.785256941	9047652.938	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	226.070598166	632.340656791	9043466.773	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-drought_recovery_1	negative	226.070598166	632.340656791	9043466.773	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_heat_recovery_1	negative	161.092044112	555.351269753	9028937.564	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_1	negative	161.092044112	555.351269753	9028937.564	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-high_light_recovery_3	negative	145.049624973	732.288711427	9027782.722	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	125.023379586	500.87044907	8995376.782	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_recovery_1	negative	125.023379586	500.87044907	8995376.782	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_heat_recovery_1	negative	165.054706951	545.894258025	8993780.731	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_heat_recovery_1	negative	165.054706951	545.894258025	8993780.731	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_cold_recovery.2	negative	160.075855395	65.4178107604	8979750.289	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_recovery_3	negative	210.076174871	556.414916611	8958345.238	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-drought_1	negative	160.075855395	65.4178107604	8936538.744	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_1	negative	160.075855395	65.4178107604	8936538.744	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_heat_2	negative	138.055097593	368.650817077	8912032.24	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_recovery_2	negative	138.055097593	368.650817077	8907503.452	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_recovery_1	negative	128.070716726	402.227959004	8905247.464	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	128.070716726	402.227959004	8905247.464	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_1	negative	125.023379586	500.87044907	8901803.31	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_heat_recovery_1	negative	201.087271934	404.380901513	8889041.727	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_cold_3	negative	129.065947839	415.863706246	8888283.934	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_1	negative	163.075487247	362.719769144	8865783.991	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_heat_1	negative	163.075487247	362.719769144	8865783.991	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_cold_recovery_1	negative	157.060754467	673.395787895	8862740.743	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_2	negative	125.023379586	500.87044907	8858960.996	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_2	negative	131.081554456	524.085314834	8856738.278	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_1	negative	115.086648151	417.997247466	8831596.82	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_heat_1	negative	127.039045173	478.908976206	8831068.981	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_heat_1	negative	127.039045173	478.908976206	8831068.981	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_heat_1	negative	128.070716726	402.227959004	8785588.194	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_heat_1	negative	128.070716726	402.227959004	8785588.194	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_heat_3	negative	112.050591326	558.97645159	8727516.819	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_cold_recovery.2	negative	203.102959813	922.142129909	8712079.851	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_3	negative	258.10859871	766.684498265	8711674.217	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_heat_recovery_1	negative	131.081554456	524.085314834	8708785.451	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_heat_recovery_1	negative	131.081554456	524.085314834	8708785.451	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_3	negative	129.065947839	415.863706246	8694508.284	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_1	negative	115.086576502	897.299789636	8693494.148	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_2	negative	226.070598166	632.340656791	8687140.421	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_recovery_2	negative	127.039045173	478.908976206	8684616.765	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_2	negative	115.086648151	417.997247466	8668049.438	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_2	negative	169.035751827	567.096044524	8661070.681	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_recovery_2	negative	148.096909953	556.044083324	8660602.126	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_recovery_3	negative	148.096909953	556.044083324	8639335.21	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_heat_1	negative	258.10859871	766.684498265	8629534.308	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_heat_1	negative	258.10859871	766.684498265	8629534.308	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_1	negative	169.035751827	567.096044524	8617723.851	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-high_light_1	negative	169.035751827	567.096044524	8617723.851	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_2	negative	258.10859871	766.684498265	8608092.622	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_3	negative	129.065947839	415.863706246	8599056.763	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-high_light_recovery_1	negative	110.071328817	867.935393029	8582020.13	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_1	negative	210.076174871	556.414916611	8581431.332	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_heat_1	negative	113.034523864	346.164817875	8579968.545	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_1	negative	113.034523864	346.164817875	8579968.545	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_cold_recovery.2	negative	229.086134186	75.4572130113	8577021.36	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_heat_recovery_1	negative	112.050591326	558.97645159	8572070.632	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_recovery_1	negative	112.050591326	558.97645159	8572070.632	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-control_recovery_3	negative	145.049606173	478.126835649	8571751.465	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_1	negative	138.055097593	368.650817077	8555416.238	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_recovery_1	negative	138.055097593	368.650817077	8555416.238	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-high_light_recovery_2	negative	125.023379586	500.87044907	8544107.49	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_heat_2	negative	226.070598166	632.340656791	8538521.588	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_recovery_1	negative	115.086576502	897.299789636	8534601.9	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_heat_recovery_1	negative	145.049606173	478.126835649	8522734.649	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_1	negative	145.049606173	478.126835649	8522734.649	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	165.054706951	545.894258025	8519194.008	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-drought_1	negative	165.054706951	545.894258025	8519194.008	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_cold_3	negative	131.081554456	524.085314834	8511036.104	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_2	negative	169.035751827	567.096044524	8504861.716	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-high_light_1	negative	115.086648151	417.997247466	8472768.246	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_1	negative	115.086648151	417.997247466	8472768.246	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_heat_2	negative	125.023379586	500.87044907	8472312.01	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-drought_1	negative	226.070598166	632.340656791	8467689.021	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-drought_1	negative	226.070598166	632.340656791	8467689.021	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_recovery_2	negative	161.092044112	555.351269753	8446770.606	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_3	negative	145.049606173	478.126835649	8442377.828	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_heat_1	negative	169.035751827	567.096044524	8424135.766	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_recovery_1	negative	210.076174871	556.414916611	8411328.329	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-drought_recovery_1	negative	130.086348069	412.147868481	8400272.52	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_3	negative	125.023379586	500.87044907	8398970.04	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_recovery_1	negative	129.065785327	638.634926081	8396792.88	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_recovery_1	negative	129.065785327	638.634926081	8396792.88	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_recovery_2	negative	129.065785327	638.634926081	8392333.905	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_recovery_2	negative	128.070716726	402.227959004	8385790.011	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_heat_3	negative	138.055097593	368.650817077	8374613.726	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_1	negative	226.070598166	632.340656791	8362330.521	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_1	negative	226.070598166	632.340656791	8362330.521	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_heat_recovery_2	negative	131.081554456	524.085314834	8348350.644	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_recovery_1	negative	161.092104354	442.102334595	8347676.319	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.2	negative	160.075754826	271.403513484	8329896.696	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_cold_recovery.2	negative	160.075754826	271.403513484	8329896.696	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_cold_recovery_1	negative	207.065138369	362.018787023	8329887.513	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_cold_recovery_1	negative	207.065138369	362.018787023	8329887.513	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_1	negative	128.070716726	402.227959004	8326471.576	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	141.0659958	531.807534215	8320855.991	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_2	negative	125.023379586	500.87044907	8287668.494	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_recovery_1	negative	145.049624973	732.288711427	8286534.003	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_1	negative	160.075855395	65.4178107604	8283455.678	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_recovery_1	negative	127.039045173	478.908976206	8274468.765	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_recovery_1	negative	127.039045173	478.908976206	8274468.765	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_1	negative	127.039045173	478.908976206	8271168.489	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_heat_1	negative	163.075487247	362.719769144	8269634.215	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_1	negative	127.039045173	478.908976206	8260948.554	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_1	negative	127.039045173	478.908976206	8260948.554	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_cold_2	negative	131.081554456	524.085314834	8260754.301	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_recovery.2	negative	192.050472469	513.214176912	8259027.363	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_heat_1	negative	226.070598166	632.340656791	8243456.356	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_heat_1	negative	226.070598166	632.340656791	8243456.356	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_recovery_3	negative	161.092104354	442.102334595	8230601.64	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery_1	negative	160.075754826	271.403513484	8229873.87	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-control_1	negative	129.065947839	415.863706246	8223873.102	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-control_1	negative	129.065947839	415.863706246	8223873.102	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_3	negative	131.081554456	524.085314834	8221650.876	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_1	negative	169.035751827	567.096044524	8219649.112	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_3	negative	138.055097593	368.650817077	8216778.358	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_recovery_1	negative	115.086576502	897.299789636	8201379.015	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_recovery_3	negative	128.070716726	402.227959004	8195731.766	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_3	negative	127.039045173	478.908976206	8190974.053	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	160.075754826	271.403513484	8185900.313	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-high_light_recovery_1	negative	160.075754826	271.403513484	8185900.313	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_heat_recovery_1	negative	162.076178141	605.902027638	8182154.29	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_recovery_3	negative	112.050591326	558.97645159	8179684.472	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_recovery_1	negative	145.049606173	478.126835649	8173429.607	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_1	negative	169.035751827	567.096044524	8170827.979	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_cold_1	negative	169.035751827	567.096044524	8170827.979	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_heat_recovery_2	negative	145.049606173	478.126835649	8170074.16	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_3	negative	169.035751827	567.096044524	8164304.798	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_cold_1	negative	131.081554456	524.085314834	8155656.961	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_1	negative	131.081554456	524.085314834	8155656.961	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_recovery.3	negative	161.092104354	442.102334595	8155218.797	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_heat_recovery_3	negative	131.081554456	524.085314834	8154626.783	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-control_recovery_1	negative	160.075754826	271.403513484	8151153.92	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_cold_recovery_3	negative	161.092044112	555.351269753	8150997.184	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_recovery_2	negative	203.102959813	922.142129909	8148033.166	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_recovery.2	negative	109.028456527	733.20884566	8131361.151	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_recovery_1	negative	148.096909953	556.044083324	8123473.876	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_recovery_1	negative	148.096909953	556.044083324	8123473.876	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_heat_2	negative	113.034523864	346.164817875	8105620.385	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_3	negative	169.035751827	567.096044524	8095423.833	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_2	negative	165.054706951	545.894258025	8092573.077	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_heat_2	negative	129.065785327	638.634926081	8091934.384	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_2	negative	138.055097593	368.650817077	8086504.06	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_2	negative	125.023379586	500.87044907	8080345.061	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-drought_recovery_1	negative	210.076174871	556.414916611	8080344.6	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-drought_recovery_1	negative	210.076174871	556.414916611	8080344.6	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_1	negative	145.049624973	732.288711427	8076405.708	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_3	negative	201.087271934	404.380901513	8071050.027	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_cold_recovery_2	negative	125.023379586	500.87044907	8065879.513	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_heat_recovery_3	negative	169.035751827	567.096044524	8056602.249	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-high_light_recovery_1	negative	161.092104354	442.102334595	8054082.468	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-high_light_recovery_1	negative	161.092104354	442.102334595	8054082.468	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_heat_1	negative	131.081554456	524.085314834	8045104.166	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_cold_1	negative	169.035751827	567.096044524	8036184.634	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_1	negative	169.035751827	567.096044524	8036184.634	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-control_recovery_2	negative	160.075855395	65.4178107604	8013873.613	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_recovery_2	negative	161.092104354	442.102334595	8010928.953	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_heat_recovery_1	negative	148.096909953	556.044083324	8010856.72	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_recovery_1	negative	148.096909953	556.044083324	8010856.72	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-high_light_recovery_1	negative	148.096909953	556.044083324	8007900.353	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-high_light_recovery_1	negative	148.096909953	556.044083324	8007900.353	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_3	negative	125.023379586	500.87044907	8002631.669	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-drought_recovery_2	negative	163.075487247	362.719769144	7995695.59	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_recovery_1	negative	131.081554456	524.085314834	7993236.183	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_heat_2	negative	219.097087479	668.370758562	7991171.879	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_recovery_3	negative	163.075487247	362.719769144	7990869.616	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_1	negative	138.055097593	368.650817077	7983833.086	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-control_recovery_2	negative	160.075754826	271.403513484	7968346.223	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_recovery_2	negative	109.028456527	733.20884566	7967542.233	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_3	negative	138.055097593	368.650817077	7961500.926	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-control_recovery_3	negative	157.060754467	673.395787895	7955050.957	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_1	negative	129.065947839	415.863706246	7939643.783	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_1	negative	129.065947839	415.863706246	7939643.783	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_recovery_1	negative	161.092104354	442.102334595	7931605.824	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_1	negative	161.092104354	442.102334595	7931605.824	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	133.031933396	442.294358949	7923925.954	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_cold_recovery.2	negative	145.049606173	478.126835649	7922341.679	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_2	negative	129.065947839	415.863706246	7922252.511	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_1	negative	138.055097593	368.650817077	7921999.663	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_1	negative	138.055097593	368.650817077	7921999.663	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-high_light_recovery_1	negative	161.092104354	442.102334595	7920716.812	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-high_light_3	negative	115.086648151	417.997247466	7918658.479	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-drought_recovery_1	negative	143.081552215	413.938579194	7916545.487	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_1	negative	139.05031348	413.204094087	7909502.325	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-control_recovery_3	negative	229.086134186	75.4572130113	7909442.857	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-control_recovery_1	negative	229.086134186	75.4572130113	7876425.268	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-control_recovery_1	negative	229.086134186	75.4572130113	7876425.268	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_recovery_1	negative	125.023379586	500.87044907	7866461.685	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_1	negative	258.10859871	766.684498265	7857504.591	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_1	negative	258.10859871	766.684498265	7857504.591	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-control_recovery_1	negative	129.102363635	62.7787763415	7855358.646	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-control_recovery_1	negative	129.102363635	62.7787763415	7855358.646	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_1	negative	174.076085448	664.71059456	7837440.776	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-drought_1	negative	174.076085448	664.71059456	7837440.776	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_2	negative	125.023379586	500.87044907	7829562.889	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-drought_recovery_2	negative	145.049624973	732.288711427	7797362.469	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_3	negative	128.070716726	402.227959004	7797254.902	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_recovery_1	negative	127.039045173	478.908976206	7796851.985	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_heat_1	negative	138.055097593	368.650817077	7796601.753	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_1	negative	138.055097593	368.650817077	7796601.753	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_recovery_1	negative	129.065785327	638.634926081	7793994.709	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_recovery_2	negative	169.035751827	567.096044524	7783488.445	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_recovery_1	negative	124.039350582	345.785256941	7771471.021	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_3	negative	162.076178141	605.902027638	7769057.325	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_3	negative	148.096909953	556.044083324	7765051.47	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-control_recovery_2	negative	145.049606173	478.126835649	7753463.61	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_1	negative	162.076178141	605.902027638	7749681.591	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_heat_recovery_1	negative	162.076178141	605.902027638	7749681.591	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-high_light_recovery_1	negative	145.049624973	732.288711427	7743041.25	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	145.049624973	732.288711427	7743041.25	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_3	negative	141.0659958	531.807534215	7725074.92	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	133.031933396	442.294358949	7722370.592	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_2	negative	162.076178141	605.902027638	7716031.092	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_recovery_1	negative	145.049606173	478.126835649	7715536.748	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-control_recovery_1	negative	145.049606173	478.126835649	7715536.748	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_1	negative	131.081554456	524.085314834	7713207.157	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_cold_1	negative	131.081554456	524.085314834	7713207.157	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-control_3	negative	138.055097593	368.650817077	7710377.106	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_recovery_1	negative	161.092044112	555.351269753	7694338.77	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	161.092044112	555.351269753	7694338.77	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_recovery_2	negative	277.101437375	768.482729939	7687102.212	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_heat_3	negative	174.076085448	664.71059456	7671980.29	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_cold_recovery_1	negative	125.023379586	500.87044907	7650595.607	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_cold_recovery_1	negative	125.023379586	500.87044907	7650595.607	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_heat_recovery_1	negative	160.075855395	65.4178107604	7641709.149	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-control_3	negative	146.060090727	528.080048428	7635854.34	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_3	negative	226.070598166	632.340656791	7631234.722	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_3	negative	219.097087479	668.370758562	7630521.411	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_recovery_3	negative	135.064922543	671.83915346	7623730.285	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_1	negative	169.035751827	567.096044524	7613580.52	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-high_light_recovery_3	negative	133.031933396	442.294358949	7608068.918	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_1	negative	135.064922543	671.83915346	7579731.788	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_3	negative	127.039045173	478.908976206	7572061.534	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_1	negative	138.055097593	368.650817077	7571852.261	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-high_light_1	negative	138.055097593	368.650817077	7571852.261	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_1	negative	125.023379586	500.87044907	7565490.094	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_heat_1	negative	125.023379586	500.87044907	7565490.094	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_2	negative	226.070598166	632.340656791	7545326.731	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_recovery.2	negative	207.065138369	362.018787023	7536400.065	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_recovery.2	negative	207.065138369	362.018787023	7536400.065	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_3	negative	138.055097593	368.650817077	7518769.271	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_cold_recovery.2	negative	277.101437375	768.482729939	7516087.258	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_recovery.2	negative	277.101437375	768.482729939	7516087.258	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-control_2	negative	138.055097593	368.650817077	7509934.02	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_1	negative	258.10859871	766.684498265	7497190.186	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-drought_3	negative	165.054706951	545.894258025	7492940.215	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_2	negative	127.039045173	478.908976206	7488736.292	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_1	negative	127.039045173	478.908976206	7446150.176	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-control_recovery_3	negative	131.081554456	524.085314834	7442170.731	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-control_recovery_2	negative	157.060754467	673.395787895	7430636.089	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_cold_recovery_3	negative	161.092104354	442.102334595	7424942.534	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_heat_1	negative	219.097087479	668.370758562	7422634.719	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_recovery_1	negative	226.070598166	632.340656791	7415984.22	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_heat_recovery_1	negative	169.035751827	567.096044524	7411681.59	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_recovery_1	negative	169.035751827	567.096044524	7411681.59	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-high_light_recovery_2	negative	160.075754826	271.403513484	7411675.667	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_recovery_1	negative	325.110961944	732.001078015	7409658.488	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_recovery_1	negative	325.110961944	732.001078015	7409658.488	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_heat_recovery_2	negative	161.092104354	442.102334595	7409497.466	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_1	negative	141.0659958	531.807534215	7408340.435	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_2	negative	138.055097593	368.650817077	7406906.743	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_recovery_1	negative	141.0659958	531.807534215	7400026.817	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	141.0659958	531.807534215	7400026.817	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-control_1	negative	138.055097593	368.650817077	7388377.23	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-control_1	negative	138.055097593	368.650817077	7388377.23	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-drought_3	negative	131.081554456	524.085314834	7371753.252	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-drought_recovery_3	negative	129.065947839	415.863706246	7360959.317	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_1	negative	138.055097593	368.650817077	7354123.492	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_1	negative	138.055097593	368.650817077	7354123.492	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_recovery_1	negative	161.092104354	442.102334595	7348516.657	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_2	negative	129.065947839	415.863706246	7328883.024	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_recovery_3	negative	125.023379586	500.87044907	7328575.622	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_recovery.2	negative	160.075855395	65.4178107604	7315938.868	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_recovery.2	negative	160.075855395	65.4178107604	7315938.868	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_recovery.2	negative	131.081554456	524.085314834	7297927.072	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_recovery.2	negative	131.081554456	524.085314834	7297927.072	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_1	negative	129.065947839	415.863706246	7297622.076	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-control_recovery_3	negative	129.065785327	638.634926081	7284282.737	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_1	negative	169.035751827	567.096044524	7283178.424	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_cold_2	negative	127.039045173	478.908976206	7275118.86	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_2	negative	131.081554456	524.085314834	7265904.507	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_1	negative	139.05031348	413.204094087	7259353.946	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_heat_1	negative	139.05031348	413.204094087	7259353.946	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_2	negative	138.055097593	368.650817077	7234437.838	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-drought_recovery_1	negative	139.05031348	413.204094087	7222377.476	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_recovery_1	negative	139.05031348	413.204094087	7222377.476	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_1	negative	125.023379586	500.87044907	7218349.359	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-drought_1	negative	125.023379586	500.87044907	7218349.359	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_recovery_3	negative	277.101437375	768.482729939	7214015.631	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_3	negative	226.070598166	632.340656791	7205603.785	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_recovery_2	negative	160.075855395	65.4178107604	7198145.513	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_heat_1	negative	125.023379586	500.87044907	7171059.209	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_cold_1	negative	110.071328817	867.935393029	7163321.348	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_recovery.3	negative	157.060754467	673.395787895	7155759.244	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_recovery.3	negative	133.031933396	442.294358949	7154991.264	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_cold_recovery.2	negative	109.028456527	733.20884566	7152897.484	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_recovery.2	negative	109.028456527	733.20884566	7152897.484	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-control_2	negative	226.070598166	632.340656791	7145095.854	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_recovery_2	negative	161.092104354	442.102334595	7135382.804	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_recovery_2	negative	161.092104354	442.102334595	7134103.632	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_recovery_1	negative	157.060754467	673.395787895	7125546.533	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-control_recovery_1	negative	157.060754467	673.395787895	7125546.533	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-high_light_2	negative	133.031933396	442.294358949	7125042.544	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_recovery_1	negative	160.075754826	271.403513484	7124044.278	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-high_light_recovery_2	negative	145.049624973	732.288711427	7119073.73	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_1	negative	161.092044112	555.351269753	7117319.869	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-high_light_1	negative	138.055097593	368.650817077	7110283.451	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-high_light_recovery_2	negative	148.096909953	556.044083324	7105364.963	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_recovery_2	negative	160.075754826	271.403513484	7100645.766	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_cold_1	negative	131.081554456	524.085314834	7099196.499	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_recovery_1	negative	161.092044112	555.351269753	7094259.645	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-high_light_recovery_1	negative	161.092044112	555.351269753	7094259.645	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_1	negative	138.055097593	368.650817077	7093835.141	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_cold_1	negative	138.055097593	368.650817077	7093835.141	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_recovery_3	negative	325.110961944	732.001078015	7089231.374	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_recovery_1	negative	145.049624973	732.288711427	7082267.299	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-control_2	negative	110.071328817	867.935393029	7081309.965	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_heat_recovery_1	negative	135.064922543	671.83915346	7080804.663	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_heat_recovery_1	negative	135.064922543	671.83915346	7080804.663	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_heat_recovery_3	negative	162.076178141	605.902027638	7072344.259	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_recovery_3	negative	169.035751827	567.096044524	7070360.988	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_recovery_2	negative	141.0659958	531.807534215	7066665.095	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_3	negative	125.023379586	500.87044907	7053099.064	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_recovery_1	negative	148.096909953	556.044083324	7048723.675	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_recovery_1	negative	145.049606173	478.126835649	7036734.859	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_recovery_1	negative	245.095407817	720.45724836	7021632.197	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-high_light_recovery_3	negative	195.049508504	746.350639308	7016016.496	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_heat_recovery_1	negative	125.023379586	500.87044907	7014165.115	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_heat_recovery_1	negative	125.023379586	500.87044907	7014165.115	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_1	negative	109.028456527	733.20884566	7011748.29	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-control_1	negative	109.028456527	733.20884566	7011748.29	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_recovery.2	negative	166.072040805	626.85306269	7007164.426	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_recovery.2	negative	166.072040805	626.85306269	7007164.426	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_1	negative	125.023379586	500.87044907	7001698.582	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_1	negative	125.023379586	500.87044907	7001698.582	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-drought_recovery_2	negative	129.065947839	415.863706246	6996766.061	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-drought_1	negative	174.076085448	664.71059456	6987560.398	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-drought_1	negative	148.096909953	556.044083324	6971368.717	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_1	negative	148.096909953	556.044083324	6971368.717	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_heat_recovery_2	negative	277.101437375	768.482729939	6963808.274	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_recovery_2	negative	157.060754467	673.395787895	6959672.454	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_1	negative	140.034389249	507.171563189	6954121.987	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_1	negative	140.034389249	507.171563189	6954121.987	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-control_recovery_1	negative	195.049508504	746.350639308	6944616.919	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_heat_recovery_1	negative	160.075754826	271.403513484	6942308.058	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-control_recovery_2	negative	195.049508504	746.350639308	6926057.426	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_recovery_2	negative	113.034523864	346.164817875	6913972.28	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_cold_3	negative	127.039045173	478.908976206	6904192.382	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_recovery_3	negative	161.092104354	442.102334595	6896531.966	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_recovery_2	negative	127.039045173	478.908976206	6891659.639	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_recovery_3	negative	109.028456527	733.20884566	6881119.036	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_heat_recovery_2	negative	161.092104354	442.102334595	6873150.473	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_recovery_2	negative	210.076174871	556.414916611	6871360.233	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_recovery_3	negative	192.050472469	513.214176912	6864385.046	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_2	negative	226.070598166	632.340656791	6862514.816	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-drought_1	negative	112.050591326	558.97645159	6857070.506	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_1	negative	219.097087479	668.370758562	6849450.683	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_cold_2	negative	226.070598166	632.340656791	6847199.814	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-control_1	negative	125.023379586	500.87044907	6840364.386	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_1	negative	125.023379586	500.87044907	6840364.386	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_recovery_1	negative	277.101437375	768.482729939	6839092.03	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-control_recovery_1	negative	277.101437375	768.482729939	6839092.03	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_2	negative	112.050591326	558.97645159	6832051.792	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_1	negative	226.070598166	632.340656791	6831544.731	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_1	negative	226.070598166	632.340656791	6831544.731	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_3	negative	129.065785327	638.634926081	6830139.844	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_recovery_3	negative	148.096909953	556.044083324	6825834.127	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-high_light_3	negative	125.023379586	500.87044907	6823888.123	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_recovery_1	negative	161.092104354	442.102334595	6823677.177	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_recovery_1	negative	145.049606173	478.126835649	6821395.17	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_1	negative	138.055097593	368.650817077	6819356.443	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-high_light_recovery_1	negative	133.031933396	442.294358949	6817500.144	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_recovery_1	negative	133.031933396	442.294358949	6817500.144	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-drought_2	negative	148.096909953	556.044083324	6814881.286	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_recovery_1	negative	161.092104354	442.102334595	6808834.862	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	161.092104354	442.102334595	6808834.862	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.3	negative	160.075754826	271.403513484	6795768.218	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_cold_recovery.2	negative	192.050472469	513.214176912	6792094.241	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_recovery.2	negative	192.050472469	513.214176912	6792094.241	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_recovery_3	negative	160.075855395	65.4178107604	6781149.634	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_heat_1	negative	162.076178141	605.902027638	6777483.712	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_heat_1	negative	162.076178141	605.902027638	6777483.712	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_1	negative	226.070598166	632.340656791	6777252.205	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_1	negative	226.070598166	632.340656791	6777252.205	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_recovery_1	negative	162.076178141	605.902027638	6769626.238	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_recovery_1	negative	160.075855395	65.4178107604	6765002.232	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_recovery.3	negative	109.028456527	733.20884566	6756287.726	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-drought_1	negative	131.081554456	524.085314834	6752527.779	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-drought_1	negative	131.081554456	524.085314834	6752527.779	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_heat_1	negative	127.039045173	478.908976206	6751490.823	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_heat_1	negative	127.039045173	478.908976206	6751490.823	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_recovery_2	negative	146.060090727	528.080048428	6747788.921	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_2	negative	125.023379586	500.87044907	6744073.729	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_recovery_3	negative	133.031933396	442.294358949	6739021.313	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-control_3	negative	125.023379586	500.87044907	6734729.59	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_heat_recovery_1	negative	148.096909953	556.044083324	6733381.237	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_heat_recovery_1	negative	148.096909953	556.044083324	6733381.237	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_recovery.2	negative	229.086134186	75.4572130113	6732005.205	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_cold_recovery.2	negative	229.086134186	75.4572130113	6732005.205	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_1	negative	135.064922543	671.83915346	6725741.979	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-drought_1	negative	135.064922543	671.83915346	6725741.979	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_cold_2	negative	110.071328817	867.935393029	6685898.422	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_cold_1	negative	127.039045173	478.908976206	6685081.98	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_cold_1	negative	127.039045173	478.908976206	6685081.98	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_recovery_3	negative	139.05031348	413.204094087	6681205.555	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_recovery_1	negative	113.034523864	346.164817875	6671833.337	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_recovery_1	negative	113.034523864	346.164817875	6671833.337	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_3	negative	138.055097593	368.650817077	6671630.647	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_1	negative	131.081554456	524.085314834	6657216.295	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_recovery_3	negative	277.101437375	768.482729939	6653264.588	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_1	negative	226.070598166	632.340656791	6647379.895	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_1	negative	226.070598166	632.340656791	6647379.895	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_recovery_3	negative	195.049508504	746.350639308	6640315.604	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_recovery_2	negative	192.050472469	513.214176912	6640071.813	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_heat_1	negative	138.055097593	368.650817077	6637188.391	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-control_recovery_3	negative	128.070716726	402.227959004	6637012.995	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_recovery_1	negative	113.034523864	346.164817875	6634801.309	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_cold_recovery.3	negative	195.049508504	746.350639308	6623616.579	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_recovery.2	negative	161.092104354	442.102334595	6614331.182	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.2	negative	161.092104354	442.102334595	6614331.182	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_3	negative	157.060754467	673.395787895	6597626.119	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_cold_recovery_1	negative	148.096909953	556.044083324	6591243.599	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_recovery_3	negative	201.087271934	404.380901513	6590151.154	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_recovery_1	negative	129.065947839	415.863706246	6587259.17	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-drought_recovery_1	negative	129.065947839	415.863706246	6587259.17	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_1	negative	125.023379586	500.87044907	6576224.927	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_heat_1	negative	125.023379586	500.87044907	6576224.927	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_recovery_1	negative	109.028456527	733.20884566	6571043.575	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_1	negative	110.071328817	867.935393029	6556592.372	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_cold_1	negative	110.071328817	867.935393029	6556592.372	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_recovery.3	negative	277.101437375	768.482729939	6554862.393	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_3	negative	110.071328817	867.935393029	6549443.485	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_recovery_1	negative	195.049508504	746.350639308	6542481.945	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_recovery_1	negative	195.049508504	746.350639308	6542481.945	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_1	negative	226.070598166	632.340656791	6539084.332	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_1	negative	169.035751827	567.096044524	6534911.689	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-control_recovery_1	negative	192.050472469	513.214176912	6533877.014	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-control_recovery_1	negative	192.050472469	513.214176912	6533877.014	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_3	negative	226.070598166	632.340656791	6531995.176	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_3	negative	258.10859871	766.684498265	6522375.771	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_recovery_1	negative	207.065138369	362.018787023	6520060.078	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_cold_1	negative	127.039045173	478.908976206	6517663.072	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_cold_1	negative	258.10859871	766.684498265	6510504.167	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_1	negative	127.039045173	478.908976206	6509000.058	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_cold_1	negative	127.039045173	478.908976206	6509000.058	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_cold_recovery_1	negative	125.023379586	500.87044907	6486937.268	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_recovery_1	negative	133.031933396	442.294358949	6486038.525	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_recovery_1	negative	161.092044112	555.351269753	6485248.519	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_heat_recovery_3	negative	157.060754467	673.395787895	6482035.796	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_cold_recovery_2	negative	195.049508504	746.350639308	6472301.057	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_recovery_3	negative	113.034523864	346.164817875	6466726.423	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_1	negative	135.064922543	671.83915346	6465909.814	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-control_2	negative	145.049624973	732.288711427	6456469.892	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_3	negative	113.034523864	346.164817875	6436605.697	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_recovery_2	negative	133.031933396	442.294358949	6428915.398	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-control_2	negative	125.023379586	500.87044907	6419185.768	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_1	negative	226.070598166	632.340656791	6417312.286	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_recovery_1	negative	133.031933396	442.294358949	6415516.117	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_cold_recovery.2	negative	145.049606173	478.126835649	6410600.672	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_recovery.2	negative	145.049606173	478.126835649	6410600.672	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_2	negative	201.087271934	404.380901513	6406930.204	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_cold_2	negative	135.064922543	671.83915346	6403949.927	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_recovery_2	negative	195.049508504	746.350639308	6395835.398	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_heat_recovery_1	negative	169.035751827	567.096044524	6394954.078	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_recovery_3	negative	146.060090727	528.080048428	6390112.304	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_heat_recovery_1	negative	109.028456527	733.20884566	6367492.885	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_heat_recovery_1	negative	109.028456527	733.20884566	6367492.885	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-drought_1	negative	139.05031348	413.204094087	6365567.478	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_1	negative	139.05031348	413.204094087	6365567.478	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_heat_1	negative	133.031933396	442.294358949	6355992.013	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_recovery_2	negative	115.086576502	897.299789636	6352342.94	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-high_light_1	negative	125.023379586	500.87044907	6351644.733	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-drought_recovery_2	negative	112.050591326	558.97645159	6351162.311	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_recovery_1	negative	131.081554456	524.085314834	6338420.109	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_recovery_1	negative	131.081554456	524.085314834	6338420.109	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_recovery.2	negative	129.102363635	62.7787763415	6336299.877	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_recovery.2	negative	129.102363635	62.7787763415	6336299.877	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_1	negative	148.096909953	556.044083324	6334173.395	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_recovery.2	negative	162.076178141	605.902027638	6332464.928	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_1	negative	110.071328817	867.935393029	6320006.713	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_1	negative	110.071328817	867.935393029	6320006.713	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_2	negative	145.049606173	478.126835649	6298144.583	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-control_recovery_2	negative	141.0659958	531.807534215	6294061.026	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	163.075487247	362.719769144	6287054.348	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_heat_2	negative	129.065785327	638.634926081	6275781.243	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_cold_recovery.2	negative	203.102959813	922.142129909	6266764.095	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_recovery.2	negative	203.102959813	922.142129909	6266764.095	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_2	negative	219.097087479	668.370758562	6261013.57	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-control_recovery_1	negative	129.065785327	638.634926081	6252947.3	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-control_recovery_1	negative	129.065785327	638.634926081	6252947.3	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_recovery_2	negative	162.076178141	605.902027638	6236819.735	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_recovery_1	negative	225.075448787	353.021782816	6234118.013	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_2	negative	148.096909953	556.044083324	6228775.481	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_recovery.3	negative	145.049606173	478.126835649	6222110.1	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_1	negative	277.101437375	768.482729939	6221109.438	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_heat_recovery_1	negative	277.101437375	768.482729939	6221109.438	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_2	negative	125.023379586	500.87044907	6216661.109	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_recovery_3	negative	225.075448787	353.021782816	6214679.102	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_recovery.3	negative	160.075855395	65.4178107604	6203064.084	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_heat_1	negative	145.049606173	478.126835649	6187530.887	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-control_recovery_3	negative	141.0659958	531.807534215	6174376.725	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	195.049508504	746.350639308	6172632.992	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_recovery.2	negative	195.049508504	746.350639308	6172632.992	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_recovery_3	negative	207.065138369	362.018787023	6152569.222	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_recovery_1	negative	192.050472469	513.214176912	6136782.089	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_recovery_1	negative	229.086134186	75.4572130113	6117718.903	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_recovery_1	negative	160.075855395	65.4178107604	6111844.564	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_recovery_1	negative	160.075855395	65.4178107604	6111844.564	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-control_recovery_1	negative	192.050472469	513.214176912	6097174.182	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_recovery.2	negative	128.070716726	402.227959004	6091722.37	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_3	negative	133.031933396	442.294358949	6090501.875	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_recovery_3	negative	109.028456527	733.20884566	6087178.201	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_1	negative	138.055097593	368.650817077	6085566.659	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-high_light_recovery_1	negative	161.092044112	555.351269753	6082258.508	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-high_light_recovery_3	negative	277.101437375	768.482729939	6082077.998	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_1	negative	140.034389249	507.171563189	6081300.817	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_heat_1	negative	140.034389249	507.171563189	6081300.817	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_recovery_1	negative	163.075487247	362.719769144	6076982.825	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_recovery_1	negative	163.075487247	362.719769144	6076982.825	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_2	negative	133.031933396	442.294358949	6072541.722	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_1	negative	129.065785327	638.634926081	6068761.046	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_recovery_2	negative	128.070716726	402.227959004	6065958.947	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_heat_1	negative	219.097087479	668.370758562	6065147.695	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_1	negative	219.097087479	668.370758562	6065147.695	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_recovery_1	negative	129.065785327	638.634926081	6061117.68	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-control_recovery_2	negative	166.072040805	626.85306269	6060462.798	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_3	negative	127.039045173	478.908976206	6048846.578	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_1	negative	133.031933396	442.294358949	6041482.105	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-drought_1	negative	133.031933396	442.294358949	6041482.105	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_1	negative	146.060090727	528.080048428	6039448.74	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-control_recovery_1	negative	203.102959813	922.142129909	6030139.07	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-control_recovery_1	negative	203.102959813	922.142129909	6030139.07	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_heat_1	negative	115.086576502	897.299789636	6025648.472	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_recovery.3	negative	166.072040805	626.85306269	6025517.828	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_recovery_1	negative	169.035751827	567.096044524	6025424.984	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_recovery_1	negative	169.035751827	567.096044524	6025424.984	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-control_recovery_1	negative	225.075448787	353.021782816	6013624.972	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-control_recovery_1	negative	225.075448787	353.021782816	6013624.972	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_1	negative	125.023379586	500.87044907	6010798.184	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_1	negative	125.023379586	500.87044907	6010798.184	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_1	negative	174.076085448	664.71059456	6007707.177	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-control_recovery_1	negative	131.081554456	524.085314834	6006298.622	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-control_recovery_1	negative	131.081554456	524.085314834	6006298.622	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_recovery_1	negative	161.092044112	555.351269753	6004345.015	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	157.060754467	673.395787895	5997046.457	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_cold_recovery_1	negative	157.060754467	673.395787895	5997046.457	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_recovery_3	negative	595.16565303	510.108375093	5996130.988	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_3	negative	127.039045173	478.908976206	5990973.896	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-control_recovery_1	negative	157.060754467	673.395787895	5990952.553	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_recovery_3	negative	138.055097593	368.650817077	5990689.135	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_2	negative	161.092044112	555.351269753	5987666.891	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_2	negative	277.101437375	768.482729939	5987319.813	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_recovery.2	negative	195.049508504	746.350639308	5984425.186	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_recovery.3	negative	192.050472469	513.214176912	5980473.272	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_heat_3	negative	115.086576502	897.299789636	5979844.165	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-high_light_recovery_3	negative	229.086134186	75.4572130113	5977040.031	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_recovery_2	negative	229.086134186	75.4572130113	5971328.792	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_3	negative	174.076085448	664.71059456	5968101.137	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-control_recovery_1	negative	207.065138369	362.018787023	5966011.297	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-drought_1	negative	133.031933396	442.294358949	5961402.718	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_1	negative	133.031933396	442.294358949	5957927.208	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_1	negative	133.031933396	442.294358949	5957927.208	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-drought_recovery_1	negative	146.060090727	528.080048428	5956299.909	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-drought_recovery_1	negative	146.060090727	528.080048428	5956299.909	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_heat_recovery_2	negative	138.055097593	368.650817077	5943173.647	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-control_recovery_1	negative	207.065138369	362.018787023	5933551.441	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_recovery_1	negative	207.065138369	362.018787023	5933551.441	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_recovery_2	negative	131.081554456	524.085314834	5923709.954	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_recovery_1	negative	325.110961944	732.001078015	5914149.314	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_recovery_1	negative	161.092104354	442.102334595	5912513.269	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_recovery_1	negative	161.092104354	442.102334595	5912513.269	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery_1	negative	195.049508504	746.350639308	5909857.212	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_recovery_1	negative	124.039378692	163.709299272	5907347.737	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	229.086134186	75.4572130113	5901669.604	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_1	negative	226.070598166	632.340656791	5889336.086	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_1	negative	139.05031348	413.204094087	5876366.45	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_heat_1	negative	139.05031348	413.204094087	5876366.45	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	161.092104354	442.102334595	5866179.248	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-high_light_3	negative	161.082301556	152.040443946	5857881.954	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_cold_recovery.2	negative	133.031933396	442.294358949	5857838.657	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_cold_recovery.2	negative	133.031933396	442.294358949	5857838.657	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_3	negative	115.086576502	897.299789636	5856240.193	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-control_recovery_1	negative	133.031933396	442.294358949	5854818.517	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_recovery_1	negative	131.081554456	524.085314834	5846687.457	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_2	negative	148.096909953	556.044083324	5843987.603	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_recovery.3	negative	207.065138369	362.018787023	5838522.681	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_1	negative	226.070598166	632.340656791	5838007.076	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_2	negative	174.076085448	664.71059456	5830907.31	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_3	negative	145.049606173	478.126835649	5827846.345	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_3	negative	125.023379586	500.87044907	5824270.489	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_cold_recovery_2	negative	131.081554456	524.085314834	5823698.715	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_cold_3	negative	110.071328817	867.935393029	5820557.347	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_1	negative	219.097087479	668.370758562	5820058.341	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_1	negative	219.097087479	668.370758562	5820058.341	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_cold_recovery_1	negative	195.049508504	746.350639308	5815024.032	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_cold_recovery_1	negative	195.049508504	746.350639308	5815024.032	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_heat_2	negative	115.086576502	897.299789636	5810921.587	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_3	negative	160.075754826	271.403513484	5809862.88	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-control_3	negative	133.031933396	442.294358949	5808900.003	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-drought_recovery_1	negative	161.092104354	442.102334595	5806801.824	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_recovery_1	negative	161.092104354	442.102334595	5806801.824	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_1	negative	162.076178141	605.902027638	5805703.493	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_recovery_1	negative	162.076178141	605.902027638	5783068.704	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_recovery_1	negative	162.076178141	605.902027638	5783068.704	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_recovery_1	negative	129.065785327	638.634926081	5765910.225	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_recovery_2	negative	161.092044112	555.351269753	5761796.954	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_3	negative	129.065785327	638.634926081	5758201.647	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-control_recovery_3	negative	195.049508504	746.350639308	5756771.491	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_cold_1	negative	125.023379586	500.87044907	5755811.977	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_cold_1	negative	125.023379586	500.87044907	5755811.977	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_heat_2	negative	139.05031348	413.204094087	5748359.111	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	160.075754826	271.403513484	5732471.555	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_cold_recovery_1	negative	160.075754826	271.403513484	5732471.555	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-drought_recovery_1	negative	162.076178141	605.902027638	5729751.184	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-high_light_recovery_1	negative	195.049508504	746.350639308	5721039.406	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-high_light_recovery_1	negative	195.049508504	746.350639308	5721039.406	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_heat_1	negative	129.065785327	638.634926081	5719488.058	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_heat_1	negative	129.065785327	638.634926081	5719488.058	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_1	negative	129.065785327	638.634926081	5718129.359	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_1	negative	129.065785327	638.634926081	5718129.359	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-drought_recovery_1	negative	161.092104354	442.102334595	5714766.226	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_recovery_2	negative	129.065785327	638.634926081	5708648.938	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_1	negative	133.031933396	442.294358949	5707497.856	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_recovery_3	negative	131.081554456	524.085314834	5706475.896	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-control_3	negative	127.039045173	478.908976206	5705712.618	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	139.05031348	413.204094087	5702436.082	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_recovery_1	negative	166.072040805	626.85306269	5699995.241	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_1	negative	140.034389249	507.171563189	5693574.399	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-high_light_1	negative	140.034389249	507.171563189	5693574.399	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_cold_1	negative	125.023379586	500.87044907	5693244.946	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_recovery_2	negative	207.065138369	362.018787023	5682073.804	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_3	negative	139.05031348	413.204094087	5669449.39	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_2	negative	110.071328817	867.935393029	5665959.792	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_recovery_1	negative	201.087271934	404.380901513	5643660.304	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_recovery_1	negative	201.087271934	404.380901513	5643660.304	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_heat_1	negative	226.070598166	632.340656791	5629757.898	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-drought_1	negative	131.081554456	524.085314834	5619925.579	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-control_recovery_1	negative	141.0659958	531.807534215	5618878.706	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-control_recovery_1	negative	141.0659958	531.807534215	5618878.706	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-control_recovery_1	negative	277.101437375	768.482729939	5616158.248	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-high_light_recovery_1	negative	163.075487247	362.719769144	5608203.075	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_recovery_1	negative	128.070716726	402.227959004	5607947.304	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	128.070716726	402.227959004	5607947.304	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_recovery.3	negative	225.075448787	353.021782816	5604084.165	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-control_2	negative	141.066024093	333.035450274	5595812.071	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_3	negative	125.023379586	500.87044907	5595075.876	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_recovery_2	negative	225.075448787	353.021782816	5592077.801	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_1	negative	226.070598166	632.340656791	5591525.253	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_1	negative	131.081554456	524.085314834	5590979.729	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-drought_recovery_2	negative	169.035751827	567.096044524	5585998.998	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-control_recovery_1	negative	133.031933396	442.294358949	5580667.264	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-control_recovery_1	negative	133.031933396	442.294358949	5580667.264	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_2	negative	131.081554456	524.085314834	5579434.45	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_cold_recovery_1	negative	131.081554456	524.085314834	5578163.052	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_cold_recovery_1	negative	131.081554456	524.085314834	5578163.052	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_3	negative	148.096909953	556.044083324	5575337.133	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_recovery_1	negative	277.101437375	768.482729939	5574745.556	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_recovery_1	negative	162.076178141	605.902027638	5574570.37	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_recovery_3	negative	207.065138369	362.018787023	5564072.599	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-drought_recovery_2	negative	162.076178141	605.902027638	5557318.142	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_3	negative	135.064922543	671.83915346	5551309.467	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_recovery_3	negative	225.075448787	353.021782816	5551170.005	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_3	negative	133.031933396	442.294358949	5549336.397	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_cold_recovery.2	negative	128.070716726	402.227959004	5540071.743	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	128.070716726	402.227959004	5540071.743	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_heat_3	negative	112.050591326	558.97645159	5537891.128	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-drought_1	negative	129.065785327	638.634926081	5524562.592	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_recovery_1	negative	219.097087479	668.370758562	5523573.5	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_recovery_3	negative	145.049606173	478.126835649	5514079.992	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_1	negative	145.049606173	478.126835649	5513762.9	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_1	negative	145.049606173	478.126835649	5513762.9	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_recovery.3	negative	229.086134186	75.4572130113	5501275.351	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_2	negative	145.049606173	478.126835649	5494919.021	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_1	negative	110.071328817	867.935393029	5494834.917	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_1	negative	110.071328817	867.935393029	5494834.917	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_3	negative	148.096909953	556.044083324	5492425.443	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_recovery_3	negative	195.049508504	746.350639308	5482213.999	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_heat_recovery_2	negative	203.102959813	922.142129909	5472400.611	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_cold_recovery_2	negative	160.075855395	65.4178107604	5461603.211	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_recovery_3	negative	128.070716726	402.227959004	5452676.832	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-high_light_recovery_3	negative	207.065138369	362.018787023	5451075.755	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_2	negative	127.039045173	478.908976206	5449120.264	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_recovery_3	negative	157.060754467	673.395787895	5441802.636	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_recovery_1	negative	112.050591326	558.97645159	5440016.742	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_recovery_2	negative	128.070716726	402.227959004	5434451.477	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	141.0659958	531.807534215	5433660.554	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	141.0659958	531.807534215	5433660.554	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_recovery_2	negative	145.049606173	478.126835649	5432991.346	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_recovery_1	negative	128.070716726	402.227959004	5432831.789	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_recovery_3	negative	277.101437375	768.482729939	5432352.364	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_1	negative	135.064922543	671.83915346	5431693.464	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-control_recovery_3	negative	203.102959813	922.142129909	5428854.356	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_heat_recovery_1	negative	125.023379586	500.87044907	5426251.229	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_1	negative	139.05031348	413.204094087	5425206.042	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-high_light_1	negative	139.05031348	413.204094087	5425206.042	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_recovery_1	negative	169.035751827	567.096044524	5419914.968	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_recovery_2	negative	195.049508504	746.350639308	5419272.471	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_3	negative	110.071328817	867.935393029	5414710.232	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_recovery.2	negative	140.034389249	507.171563189	5412552.708	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-control_1	negative	148.096909953	556.044083324	5410178.021	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-control_1	negative	148.096909953	556.044083324	5410178.021	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_recovery_1	negative	129.065947839	415.863706246	5404052.131	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_recovery_1	negative	161.092104354	442.102334595	5394729.083	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_heat_recovery_1	negative	161.092104354	442.102334595	5394729.083	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_2	negative	135.064922543	671.83915346	5391662.196	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-drought_1	negative	129.065785327	638.634926081	5390479.281	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-drought_1	negative	129.065785327	638.634926081	5390479.281	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_recovery_1	negative	225.075448787	353.021782816	5385614.016	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-high_light_recovery_1	negative	225.075448787	353.021782816	5385614.016	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-high_light_recovery_2	negative	225.075448787	353.021782816	5382394.693	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_recovery.3	negative	128.070716726	402.227959004	5375924.373	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_2	negative	160.075754826	271.403513484	5370450.285	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_cold_recovery.2	negative	165.054706951	545.894258025	5367497.916	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_recovery_1	negative	160.075754826	271.403513484	5362746.946	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-high_light_2	negative	129.065785327	638.634926081	5359022.674	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_1	negative	115.086576502	897.299789636	5358810.201	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_1	negative	115.086576502	897.299789636	5358810.201	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_heat_recovery_1	negative	195.049508504	746.350639308	5354225.888	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_heat_recovery_1	negative	195.049508504	746.350639308	5354225.888	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_1	negative	127.039045173	478.908976206	5352496.531	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-control_1	negative	127.039045173	478.908976206	5352496.531	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_cold_recovery_1	negative	225.075448787	353.021782816	5348732.75	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-control_recovery_1	negative	128.070716726	402.227959004	5347885.37	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-control_recovery_1	negative	128.070716726	402.227959004	5347885.37	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_1	negative	127.039045173	478.908976206	5347688.931	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_1	negative	131.081554456	524.085314834	5338673.592	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_1	negative	131.081554456	524.085314834	5338673.592	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_2	negative	148.096909953	556.044083324	5335849.181	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_recovery_1	negative	162.076178141	605.902027638	5331028.949	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_recovery_1	negative	162.076178141	605.902027638	5331028.949	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_heat_1	negative	163.075487247	362.719769144	5330729.09	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-high_light_recovery_1	negative	229.086134186	75.4572130113	5325738.786	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_recovery_1	negative	229.086134186	75.4572130113	5325738.786	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_recovery_3	negative	128.070716726	402.227959004	5325051.177	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-control_recovery_1	negative	160.075855395	65.4178107604	5324252.353	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_cold_recovery_3	negative	160.075754826	271.403513484	5323578.526	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_cold_recovery_1	negative	229.086134186	75.4572130113	5320707.861	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_recovery_1	negative	229.086134186	75.4572130113	5320707.861	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_2	negative	139.05031348	413.204094087	5320146.563	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-high_light_1	negative	148.096909953	556.044083324	5319774.307	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_recovery_1	negative	595.16565303	510.108375093	5313635.951	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_recovery_1	negative	595.16565303	510.108375093	5313635.951	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_3	negative	148.096909953	556.044083324	5302099.238	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_heat_1	negative	148.096909953	556.044083324	5290090.743	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_heat_1	negative	148.096909953	556.044083324	5290090.743	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-high_light_1	negative	139.05031348	413.204094087	5286022.174	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_1	negative	258.10859871	766.684498265	5283199.134	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_heat_recovery_3	negative	161.092104354	442.102334595	5271849.436	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	229.086134186	75.4572130113	5266085.17	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-control_recovery_1	negative	166.072040805	626.85306269	5260976.633	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-control_recovery_1	negative	166.072040805	626.85306269	5260976.633	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_recovery_1	negative	165.054706951	545.894258025	5259631.241	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_recovery_2	negative	125.023379586	500.87044907	5256260.399	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_recovery.2	negative	225.075448787	353.021782816	5253543.603	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_recovery.2	negative	225.075448787	353.021782816	5253543.603	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_cold_recovery_1	negative	145.049606173	478.126835649	5251660.194	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	128.070716726	402.227959004	5250191.292	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-high_light_recovery_1	negative	128.070716726	402.227959004	5250191.292	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_heat_3	negative	128.070716726	402.227959004	5245604.566	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	277.101437375	768.482729939	5236111.695	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_recovery_1	negative	277.101437375	768.482729939	5236111.695	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_1	negative	125.023379586	500.87044907	5226504.334	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_recovery_1	negative	225.075448787	353.021782816	5223277.351	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_recovery_1	negative	138.055097593	368.650817077	5219402.265	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_recovery_1	negative	138.055097593	368.650817077	5219402.265	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-drought_2	negative	219.097087479	668.370758562	5207180.265	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_recovery_2	negative	595.16565303	510.108375093	5205860.479	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_cold_recovery_1	negative	225.075448787	353.021782816	5203337.406	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_recovery_2	negative	157.060754467	673.395787895	5202630.089	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-control_recovery_1	negative	139.05031348	413.204094087	5190652.793	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-control_recovery_1	negative	139.05031348	413.204094087	5190652.793	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_heat_recovery_2	negative	128.070716726	402.227959004	5189895.452	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_recovery_1	negative	131.081554456	524.085314834	5177318.742	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_recovery.3	negative	131.081554456	524.085314834	5160487.419	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-control_recovery_3	negative	140.034389249	507.171563189	5159708.13	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_cold_recovery_1	negative	128.070716726	402.227959004	5152568.486	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-high_light_2	negative	161.082301556	152.040443946	5150610.611	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_2	negative	112.050591326	558.97645159	5149202.388	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_recovery_3	negative	115.086648151	417.997247466	5118365.038	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_cold_recovery.2	negative	162.076178141	605.902027638	5113879.83	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_recovery.2	negative	162.076178141	605.902027638	5113879.83	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-high_light_recovery_3	negative	192.050472469	513.214176912	5111225.153	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_recovery_2	negative	163.075487247	362.719769144	5096506.921	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_recovery_2	negative	207.065138369	362.018787023	5095406.633	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_recovery_2	negative	195.049508504	746.350639308	5093470.587	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_recovery_1	negative	145.049606173	478.126835649	5087350.237	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_1	negative	135.064922543	671.83915346	5080599.625	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_cold_1	negative	135.064922543	671.83915346	5080599.625	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_recovery.3	negative	203.102959813	922.142129909	5070841.172	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_1	negative	145.049606173	478.126835649	5070236.16	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	145.049606173	478.126835649	5070236.16	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	145.049606173	478.126835649	5067070.803	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_recovery_3	negative	131.081554456	524.085314834	5064102.984	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_recovery_1	negative	195.049508504	746.350639308	5053631.136	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_heat_1	negative	124.039346937	606.311521329	5048739.993	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	135.064922543	671.83915346	5048653.927	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_1	negative	135.064922543	671.83915346	5048653.927	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_1	negative	138.055097593	368.650817077	5048612.719	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_recovery_1	negative	109.028456527	733.20884566	5047758.223	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_heat_recovery_1	negative	277.101437375	768.482729939	5046255.45	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-high_light_3	negative	133.031933396	442.294358949	5041241.223	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-control_recovery_2	negative	218.117141617	63.4203134757	5040068.334	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_2	negative	133.031933396	442.294358949	5035642.37	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-control_recovery_3	negative	166.072040805	626.85306269	5024528.157	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-control_1	negative	133.031933396	442.294358949	5020081.11	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-control_1	negative	133.031933396	442.294358949	5020081.11	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_recovery_1	negative	229.086134186	75.4572130113	5019807.566	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_1	negative	174.076085448	664.71059456	5018763.035	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_1	negative	174.076085448	664.71059456	5018763.035	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_recovery_1	negative	203.102959813	922.142129909	5017371.26	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_1	negative	140.034389249	507.171563189	5012691.56	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_cold_1	negative	140.034389249	507.171563189	5012691.56	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_1	negative	112.050591326	558.97645159	5009588.407	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-drought_1	negative	112.050591326	558.97645159	5009588.407	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_cold_2	negative	325.110961944	732.001078015	5007644.636	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_cold_recovery_1	negative	145.049606173	478.126835649	5003958.008	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_recovery_1	negative	145.049606173	478.126835649	5003958.008	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_recovery.2	negative	201.087271934	404.380901513	4994045.652	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_cold_2	negative	148.096909953	556.044083324	4991199.334	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-high_light_recovery_2	negative	229.086134186	75.4572130113	4980368.76	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_1	negative	148.096909953	556.044083324	4967436.815	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-high_light_1	negative	148.096909953	556.044083324	4967436.815	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_heat_recovery_1	negative	131.081554456	524.085314834	4960433.788	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-control_1	negative	135.064922543	671.83915346	4936359.126	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-control_1	negative	135.064922543	671.83915346	4936359.126	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_1	negative	112.050591326	558.97645159	4928148.653	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_1	negative	112.050591326	558.97645159	4928148.653	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_1	negative	115.086576502	897.299789636	4916696.169	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_heat_1	negative	115.086576502	897.299789636	4916696.169	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_heat_recovery_1	negative	128.070716726	402.227959004	4908389.223	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	128.070716726	402.227959004	4908389.223	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-control_1	negative	141.066024093	333.035450274	4895536.523	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-control_1	negative	141.066024093	333.035450274	4895536.523	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_1	negative	277.101437375	768.482729939	4888970.1	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-high_light_recovery_1	negative	277.101437375	768.482729939	4888970.1	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_2	negative	129.065785327	638.634926081	4888673.604	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_3	negative	141.066024093	333.035450274	4887525.004	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-control_recovery_1	negative	128.070716726	402.227959004	4876842.327	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_heat_2	negative	139.05031348	413.204094087	4871261.472	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_recovery_3	negative	141.0659958	531.807534215	4868238.662	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_1	negative	128.070716726	402.227959004	4863445.566	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_recovery_1	negative	201.087271934	404.380901513	4863059.244	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_3	negative	139.05031348	413.204094087	4848335.552	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_heat_1	negative	162.076178141	605.902027638	4847362.721	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-high_light_3	negative	131.081554456	524.085314834	4845606.597	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_heat_recovery_1	negative	128.070716726	402.227959004	4841840.395	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_2	negative	174.076085448	664.71059456	4841116.775	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-control_recovery_3	negative	162.076178141	605.902027638	4833130.72	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_heat_recovery_3	negative	325.110961944	732.001078015	4824593.276	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_3	negative	219.097087479	668.370758562	4820745.2	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_1	negative	161.082301556	152.040443946	4811589.307	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_1	negative	161.082301556	152.040443946	4811589.307	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_heat_3	negative	129.065785327	638.634926081	4809845.789	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-drought_recovery_2	negative	161.092104354	442.102334595	4809107.28	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.2	negative	225.075448787	353.021782816	4807813.894	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-high_light_recovery_1	negative	145.049606173	478.126835649	4779809.618	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	145.049606173	478.126835649	4779809.618	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_recovery_1	negative	160.075754826	271.403513484	4773190.374	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-control_2	negative	161.082301556	152.040443946	4766661.31	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_heat_3	negative	161.092044112	555.351269753	4753299.7	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-high_light_1	negative	129.065785327	638.634926081	4746163.654	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_1	negative	129.065785327	638.634926081	4746163.654	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-drought_3	negative	141.066024093	333.035450274	4743294.254	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	595.16565303	510.108375093	4738916.386	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_2	negative	112.050591326	558.97645159	4734652.867	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_recovery_1	negative	148.096909953	556.044083324	4734600.562	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_recovery_1	negative	146.060090727	528.080048428	4730998.503	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_recovery_2	negative	225.075448787	353.021782816	4725687.978	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_cold_recovery_3	negative	229.086134186	75.4572130113	4724709.62	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_1	negative	161.092104354	442.102334595	4719340.769	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_1	negative	148.096909953	556.044083324	4713707.458	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_2	negative	161.092104354	442.102334595	4712144.104	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-high_light_1	negative	129.065785327	638.634926081	4706426.773	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-drought_recovery_3	negative	162.076178141	605.902027638	4706017.522	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_recovery_1	negative	166.072040805	626.85306269	4697938.943	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_recovery_1	negative	157.060754467	673.395787895	4695037.332	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_recovery_1	negative	157.060754467	673.395787895	4695037.332	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_recovery_3	negative	128.070716726	402.227959004	4693431.823	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_1	negative	135.064922543	671.83915346	4689941.48	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-control_2	negative	133.031933396	442.294358949	4665695.541	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_recovery_1	negative	225.075448787	353.021782816	4664649.137	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_cold_recovery_1	negative	225.075448787	353.021782816	4664649.137	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_1	negative	148.096909953	556.044083324	4662576.435	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_1	negative	148.096909953	556.044083324	4662576.435	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-control_recovery_1	negative	131.081554456	524.085314834	4653015.182	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_2	negative	139.05031348	413.204094087	4652884.999	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_3	negative	145.049606173	478.126835649	4648718.656	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_recovery_3	negative	192.050472469	513.214176912	4648361.541	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-control_recovery_2	negative	162.076178141	605.902027638	4643106.355	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_1	negative	148.096909953	556.044083324	4642700.793	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_1	negative	148.096909953	556.044083324	4642700.793	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_3	negative	161.082301556	152.040443946	4641168.74	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_2	negative	165.054706951	545.894258025	4638719.507	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-control_2	negative	148.096909953	556.044083324	4636703.605	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-high_light_3	negative	135.064922543	671.83915346	4630321.715	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-control_3	negative	135.064922543	671.83915346	4627825.531	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_heat_recovery_3	negative	195.049508504	746.350639308	4607233.587	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_recovery.2	negative	129.054742348	473.08756594	4605104.317	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-control_recovery_1	negative	162.076178141	605.902027638	4602825.324	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_recovery_1	negative	162.076178141	605.902027638	4602825.324	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_heat_2	negative	128.070716726	402.227959004	4585624.531	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_3	negative	148.096909953	556.044083324	4584812.163	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_recovery_3	negative	124.039346937	606.311521329	4578467.403	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	141.066024093	333.035450274	4569472.157	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_1	negative	128.070716726	402.227959004	4555302.128	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_heat_1	negative	128.070716726	402.227959004	4555302.128	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_3	negative	129.065785327	638.634926081	4552086.242	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_2	negative	160.075855395	65.4178107604	4539946.96	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_1	negative	165.054706951	545.894258025	4538090.318	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-control_recovery_2	negative	128.070716726	402.227959004	4529800.787	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_heat_2	negative	161.082301556	152.040443946	4525759.001	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_cold_1	negative	148.096909953	556.044083324	4517925.94	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_2	negative	141.066024093	333.035450274	4516450.085	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_3	negative	161.092044112	555.351269753	4516342.895	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_recovery_1	negative	203.102959813	922.142129909	4513529.689	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_recovery_1	negative	145.049606173	478.126835649	4513296.643	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	139.05031348	413.204094087	4513153.147	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-high_light_recovery_1	negative	139.05031348	413.204094087	4513153.147	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-control_recovery_3	negative	165.054706951	545.894258025	4509537.074	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-control_3	negative	141.066024093	333.035450274	4503128.645	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_3	negative	109.028456527	733.20884566	4503033.446	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_1	negative	133.031933396	442.294358949	4493989.6	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_cold_1	negative	133.031933396	442.294358949	4493989.6	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_recovery_2	negative	162.076178141	605.902027638	4481294.914	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_recovery_2	negative	139.05031348	413.204094087	4480676.583	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_heat_2	negative	161.092044112	555.351269753	4478563.334	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_1	negative	195.049508504	746.350639308	4475994.404	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_heat_recovery_1	negative	195.049508504	746.350639308	4475994.404	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_heat_1	negative	159.076469963	709.608605344	4468078.008	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_cold_1	negative	133.031933396	442.294358949	4467394.153	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_1	negative	133.031933396	442.294358949	4467394.153	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_3	negative	133.031933396	442.294358949	4464040.307	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_cold_2	negative	133.031933396	442.294358949	4461732.333	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_recovery_1	negative	203.102959813	922.142129909	4461068.546	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_heat_recovery_1	negative	203.102959813	922.142129909	4461068.546	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_2	negative	139.05031348	413.204094087	4451532.659	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_heat_1	negative	148.096909953	556.044083324	4450947.492	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_recovery_1	negative	141.066024093	333.035450274	4449917.22	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_1	negative	192.050472469	513.214176912	4443914.767	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_recovery_1	negative	192.050472469	513.214176912	4443914.767	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_1	negative	112.050591326	558.97645159	4442771.47	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_1	negative	112.050591326	558.97645159	4442771.47	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_recovery_2	negative	277.101437375	768.482729939	4439959.895	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_recovery_1	negative	157.060754467	673.395787895	4433840.8	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-high_light_recovery_2	negative	138.055097593	368.650817077	4420871.711	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_recovery_3	negative	166.072040805	626.85306269	4420536.166	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_recovery_3	negative	145.049606173	478.126835649	4419497.149	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_3	negative	148.096909953	556.044083324	4418977.104	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-high_light_1	negative	145.049606173	478.126835649	4415297.774	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_3	negative	139.05031348	413.204094087	4407385.546	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_1	negative	141.066024093	333.035450274	4397888.992	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_1	negative	141.066024093	333.035450274	4397888.992	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	201.087271934	404.380901513	4391322.074	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_cold_recovery.2	negative	201.087271934	404.380901513	4391322.074	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_recovery_1	negative	141.0659958	531.807534215	4388198.368	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_3	negative	203.102959813	922.142129909	4386121.023	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-control_1	negative	174.076085448	664.71059456	4379324.826	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-control_1	negative	174.076085448	664.71059456	4379324.826	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-control_recovery_2	negative	129.054742348	473.08756594	4364631.128	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_recovery_1	negative	160.075855395	65.4178107604	4357613.735	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_cold_recovery_1	negative	160.075855395	65.4178107604	4357613.735	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_recovery_1	negative	160.075855395	65.4178107604	4356238.545	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_cold_2	negative	139.05031348	413.204094087	4350220.006	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-high_light_3	negative	219.097087479	668.370758562	4349710.771	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_1	negative	112.050591326	558.97645159	4344998.99	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_cold_recovery_3	negative	162.076178141	605.902027638	4342760.139	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_3	negative	129.065785327	638.634926081	4337516.983	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_recovery_1	negative	195.049508504	746.350639308	4332455.436	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_recovery_1	negative	162.076178141	605.902027638	4332238.896	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_recovery_3	negative	145.049606173	478.126835649	4327222.485	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_3	negative	203.102959813	922.142129909	4325965.203	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_recovery_1	negative	163.075487247	362.719769144	4321111.135	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-high_light_recovery_1	negative	163.075487247	362.719769144	4321111.135	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_recovery_1	negative	124.039378692	163.709299272	4317602.68	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	124.039378692	163.709299272	4317602.68	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	161.092044112	555.351269753	4316708.046	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_heat_1	negative	161.092044112	555.351269753	4316708.046	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-high_light_recovery_2	negative	145.049606173	478.126835649	4312052.218	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_1	negative	165.054706951	545.894258025	4309851.623	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_1	negative	165.054706951	545.894258025	4309851.623	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_recovery_2	negative	192.050472469	513.214176912	4309391.538	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_2	negative	325.110961944	732.001078015	4308368.944	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_recovery_3	negative	166.072040805	626.85306269	4307989.955	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_recovery_3	negative	162.076178141	605.902027638	4304673.89	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_recovery_3	negative	203.102959813	922.142129909	4301179.01	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-control_recovery_1	negative	139.05031348	413.204094087	4291341.487	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	277.101437375	768.482729939	4288662.908	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-control_recovery_2	negative	165.054706951	545.894258025	4278010.602	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_2	negative	160.075754826	271.403513484	4270043.171	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_cold_1	negative	110.071328817	867.935393029	4269101.473	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_cold_recovery_2	negative	203.102959813	922.142129909	4260559.199	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_recovery_2	negative	124.039346937	606.311521329	4260446.91	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_2	negative	166.072040805	626.85306269	4250353.533	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_3	negative	112.050591326	558.97645159	4248662.554	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_3	negative	148.096909953	556.044083324	4246686.959	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_1	negative	161.092104354	442.102334595	4242161.183	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_1	negative	161.092104354	442.102334595	4242161.183	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_heat_recovery_1	negative	113.034523864	346.164817875	4231876.634	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_1	negative	129.065785327	638.634926081	4221879.074	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_1	negative	129.065785327	638.634926081	4221879.074	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_recovery_3	negative	131.081554456	524.085314834	4210822.969	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_heat_recovery_3	negative	277.101437375	768.482729939	4201786.485	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_2	negative	129.065785327	638.634926081	4197315.374	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_2	negative	115.086576502	897.299789636	4194541.938	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_heat_recovery_1	negative	195.049508504	746.350639308	4184628.268	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_3	negative	161.092044112	555.351269753	4177412.489	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-high_light_3	negative	129.065785327	638.634926081	4173041.514	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_recovery_3	negative	166.072040805	626.85306269	4172952.098	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_recovery_1	negative	141.066024093	333.035450274	4172321.596	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_2	negative	109.028456527	733.20884566	4171112.478	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_heat_recovery_1	negative	125.023379586	500.87044907	4167163.64	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_heat_recovery_1	negative	125.023379586	500.87044907	4167163.64	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_2	negative	161.092104354	442.102334595	4165698.427	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-high_light_recovery_1	negative	192.050472469	513.214176912	4164160.158	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_cold_2	negative	219.097087479	668.370758562	4159119.467	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_recovery_1	negative	133.031933396	442.294358949	4158749.605	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_recovery_2	negative	277.101437375	768.482729939	4154278.437	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-control_recovery_2	negative	133.031933396	442.294358949	4148161.961	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_3	negative	135.064922543	671.83915346	4147907.467	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_recovery_1	negative	277.101437375	768.482729939	4144872.408	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-control_recovery_1	negative	141.066024093	333.035450274	4143865.717	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	124.039346937	606.311521329	4134060.548	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	124.039346937	606.311521329	4134060.548	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	203.102959813	922.142129909	4115639.263	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_cold_recovery_1	negative	203.102959813	922.142129909	4115639.263	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_heat_recovery_3	negative	203.102959813	922.142129909	4114935.563	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_heat_recovery_2	negative	203.102959813	922.142129909	4104506.365	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_2	negative	148.096909953	556.044083324	4100643.002	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_1	negative	148.096909953	556.044083324	4096409.232	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_1	negative	148.096909953	556.044083324	4096409.232	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-high_light_recovery_2	negative	131.081554456	524.085314834	4095746.295	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_recovery_1	negative	166.072040805	626.85306269	4067405.026	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_recovery_1	negative	166.072040805	626.85306269	4067405.026	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_recovery_3	negative	225.075448787	353.021782816	4064922.026	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_1	negative	141.066024093	333.035450274	4061184.653	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_1	negative	141.066024093	333.035450274	4061184.653	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_1	negative	325.110961944	732.001078015	4059970.437	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_1	negative	325.110961944	732.001078015	4059970.437	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_recovery_2	negative	192.050472469	513.214176912	4056358.991	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-control_3	negative	161.092104354	442.102334595	4055164.965	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-high_light_1	negative	141.066024093	333.035450274	4055026.632	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_1	negative	141.066024093	333.035450274	4055026.632	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-control_recovery_1	negative	218.117141617	63.4203134757	4051598.272	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_2	negative	145.049606173	478.126835649	4051147.394	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	131.081554456	524.085314834	4039048.987	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_recovery_1	negative	131.081554456	524.085314834	4039048.987	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_recovery_1	negative	166.072040805	626.85306269	4038137.355	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_recovery.3	negative	141.0659958	531.807534215	4034379.264	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_2	negative	145.049606173	478.126835649	4031945.869	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_1	negative	325.110961944	732.001078015	4029459.736	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_cold_1	negative	325.110961944	732.001078015	4029459.736	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_cold_recovery_1	negative	141.066024093	333.035450274	4028192.72	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_1	negative	174.076085448	664.71059456	4019437.219	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_cold_1	negative	174.076085448	664.71059456	4019437.219	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_cold_recovery_1	negative	192.050472469	513.214176912	4010626.215	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_cold_recovery_1	negative	192.050472469	513.214176912	4010626.215	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-control_recovery_1	negative	218.117141617	63.4203134757	4009256.629	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-control_recovery_1	negative	218.117141617	63.4203134757	4009256.629	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_recovery_3	negative	160.075855395	65.4178107604	4006081.89	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_1	negative	325.110961944	732.001078015	3999820.054	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_1	negative	161.092044112	555.351269753	3997082.887	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_heat_1	negative	161.092044112	555.351269753	3997082.887	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_recovery_1	negative	145.049606173	478.126835649	3990948.234	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	203.102959813	922.142129909	3990478.091	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_recovery_1	negative	203.102959813	922.142129909	3990478.091	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-control_recovery_1	negative	165.054706951	545.894258025	3973462.428	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-control_recovery_1	negative	165.054706951	545.894258025	3973462.428	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_recovery_1	negative	162.076178141	605.902027638	3958489.696	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-high_light_recovery_1	negative	162.076178141	605.902027638	3958489.696	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_3	negative	131.081554456	524.085314834	3947591.659	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-control_1	negative	219.097087479	668.370758562	3946597.234	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-control_1	negative	219.097087479	668.370758562	3946597.234	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_cold_recovery_1	negative	141.0659958	531.807534215	3945746.409	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	201.087271934	404.380901513	3933899.554	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_cold_recovery.2	negative	133.031933396	442.294358949	3932486.183	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-control_2	negative	129.065785327	638.634926081	3930015.617	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_heat_recovery_3	negative	141.066024093	333.035450274	3924018.137	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_1	negative	157.060754467	673.395787895	3920175.555	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-high_light_recovery_1	negative	157.060754467	673.395787895	3920175.555	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_recovery_1	negative	145.049606173	478.126835649	3918681.386	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_recovery_1	negative	145.049606173	478.126835649	3918681.386	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_2	negative	109.028456527	733.20884566	3916268.634	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_1	negative	129.065785327	638.634926081	3916235.607	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-control_1	negative	161.082301556	152.040443946	3907289.724	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-control_1	negative	161.082301556	152.040443946	3907289.724	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_1	negative	141.066024093	333.035450274	3904897.689	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_3	negative	325.110961944	732.001078015	3904497.909	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_recovery_1	negative	165.054706951	545.894258025	3902755.996	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_1	negative	133.031933396	442.294358949	3902499.782	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-control_recovery_3	negative	201.087271934	404.380901513	3900772.778	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_3	negative	125.023379586	500.87044907	3894283.77	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_heat_recovery_2	negative	325.110961944	732.001078015	3889671.466	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_cold_recovery.2	negative	129.054742348	473.08756594	3888525.04	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_recovery.2	negative	129.054742348	473.08756594	3888525.04	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_recovery.2	negative	218.117141617	63.4203134757	3887965.301	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_heat_2	negative	113.034523864	346.164817875	3877630.496	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_3	negative	325.110961944	732.001078015	3876622.668	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_3	negative	112.050591326	558.97645159	3873047.242	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_3	negative	325.110961944	732.001078015	3871722.313	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_cold_recovery_1	negative	141.0659958	531.807534215	3867599.121	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	141.0659958	531.807534215	3867599.121	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_2	negative	141.066024093	333.035450274	3859443.476	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_2	negative	166.072040805	626.85306269	3856087.769	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_recovery_3	negative	141.0659958	531.807534215	3855076.819	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-control_recovery_3	negative	129.102293431	306.737242727	3853092.983	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_1	negative	174.076085448	664.71059456	3852002.737	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_heat_3	negative	113.034523864	346.164817875	3850860.068	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_recovery_3	negative	192.050472469	513.214176912	3842070.459	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_heat_recovery_1	negative	109.028456527	733.20884566	3838218.193	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_heat_recovery_1	negative	109.028456527	733.20884566	3838218.193	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_heat_1	negative	128.070716726	402.227959004	3834677.286	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_heat_recovery_3	negative	163.075487247	362.719769144	3834531.566	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_recovery_1	negative	325.110961944	732.001078015	3831760.643	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_heat_recovery_1	negative	325.110961944	732.001078015	3831760.643	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_cold_recovery.2	negative	165.054706951	545.894258025	3831710.698	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_cold_recovery.2	negative	165.054706951	545.894258025	3831710.698	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_recovery_1	negative	203.102959813	922.142129909	3823187.835	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_heat_3	negative	161.082301556	152.040443946	3821266.329	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_recovery_1	negative	131.081554456	524.085314834	3810577.696	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_2	negative	161.092104354	442.102334595	3807223.496	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_2	negative	174.076085448	664.71059456	3801916.586	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_cold_1	negative	141.066024093	333.035450274	3789691.885	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	203.102959813	922.142129909	3785179.582	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_2	negative	325.110961944	732.001078015	3781741.118	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_recovery_3	negative	161.092104354	442.102334595	3779758.999	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_recovery_3	negative	325.110961944	732.001078015	3775607.278	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_recovery_1	negative	163.075487247	362.719769144	3767264.137	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_1	negative	192.050472469	513.214176912	3764834.272	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_recovery_1	negative	325.110961944	732.001078015	3763358.114	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_recovery_2	negative	203.102959813	922.142129909	3762125.416	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_heat_1	negative	161.082301556	152.040443946	3753607.005	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_heat_1	negative	161.082301556	152.040443946	3753607.005	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_3	negative	165.054706951	545.894258025	3752745.043	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-drought_2	negative	192.050472469	513.214176912	3752712.615	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_1	negative	161.092104354	442.102334595	3752140.088	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-high_light_1	negative	161.092104354	442.102334595	3752140.088	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_recovery_2	negative	140.034389249	507.171563189	3751963.839	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_cold_1	negative	139.05031348	413.204094087	3750079.763	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_recovery_1	negative	129.054742348	473.08756594	3745265.084	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_heat_recovery_1	negative	125.023379586	500.87044907	3744069.38	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_3	negative	141.066024093	333.035450274	3736164.263	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_2	negative	141.066024093	333.035450274	3732046.054	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	325.110961944	732.001078015	3728802.0	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_recovery_1	negative	138.055097593	368.650817077	3724344.013	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_recovery_1	negative	166.072040805	626.85306269	3722866.5	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_recovery_1	negative	166.072040805	626.85306269	3722866.5	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_recovery_2	negative	141.0659958	531.807534215	3722779.056	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-control_recovery_1	negative	129.102363635	62.7787763415	3722495.082	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-control_recovery_1	negative	140.034389249	507.171563189	3714516.4	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-control_recovery_1	negative	140.034389249	507.171563189	3714516.4	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_heat_recovery_3	negative	113.034523864	346.164817875	3707430.758	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_1	negative	161.092044112	555.351269753	3706672.189	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_1	negative	161.092044112	555.351269753	3706672.189	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.2	negative	114.054991387	708.933736893	3703393.26	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_cold_recovery_3	negative	141.066024093	333.035450274	3697963.601	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_1	negative	138.055097593	368.650817077	3695638.068	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-control_recovery_1	negative	129.054742348	473.08756594	3684721.166	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-control_recovery_1	negative	129.054742348	473.08756594	3684721.166	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-control_recovery_3	negative	129.054742348	473.08756594	3678967.023	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_1	negative	139.05031348	413.204094087	3676027.518	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_1	negative	139.05031348	413.204094087	3676027.518	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	277.101437375	768.482729939	3672590.167	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_recovery_1	negative	277.101437375	768.482729939	3672590.167	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_2	negative	128.070716726	402.227959004	3672203.794	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-control_recovery_3	negative	113.034523864	346.164817875	3669772.321	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_recovery_1	negative	129.065785327	638.634926081	3669605.066	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_1	negative	145.049606173	478.126835649	3667540.647	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_1	negative	145.049606173	478.126835649	3667540.647	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_recovery.2	negative	128.10709995	285.189766771	3662998.759	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_recovery_1	negative	110.071328817	867.935393029	3653560.159	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_3	negative	161.092104354	442.102334595	3650877.337	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	113.034523864	346.164817875	3647052.922	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_recovery_1	negative	163.075487247	362.719769144	3646208.986	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_heat_recovery_1	negative	163.075487247	362.719769144	3646208.986	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_1	negative	125.023379586	500.87044907	3645698.052	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_recovery.2	negative	140.034389249	507.171563189	3643142.302	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_cold_recovery.2	negative	140.034389249	507.171563189	3643142.302	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_recovery_1	negative	163.075487247	362.719769144	3638501.769	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_recovery_1	negative	163.075487247	362.719769144	3638501.769	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_3	negative	163.075487247	362.719769144	3638107.649	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-control_recovery_2	negative	201.087271934	404.380901513	3632596.958	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_cold_1	negative	145.049606173	478.126835649	3625891.124	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_3	negative	135.064922543	671.83915346	3624786.786	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_1	negative	145.049606173	478.126835649	3621923.426	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_1	negative	145.049606173	478.126835649	3621923.426	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_recovery_3	negative	124.039378692	163.709299272	3620173.54	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_3	negative	145.049606173	478.126835649	3617328.159	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-control_2	negative	145.049606173	478.126835649	3615594.626	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-control_1	negative	131.081554456	524.085314834	3609804.096	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-control_1	negative	131.081554456	524.085314834	3609804.096	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_cold_recovery_1	negative	160.075855395	65.4178107604	3605156.105	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_1	negative	148.096909953	556.044083324	3603772.532	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_recovery_1	negative	203.102959813	922.142129909	3601769.114	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_heat_recovery_1	negative	203.102959813	922.142129909	3601769.114	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_heat_1	negative	113.034523864	346.164817875	3599583.628	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_1	negative	113.034523864	346.164817875	3599583.628	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-control_3	negative	174.076085448	664.71059456	3597774.507	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-drought_recovery_3	negative	131.081554456	524.085314834	3592005.592	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-drought_2	negative	161.092044112	555.351269753	3589228.041	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_heat_recovery_3	negative	141.0659958	531.807534215	3586225.12	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	203.102959813	922.142129909	3584839.825	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_recovery_1	negative	138.055097593	368.650817077	3575749.51	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-high_light_recovery_1	negative	138.055097593	368.650817077	3575749.51	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_recovery_2	negative	129.102293431	306.737242727	3574817.212	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_1	negative	124.039346937	606.311521329	3563267.331	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	192.050472469	513.214176912	3558830.281	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_1	negative	192.050472469	513.214176912	3558830.281	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_heat_2	negative	157.060754467	673.395787895	3549116.834	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_1	negative	161.082301556	152.040443946	3543493.037	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_heat_1	negative	161.082301556	152.040443946	3543493.037	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_recovery_1	negative	129.102293431	306.737242727	3540477.502	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-control_1	negative	161.092104354	442.102334595	3536898.446	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_1	negative	161.092104354	442.102334595	3536898.446	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_2	negative	141.066024093	333.035450274	3535362.017	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_1	negative	219.097087479	668.370758562	3535269.948	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_1	negative	219.097087479	668.370758562	3535269.948	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_cold_1	negative	139.05031348	413.204094087	3527861.678	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_1	negative	139.05031348	413.204094087	3527861.678	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-high_light_1	negative	109.028456527	733.20884566	3522422.221	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-high_light_1	negative	109.028456527	733.20884566	3522422.221	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_recovery.3	negative	129.102363635	62.7787763415	3521673.423	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	325.110961944	732.001078015	3516935.742	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_cold_1	negative	325.110961944	732.001078015	3516935.742	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_2	negative	140.034389249	507.171563189	3516135.584	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_recovery_1	negative	135.064922543	671.83915346	3514491.589	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-control_3	negative	161.082301556	152.040443946	3514277.797	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_cold_recovery_1	negative	138.055097593	368.650817077	3509860.162	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_recovery_1	negative	161.092104354	442.102334595	3502840.348	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_3	negative	125.023379586	500.87044907	3501161.142	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_cold_recovery_3	negative	129.102293431	306.737242727	3499749.902	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_3	negative	174.076085448	664.71059456	3497050.275	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-drought_2	negative	161.082301556	152.040443946	3495298.63	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_1	negative	133.031933396	442.294358949	3495026.982	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-drought_recovery_1	negative	133.031933396	442.294358949	3495026.982	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_cold_1	negative	128.070716726	402.227959004	3490620.837	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_1	negative	128.070716726	402.227959004	3490620.837	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_heat_1	negative	127.039045173	478.908976206	3489493.653	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_heat_1	negative	128.10709995	285.189766771	3486333.119	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_heat_1	negative	139.05031348	413.204094087	3484073.774	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_1	negative	128.070716726	402.227959004	3481786.859	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_1	negative	133.031933396	442.294358949	3470900.071	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_2	negative	160.075855395	65.4178107604	3470055.677	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_1	negative	161.092104354	442.102334595	3439844.5	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.3	negative	162.076178141	605.902027638	3434604.192	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_3	negative	219.097087479	668.370758562	3430663.437	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_1	negative	161.082301556	152.040443946	3426275.356	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_2	negative	124.039378692	163.709299272	3425286.764	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	163.075487247	362.719769144	3421087.98	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_recovery_1	negative	325.110961944	732.001078015	3420851.11	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_recovery_1	negative	325.110961944	732.001078015	3420851.11	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_recovery_3	negative	201.087271934	404.380901513	3410772.615	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_heat_recovery_1	negative	195.049508504	746.350639308	3401477.154	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_2	negative	131.081554456	524.085314834	3400462.33	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_recovery_1	negative	115.086648151	417.997247466	3386055.57	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-drought_1	negative	325.110961944	732.001078015	3382569.605	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_cold_2	negative	174.076085448	664.71059456	3375166.799	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_1	negative	109.028456527	733.20884566	3373467.73	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_heat_recovery_3	negative	139.05031348	413.204094087	3370402.847	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_1	negative	139.05031348	413.204094087	3368091.814	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_3	negative	174.076085448	664.71059456	3365192.144	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_heat_2	negative	325.110961944	732.001078015	3355064.742	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_recovery_1	negative	141.0659958	531.807534215	3354499.537	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_1	negative	141.0659958	531.807534215	3354499.537	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-drought_1	negative	161.092044112	555.351269753	3353376.036	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_3	negative	128.070716726	402.227959004	3352912.396	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-control_3	negative	145.049606173	478.126835649	3349276.42	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_3	negative	115.086576502	897.299789636	3347974.727	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_recovery_2	negative	145.049606173	478.126835649	3345598.776	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_recovery.2	negative	161.092104354	442.102334595	3340098.429	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_2	negative	115.086576502	897.299789636	3338892.804	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_recovery_2	negative	163.075487247	362.719769144	3336831.254	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-high_light_recovery_3	negative	129.102293431	306.737242727	3332642.142	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-control_1	negative	145.049606173	478.126835649	3329793.518	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-control_1	negative	145.049606173	478.126835649	3329793.518	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_3	negative	145.049606173	478.126835649	3325583.425	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_recovery_2	negative	131.081554456	524.085314834	3325353.987	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_recovery_1	negative	109.028456527	733.20884566	3324577.938	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-high_light_recovery_1	negative	109.028456527	733.20884566	3324577.938	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-high_light_recovery_2	negative	157.060754467	673.395787895	3321491.27	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_recovery_1	negative	131.081554456	524.085314834	3318960.349	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-drought_recovery_1	negative	131.081554456	524.085314834	3318960.349	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_3	negative	128.070716726	402.227959004	3317871.857	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_recovery.3	negative	201.087271934	404.380901513	3316861.325	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_cold_recovery.3	negative	129.054742348	473.08756594	3315205.719	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_1	negative	135.064922543	671.83915346	3312221.095	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_recovery_1	negative	129.102293431	306.737242727	3309280.612	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-high_light_recovery_1	negative	129.102293431	306.737242727	3309280.612	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_recovery_1	negative	129.102293431	306.737242727	3309004.283	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_recovery_1	negative	129.102293431	306.737242727	3309004.283	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_1	negative	219.097087479	668.370758562	3297824.325	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_cold_1	negative	219.097087479	668.370758562	3297824.325	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_3	negative	161.092104354	442.102334595	3294998.675	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_2	negative	128.10709995	285.189766771	3285147.006	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_cold_1	negative	174.076085448	664.71059456	3283753.39	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_1	negative	174.076085448	664.71059456	3283753.39	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_3	negative	109.028456527	733.20884566	3277530.298	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_recovery_1	negative	165.054706951	545.894258025	3276260.018	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_1	negative	145.049606173	478.126835649	3274266.15	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_heat_1	negative	145.049606173	478.126835649	3274266.15	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-control_recovery_1	negative	201.087271934	404.380901513	3273284.486	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_recovery_1	negative	201.087271934	404.380901513	3273284.486	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_2	negative	192.050472469	513.214176912	3269739.53	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_2	negative	129.065785327	638.634926081	3269531.404	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_recovery_1	negative	139.05031348	413.204094087	3266233.415	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	139.05031348	413.204094087	3266233.415	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_recovery_2	negative	128.070716726	402.227959004	3264076.149	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_1	negative	135.064922543	671.83915346	3263066.102	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_1	negative	135.064922543	671.83915346	3263066.102	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_3	negative	141.066024093	333.035450274	3249794.33	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_3	negative	129.054742348	473.08756594	3248517.426	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_heat_recovery_2	negative	192.050472469	513.214176912	3234987.725	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_heat_recovery_1	negative	113.034523864	346.164817875	3225869.02	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_recovery_1	negative	113.034523864	346.164817875	3225869.02	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_3	negative	174.076085448	664.71059456	3217674.618	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_1	negative	145.049606173	478.126835649	3216496.248	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_3	negative	229.086134186	75.4572130113	3206761.206	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_recovery_1	negative	141.0659958	531.807534215	3205646.895	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_1	negative	325.110961944	732.001078015	3204111.904	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_2	negative	161.092104354	442.102334595	3201920.452	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_1	negative	162.076178141	605.902027638	3200896.341	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_1	negative	129.065785327	638.634926081	3196189.886	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_cold_1	negative	129.065785327	638.634926081	3196189.886	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_recovery_2	negative	218.117141617	63.4203134757	3196178.48	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_1	negative	157.060754467	673.395787895	3191184.569	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_1	negative	161.092104354	442.102334595	3188418.872	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_heat_1	negative	161.092104354	442.102334595	3188418.872	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_3	negative	161.092044112	555.351269753	3185800.245	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_recovery_3	negative	161.092044112	555.351269753	3178719.137	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_recovery_3	negative	109.028456527	733.20884566	3178288.464	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_recovery.2	negative	139.05031348	413.204094087	3173565.184	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-control_1	negative	112.050591326	558.97645159	3171359.795	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-control_1	negative	112.050591326	558.97645159	3171359.795	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_2	negative	277.101437375	768.482729939	3170519.996	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_recovery_2	negative	133.031933396	442.294358949	3166583.642	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_1	negative	161.082301556	152.040443946	3166540.157	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_3	negative	133.031933396	442.294358949	3159747.698	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_3	negative	141.066024093	333.035450274	3159058.771	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_3	negative	192.050472469	513.214176912	3158943.957	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_cold_recovery_2	negative	201.087271934	404.380901513	3152598.722	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_recovery_2	negative	166.072040805	626.85306269	3141753.857	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_2	negative	161.092104354	442.102334595	3140069.315	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_recovery_1	negative	165.054706951	545.894258025	3132839.608	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_3	negative	161.092104354	442.102334595	3129409.604	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_recovery_1	negative	128.070716726	402.227959004	3125865.674	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	192.050472469	513.214176912	3125011.664	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_heat_recovery_1	negative	192.050472469	513.214176912	3125011.664	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_2	negative	162.076178141	605.902027638	3123983.556	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_1	negative	140.034389249	507.171563189	3119206.55	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-control_1	negative	140.034389249	507.171563189	3119206.55	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_recovery_1	negative	110.071328817	867.935393029	3116772.765	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-drought_recovery_1	negative	110.071328817	867.935393029	3116772.765	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_3	negative	160.075855395	65.4178107604	3108727.666	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_cold_1	negative	161.092104354	442.102334595	3100461.792	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_recovery_1	negative	128.070716726	402.227959004	3098076.464	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_recovery_1	negative	128.070716726	402.227959004	3098076.464	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_1	negative	160.075855395	65.4178107604	3096694.758	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_cold_1	negative	160.075855395	65.4178107604	3096694.758	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_recovery_2	negative	110.071328817	867.935393029	3094573.65	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_recovery_1	negative	162.076178141	605.902027638	3089500.284	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_2	negative	129.102293431	306.737242727	3084905.942	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_2	negative	140.034389249	507.171563189	3081600.57	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_recovery_1	negative	115.086576502	897.299789636	3080368.13	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_recovery_1	negative	115.086576502	897.299789636	3080368.13	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_cold_1	negative	161.092104354	442.102334595	3080311.331	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_1	negative	161.092104354	442.102334595	3080311.331	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	192.050472469	513.214176912	3074125.566	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_recovery_2	negative	201.087271934	404.380901513	3072946.439	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_1	negative	129.065785327	638.634926081	3070922.186	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-control_1	negative	129.065785327	638.634926081	3070922.186	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_heat_1	negative	113.034523864	346.164817875	3070260.32	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_1	negative	174.076085448	664.71059456	3063149.511	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_3	negative	161.092104354	442.102334595	3059356.75	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-high_light_recovery_2	negative	129.102293431	306.737242727	3054722.191	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_2	negative	141.066024093	333.035450274	3051693.265	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	131.081554456	524.085314834	3039521.467	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-drought_recovery_1	negative	161.092044112	555.351269753	3038566.474	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_recovery_1	negative	161.092044112	555.351269753	3038566.474	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_1	negative	128.10709995	285.189766771	3035224.967	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_heat_recovery_1	negative	128.10709995	285.189766771	3035224.967	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_recovery_1	negative	161.092044112	555.351269753	3034239.968	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_recovery_1	negative	165.054706951	545.894258025	3033715.959	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-drought_recovery_1	negative	165.054706951	545.894258025	3033715.959	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-drought_1	negative	113.034523864	346.164817875	3023581.279	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_recovery_2	negative	157.060754467	673.395787895	3023402.041	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_3	negative	112.050591326	558.97645159	3022492.325	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_recovery_3	negative	140.034389249	507.171563189	3019272.292	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_heat_recovery_1	negative	166.072040805	626.85306269	3013936.107	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_recovery_1	negative	166.072040805	626.85306269	3013936.107	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_recovery_1	negative	141.0659958	531.807534215	3011779.646	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_2	negative	161.092104354	442.102334595	3011062.598	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_recovery_1	negative	129.054742348	473.08756594	3010565.347	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_1	negative	112.050591326	558.97645159	3009874.576	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_recovery_2	negative	141.066024093	333.035450274	3009671.372	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	109.028456527	733.20884566	3008244.493	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-high_light_recovery_2	negative	141.0659958	531.807534215	3002774.898	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_1	negative	201.087271934	404.380901513	2998665.817	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-high_light_recovery_1	negative	201.087271934	404.380901513	2998665.817	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-high_light_recovery_1	negative	157.060754467	673.395787895	2997232.758	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-control_3	negative	129.065785327	638.634926081	2996963.532	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_recovery_1	negative	128.10709995	285.189766771	2993559.4	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_1	negative	162.076178141	605.902027638	2986068.971	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_1	negative	174.076085448	664.71059456	2979043.097	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_2	negative	192.050472469	513.214176912	2978009.518	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_2	negative	129.054742348	473.08756594	2968203.226	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_recovery_1	negative	201.087271934	404.380901513	2962053.97	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_3	negative	140.034389249	507.171563189	2961565.041	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_3	negative	219.097087479	668.370758562	2961441.793	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_1	negative	115.086576502	897.299789636	2959322.753	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-control_3	negative	160.075754826	271.403513484	2951571.753	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-control_2	negative	219.097087479	668.370758562	2947775.849	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-control_recovery_3	negative	218.117141617	63.4203134757	2936103.281	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-high_light_2	negative	135.064922543	671.83915346	2935908.277	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-drought_1	negative	160.075855395	65.4178107604	2933947.492	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_1	negative	219.097087479	668.370758562	2932100.956	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_cold_1	negative	219.097087479	668.370758562	2932100.956	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-control_1	negative	192.050472469	513.214176912	2931642.652	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-control_1	negative	192.050472469	513.214176912	2931642.652	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_cold_1	negative	160.075855395	65.4178107604	2930803.874	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_recovery_2	negative	174.076085448	664.71059456	2927345.657	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_1	negative	161.082301556	152.040443946	2913795.685	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_3	negative	157.060754467	673.395787895	2911226.854	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_1	negative	161.092104354	442.102334595	2910575.371	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_1	negative	161.092104354	442.102334595	2910575.371	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_recovery_3	negative	165.054706951	545.894258025	2905571.076	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-drought_recovery_3	negative	128.070716726	402.227959004	2904287.57	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_recovery_1	negative	174.076085448	664.71059456	2903443.192	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-drought_recovery_1	negative	174.076085448	664.71059456	2903443.192	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-drought_recovery_2	negative	161.092044112	555.351269753	2902740.318	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.2	negative	218.117141617	63.4203134757	2900877.289	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_cold_recovery.2	negative	218.117141617	63.4203134757	2900877.289	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_2	negative	325.110961944	732.001078015	2900143.848	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_recovery_1	negative	174.076085448	664.71059456	2899301.473	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-control_recovery_2	negative	128.10709995	285.189766771	2895177.062	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_heat_1	negative	161.092104354	442.102334595	2895073.46	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_heat_recovery_1	negative	141.0659958	531.807534215	2895056.836	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	141.0659958	531.807534215	2895056.836	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_2	negative	141.066024093	333.035450274	2894260.663	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_1	negative	325.110961944	732.001078015	2890214.55	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_1	negative	325.110961944	732.001078015	2890214.55	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_recovery_3	negative	174.076085448	664.71059456	2883682.445	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_cold_2	negative	128.070716726	402.227959004	2881330.847	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_recovery_2	negative	129.054742348	473.08756594	2877662.333	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_2	negative	160.075855395	65.4178107604	2873018.445	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_recovery_3	negative	129.102363635	62.7787763415	2871994.078	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_3	negative	277.101437375	768.482729939	2870641.711	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_2	negative	219.097087479	668.370758562	2866540.892	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_cold_3	negative	139.05031348	413.204094087	2865273.213	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_heat_1	negative	277.101437375	768.482729939	2864962.028	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_heat_1	negative	277.101437375	768.482729939	2864962.028	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_heat_1	negative	325.110961944	732.001078015	2864888.809	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_cold_1	negative	325.110961944	732.001078015	2864568.2	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_3	negative	161.092104354	442.102334595	2862959.66	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.2	negative	113.034523864	346.164817875	2852861.682	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_recovery_1	negative	129.102293431	306.737242727	2852445.735	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_2	negative	135.064922543	671.83915346	2852190.426	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_recovery.3	negative	165.054706951	545.894258025	2851374.16	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_1	negative	141.066024093	333.035450274	2844674.339	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	109.028456527	733.20884566	2840508.656	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_1	negative	160.075855395	65.4178107604	2840404.354	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_1	negative	160.075855395	65.4178107604	2840404.354	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_1	negative	141.066024093	333.035450274	2839905.269	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_1	negative	141.066024093	333.035450274	2839905.269	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	115.086648151	417.997247466	2834806.869	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_heat_recovery_1	negative	115.086648151	417.997247466	2834806.869	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_recovery_3	negative	129.102293431	306.737242727	2834143.013	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_3	negative	129.054742348	473.08756594	2830661.206	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_recovery.3	negative	129.102293431	306.737242727	2830175.331	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_recovery_3	negative	128.10709995	285.189766771	2826968.494	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-control_2	negative	112.050591326	558.97645159	2823511.023	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_2	negative	161.082301556	152.040443946	2822770.214	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_heat_2	negative	109.028456527	733.20884566	2820436.783	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_recovery.3	negative	140.034389249	507.171563189	2808648.207	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_1	negative	112.050591326	558.97645159	2802297.235	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_cold_1	negative	112.050591326	558.97645159	2802297.235	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_recovery_1	negative	129.054742348	473.08756594	2801512.258	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_recovery_1	negative	129.054742348	473.08756594	2801512.258	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_heat_2	negative	157.060754467	673.395787895	2799531.569	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_1	negative	157.060754467	673.395787895	2798403.078	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_1	negative	157.060754467	673.395787895	2798403.078	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-high_light_1	negative	160.075855395	65.4178107604	2796973.556	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_1	negative	160.075855395	65.4178107604	2796973.556	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_heat_3	negative	277.101437375	768.482729939	2792388.433	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_heat_1	negative	141.066024093	333.035450274	2783386.293	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_1	negative	141.066024093	333.035450274	2783386.293	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_3	negative	109.028456527	733.20884566	2783217.565	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_heat_recovery_1	negative	325.110961944	732.001078015	2781017.188	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_3	negative	161.082301556	152.040443946	2780921.928	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_3	negative	201.087271934	404.380901513	2779984.798	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_recovery_1	negative	109.028456527	733.20884566	2778974.929	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-control_recovery_1	negative	109.028456527	733.20884566	2778974.929	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_1	negative	219.097087479	668.370758562	2772911.714	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_recovery_1	negative	201.087271934	404.380901513	2766523.48	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_recovery_1	negative	201.087271934	404.380901513	2766523.48	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_1	negative	129.054742348	473.08756594	2763784.096	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-drought_1	negative	129.054742348	473.08756594	2763784.096	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_heat_recovery_2	negative	141.0659958	531.807534215	2763415.988	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_2	negative	277.101437375	768.482729939	2762770.212	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-high_light_2	negative	140.034389249	507.171563189	2760188.592	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_1	negative	161.092044112	555.351269753	2759385.629	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_3	negative	112.050591326	558.97645159	2757723.089	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_cold_recovery_1	negative	139.05031348	413.204094087	2756953.23	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	325.110961944	732.001078015	2749441.984	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_cold_recovery.2	negative	325.110961944	732.001078015	2749441.984	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_recovery_1	negative	129.065785327	638.634926081	2749315.514	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-drought_recovery_1	negative	129.065785327	638.634926081	2749315.514	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_1	negative	325.110961944	732.001078015	2749093.117	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_1	negative	325.110961944	732.001078015	2749093.117	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_2	negative	140.034389249	507.171563189	2747266.568	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_recovery_1	negative	166.072040805	626.85306269	2745293.867	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_recovery.2	negative	128.10709995	285.189766771	2741704.087	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_cold_recovery.2	negative	128.10709995	285.189766771	2741704.087	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_3	negative	157.060754467	673.395787895	2728308.536	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_3	negative	219.097087479	668.370758562	2726101.993	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_recovery_1	negative	141.066024093	333.035450274	2725620.164	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	141.066024093	333.035450274	2725620.164	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_1	negative	162.076178141	605.902027638	2724253.338	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-high_light_1	negative	162.076178141	605.902027638	2724253.338	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_recovery_2	negative	325.110961944	732.001078015	2723587.939	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_1	negative	140.034389249	507.171563189	2720477.287	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_2	negative	325.110961944	732.001078015	2720228.163	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_cold_3	negative	129.054742348	473.08756594	2719873.874	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_recovery_1	negative	129.054742348	473.08756594	2718678.198	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-control_1	negative	161.092044112	555.351269753	2718634.856	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_1	negative	161.092044112	555.351269753	2718634.856	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_2	negative	325.110961944	732.001078015	2708788.978	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_cold_recovery_1	negative	140.034389249	507.171563189	2708225.992	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-control_recovery_2	negative	109.028456527	733.20884566	2704352.525	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_recovery_2	negative	163.075487247	362.719769144	2702980.825	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_recovery_2	negative	140.034389249	507.171563189	2699668.741	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_recovery_1	negative	138.055097593	368.650817077	2691003.578	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_recovery_1	negative	138.055097593	368.650817077	2691003.578	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-high_light_2	negative	128.070716726	402.227959004	2683147.584	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	201.087271934	404.380901513	2677826.889	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_cold_recovery_1	negative	201.087271934	404.380901513	2677826.889	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_recovery_3	negative	135.064922543	671.83915346	2675219.529	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_3	negative	325.110961944	732.001078015	2672896.417	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_1	negative	219.097087479	668.370758562	2672527.586	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_recovery_1	negative	157.060754467	673.395787895	2668939.553	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_recovery_1	negative	157.060754467	673.395787895	2668939.553	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_3	negative	277.101437375	768.482729939	2667687.94	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_1	negative	141.066024093	333.035450274	2664437.234	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_1	negative	141.066024093	333.035450274	2664437.234	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	277.101437375	768.482729939	2661705.581	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_recovery_1	negative	148.096909953	556.044083324	2659910.345	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_recovery_2	negative	165.054706951	545.894258025	2658236.941	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_3	negative	128.070716726	402.227959004	2657481.703	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_recovery_2	negative	157.060754467	673.395787895	2656124.267	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_recovery_1	negative	129.102293431	306.737242727	2653829.255	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_1	negative	161.082301556	152.040443946	2650692.236	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_1	negative	161.082301556	152.040443946	2650692.236	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_cold_recovery_1	negative	325.110961944	732.001078015	2646563.887	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_recovery_3	negative	128.10709995	285.189766771	2644284.064	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-control_3	negative	129.054742348	473.08756594	2642447.019	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_2	negative	112.050591326	558.97645159	2639294.041	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-drought_1	negative	109.028456527	733.20884566	2637993.12	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-drought_2	negative	113.034523864	346.164817875	2635959.924	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_recovery_1	negative	141.066024093	333.035450274	2634789.217	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_1	negative	141.066024093	333.035450274	2634789.217	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_3	negative	113.034523864	346.164817875	2634242.678	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-control_recovery_3	negative	325.110961944	732.001078015	2633347.37	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_1	negative	277.101437375	768.482729939	2631977.653	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_recovery_1	negative	139.05031348	413.204094087	2631914.623	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_heat_2	negative	140.034389249	507.171563189	2626542.121	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-high_light_2	negative	161.092044112	555.351269753	2626164.244	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_3	negative	139.05031348	413.204094087	2625117.792	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-high_light_3	negative	160.075855395	65.4178107604	2624839.306	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_recovery_2	negative	201.087271934	404.380901513	2623170.867	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_cold_recovery_1	negative	113.034523864	346.164817875	2619972.267	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_recovery_1	negative	113.034523864	346.164817875	2619972.267	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_1	negative	218.117141617	63.4203134757	2616010.06	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_recovery_2	negative	129.102363635	62.7787763415	2611756.661	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_3	negative	141.066024093	333.035450274	2611223.876	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_3	negative	138.055097593	368.650817077	2610738.75	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_2	negative	192.050472469	513.214176912	2609230.738	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_heat_2	negative	129.054742348	473.08756594	2608094.873	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_1	negative	128.070716726	402.227959004	2607927.652	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-high_light_1	negative	128.070716726	402.227959004	2607927.652	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_heat_recovery_2	negative	192.050472469	513.214176912	2606094.88	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_recovery_3	negative	110.071328817	867.935393029	2602184.488	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_1	negative	325.110961944	732.001078015	2599222.969	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_heat_1	negative	325.110961944	732.001078015	2599222.969	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_recovery_3	negative	165.054706951	545.894258025	2597925.908	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_1	negative	192.050472469	513.214176912	2593861.003	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_1	negative	192.050472469	513.214176912	2593861.003	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-control_3	negative	129.102293431	306.737242727	2593438.789	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-control_2	negative	129.102293431	306.737242727	2590682.836	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_1	negative	192.050472469	513.214176912	2588883.599	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_recovery_1	negative	109.028456527	733.20884566	2588414.202	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-drought_recovery_1	negative	109.028456527	733.20884566	2588414.202	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_heat_recovery_1	negative	203.102959813	922.142129909	2585865.413	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_cold_2	negative	165.054706951	545.894258025	2583717.412	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_recovery_3	negative	133.031933396	442.294358949	2581171.455	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_2	negative	161.092104354	442.102334595	2580560.965	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_3	negative	140.034389249	507.171563189	2577425.756	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_heat_recovery_3	negative	129.054742348	473.08756594	2575836.575	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_recovery_1	negative	141.066024093	333.035450274	2575385.44	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	141.066024093	333.035450274	2575385.44	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_1	negative	219.097087479	668.370758562	2573749.795	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_3	negative	325.110961944	732.001078015	2567845.883	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_cold_3	negative	109.028456527	733.20884566	2564750.77	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-control_3	negative	277.101437375	768.482729939	2563750.158	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_2	negative	277.101437375	768.482729939	2561800.122	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_recovery_1	negative	135.064922543	671.83915346	2561668.262	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-drought_recovery_1	negative	135.064922543	671.83915346	2561668.262	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_cold_recovery_1	negative	325.110961944	732.001078015	2561418.879	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_cold_recovery_1	negative	325.110961944	732.001078015	2561418.879	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_cold_recovery_3	negative	139.05031348	413.204094087	2561070.433	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_1	negative	277.101437375	768.482729939	2559234.814	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_heat_recovery_1	negative	115.086576502	897.299789636	2554236.857	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_1	negative	192.050472469	513.214176912	2552944.473	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_cold_2	negative	192.050472469	513.214176912	2550776.113	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_heat_1	negative	277.101437375	768.482729939	2549604.035	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_1	negative	277.101437375	768.482729939	2549604.035	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_recovery_2	negative	229.086134186	75.4572130113	2547341.673	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_recovery_3	negative	138.055097593	368.650817077	2545193.683	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_recovery_1	negative	218.117141617	63.4203134757	2543903.273	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_recovery_1	negative	218.117141617	63.4203134757	2543903.273	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_cold_1	negative	160.075855395	65.4178107604	2539466.949	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_1	negative	161.092104354	442.102334595	2532300.048	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_2	negative	129.102293431	306.737242727	2531050.174	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_recovery.2	negative	114.054991387	708.933736893	2530830.865	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_recovery.2	negative	114.054991387	708.933736893	2530830.865	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_3	negative	129.054742348	473.08756594	2529455.979	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_heat_2	negative	192.050472469	513.214176912	2528798.549	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_1	negative	277.101437375	768.482729939	2527154.571	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_1	negative	277.101437375	768.482729939	2527154.571	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_1	negative	128.070716726	402.227959004	2526236.474	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_1	negative	128.070716726	402.227959004	2526236.474	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-control_recovery_1	negative	128.10709995	285.189766771	2523447.97	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-control_recovery_1	negative	128.10709995	285.189766771	2523447.97	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_recovery_2	negative	135.064922543	671.83915346	2523332.724	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-drought_recovery_1	negative	148.096909953	556.044083324	2516003.509	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_recovery_1	negative	148.096909953	556.044083324	2516003.509	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_2	negative	141.066024093	333.035450274	2513026.971	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	218.117141617	63.4203134757	2510547.446	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_heat_2	negative	129.054742348	473.08756594	2505372.591	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-drought_recovery_3	negative	148.096909953	556.044083324	2505004.872	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_3	negative	129.054742348	473.08756594	2504970.576	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_3	negative	129.102293431	306.737242727	2504578.917	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	219.097087479	668.370758562	2499098.538	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_3	negative	115.086648151	417.997247466	2495761.412	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_cold_3	negative	112.050591326	558.97645159	2495539.045	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-drought_1	negative	129.054742348	473.08756594	2492487.858	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_heat_3	negative	192.050472469	513.214176912	2486920.028	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_recovery_1	negative	135.064922543	671.83915346	2486452.532	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_cold_3	negative	128.070716726	402.227959004	2485064.085	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_heat_1	negative	157.060754467	673.395787895	2484739.734	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_1	negative	157.060754467	673.395787895	2484739.734	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_recovery_1	negative	229.086134186	75.4572130113	2483453.288	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_heat_recovery_1	negative	229.086134186	75.4572130113	2483453.288	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_1	negative	128.070716726	402.227959004	2483153.669	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_heat_3	negative	325.110961944	732.001078015	2482246.694	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_2	negative	109.028456527	733.20884566	2481656.951	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_heat_3	negative	129.054742348	473.08756594	2478439.57	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_recovery_1	negative	129.102363635	62.7787763415	2477484.279	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	192.050472469	513.214176912	2476610.643	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_recovery_1	negative	138.055097593	368.650817077	2473511.182	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_3	negative	277.101437375	768.482729939	2468844.082	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-control_1	negative	277.101437375	768.482729939	2466650.508	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-control_1	negative	277.101437375	768.482729939	2466650.508	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-high_light_1	negative	277.101437375	768.482729939	2463719.39	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_recovery_2	negative	140.034389249	507.171563189	2462798.284	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_recovery_2	negative	109.028456527	733.20884566	2462509.42	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_heat_3	negative	161.092104354	442.102334595	2462000.321	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_2	negative	109.028456527	733.20884566	2461386.042	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-drought_3	negative	277.101437375	768.482729939	2460428.777	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_1	negative	148.096909953	556.044083324	2456854.588	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-control_recovery_1	negative	109.028456527	733.20884566	2454283.799	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_recovery_1	negative	201.087271934	404.380901513	2451065.439	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_cold_1	negative	277.101437375	768.482729939	2450331.896	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_1	negative	277.101437375	768.482729939	2450331.896	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_2	negative	277.101437375	768.482729939	2447200.06	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_recovery_1	negative	201.087271934	404.380901513	2446639.204	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_1	negative	161.092044112	555.351269753	2446114.353	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_recovery_1	negative	113.034523864	346.164817875	2444887.808	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-control_recovery_1	negative	113.034523864	346.164817875	2444887.808	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_2	negative	162.076178141	605.902027638	2443930.427	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_recovery.3	negative	325.110961944	732.001078015	2443797.016	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_cold_2	negative	277.101437375	768.482729939	2440282.311	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_recovery_1	negative	157.060754467	673.395787895	2439467.539	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-high_light_recovery_2	negative	129.054742348	473.08756594	2437341.148	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_2	negative	129.054742348	473.08756594	2435865.896	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-drought_2	negative	109.028456527	733.20884566	2433240.389	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_recovery_3	negative	129.054742348	473.08756594	2432535.609	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_1	negative	140.034389249	507.171563189	2432526.302	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_1	negative	129.054742348	473.08756594	2432217.532	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_1	negative	129.054742348	473.08756594	2432217.532	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_recovery_1	negative	218.117141617	63.4203134757	2430689.963	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_recovery_3	negative	201.087271934	404.380901513	2429816.505	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_2	negative	277.101437375	768.482729939	2428717.072	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_heat_1	negative	129.054742348	473.08756594	2428087.796	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_heat_1	negative	129.054742348	473.08756594	2428087.796	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_2	negative	129.054742348	473.08756594	2427204.559	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_2	negative	129.054742348	473.08756594	2427079.77	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-control_2	negative	165.054706951	545.894258025	2422935.345	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-control_3	negative	192.050472469	513.214176912	2419273.991	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_1	negative	109.028456527	733.20884566	2418226.091	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-drought_1	negative	109.028456527	733.20884566	2418226.091	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_1	negative	192.050472469	513.214176912	2416103.419	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_cold_1	negative	192.050472469	513.214176912	2416103.419	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_cold_1	negative	277.101437375	768.482729939	2415988.66	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_1	negative	277.101437375	768.482729939	2415988.66	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_3	negative	109.028456527	733.20884566	2415210.152	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_heat_1	negative	112.050591326	558.97645159	2414503.041	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_cold_recovery.3	negative	128.10709995	285.189766771	2413881.816	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_cold_1	negative	165.054706951	545.894258025	2412127.434	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_2	negative	109.028456527	733.20884566	2409912.437	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_heat_recovery_3	negative	140.034389249	507.171563189	2409555.198	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_1	negative	192.050472469	513.214176912	2407957.428	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_heat_1	negative	192.050472469	513.214176912	2407957.428	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_heat_3	negative	157.060754467	673.395787895	2404493.097	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_1	negative	129.054742348	473.08756594	2402621.788	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_1	negative	129.054742348	473.08756594	2402621.788	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_heat_recovery_1	negative	157.060754467	673.395787895	2400446.112	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-control_recovery_3	negative	163.075487247	362.719769144	2396457.818	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_cold_3	negative	161.092044112	555.351269753	2395762.555	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_2	negative	112.050591326	558.97645159	2389919.083	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_1	negative	109.028456527	733.20884566	2389026.991	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_heat_1	negative	109.028456527	733.20884566	2389026.991	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_1	negative	109.028456527	733.20884566	2388634.771	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_1	negative	109.028456527	733.20884566	2388634.771	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_recovery_1	negative	165.054706951	545.894258025	2386296.171	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_recovery_1	negative	165.054706951	545.894258025	2386296.171	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-drought_recovery_3	negative	129.065785327	638.634926081	2385614.019	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_cold_recovery.3	negative	218.117141617	63.4203134757	2383976.603	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_recovery_3	negative	138.055097593	368.650817077	2383110.867	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-drought_recovery_2	negative	148.096909953	556.044083324	2383095.309	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_3	negative	192.050472469	513.214176912	2383075.433	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-control_1	negative	128.070716726	402.227959004	2382389.259	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-control_1	negative	128.070716726	402.227959004	2382389.259	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-high_light_1	negative	140.034389249	507.171563189	2380103.541	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-control_1	negative	129.054742348	473.08756594	2366981.842	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-control_1	negative	129.054742348	473.08756594	2366981.842	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_1	negative	129.054742348	473.08756594	2364602.251	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_1	negative	112.050591326	558.97645159	2358976.67	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_cold_1	negative	112.050591326	558.97645159	2358976.67	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_1	negative	161.092044112	555.351269753	2349432.776	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_heat_3	negative	109.028456527	733.20884566	2345692.525	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_2	negative	192.050472469	513.214176912	2342799.121	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_heat_1	negative	109.028456527	733.20884566	2339731.496	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_1	negative	277.101437375	768.482729939	2338839.587	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_recovery_2	negative	113.034523864	346.164817875	2338512.94	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_1	negative	161.092044112	555.351269753	2337233.2	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-high_light_1	negative	161.092044112	555.351269753	2337233.2	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_heat_2	negative	115.086648151	417.997247466	2336871.452	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_recovery_1	negative	141.0659958	531.807534215	2335529.399	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_1	negative	129.054742348	473.08756594	2334705.165	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_1	negative	129.054742348	473.08756594	2334705.165	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_heat_recovery_3	negative	157.060754467	673.395787895	2334311.833	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-control_2	negative	218.117141617	63.4203134757	2329469.589	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_recovery_3	negative	325.110961944	732.001078015	2328903.774	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_3	negative	192.050472469	513.214176912	2326962.847	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_cold_recovery_1	negative	109.028456527	733.20884566	2326083.206	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_recovery_1	negative	109.028456527	733.20884566	2326083.206	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-high_light_2	negative	113.034523864	346.164817875	2325687.245	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_1	negative	109.028456527	733.20884566	2322593.209	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_heat_1	negative	109.028456527	733.20884566	2322593.209	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_recovery_1	negative	109.028456527	733.20884566	2321966.445	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-high_light_3	negative	129.054742348	473.08756594	2321291.952	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_heat_1	negative	141.066024093	333.035450274	2321225.958	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_1	negative	161.082301556	152.040443946	2318451.736	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_recovery_1	negative	140.034389249	507.171563189	2317963.682	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-high_light_recovery_1	negative	140.034389249	507.171563189	2317963.682	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_recovery_3	negative	219.097087479	668.370758562	2315988.639	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_cold_recovery_3	negative	165.054706951	545.894258025	2315652.029	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_1	negative	113.034523864	346.164817875	2314382.145	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_1	negative	113.034523864	346.164817875	2314382.145	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-control_2	negative	161.092044112	555.351269753	2314087.346	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_1	negative	140.034389249	507.171563189	2304566.92	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_1	negative	140.034389249	507.171563189	2304566.92	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_cold_2	negative	161.082301556	152.040443946	2300163.677	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_heat_recovery_1	negative	192.050472469	513.214176912	2297976.81	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_1	negative	160.075855395	65.4178107604	2296025.686	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-control_recovery_2	negative	325.110961944	732.001078015	2293527.472	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_recovery_3	negative	129.102293431	306.737242727	2292833.242	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_2	negative	165.054706951	545.894258025	2292820.804	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_1	negative	165.054706951	545.894258025	2289928.494	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_1	negative	165.054706951	545.894258025	2289928.494	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-control_2	negative	160.075855395	65.4178107604	2289175.507	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-control_recovery_1	negative	201.087271934	404.380901513	2286483.723	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_recovery_2	negative	195.049508504	746.350639308	2285410.877	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_recovery_1	negative	129.102293431	306.737242727	2278477.325	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-control_recovery_2	negative	163.075487247	362.719769144	2276330.543	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-control_3	negative	160.075855395	65.4178107604	2274164.271	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_3	negative	109.028456527	733.20884566	2263630.377	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-high_light_recovery_3	negative	163.075487247	362.719769144	2258623.409	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-high_light_1	negative	277.101437375	768.482729939	2256993.066	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-high_light_1	negative	277.101437375	768.482729939	2256993.066	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-high_light_1	negative	129.054742348	473.08756594	2246957.645	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-drought_recovery_1	negative	163.075487247	362.719769144	2244383.269	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_recovery_1	negative	138.055097593	368.650817077	2242512.771	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-drought_recovery_1	negative	138.055097593	368.650817077	2242512.771	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_cold_2	negative	165.054706951	545.894258025	2242423.924	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_recovery_1	negative	129.054742348	473.08756594	2238313.561	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_recovery_1	negative	129.054742348	473.08756594	2238313.561	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_heat_1	negative	129.065785327	638.634926081	2236389.947	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_cold_1	negative	277.101437375	768.482729939	2236107.686	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-control_recovery_1	negative	140.034389249	507.171563189	2231877.231	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_cold_3	negative	113.034523864	346.164817875	2225487.3	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_cold_1	negative	141.066024093	333.035450274	2218228.212	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_1	negative	109.028456527	733.20884566	2217078.995	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_1	negative	109.028456527	733.20884566	2217078.995	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_1	negative	128.070716726	402.227959004	2212314.492	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_recovery_2	negative	138.055097593	368.650817077	2211999.406	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_cold_1	negative	192.050472469	513.214176912	2207900.333	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_1	negative	192.050472469	513.214176912	2207900.333	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-control_recovery_1	negative	138.055097593	368.650817077	2206536.694	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-high_light_2	negative	277.101437375	768.482729939	2202448.047	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-control_recovery_1	negative	325.110961944	732.001078015	2197530.291	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_recovery_1	negative	325.110961944	732.001078015	2197530.291	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_2	negative	129.054742348	473.08756594	2196383.659	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_recovery_3	negative	109.028456527	733.20884566	2193773.753	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-drought_recovery_2	negative	129.065785327	638.634926081	2192727.457	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_cold_1	negative	112.050591326	558.97645159	2191471.883	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_cold_1	negative	109.028456527	733.20884566	2191241.105	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_1	negative	113.034523864	346.164817875	2190005.529	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_cold_1	negative	113.034523864	346.164817875	2190005.529	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_recovery_1	negative	218.117141617	63.4203134757	2188663.874	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-control_recovery_1	negative	163.075487247	362.719769144	2187980.379	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-control_recovery_1	negative	163.075487247	362.719769144	2187980.379	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_cold_1	negative	113.034523864	346.164817875	2186057.853	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_recovery_1	negative	165.054706951	545.894258025	2184999.544	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-drought_1	negative	113.034523864	346.164817875	2184581.295	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_1	negative	113.034523864	346.164817875	2184581.295	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_3	negative	109.028456527	733.20884566	2183444.763	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-high_light_recovery_3	negative	218.117141617	63.4203134757	2182949.557	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_cold_recovery.3	negative	138.055097593	368.650817077	2182140.632	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_recovery_2	negative	138.055097593	368.650817077	2180039.705	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_cold_recovery.2	negative	163.075487247	362.719769144	2176195.116	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_cold_recovery.2	negative	163.075487247	362.719769144	2176195.116	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_1	negative	218.117141617	63.4203134757	2173368.418	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_1	negative	218.117141617	63.4203134757	2173368.418	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_cold_1	negative	161.082301556	152.040443946	2171383.76	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_cold_1	negative	161.082301556	152.040443946	2171383.76	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_cold_1	negative	162.076178141	605.902027638	2170175.443	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_1	negative	162.076178141	605.902027638	2170175.443	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_1	negative	160.075754826	271.403513484	2164924.041	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-control_1	negative	160.075754826	271.403513484	2164924.041	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-control_recovery_2	negative	113.034523864	346.164817875	2159625.893	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_cold_2	negative	113.034523864	346.164817875	2158471.433	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_recovery_3	negative	192.050472469	513.214176912	2157359.912	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_recovery_1	negative	128.10709995	285.189766771	2148231.685	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_heat_1	negative	129.054742348	473.08756594	2146712.535	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_heat_3	negative	140.034389249	507.171563189	2146431.201	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-control_1	negative	160.075855395	65.4178107604	2146039.464	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-control_1	negative	160.075855395	65.4178107604	2146039.464	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_cold_2	negative	113.034523864	346.164817875	2145622.334	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_1	negative	129.054742348	473.08756594	2140776.587	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_heat_1	negative	129.054742348	473.08756594	2140776.587	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_3	negative	140.034389249	507.171563189	2133200.437	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_recovery_2	negative	141.066024093	333.035450274	2133019.152	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_recovery_3	negative	166.072040805	626.85306269	2132351.584	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_recovery_3	negative	195.049508504	746.350639308	2131978.969	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-high_light_recovery_3	negative	325.110961944	732.001078015	2129270.942	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_recovery_3	negative	130.086348069	412.147868481	2120089.528	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-control_1	negative	113.034523864	346.164817875	2118350.24	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-control_1	negative	113.034523864	346.164817875	2118350.24	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_1	negative	145.049606173	478.126835649	2117807.74	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	218.117141617	63.4203134757	2117780.531	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-high_light_recovery_1	negative	218.117141617	63.4203134757	2117780.531	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_heat_recovery_1	negative	129.102293431	306.737242727	2111366.634	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_recovery_1	negative	129.102293431	306.737242727	2111366.634	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_1	negative	192.050472469	513.214176912	2108937.714	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_heat_1	negative	192.050472469	513.214176912	2108937.714	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_cold_3	negative	192.050472469	513.214176912	2108650.545	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_3	negative	277.101437375	768.482729939	2104811.76	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_2	negative	140.034389249	507.171563189	2094861.12	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-control_recovery_3	negative	114.054991387	708.933736893	2094314.928	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-control_1	negative	129.102293431	306.737242727	2093291.752	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-control_1	negative	129.102293431	306.737242727	2093291.752	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_recovery_2	negative	129.054742348	473.08756594	2089220.309	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_recovery_2	negative	161.082301556	152.040443946	2086953.049	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_cold_recovery.2	negative	139.05031348	413.204094087	2083951.057	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	139.05031348	413.204094087	2083951.057	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_1	negative	140.034389249	507.171563189	2083840.194	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_1	negative	140.034389249	507.171563189	2083840.194	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_recovery_1	negative	192.050472469	513.214176912	2083140.66	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_heat_recovery_1	negative	192.050472469	513.214176912	2083140.66	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_recovery_1	negative	325.110961944	732.001078015	2075726.936	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_1	negative	218.117141617	63.4203134757	2072293.631	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-control_1	negative	218.117141617	63.4203134757	2072293.631	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_cold_3	negative	165.054706951	545.894258025	2064520.797	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_heat_recovery_1	negative	129.054742348	473.08756594	2063824.057	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_heat_recovery_1	negative	129.054742348	473.08756594	2063824.057	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_3	negative	162.076178141	605.902027638	2062707.488	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_heat_3	negative	192.050472469	513.214176912	2061697.072	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_1	negative	129.054742348	473.08756594	2060786.931	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-control_recovery_2	negative	161.082301556	152.040443946	2054595.349	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_recovery_2	negative	140.034389249	507.171563189	2052533.182	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_cold_2	negative	140.034389249	507.171563189	2050990.05	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_1	negative	162.076178141	605.902027638	2049892.425	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_1	negative	162.076178141	605.902027638	2049892.425	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_recovery_1	negative	129.102293431	306.737242727	2043856.769	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-control_recovery_1	negative	129.102293431	306.737242727	2043856.769	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-high_light_3	negative	161.092044112	555.351269753	2036102.579	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_recovery_1	negative	128.10709995	285.189766771	2030882.783	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_recovery_1	negative	139.05031348	413.204094087	2029169.381	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	139.05031348	413.204094087	2029169.381	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_heat_2	negative	115.086648151	417.997247466	2028581.144	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_cold_1	negative	165.054706951	545.894258025	2027887.593	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_cold_1	negative	165.054706951	545.894258025	2027887.593	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_1	negative	161.092044112	555.351269753	2016754.485	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_3	negative	218.117141617	63.4203134757	2016097.098	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_heat_1	negative	277.101437375	768.482729939	2015400.183	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_recovery_2	negative	128.10709995	285.189766771	2000242.15	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_heat_recovery_2	negative	166.072040805	626.85306269	1994313.282	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_recovery_1	negative	165.054706951	545.894258025	1992394.016	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_recovery_1	negative	165.054706951	545.894258025	1992394.016	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-drought_1	negative	129.102293431	306.737242727	1990184.299	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_1	negative	129.102293431	306.737242727	1990184.299	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	113.034523864	346.164817875	1983216.513	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_recovery_2	negative	218.117141617	63.4203134757	1981728.162	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_1	negative	161.092044112	555.351269753	1981553.553	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_1	negative	161.092044112	555.351269753	1981553.553	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_1	negative	129.065785327	638.634926081	1981521.27	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-drought_1	negative	157.060754467	673.395787895	1979277.233	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_recovery_2	negative	109.028456527	733.20884566	1973780.548	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_2	negative	161.092044112	555.351269753	1973729.822	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_1	negative	162.076178141	605.902027638	1971209.413	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_recovery_1	negative	138.055097593	368.650817077	1970345.226	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_1	negative	145.049606173	478.126835649	1967412.608	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_heat_1	negative	145.049606173	478.126835649	1967412.608	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_heat_1	negative	161.092104354	442.102334595	1966874.922	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_heat_1	negative	161.092104354	442.102334595	1966874.922	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_recovery_3	negative	138.055097593	368.650817077	1966492.98	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_2	negative	161.092044112	555.351269753	1964811.561	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.3	negative	114.054991387	708.933736893	1964758.441	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_cold_3	negative	161.092044112	555.351269753	1963094.613	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_3	negative	218.117141617	63.4203134757	1954459.531	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_2	negative	218.117141617	63.4203134757	1949635.662	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_recovery_1	negative	195.049508504	746.350639308	1947072.896	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_recovery_1	negative	195.049508504	746.350639308	1947072.896	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_3	negative	229.086134186	75.4572130113	1939502.677	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_heat_recovery_3	negative	128.10709995	285.189766771	1932449.148	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_1	negative	218.117141617	63.4203134757	1931619.726	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_recovery_1	negative	157.060754467	673.395787895	1929086.868	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_recovery_1	negative	157.060754467	673.395787895	1929086.868	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_1	negative	109.028456527	733.20884566	1926220.565	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_recovery_3	negative	163.075487247	362.719769144	1925470.133	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-control_recovery_2	negative	114.054991387	708.933736893	1925125.775	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_cold_recovery_3	negative	218.117141617	63.4203134757	1924983.893	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_cold_recovery_1	negative	114.054991387	708.933736893	1924340.895	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_cold_2	negative	161.082301556	152.040443946	1919701.828	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_heat_3	negative	145.049606173	478.126835649	1918226.271	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_2	negative	129.102293431	306.737242727	1916795.912	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-control_2	negative	113.034523864	346.164817875	1916218.185	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_recovery_1	negative	133.031933396	442.294358949	1904716.069	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_cold_1	negative	192.050472469	513.214176912	1897826.444	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_3	negative	161.082301556	152.040443946	1895535.866	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-control_recovery_1	negative	163.075487247	362.719769144	1891152.776	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_1	negative	113.034523864	346.164817875	1885784.699	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_1	negative	113.034523864	346.164817875	1885784.699	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_recovery_1	negative	140.034389249	507.171563189	1882085.572	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_recovery_2	negative	114.054991387	708.933736893	1878937.113	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_recovery_1	negative	133.031933396	442.294358949	1877715.176	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_recovery_1	negative	133.031933396	442.294358949	1877715.176	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_recovery_3	negative	113.034523864	346.164817875	1874350.938	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-control_2	negative	128.070716726	402.227959004	1874294.732	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_3	negative	165.054706951	545.894258025	1873940.635	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_1	negative	229.086134186	75.4572130113	1871576.449	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_heat_3	negative	145.049606173	478.126835649	1869973.506	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_heat_2	negative	145.049606173	478.126835649	1866203.812	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_1	negative	161.092044112	555.351269753	1856376.049	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_1	negative	161.092044112	555.351269753	1856376.049	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_recovery_2	negative	160.075855395	65.4178107604	1854703.436	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-control_1	negative	165.054706951	545.894258025	1851898.652	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-control_1	negative	165.054706951	545.894258025	1851898.652	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_recovery_3	negative	128.10709995	285.189766771	1851782.445	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_recovery_1	negative	128.10709995	285.189766771	1851066.238	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_recovery_1	negative	128.10709995	285.189766771	1851066.238	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-control_recovery_1	negative	138.055097593	368.650817077	1847167.03	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-control_recovery_1	negative	138.055097593	368.650817077	1847167.03	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_cold_recovery.2	negative	138.055097593	368.650817077	1846711.293	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_cold_recovery.2	negative	138.055097593	368.650817077	1846711.293	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-control_3	negative	113.034523864	346.164817875	1841867.841	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-control_recovery_1	negative	114.054991387	708.933736893	1832043.106	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-control_recovery_1	negative	114.054991387	708.933736893	1832043.106	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_recovery.2	negative	129.102293431	306.737242727	1828001.529	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_recovery.2	negative	129.102293431	306.737242727	1828001.529	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-control_2	negative	160.075754826	271.403513484	1826721.242	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_recovery_1	negative	129.102293431	306.737242727	1821880.268	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_3	negative	160.075855395	65.4178107604	1819333.438	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_recovery_2	negative	219.097087479	668.370758562	1817135.154	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_cold_1	negative	129.102293431	306.737242727	1805122.446	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_1	negative	129.102293431	306.737242727	1805122.446	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_1	negative	115.086648151	417.997247466	1799905.606	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_1	negative	115.086648151	417.997247466	1799905.606	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-drought_recovery_1	negative	219.097087479	668.370758562	1796724.435	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_recovery_1	negative	219.097087479	668.370758562	1796724.435	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_cold_1	negative	160.075754826	271.403513484	1790150.095	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_cold_1	negative	160.075754826	271.403513484	1790150.095	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_heat_recovery_2	negative	139.05031348	413.204094087	1787088.387	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_1	negative	165.054706951	545.894258025	1776718.058	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_heat_1	negative	325.110961944	732.001078015	1769707.748	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_2	negative	145.049606173	478.126835649	1765294.058	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_3	negative	113.034523864	346.164817875	1760487.144	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_3	negative	140.034389249	507.171563189	1757463.44	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_recovery_2	negative	139.05031348	413.204094087	1757084.6	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-high_light_recovery_1	negative	325.110961944	732.001078015	1756658.987	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_recovery_1	negative	325.110961944	732.001078015	1756658.987	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_recovery_3	negative	160.075855395	65.4178107604	1755212.983	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_1	negative	129.102363635	62.7787763415	1754672.868	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_1	negative	113.034523864	346.164817875	1751244.618	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_recovery_1	negative	129.102363635	62.7787763415	1741259.899	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-high_light_recovery_1	negative	129.102363635	62.7787763415	1741259.899	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_recovery_2	negative	113.034523864	346.164817875	1738299.67	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_recovery_1	negative	165.054706951	545.894258025	1736179.512	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-drought_3	negative	162.076178141	605.902027638	1734537.434	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_2	negative	229.086134186	75.4572130113	1733768.031	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_heat_1	negative	128.10709995	285.189766771	1732939.698	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_1	negative	128.10709995	285.189766771	1732939.698	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_1	negative	109.028456527	733.20884566	1732132.693	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_3	negative	140.034389249	507.171563189	1724133.16	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_recovery_3	negative	141.066024093	333.035450274	1721869.634	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	166.072040805	626.85306269	1717699.961	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_heat_recovery_1	negative	166.072040805	626.85306269	1717699.961	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_recovery.3	negative	163.075487247	362.719769144	1710517.773	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_recovery_1	negative	129.102363635	62.7787763415	1705904.511	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_recovery_1	negative	129.102363635	62.7787763415	1705904.511	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-high_light_recovery_1	negative	325.110961944	732.001078015	1705712.144	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_heat_2	negative	160.075855395	65.4178107604	1704939.49	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_cold_2	negative	162.076178141	605.902027638	1702639.956	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_heat_recovery_1	negative	229.086134186	75.4572130113	1696256.985	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_3	negative	229.086134186	75.4572130113	1680620.144	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_1	negative	161.082301556	152.040443946	1675856.149	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_2	negative	229.086134186	75.4572130113	1672646.657	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_recovery_3	negative	161.082301556	152.040443946	1670651.944	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-control_recovery_1	negative	325.110961944	732.001078015	1665716.031	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_1	negative	115.086648151	417.997247466	1644162.182	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_heat_1	negative	115.086648151	417.997247466	1644162.182	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_recovery_2	negative	165.054706951	545.894258025	1643076.627	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_recovery_3	negative	129.102293431	306.737242727	1639367.666	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_recovery_1	negative	114.054991387	708.933736893	1638657.011	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_cold_recovery_1	negative	114.054991387	708.933736893	1638657.011	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_recovery_1	negative	139.05031348	413.204094087	1628152.528	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_1	negative	161.082301556	152.040443946	1620643.8	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_cold_1	negative	161.082301556	152.040443946	1620643.8	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_heat_recovery_1	negative	128.10709995	285.189766771	1620507.415	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_heat_recovery_1	negative	130.086348069	412.147868481	1611958.524	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_3	negative	162.076178141	605.902027638	1606990.031	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_2	negative	129.102363635	62.7787763415	1602979.46	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_3	negative	277.101437375	768.482729939	1600802.33	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_recovery_3	negative	114.054991387	708.933736893	1599367.864	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_2	negative	160.075855395	65.4178107604	1591850.583	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_recovery_1	negative	160.075754826	271.403513484	1591087.017	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_heat_recovery_1	negative	129.102293431	306.737242727	1583160.975	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_recovery_1	negative	141.066024093	333.035450274	1582646.686	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	141.066024093	333.035450274	1582646.686	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_1	negative	229.086134186	75.4572130113	1575200.489	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_cold_1	negative	229.086134186	75.4572130113	1575200.489	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_3	negative	129.102293431	306.737242727	1569754.39	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-high_light_recovery_1	negative	109.028456527	733.20884566	1569658.324	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_heat_3	negative	115.086648151	417.997247466	1563322.912	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_2	negative	229.086134186	75.4572130113	1560968.465	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_recovery_3	negative	129.102363635	62.7787763415	1555149.729	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	229.086134186	75.4572130113	1549282.917	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_1	negative	229.086134186	75.4572130113	1549282.917	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_3	negative	161.082301556	152.040443946	1545226.069	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_cold_recovery_1	negative	161.082301556	152.040443946	1538340.563	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_cold_recovery_1	negative	161.082301556	152.040443946	1538340.563	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_cold_1	negative	229.086134186	75.4572130113	1531326.87	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_heat_recovery_3	negative	218.117141617	63.4203134757	1528269.804	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_heat_recovery_1	negative	129.054742348	473.08756594	1526415.287	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_recovery_2	negative	109.028456527	733.20884566	1522956.456	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_2	negative	218.117141617	63.4203134757	1512374.279	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_cold_recovery.2	negative	113.034523864	346.164817875	1507095.123	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_cold_recovery.2	negative	113.034523864	346.164817875	1507095.123	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-control_recovery_1	negative	113.034523864	346.164817875	1505265.211	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_recovery_1	negative	130.086348069	412.147868481	1501584.207	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	130.086348069	412.147868481	1501584.207	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-control_1	negative	162.076178141	605.902027638	1498925.584	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_1	negative	162.076178141	605.902027638	1498925.584	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_3	negative	165.054706951	545.894258025	1498554.942	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_1	negative	229.086134186	75.4572130113	1490410.349	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_1	negative	229.086134186	75.4572130113	1490410.349	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_recovery_1	negative	218.117141617	63.4203134757	1487605.208	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-high_light_recovery_1	negative	113.034523864	346.164817875	1486568.416	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_recovery_1	negative	192.050472469	513.214176912	1485967.189	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_recovery.2	negative	141.066024093	333.035450274	1483305.74	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	141.066024093	333.035450274	1483305.74	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	166.072040805	626.85306269	1479518.299	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-control_recovery_1	negative	114.054991387	708.933736893	1476688.614	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_3	negative	229.086134186	75.4572130113	1460506.566	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_cold_recovery.3	negative	139.05031348	413.204094087	1450135.461	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-high_light_2	negative	229.086134186	75.4572130113	1441958.384	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_heat_3	negative	160.075855395	65.4178107604	1439848.034	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_heat_1	negative	129.054742348	473.08756594	1438517.601	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_1	negative	218.117141617	63.4203134757	1438294.668	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-high_light_1	negative	218.117141617	63.4203134757	1438294.668	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-control_1	negative	229.086134186	75.4572130113	1438082.383	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-control_1	negative	229.086134186	75.4572130113	1438082.383	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_recovery_1	negative	114.054991387	708.933736893	1437666.057	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_2	negative	218.117141617	63.4203134757	1436498.558	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-control_3	negative	162.076178141	605.902027638	1435985.945	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_heat_3	negative	160.075855395	65.4178107604	1435569.038	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_recovery_2	negative	325.110961944	732.001078015	1434993.875	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_1	negative	160.075754826	271.403513484	1429799.741	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-high_light_1	negative	160.075754826	271.403513484	1429799.741	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_cold_recovery_2	negative	128.10709995	285.189766771	1424858.539	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_recovery_1	negative	195.049508504	746.350639308	1423828.842	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_recovery_2	negative	139.05031348	413.204094087	1422922.743	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_recovery.3	negative	113.034523864	346.164817875	1421657.515	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_2	negative	218.117141617	63.4203134757	1413377.873	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_recovery_1	negative	129.054742348	473.08756594	1404742.741	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_1	negative	161.082301556	152.040443946	1397003.502	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_cold_recovery_1	negative	163.075487247	362.719769144	1396979.596	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_2	negative	128.10709995	285.189766771	1391619.196	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_heat_recovery_1	negative	129.102293431	306.737242727	1388366.581	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_recovery_1	negative	129.102293431	306.737242727	1388366.581	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_1	negative	160.075855395	65.4178107604	1386800.619	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_heat_1	negative	160.075855395	65.4178107604	1386800.619	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_2	negative	201.087271934	404.380901513	1385261.208	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_recovery_1	negative	141.066024093	333.035450274	1381288.572	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-control_recovery_1	negative	141.066024093	333.035450274	1381288.572	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	160.075855395	65.4178107604	1378055.102	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_recovery_1	negative	160.075855395	65.4178107604	1378055.102	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_recovery_3	negative	114.054991387	708.933736893	1375566.66	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_3	negative	128.10709995	285.189766771	1369284.524	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-control_recovery_2	negative	138.055097593	368.650817077	1368471.417	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_recovery_3	negative	161.082301556	152.040443946	1356423.083	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_heat_recovery_1	negative	161.082301556	152.040443946	1355087.445	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_heat_1	negative	218.117141617	63.4203134757	1353610.411	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_1	negative	218.117141617	63.4203134757	1353610.411	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_1	negative	166.072040805	626.85306269	1346021.779	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_recovery_2	negative	129.102363635	62.7787763415	1345750.265	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_3	negative	218.117141617	63.4203134757	1345309.009	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-control_recovery_1	negative	161.082301556	152.040443946	1341294.904	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-control_recovery_1	negative	161.082301556	152.040443946	1341294.904	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_2	negative	115.086576502	897.299789636	1340938.065	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_1	negative	115.086648151	417.997247466	1340582.49	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_2	negative	218.117141617	63.4203134757	1338647.234	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_recovery_1	negative	277.101437375	768.482729939	1336325.674	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-high_light_3	negative	229.086134186	75.4572130113	1334313.919	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_heat_recovery_2	negative	161.082301556	152.040443946	1332217.276	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_heat_recovery_2	negative	229.086134186	75.4572130113	1319189.536	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_1	negative	141.0659958	531.807534215	1316036.064	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-drought_1	negative	129.102293431	306.737242727	1315892.566	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_1	negative	192.050472469	513.214176912	1311094.564	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_1	negative	201.087271934	404.380901513	1310037.948	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_cold_2	negative	162.076178141	605.902027638	1304124.059	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_heat_3	negative	203.102959813	922.142129909	1300739.204	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_cold_1	negative	129.102363635	62.7787763415	1299755.956	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_2	negative	141.0659958	531.807534215	1294265.962	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_3	negative	218.117141617	63.4203134757	1283488.932	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_recovery_1	negative	277.101437375	768.482729939	1283315.549	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_recovery_1	negative	277.101437375	768.482729939	1283315.549	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_1	negative	129.102363635	62.7787763415	1280086.154	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_1	negative	129.102363635	62.7787763415	1280086.154	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_1	negative	218.117141617	63.4203134757	1279023.667	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_2	negative	128.10709995	285.189766771	1277224.549	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_cold_1	negative	218.117141617	63.4203134757	1273051.037	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_1	negative	218.117141617	63.4203134757	1273051.037	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_2	negative	128.10709995	285.189766771	1270237.473	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-control_2	negative	162.076178141	605.902027638	1269824.456	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_heat_recovery_2	negative	218.117141617	63.4203134757	1267585.458	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-control_3	negative	141.0659958	531.807534215	1267275.769	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_2	negative	128.10709995	285.189766771	1267177.748	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_2	negative	128.10709995	285.189766771	1263622.221	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_cold_3	negative	162.076178141	605.902027638	1259588.358	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_recovery_1	negative	219.097087479	668.370758562	1257049.513	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_recovery_3	negative	129.054742348	473.08756594	1255383.276	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_1	negative	162.076178141	605.902027638	1245985.099	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_1	negative	162.076178141	605.902027638	1245985.099	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_heat_recovery_1	negative	141.066024093	333.035450274	1243170.983	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_recovery_3	negative	128.10709995	285.189766771	1239437.082	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_recovery_1	negative	161.082301556	152.040443946	1238201.053	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_recovery_1	negative	161.082301556	152.040443946	1238201.053	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_cold_1	negative	229.086134186	75.4572130113	1229642.439	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_2	negative	157.060754467	673.395787895	1226702.601	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_recovery_1	negative	161.082301556	152.040443946	1224200.185	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_heat_recovery_1	negative	161.082301556	152.040443946	1224200.185	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_cold_recovery_1	negative	128.10709995	285.189766771	1223080.611	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_cold_recovery_1	negative	128.10709995	285.189766771	1223080.611	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_cold_recovery_1	negative	161.082301556	152.040443946	1221510.808	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_3	negative	192.050472469	513.214176912	1216400.335	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_heat_2	negative	203.102959813	922.142129909	1209694.688	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_1	negative	129.102363635	62.7787763415	1203361.851	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	161.092044112	555.351269753	1199635.769	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_2	negative	218.117141617	63.4203134757	1191306.624	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_1	negative	201.087271934	404.380901513	1182078.303	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_1	negative	201.087271934	404.380901513	1182078.303	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_2	negative	203.102959813	922.142129909	1181417.709	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_heat_1	negative	160.075855395	65.4178107604	1178561.586	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_heat_1	negative	160.075855395	65.4178107604	1178561.586	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_heat_2	negative	160.075754826	271.403513484	1178178.865	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_heat_1	negative	157.060754467	673.395787895	1176793.833	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_1	negative	162.076178141	605.902027638	1174242.88	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_recovery_1	negative	161.082301556	152.040443946	1171645.559	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_heat_recovery_3	negative	161.082301556	152.040443946	1156522.87	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_recovery_2	negative	139.05031348	413.204094087	1155817.803	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_recovery_1	negative	192.050472469	513.214176912	1154929.749	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_recovery_1	negative	192.050472469	513.214176912	1154929.749	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-control_recovery_3	negative	161.082301556	152.040443946	1151276.882	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_heat_recovery_2	negative	133.031933396	442.294358949	1147258.004	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_recovery_1	negative	218.117141617	63.4203134757	1144329.882	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_recovery_1	negative	218.117141617	63.4203134757	1144329.882	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-control_1	negative	141.0659958	531.807534215	1142612.737	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-control_1	negative	141.0659958	531.807534215	1142612.737	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_1	negative	203.102959813	922.142129909	1138257.328	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_heat_1	negative	203.102959813	922.142129909	1138257.328	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_recovery_1	negative	192.050472469	513.214176912	1134986.016	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_heat_1	negative	160.075855395	65.4178107604	1132982.235	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_1	negative	141.0659958	531.807534215	1132499.168	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-drought_1	negative	141.0659958	531.807534215	1132499.168	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_2	negative	128.10709995	285.189766771	1130204.668	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_1	negative	157.060754467	673.395787895	1117580.363	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_1	negative	157.060754467	673.395787895	1117580.363	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-control_2	negative	229.086134186	75.4572130113	1114592.521	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_recovery_2	negative	192.050472469	513.214176912	1113402.897	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_recovery_2	negative	161.082301556	152.040443946	1110422.982	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-control_2	negative	325.110961944	732.001078015	1095885.384	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_recovery_1	negative	229.086134186	75.4572130113	1088654.528	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_heat_recovery_1	negative	229.086134186	75.4572130113	1088654.528	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_2	negative	157.060754467	673.395787895	1081758.399	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_recovery_1	negative	115.086576502	897.299789636	1081091.285	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_recovery_1	negative	115.086576502	897.299789636	1081091.285	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_heat_recovery_2	negative	161.082301556	152.040443946	1076667.61	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_3	negative	115.086576502	897.299789636	1070109.123	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_recovery_3	negative	229.086134186	75.4572130113	1064016.743	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_recovery_2	negative	141.0659958	531.807534215	1062400.549	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	161.082301556	152.040443946	1058721.669	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_heat_recovery_1	negative	161.082301556	152.040443946	1058721.669	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_recovery_1	negative	128.10709995	285.189766771	1058681.746	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_recovery_1	negative	128.10709995	285.189766771	1058681.746	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_3	negative	203.102959813	922.142129909	1056866.586	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_heat_recovery_2	negative	218.117141617	63.4203134757	1051683.973	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_recovery_1	negative	129.054742348	473.08756594	1047867.538	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_heat_recovery_1	negative	129.054742348	473.08756594	1047867.538	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-drought_recovery_2	negative	128.10709995	285.189766771	1037958.598	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_cold_1	negative	218.117141617	63.4203134757	1034914.565	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_cold_1	negative	218.117141617	63.4203134757	1034914.565	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_recovery_1	negative	218.117141617	63.4203134757	1030404.162	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_recovery_1	negative	218.117141617	63.4203134757	1030404.162	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_recovery_3	negative	203.102959813	922.142129909	1028559.536	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_heat_recovery_1	negative	166.072040805	626.85306269	1026435.018	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_recovery_1	negative	218.117141617	63.4203134757	1025506.224	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_heat_recovery_1	negative	218.117141617	63.4203134757	1025506.224	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-high_light_1	negative	157.060754467	673.395787895	1024250.899	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_cold_1	negative	218.117141617	63.4203134757	1023289.899	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_heat_1	negative	218.117141617	63.4203134757	1020774.084	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_heat_1	negative	218.117141617	63.4203134757	1020774.084	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_heat_3	negative	218.117141617	63.4203134757	1008533.662	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-high_light_recovery_1	negative	129.102363635	62.7787763415	1006035.355	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_recovery_1	negative	128.10709995	285.189766771	1004946.211	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_3	negative	114.054991387	708.933736893	1001394.609	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_3	negative	218.117141617	63.4203134757	1001177.319	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_1	negative	128.10709995	285.189766771	996176.013	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_cold_1	negative	129.102363635	62.7787763415	992104.4247	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_1	negative	129.102363635	62.7787763415	992104.4247	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	129.102363635	62.7787763415	991424.2411	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	129.102363635	62.7787763415	991424.2411	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-control_1	negative	129.102363635	62.7787763415	985636.6343	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-control_1	negative	129.102363635	62.7787763415	985636.6343	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_recovery_3	negative	161.082301556	152.040443946	985295.8333	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_3	negative	166.072040805	626.85306269	978330.2208	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_recovery_3	negative	218.117141617	63.4203134757	978147.2849	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_recovery_1	negative	129.102293431	306.737242727	974908.2374	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_1	negative	129.102293431	306.737242727	974908.2374	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_1	negative	114.054991387	708.933736893	970843.6002	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-high_light_3	negative	218.117141617	63.4203134757	969886.4063	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_recovery_2	negative	129.054742348	473.08756594	959923.1906	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_recovery_1	negative	114.054991387	708.933736893	959239.9261	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-high_light_recovery_1	negative	114.054991387	708.933736893	959239.9261	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_3	negative	195.049508504	746.350639308	951869.9538	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_cold_recovery_1	negative	129.102363635	62.7787763415	950807.144	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-high_light_2	negative	141.0659958	531.807534215	947715.961	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-control_2	negative	141.0659958	531.807534215	944812.7268	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	161.082301556	152.040443946	942974.526	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-control_2	negative	129.102363635	62.7787763415	937598.72	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_recovery_3	negative	218.117141617	63.4203134757	934140.2645	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-high_light_recovery_1	negative	161.082301556	152.040443946	933528.2329	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_heat_2	negative	195.049508504	746.350639308	933208.8954	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_1	negative	166.072040805	626.85306269	930170.9313	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_1	negative	166.072040805	626.85306269	930170.9313	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_recovery_1	negative	139.05031348	413.204094087	930016.9094	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_recovery_3	negative	129.054742348	473.08756594	929860.7236	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_heat_recovery_1	negative	129.054742348	473.08756594	928296.1489	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-drought_recovery_1	negative	141.0659958	531.807534215	915263.47	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	141.0659958	531.807534215	915263.47	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_2	negative	277.101437375	768.482729939	912818.6425	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_1	negative	218.117141617	63.4203134757	912259.7519	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_1	negative	203.102959813	922.142129909	904338.0936	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_cold_3	negative	129.102363635	62.7787763415	904114.2345	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-high_light_2	negative	129.102363635	62.7787763415	902609.9826	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	129.102363635	62.7787763415	898969.041	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_1	negative	114.054991387	708.933736893	898405.9901	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_1	negative	114.054991387	708.933736893	898405.9901	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-control_3	negative	128.10709995	285.189766771	895543.9272	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_3	negative	113.034523864	346.164817875	894202.6827	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_recovery_1	negative	141.066024093	333.035450274	893051.2726	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_1	negative	128.10709995	285.189766771	891061.001	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_1	negative	128.10709995	285.189766771	891061.001	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_2	negative	195.049508504	746.350639308	889773.3769	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_recovery.2	negative	138.055097593	368.650817077	884482.0658	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_recovery_1	negative	229.086134186	75.4572130113	882757.3066	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_recovery_2	negative	114.054991387	708.933736893	880423.7463	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_heat_recovery_1	negative	218.117141617	63.4203134757	874792.9489	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_2	negative	195.049508504	746.350639308	873392.0707	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-high_light_1	negative	157.060754467	673.395787895	868609.1019	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-high_light_1	negative	157.060754467	673.395787895	868609.1019	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-high_light_3	negative	129.102363635	62.7787763415	868300.8902	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_1	negative	161.092104354	442.102334595	858063.4814	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_2	negative	157.060754467	673.395787895	858056.3698	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_1	negative	203.102959813	922.142129909	854254.4637	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_heat_1	negative	203.102959813	922.142129909	854254.4637	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_heat_recovery_1	negative	218.117141617	63.4203134757	853035.8688	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_recovery_3	negative	141.0659958	531.807534215	852602.1219	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-drought_3	negative	201.087271934	404.380901513	850935.7538	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_3	negative	201.087271934	404.380901513	850498.72	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_3	negative	129.102363635	62.7787763415	843276.021	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_1	negative	115.086576502	897.299789636	832226.6656	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_recovery_1	negative	141.0659958	531.807534215	830787.7389	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-drought_3	negative	203.102959813	922.142129909	826763.6549	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_recovery.3	negative	161.082301556	152.040443946	822602.8839	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_heat_2	negative	129.102363635	62.7787763415	821847.8468	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-control_recovery_1	negative	161.082301556	152.040443946	818012.4814	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-control_3	negative	203.102959813	922.142129909	802243.8109	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-control_2	negative	109.028456527	733.20884566	801306.1308	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-drought_1	negative	203.102959813	922.142129909	800964.3212	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_1	negative	203.102959813	922.142129909	800964.3212	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_2	negative	203.102959813	922.142129909	793607.2182	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_1	negative	229.086134186	75.4572130113	787228.4187	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_1	negative	229.086134186	75.4572130113	787228.4187	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_3	negative	141.0659958	531.807534215	787195.4775	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_3	negative	129.102363635	62.7787763415	786478.0277	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_2	negative	161.082301556	152.040443946	784783.6702	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_1	negative	203.102959813	922.142129909	782522.0904	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_cold_1	negative	128.10709995	285.189766771	779458.3376	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_cold_1	negative	128.10709995	285.189766771	779458.3376	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_cold_recovery.2	negative	161.082301556	152.040443946	776467.6926	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_cold_recovery.2	negative	161.082301556	152.040443946	776467.6926	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_heat_recovery_2	negative	130.086348069	412.147868481	772704.5681	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_2	negative	129.102363635	62.7787763415	772443.0831	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	129.102363635	62.7787763415	772182.3631	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	129.102363635	62.7787763415	772182.3631	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_2	negative	201.087271934	404.380901513	768266.4605	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_cold_3	negative	201.087271934	404.380901513	766517.3832	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_recovery_1	negative	128.10709995	285.189766771	763193.653	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_recovery_1	negative	128.10709995	285.189766771	763193.653	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_recovery_1	negative	203.102959813	922.142129909	759299.3009	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_recovery_1	negative	203.102959813	922.142129909	759299.3009	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_2	negative	203.102959813	922.142129909	758441.6424	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_1	negative	141.0659958	531.807534215	757353.0594	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-control_1	negative	157.060754467	673.395787895	752904.7769	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-control_1	negative	157.060754467	673.395787895	752904.7769	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_2	negative	141.0659958	531.807534215	745860.1756	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_2	negative	195.049508504	746.350639308	744539.0797	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-high_light_1	negative	141.0659958	531.807534215	736966.8706	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_1	negative	141.0659958	531.807534215	736966.8706	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_2	negative	129.102363635	62.7787763415	736572.964	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-control_1	negative	166.072040805	626.85306269	726333.9283	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-control_1	negative	166.072040805	626.85306269	726333.9283	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-control_3	negative	157.060754467	673.395787895	724989.8034	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_3	negative	201.087271934	404.380901513	723874.4265	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_2	negative	114.054991387	708.933736893	722979.7616	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_cold_1	negative	201.087271934	404.380901513	720714.8775	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_recovery_1	negative	129.054742348	473.08756594	720396.9572	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-drought_recovery_1	negative	129.054742348	473.08756594	720396.9572	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_3	negative	201.087271934	404.380901513	719542.9158	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-high_light_2	negative	201.087271934	404.380901513	717785.6195	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_1	negative	218.117141617	63.4203134757	715141.3554	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_recovery_2	negative	129.102293431	306.737242727	703851.8081	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	128.10709995	285.189766771	699894.2854	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_1	negative	128.10709995	285.189766771	699894.2854	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_heat_2	negative	129.102363635	62.7787763415	698457.7196	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-control_1	negative	203.102959813	922.142129909	694868.6076	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-control_1	negative	203.102959813	922.142129909	694868.6076	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_1	negative	128.10709995	285.189766771	689362.3883	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_cold_1	negative	128.10709995	285.189766771	689362.3883	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_1	negative	129.102363635	62.7787763415	684617.7502	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_1	negative	129.102363635	62.7787763415	684617.7502	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_2	negative	129.054742348	473.08756594	682957.0394	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-drought_recovery_2	negative	229.086134186	75.4572130113	682752.2372	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_heat_1	negative	129.102363635	62.7787763415	681383.6343	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_2	negative	203.102959813	922.142129909	681103.9267	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_3	negative	129.102363635	62.7787763415	681005.0843	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_2	negative	157.060754467	673.395787895	680002.7549	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_3	negative	140.034389249	507.171563189	677087.8896	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_1	negative	201.087271934	404.380901513	672687.4803	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_1	negative	201.087271934	404.380901513	669901.3184	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_1	negative	201.087271934	404.380901513	669901.3184	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_2	negative	128.10709995	285.189766771	666540.5763	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_1	negative	201.087271934	404.380901513	662691.6236	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-high_light_1	negative	201.087271934	404.380901513	662691.6236	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_recovery_1	negative	128.10709995	285.189766771	659981.9472	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-control_1	negative	128.10709995	285.189766771	659316.5683	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-control_1	negative	128.10709995	285.189766771	659316.5683	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_heat_1	negative	128.10709995	285.189766771	655974.0998	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_heat_1	negative	128.10709995	285.189766771	655974.0998	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_cold_1	negative	201.087271934	404.380901513	653979.2898	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_cold_1	negative	201.087271934	404.380901513	653979.2898	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_recovery_3	negative	114.054991387	708.933736893	650963.629	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_recovery_3	negative	161.082301556	152.040443946	650188.3563	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_cold_3	negative	203.102959813	922.142129909	646734.5568	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_cold_1	negative	166.072040805	626.85306269	646417.8065	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_3	negative	201.087271934	404.380901513	637322.0254	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_2	negative	166.072040805	626.85306269	634041.333	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_recovery_3	negative	229.086134186	75.4572130113	630606.4383	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_1	negative	129.102293431	306.737242727	629483.456	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_2	negative	218.117141617	63.4203134757	625459.9937	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-high_light_2	negative	166.072040805	626.85306269	623709.1331	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_recovery_1	negative	114.054991387	708.933736893	621729.3714	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_heat_recovery_3	negative	129.102363635	62.7787763415	616500.3999	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_3	negative	141.0659958	531.807534215	613087.4869	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-control_3	negative	166.072040805	626.85306269	612430.0714	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_recovery_1	negative	161.082301556	152.040443946	609189.8078	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_1	negative	161.082301556	152.040443946	609189.8078	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_3	negative	166.072040805	626.85306269	607902.6892	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_heat_1	negative	129.102363635	62.7787763415	605063.7786	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_1	negative	129.102363635	62.7787763415	605063.7786	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_2	negative	201.087271934	404.380901513	603900.9663	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_heat_1	negative	195.049508504	746.350639308	603426.8299	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_heat_1	negative	195.049508504	746.350639308	603426.8299	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-high_light_1	negative	203.102959813	922.142129909	599926.5342	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_1	negative	203.102959813	922.142129909	599926.5342	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_recovery_3	negative	128.10709995	285.189766771	591640.4138	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_recovery_1	negative	113.034523864	346.164817875	585621.0634	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_recovery_1	negative	113.034523864	346.164817875	585621.0634	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_2	negative	141.0659958	531.807534215	585440.1047	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_3	negative	141.0659958	531.807534215	583948.8188	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_3	negative	166.072040805	626.85306269	581746.1972	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_1	negative	195.049508504	746.350639308	580039.7885	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_1	negative	195.049508504	746.350639308	580039.7885	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_cold_2	negative	203.102959813	922.142129909	575210.0817	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_2	negative	201.087271934	404.380901513	570724.3075	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_cold_2	negative	141.0659958	531.807534215	569118.3846	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_1	negative	166.072040805	626.85306269	568796.0884	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_1	negative	166.072040805	626.85306269	568796.0884	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_recovery_1	negative	203.102959813	922.142129909	568234.4399	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_recovery_2	negative	166.072040805	626.85306269	567096.7912	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_1	negative	115.086648151	417.997247466	567083.9539	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_1	negative	203.102959813	922.142129909	566717.0064	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-control_2	negative	114.054991387	708.933736893	565188.7108	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_recovery_1	negative	166.072040805	626.85306269	563768.1867	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_recovery_1	negative	166.072040805	626.85306269	563768.1867	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_3	negative	141.0659958	531.807534215	559646.5145	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_1	negative	201.087271934	404.380901513	558382.9718	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_heat_1	negative	201.087271934	404.380901513	558382.9718	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_2	negative	203.102959813	922.142129909	558359.5943	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_1	negative	141.0659958	531.807534215	558192.3099	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_1	negative	141.0659958	531.807534215	558192.3099	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_3	negative	203.102959813	922.142129909	552474.5781	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_heat_3	negative	229.086134186	75.4572130113	552428.0572	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_1	negative	201.087271934	404.380901513	550746.3355	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_2	negative	166.072040805	626.85306269	548405.7301	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_recovery_1	negative	129.054742348	473.08756594	548373.1087	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_1	negative	195.049508504	746.350639308	546117.1114	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-high_light_1	negative	195.049508504	746.350639308	546117.1114	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_1	negative	141.0659958	531.807534215	545812.0306	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-control_3	negative	195.049508504	746.350639308	545617.9182	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_recovery_1	negative	229.086134186	75.4572130113	543565.4266	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_recovery_1	negative	229.086134186	75.4572130113	543565.4266	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_3	negative	229.086134186	75.4572130113	537203.4406	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_heat_3	negative	195.049508504	746.350639308	537081.9579	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_cold_1	negative	141.0659958	531.807534215	535389.2627	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_1	negative	141.0659958	531.807534215	535389.2627	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	160.075754826	271.403513484	532708.0076	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-drought_recovery_1	negative	160.075754826	271.403513484	532708.0076	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_cold_1	negative	203.102959813	922.142129909	530965.6027	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_cold_1	negative	203.102959813	922.142129909	530965.6027	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_2	negative	203.102959813	922.142129909	530746.9981	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_cold_1	negative	157.060754467	673.395787895	525574.3567	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_cold_1	negative	157.060754467	673.395787895	525574.3567	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_recovery_1	negative	160.075855395	65.4178107604	524248.8882	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-control_1	negative	114.054991387	708.933736893	523393.0192	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-control_1	negative	114.054991387	708.933736893	523393.0192	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_2	negative	141.0659958	531.807534215	523113.481	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_2	negative	166.072040805	626.85306269	519197.4965	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_recovery_1	negative	166.072040805	626.85306269	516305.0797	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_1	negative	128.10709995	285.189766771	508644.7244	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_3	negative	166.072040805	626.85306269	506654.3072	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_1	negative	201.087271934	404.380901513	505994.9895	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_cold_1	negative	201.087271934	404.380901513	505994.9895	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-high_light_3	negative	141.0659958	531.807534215	505831.5914	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	129.102363635	62.7787763415	502506.9027	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_recovery_1	negative	129.102363635	62.7787763415	502506.9027	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	166.072040805	626.85306269	500932.9351	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_3	negative	195.049508504	746.350639308	499612.2119	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_heat_2	negative	229.086134186	75.4572130113	498377.5773	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_heat_2	negative	229.086134186	75.4572130113	495121.626	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_3	negative	128.10709995	285.189766771	494969.5462	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_1	negative	141.0659958	531.807534215	494135.861	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_1	negative	141.0659958	531.807534215	494135.861	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_3	negative	114.054991387	708.933736893	493136.0851	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_cold_2	negative	114.054991387	708.933736893	490503.1462	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_3	negative	128.10709995	285.189766771	484397.1298	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_3	negative	129.102363635	62.7787763415	482606.1331	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	203.102959813	922.142129909	480166.0209	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_1	negative	203.102959813	922.142129909	480166.0209	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_3	negative	203.102959813	922.142129909	474620.9539	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_1	negative	128.10709995	285.189766771	474508.6417	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_2	negative	195.049508504	746.350639308	466903.3734	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_2	negative	166.072040805	626.85306269	466160.7939	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_1	negative	203.102959813	922.142129909	465212.1484	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_heat_1	negative	195.049508504	746.350639308	464575.1616	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_heat_1	negative	195.049508504	746.350639308	464575.1616	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_heat_recovery_2	negative	129.102363635	62.7787763415	464372.8151	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_1	negative	157.060754467	673.395787895	463883.1858	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_cold_1	negative	114.054991387	708.933736893	458249.7857	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_cold_1	negative	114.054991387	708.933736893	458249.7857	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-control_3	negative	201.087271934	404.380901513	456869.6935	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_3	negative	128.10709995	285.189766771	448863.754	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_cold_1	negative	195.049508504	746.350639308	448474.6127	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_cold_1	negative	195.049508504	746.350639308	448474.6127	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_heat_1	negative	129.102363635	62.7787763415	445527.376	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_1	negative	229.086134186	75.4572130113	445372.629	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_heat_1	negative	229.086134186	75.4572130113	445372.629	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_cold_2	negative	166.072040805	626.85306269	442925.0024	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_3	negative	128.10709995	285.189766771	438111.0926	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_cold_1	negative	141.0659958	531.807534215	436778.8645	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_1	negative	141.0659958	531.807534215	435628.439	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_1	negative	141.0659958	531.807534215	435628.439	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_3	negative	129.102363635	62.7787763415	435349.9818	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_3	negative	229.086134186	75.4572130113	434167.9745	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_3	negative	157.060754467	673.395787895	432837.1294	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_recovery_1	negative	157.060754467	673.395787895	429546.7306	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_recovery_1	negative	129.102363635	62.7787763415	426647.4933	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-control_3	negative	114.054991387	708.933736893	423164.9148	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_3	negative	166.072040805	626.85306269	418070.2671	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_3	negative	195.049508504	746.350639308	415303.7796	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_1	negative	166.072040805	626.85306269	412362.812	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_1	negative	166.072040805	626.85306269	412362.812	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_1	negative	166.072040805	626.85306269	410649.3944	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_1	negative	166.072040805	626.85306269	410649.3944	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_1	negative	166.072040805	626.85306269	409606.7923	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_1	negative	166.072040805	626.85306269	409606.7923	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_3	negative	141.0659958	531.807534215	407922.0007	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_1	negative	229.086134186	75.4572130113	403572.3353	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_heat_1	negative	160.075754826	271.403513484	401533.0109	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_heat_1	negative	160.075754826	271.403513484	401533.0109	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_1	negative	195.049508504	746.350639308	399806.4613	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_3	negative	128.10709995	285.189766771	399782.441	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_1	negative	195.049508504	746.350639308	398396.3268	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_2	negative	128.10709995	285.189766771	396622.2313	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_recovery_1	negative	161.082301556	152.040443946	392597.3968	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_cold_1	negative	114.054991387	708.933736893	391110.126	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_heat_1	negative	201.087271934	404.380901513	390938.7746	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_1	negative	160.075855395	65.4178107604	390897.2338	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_recovery_3	negative	125.023379586	500.87044907	380319.2143	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_cold_1	negative	129.102293431	306.737242727	379738.2484	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_2	negative	125.023379586	500.87044907	379180.1058	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_heat_1	negative	229.086134186	75.4572130113	377962.4442	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_heat_1	negative	229.086134186	75.4572130113	377962.4442	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_cold_1	negative	166.072040805	626.85306269	376093.1664	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_recovery_1	negative	125.023379586	500.87044907	372328.988	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-drought_recovery_1	negative	125.023379586	500.87044907	372328.988	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_2	negative	114.054991387	708.933736893	372147.9206	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-high_light_1	negative	114.054991387	708.933736893	366655.1769	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_cold_1	negative	195.049508504	746.350639308	364481.2498	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_1	negative	195.049508504	746.350639308	364270.9032	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_1	negative	195.049508504	746.350639308	364270.9032	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_heat_recovery_1	negative	114.054991387	708.933736893	361780.4104	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_heat_recovery_1	negative	114.054991387	708.933736893	361780.4104	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_1	negative	166.072040805	626.85306269	361662.0993	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_heat_1	negative	166.072040805	626.85306269	361662.0993	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_3	negative	157.060754467	673.395787895	361251.2427	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_3	negative	114.054991387	708.933736893	359069.7558	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_recovery_1	negative	125.023379586	500.87044907	357487.6441	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_3	negative	157.060754467	673.395787895	354873.8062	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-high_light_2	negative	114.054991387	708.933736893	351958.9663	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-high_light_3	negative	195.049508504	746.350639308	350181.6305	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_recovery_2	negative	129.102293431	306.737242727	349587.491	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	129.102293431	306.737242727	345138.1282	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	129.102293431	306.737242727	345138.1282	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	114.054991387	708.933736893	339846.6469	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-high_light_1	negative	114.054991387	708.933736893	339846.6469	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_heat_1	negative	141.0659958	531.807534215	328625.4067	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_1	negative	203.102959813	922.142129909	324479.0962	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_1	negative	114.054991387	708.933736893	322734.0665	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_1	negative	114.054991387	708.933736893	322734.0665	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_1	negative	195.049508504	746.350639308	321346.0385	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_2	negative	157.060754467	673.395787895	319167.1534	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_recovery_1	negative	229.086134186	75.4572130113	317337.6043	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-control_1	negative	201.087271934	404.380901513	315697.0039	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_1	negative	201.087271934	404.380901513	315697.0039	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_cold_1	negative	195.049508504	746.350639308	307308.2301	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_1	negative	195.049508504	746.350639308	307308.2301	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_heat_recovery_1	negative	129.102363635	62.7787763415	307015.2179	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	128.10709995	285.189766771	302180.41	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_3	negative	114.054991387	708.933736893	300925.7975	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_recovery_1	negative	129.102363635	62.7787763415	296960.1739	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_recovery_1	negative	129.102363635	62.7787763415	296960.1739	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	157.060754467	673.395787895	296950.323	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_1	negative	157.060754467	673.395787895	296950.323	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_cold_3	negative	166.072040805	626.85306269	296610.6818	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_heat_recovery_3	negative	129.102363635	62.7787763415	295435.831	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_3	negative	157.060754467	673.395787895	291705.4571	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_1	negative	166.072040805	626.85306269	291126.3858	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_heat_recovery_2	negative	129.102363635	62.7787763415	288429.4728	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_2	negative	195.049508504	746.350639308	286014.5654	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_cold_2	negative	166.072040805	626.85306269	285791.8886	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_recovery.2	negative	161.082301556	152.040443946	285289.3853	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_1	negative	129.102293431	306.737242727	282303.9792	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_2	negative	160.075754826	271.403513484	281471.0672	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_2	negative	201.087271934	404.380901513	278587.0086	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_heat_3	negative	166.072040805	626.85306269	274662.4158	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_1	negative	203.102959813	922.142129909	263016.508	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_heat_recovery_2	negative	114.054991387	708.933736893	259581.2822	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_recovery_2	negative	114.054991387	708.933736893	258565.041	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_recovery_1	negative	113.034523864	346.164817875	246766.1738	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_3	negative	129.102293431	306.737242727	242090.0733	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-control_2	negative	201.087271934	404.380901513	239530.5556	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_cold_1	negative	114.054991387	708.933736893	236984.523	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_cold_3	negative	195.049508504	746.350639308	236403.5085	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_2	negative	195.049508504	746.350639308	223037.858	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_heat_1	negative	114.054991387	708.933736893	216258.1216	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_1	negative	128.10709995	285.189766771	213287.6967	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_cold_1	negative	157.060754467	673.395787895	210432.5729	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_recovery_1	negative	114.054991387	708.933736893	207233.1467	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_2	negative	114.054991387	708.933736893	191089.7518	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_2	negative	129.102293431	306.737242727	190907.0467	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	201.087271934	404.380901513	180743.2777	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_1	negative	166.072040805	626.85306269	176888.146	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_recovery_1	negative	114.054991387	708.933736893	174796.32	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_recovery_1	negative	114.054991387	708.933736893	173989.6523	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_recovery_1	negative	114.054991387	708.933736893	173989.6523	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_1	negative	141.0659958	531.807534215	170684.3491	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_2	negative	129.102293431	306.737242727	163840.8552	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_3	negative	160.075754826	271.403513484	162107.3323	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-high_light_recovery_3	negative	113.034523864	346.164817875	157595.1532	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_1	negative	229.086134186	75.4572130113	151835.1588	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_heat_1	negative	114.054991387	708.933736893	151483.7133	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_1	negative	114.054991387	708.933736893	151483.7133	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_recovery_1	negative	114.054991387	708.933736893	139554.2761	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_recovery_1	negative	114.054991387	708.933736893	139554.2761	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_recovery_2	negative	129.102363635	62.7787763415	136647.8048	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_3	negative	129.102363635	62.7787763415	136621.1758	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	195.049508504	746.350639308	136297.913	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_heat_recovery_1	negative	114.054991387	708.933736893	132501.3121	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_recovery_3	negative	114.054991387	708.933736893	130902.604	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-high_light_recovery_2	negative	113.034523864	346.164817875	112699.6205	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_recovery_2	negative	114.054991387	708.933736893	110173.591	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_recovery_3	negative	114.054991387	708.933736893	101256.0905	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_recovery_1	negative	129.102363635	62.7787763415	100107.2356	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_1	negative	129.102363635	62.7787763415	100107.2356	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_1	negative	160.075754826	271.403513484	100087.7563	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_1	negative	160.075754826	271.403513484	100087.7563	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_heat_3	negative	129.102293431	306.737242727	96129.30992	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_1	negative	140.034389249	507.171563189	96113.3086	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_recovery_1	negative	141.066024093	333.035450274	92886.99153	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_1	negative	229.086134186	75.4572130113	86337.64938	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_cold_1	negative	129.102293431	306.737242727	85184.47135	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	129.102293431	306.737242727	85184.47135	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_1	negative	141.066024093	333.035450274	80967.54607	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	141.066024093	333.035450274	80967.54607	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_2	negative	141.066024093	333.035450274	77551.21175	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_3	negative	141.066024093	333.035450274	72464.43493	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_2	negative	114.054991387	708.933736893	68783.70082	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_1	negative	129.102293431	306.737242727	64646.36733	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-high_light_recovery_1	negative	128.10709995	285.189766771	57085.04643	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_cold_1	negative	160.075754826	271.403513484	54035.77744	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_cold_1	negative	160.075754826	271.403513484	54035.77744	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-drought_recovery_1	negative	140.034389249	507.171563189	52641.11706	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_recovery_1	negative	140.034389249	507.171563189	52641.11706	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_recovery_2	negative	140.034389249	507.171563189	52438.17335	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_heat_1	negative	114.054991387	708.933736893	50175.76447	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_heat_1	negative	114.054991387	708.933736893	50175.76447	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_heat_3	negative	114.054991387	708.933736893	48787.01706	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_3	negative	129.102293431	306.737242727	48467.65454	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_3	negative	114.054991387	708.933736893	47103.26663	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_heat_1	negative	195.049508504	746.350639308	45212.80972	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_heat_1	negative	129.102293431	306.737242727	45024.90051	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_1	negative	129.102293431	306.737242727	45024.90051	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_1	negative	129.102293431	306.737242727	38945.39163	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_2	negative	129.102293431	306.737242727	37700.77905	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_1	negative	129.102293431	306.737242727	33958.60587	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_1	negative	129.102293431	306.737242727	33958.60587	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_1	negative	114.054991387	708.933736893	32956.57553	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_recovery_1	negative	129.102363635	62.7787763415	27052.72629	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_3	negative	160.075754826	271.403513484	26420.16758	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-high_light_3	negative	160.075754826	271.403513484	19356.05109	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_3	negative	160.075754826	271.403513484	18792.20161	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_1	negative	129.102293431	306.737242727	15707.38403	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_3	negative	140.034389249	507.171563189	9371.869229	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_recovery_2	negative	160.075754826	271.403513484	7037.005762	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_1	negative	205.096997826	439.957815819	29.71761099	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_heat_1	negative	205.096997826	439.957815819	29.71761099	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_1	negative	166.086252765	407.956289771	26.98949345	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_1	negative	166.086252765	407.956289771	26.98949345	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_1	negative	205.096997826	439.957815819	26.97050975	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_1	negative	205.096997826	439.957815819	26.97050975	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_heat_1	negative	165.054706951	545.894258025	26.69672187	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_1	negative	165.054706951	545.894258025	26.69672187	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_1	negative	182.081257963	546.453034008	25.46407554	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_1	negative	182.081257963	546.453034008	25.46407554	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_1	negative	165.054706951	545.894258025	23.31428499	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_heat_1	negative	165.054706951	545.894258025	23.31428499	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_heat_1	negative	182.081257963	546.453034008	22.1519653	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_1	negative	182.081257963	546.453034008	22.1519653	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_recovery_1	negative	207.065138369	362.018787023	18.40671552	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_recovery_1	negative	207.065138369	362.018787023	18.40671552	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_1	negative	166.086252765	407.956289771	16.53026317	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_1	negative	166.086252765	407.956289771	16.53026317	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_recovery_1	negative	165.054706951	545.894258025	16.18187557	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_recovery_1	negative	165.054706951	545.894258025	16.18187557	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_heat_recovery_1	negative	182.081257963	546.453034008	15.46450432	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_recovery_1	negative	182.081257963	546.453034008	15.46450432	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-drought_recovery_1	negative	207.065138369	362.018787023	13.35696669	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-drought_recovery_1	negative	207.065138369	362.018787023	13.35696669	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_recovery_1	negative	207.065138369	362.018787023	12.70666681	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_recovery_1	negative	207.065138369	362.018787023	12.70666681	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_recovery_1	negative	205.096997826	439.957815819	11.53274487	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_heat_recovery_1	negative	205.096997826	439.957815819	11.53274487	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_heat_recovery_1	negative	268.102707317	340.036339548	11.29431206	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_heat_recovery_1	negative	268.102707317	340.036339548	11.29431206	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_heat_recovery_1	negative	140.034389249	507.171563189	10.29586062	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_recovery_1	negative	140.034389249	507.171563189	10.29586062	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_recovery_1	negative	113.034523864	346.164817875	9.172283939	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_recovery_1	negative	113.034523864	346.164817875	9.172283939	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_1	negative	160.075754826	271.403513484	7.945190509	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-drought_1	negative	160.075754826	271.403513484	7.945190509	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_heat_recovery_1	negative	225.075448787	353.021782816	7.694398782	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_recovery_1	negative	225.075448787	353.021782816	7.694398782	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_recovery_1	negative	163.075487247	362.719769144	7.510568364	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_recovery_1	negative	163.075487247	362.719769144	7.510568364	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_heat_1	negative	162.076178141	605.902027638	7.054656935	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_heat_1	negative	162.076178141	605.902027638	7.054656935	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_heat_recovery_1	negative	166.086252765	407.956289771	6.257531578	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_recovery_1	negative	166.086252765	407.956289771	6.257531578	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_recovery_1	negative	225.075448787	353.021782816	5.91054778	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_recovery_1	negative	225.075448787	353.021782816	5.91054778	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_recovery_1	negative	225.075448787	353.021782816	5.831276538	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_recovery_1	negative	225.075448787	353.021782816	5.831276538	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_1	negative	258.10859871	766.684498265	5.556175654	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-drought_1	negative	258.10859871	766.684498265	5.556175654	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_heat_recovery_1	negative	205.096997826	439.957815819	4.965062571	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_recovery_1	negative	205.096997826	439.957815819	4.965062571	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_heat_1	negative	258.10859871	766.684498265	4.926550049	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_heat_1	negative	258.10859871	766.684498265	4.926550049	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_1	negative	166.086252765	407.956289771	4.640793914	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-high_light_1	negative	166.086252765	407.956289771	4.640793914	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_recovery_1	negative	138.055097593	368.650817077	4.631641913	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_recovery_1	negative	138.055097593	368.650817077	4.631641913	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_1	negative	268.102707317	340.036339548	4.629639249	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_heat_1	negative	268.102707317	340.036339548	4.629639249	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_1	negative	165.054706951	545.894258025	4.600248506	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-drought_1	negative	165.054706951	545.894258025	4.600248506	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_heat_1	negative	162.076178141	605.902027638	4.521561166	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_heat_1	negative	162.076178141	605.902027638	4.521561166	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_1	negative	128.070716726	402.227959004	4.466052419	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_1	negative	128.070716726	402.227959004	4.466052419	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_1	negative	160.075855395	65.4178107604	4.164200563	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_1	negative	160.075855395	65.4178107604	4.164200563	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_1	negative	258.10859871	766.684498265	4.120888364	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_1	negative	258.10859871	766.684498265	4.120888364	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_heat_1	negative	113.034523864	346.164817875	4.050306877	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_1	negative	113.034523864	346.164817875	4.050306877	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_1	negative	182.081257963	546.453034008	4.023398631	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-drought_1	negative	182.081257963	546.453034008	4.023398631	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-drought_1	negative	166.086252765	407.956289771	3.987672919	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_1	negative	166.086252765	407.956289771	3.987672919	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_recovery_1	negative	140.034389249	507.171563189	3.918254032	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_heat_recovery_1	negative	140.034389249	507.171563189	3.918254032	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_1	negative	201.087271934	404.380901513	3.744344383	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_1	negative	201.087271934	404.380901513	3.744344383	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_heat_1	negative	157.060754467	673.395787895	3.716808771	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_1	negative	157.060754467	673.395787895	3.716808771	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_1	negative	128.070716726	402.227959004	3.687721543	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_heat_1	negative	128.070716726	402.227959004	3.687721543	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_heat_1	negative	112.050591326	558.97645159	3.66025809	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_1	negative	112.050591326	558.97645159	3.66025809	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_1	negative	131.081554456	524.085314834	3.629621519	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_1	negative	131.081554456	524.085314834	3.629621519	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_cold_1	negative	166.086252765	407.956289771	3.579312064	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_cold_1	negative	166.086252765	407.956289771	3.579312064	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-high_light_1	negative	205.096997826	439.957815819	3.556580327	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-high_light_1	negative	205.096997826	439.957815819	3.556580327	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_heat_recovery_1	negative	138.091419931	326.528822771	3.420629814	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_heat_recovery_1	negative	138.091419931	326.528822771	3.420629814	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_heat_recovery_1	negative	325.110961944	732.001078015	3.371811764	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_recovery_1	negative	325.110961944	732.001078015	3.371811764	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_recovery_1	negative	201.087271934	404.380901513	3.315895475	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_heat_recovery_1	negative	201.087271934	404.380901513	3.315895475	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_1	negative	157.060754467	673.395787895	3.300204502	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_1	negative	157.060754467	673.395787895	3.300204502	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_1	negative	131.081554456	524.085314834	3.292271276	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_heat_1	negative	131.081554456	524.085314834	3.292271276	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_1	negative	116.070593566	454.32394417	3.234046282	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_1	negative	116.070593566	454.32394417	3.234046282	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_recovery_1	negative	121.064869668	326.093475744	3.215576562	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_heat_recovery_1	negative	121.064869668	326.093475744	3.215576562	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-drought_recovery_1	negative	268.102707317	340.036339548	3.046062012	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_recovery_1	negative	268.102707317	340.036339548	3.046062012	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_recovery_1	negative	116.070593566	454.32394417	3.017316909	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_cold_recovery_1	negative	116.070593566	454.32394417	3.017316909	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_heat_1	negative	116.070593566	454.32394417	2.958645232	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_heat_1	negative	116.070593566	454.32394417	2.958645232	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_recovery.2	negative	129.065785327	638.634926081	2.909094567	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_cold_recovery.2	negative	129.065785327	638.634926081	2.909094567	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_heat_recovery_1	negative	166.086252765	407.956289771	2.840354317	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_recovery_1	negative	166.086252765	407.956289771	2.840354317	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_heat_recovery_1	negative	138.055097593	368.650817077	2.825625501	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_recovery_1	negative	138.055097593	368.650817077	2.825625501	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_1	negative	120.065516217	597.617158274	2.803599782	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_1	negative	120.065516217	597.617158274	2.803599782	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_recovery_1	negative	163.075487247	362.719769144	2.777439361	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_recovery_1	negative	163.075487247	362.719769144	2.777439361	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_cold_1	negative	166.086252765	407.956289771	2.762026785	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_1	negative	166.086252765	407.956289771	2.762026785	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_1	negative	205.096997826	439.957815819	2.760899529	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_1	negative	205.096997826	439.957815819	2.760899529	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_heat_1	negative	110.071328817	867.935393029	2.745552864	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_heat_1	negative	110.071328817	867.935393029	2.745552864	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-drought_recovery_1	negative	113.034523864	346.164817875	2.72889141	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_recovery_1	negative	113.034523864	346.164817875	2.72889141	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_1	negative	110.071328817	867.935393029	2.710752999	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_1	negative	110.071328817	867.935393029	2.710752999	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_1	negative	120.065516217	597.617158274	2.681097181	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_1	negative	120.065516217	597.617158274	2.681097181	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_1	negative	130.065229003	287.187393972	2.658307266	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_1	negative	130.065229003	287.187393972	2.658307266	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_1	negative	128.10709995	285.189766771	2.628387912	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_1	negative	128.10709995	285.189766771	2.628387912	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_cold_recovery.2	negative	109.028456527	733.20884566	2.573933795	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_recovery.2	negative	109.028456527	733.20884566	2.573933795	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_recovery_1	negative	140.034389249	507.171563189	2.546305012	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_recovery_1	negative	140.034389249	507.171563189	2.546305012	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_recovery_1	negative	112.050591326	558.97645159	2.537410805	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_recovery_1	negative	112.050591326	558.97645159	2.537410805	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_1	negative	135.064922543	671.83915346	2.53449836	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_heat_1	negative	135.064922543	671.83915346	2.53449836	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_recovery_1	negative	124.039350582	345.785256941	2.532695449	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	124.039350582	345.785256941	2.532695449	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	130.065229003	287.187393972	2.515510858	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_heat_recovery_1	negative	130.065229003	287.187393972	2.515510858	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_heat_1	negative	219.097087479	668.370758562	2.468613956	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_1	negative	219.097087479	668.370758562	2.468613956	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_1	negative	133.06075433	667.643542766	2.389553028	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_1	negative	133.06075433	667.643542766	2.389553028	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_recovery_1	negative	258.10859871	766.684498265	2.377788544	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_heat_recovery_1	negative	258.10859871	766.684498265	2.377788544	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_heat_1	negative	135.064922543	671.83915346	2.332606688	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_1	negative	135.064922543	671.83915346	2.332606688	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_1	negative	165.054706951	545.894258025	2.327261061	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_1	negative	165.054706951	545.894258025	2.327261061	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_heat_recovery_1	negative	182.081257963	546.453034008	2.310340849	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_recovery_1	negative	182.081257963	546.453034008	2.310340849	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_heat_1	negative	116.034275331	671.712362191	2.298199605	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_1	negative	116.034275331	671.712362191	2.298199605	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_recovery_1	negative	109.028456527	733.20884566	2.291309943	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_heat_recovery_1	negative	109.028456527	733.20884566	2.291309943	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-high_light_1	negative	182.081257963	546.453034008	2.279732893	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_1	negative	182.081257963	546.453034008	2.279732893	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_recovery_1	negative	165.054706951	545.894258025	2.263461878	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_heat_recovery_1	negative	165.054706951	545.894258025	2.263461878	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_cold_1	negative	131.081554456	524.085314834	2.259307359	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_1	negative	131.081554456	524.085314834	2.259307359	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_1	negative	174.076085448	664.71059456	2.240685655	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_1	negative	174.076085448	664.71059456	2.240685655	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_1	negative	140.034389249	507.171563189	2.229452226	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_heat_1	negative	140.034389249	507.171563189	2.229452226	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_heat_1	negative	133.06075433	667.643542766	2.194808543	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_1	negative	133.06075433	667.643542766	2.194808543	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_1	negative	133.031933396	442.294358949	2.170843878	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_1	negative	133.031933396	442.294358949	2.170843878	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_recovery_1	negative	162.076178141	605.902027638	2.150317697	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_heat_recovery_1	negative	162.076178141	605.902027638	2.150317697	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_1	negative	131.081554456	524.085314834	2.136738436	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_cold_1	negative	131.081554456	524.085314834	2.136738436	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_heat_1	negative	201.087271934	404.380901513	2.121975534	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_1	negative	201.087271934	404.380901513	2.121975534	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_1	negative	116.034275331	671.712362191	2.115590358	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_1	negative	116.034275331	671.712362191	2.115590358	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-high_light_1	negative	201.087271934	404.380901513	2.099138146	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-high_light_1	negative	201.087271934	404.380901513	2.099138146	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_1	negative	174.076085448	664.71059456	2.080425624	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_heat_1	negative	174.076085448	664.71059456	2.080425624	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_cold_1	negative	201.087271934	404.380901513	2.071541008	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_cold_1	negative	201.087271934	404.380901513	2.071541008	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_1	negative	133.031933396	442.294358949	2.065134687	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_1	negative	133.031933396	442.294358949	2.065134687	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_recovery_1	negative	127.039055675	732.713879133	1.993626374	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	127.039055675	732.713879133	1.993626374	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	145.049624973	732.288711427	1.987796531	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_1	negative	145.049624973	732.288711427	1.987796531	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	163.075487247	362.719769144	1.974931392	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-high_light_recovery_1	negative	163.075487247	362.719769144	1.974931392	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_recovery_1	negative	141.066024093	333.035450274	1.973244562	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	141.066024093	333.035450274	1.973244562	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_1	negative	140.034389249	507.171563189	1.94963069	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_heat_1	negative	140.034389249	507.171563189	1.94963069	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_heat_recovery_1	negative	138.091419931	326.528822771	1.94604098	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_heat_recovery_1	negative	138.091419931	326.528822771	1.94604098	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_1	negative	205.096997826	439.957815819	1.93975906	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_1	negative	205.096997826	439.957815819	1.93975906	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-high_light_recovery_1	negative	138.055097593	368.650817077	1.935801934	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-high_light_recovery_1	negative	138.055097593	368.650817077	1.935801934	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_1	negative	128.070716726	402.227959004	1.912072979	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_heat_1	negative	128.070716726	402.227959004	1.912072979	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-high_light_1	negative	127.039045173	478.908976206	1.908741102	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_1	negative	127.039045173	478.908976206	1.908741102	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	141.066024093	333.035450274	1.907486436	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_1	negative	141.066024093	333.035450274	1.907486436	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_1	negative	116.070593566	454.32394417	1.8849928	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-drought_1	negative	116.070593566	454.32394417	1.8849928	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_heat_recovery_1	negative	129.065785327	638.634926081	1.871846685	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_heat_recovery_1	negative	129.065785327	638.634926081	1.871846685	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-drought_1	negative	131.081554456	524.085314834	1.870607822	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-drought_1	negative	131.081554456	524.085314834	1.870607822	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_cold_recovery_1	negative	141.066024093	333.035450274	1.864480379	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	141.066024093	333.035450274	1.864480379	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_1	negative	129.065785327	638.634926081	1.862465967	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_heat_1	negative	129.065785327	638.634926081	1.862465967	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_1	negative	129.065785327	638.634926081	1.862023527	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_1	negative	129.065785327	638.634926081	1.862023527	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_1	negative	140.034389249	507.171563189	1.82532779	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-high_light_1	negative	140.034389249	507.171563189	1.82532779	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-high_light_1	negative	162.076178141	605.902027638	1.817470705	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-high_light_1	negative	162.076178141	605.902027638	1.817470705	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_1	negative	110.071328817	867.935393029	1.816213476	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-drought_1	negative	110.071328817	867.935393029	1.816213476	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-drought_1	negative	174.076085448	664.71059456	1.789645913	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-drought_1	negative	174.076085448	664.71059456	1.789645913	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-drought_1	negative	146.060090727	528.080048428	1.788282548	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-drought_1	negative	146.060090727	528.080048428	1.788282548	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_heat_1	negative	129.065947839	415.863706246	1.783544896	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_1	negative	129.065947839	415.863706246	1.783544896	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-drought_1	negative	115.086576502	897.299789636	1.781454196	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_1	negative	115.086576502	897.299789636	1.781454196	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_1	negative	201.087271934	404.380901513	1.768730665	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_heat_1	negative	201.087271934	404.380901513	1.768730665	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-high_light_1	negative	268.102707317	340.036339548	1.766465618	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-high_light_1	negative	268.102707317	340.036339548	1.766465618	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_1	negative	268.102707317	340.036339548	1.765153148	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_1	negative	268.102707317	340.036339548	1.765153148	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_1	negative	129.065785327	638.634926081	1.755329166	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-drought_1	negative	129.065785327	638.634926081	1.755329166	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_recovery_1	negative	207.065138369	362.018787023	1.746186171	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_recovery_1	negative	207.065138369	362.018787023	1.746186171	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_recovery_1	negative	325.110961944	732.001078015	1.743666815	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_heat_recovery_1	negative	325.110961944	732.001078015	1.743666815	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_heat_recovery_1	negative	121.064869668	326.093475744	1.737050822	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_recovery_1	negative	121.064869668	326.093475744	1.737050822	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_recovery_1	negative	201.087271934	404.380901513	1.724158205	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_recovery_1	negative	201.087271934	404.380901513	1.724158205	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_1	negative	114.054991387	708.933736893	1.716503578	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_1	negative	114.054991387	708.933736893	1.716503578	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_recovery_1	negative	166.086252765	407.956289771	1.705948794	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-drought_recovery_1	negative	166.086252765	407.956289771	1.705948794	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_heat_1	negative	113.034523864	346.164817875	1.699239135	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_1	negative	113.034523864	346.164817875	1.699239135	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_recovery_1	negative	162.076178141	605.902027638	1.683679272	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_heat_recovery_1	negative	162.076178141	605.902027638	1.683679272	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_recovery_1	negative	129.065785327	638.634926081	1.673610157	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_recovery_1	negative	129.065785327	638.634926081	1.673610157	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_recovery_1	negative	163.075487247	362.719769144	1.666472433	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_heat_recovery_1	negative	163.075487247	362.719769144	1.666472433	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_heat_recovery_1	negative	128.070716726	402.227959004	1.665190416	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	128.070716726	402.227959004	1.665190416	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	163.075487247	362.719769144	1.662949907	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_recovery_1	negative	163.075487247	362.719769144	1.662949907	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_heat_1	negative	195.049508504	746.350639308	1.656533159	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_heat_1	negative	195.049508504	746.350639308	1.656533159	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-high_light_1	negative	145.049606173	478.126835649	1.655887331	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_1	negative	145.049606173	478.126835649	1.655887331	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_heat_1	negative	127.039045173	478.908976206	1.649897189	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_heat_1	negative	127.039045173	478.908976206	1.649897189	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_recovery_1	negative	130.086348069	412.147868481	1.647359559	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	130.086348069	412.147868481	1.647359559	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	203.102959813	922.142129909	1.638090016	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_heat_1	negative	203.102959813	922.142129909	1.638090016	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_heat_recovery_1	negative	133.031933396	442.294358949	1.635447218	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_heat_recovery_1	negative	133.031933396	442.294358949	1.635447218	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_1	negative	129.065947839	415.863706246	1.635431342	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_1	negative	129.065947839	415.863706246	1.635431342	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_recovery_1	negative	133.031933396	442.294358949	1.622738748	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_recovery_1	negative	133.031933396	442.294358949	1.622738748	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_recovery_1	negative	129.102293431	306.737242727	1.619135284	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-high_light_recovery_1	negative	129.102293431	306.737242727	1.619135284	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_recovery_1	negative	129.102293431	306.737242727	1.619000085	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_recovery_1	negative	129.102293431	306.737242727	1.619000085	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	140.034389249	507.171563189	1.607040598	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_cold_1	negative	140.034389249	507.171563189	1.607040598	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_heat_1	negative	130.049869314	638.058869627	1.605981939	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_1	negative	130.049869314	638.058869627	1.605981939	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_cold_recovery.2	negative	166.086252765	407.956289771	1.604918755	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_recovery.2	negative	166.086252765	407.956289771	1.604918755	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_1	negative	205.096997826	439.957815819	1.604889284	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_1	negative	205.096997826	439.957815819	1.604889284	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_1	negative	201.087271934	404.380901513	1.602786796	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_cold_1	negative	201.087271934	404.380901513	1.602786796	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_1	negative	195.049508504	746.350639308	1.592330827	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_1	negative	195.049508504	746.350639308	1.592330827	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-high_light_1	negative	110.071328817	867.935393029	1.592043188	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_1	negative	110.071328817	867.935393029	1.592043188	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_heat_1	negative	121.064869668	326.093475744	1.587984864	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_heat_1	negative	121.064869668	326.093475744	1.587984864	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_1	negative	161.092044112	555.351269753	1.587821931	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_heat_1	negative	161.092044112	555.351269753	1.587821931	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_1	negative	112.050591326	558.97645159	1.579634205	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-drought_1	negative	112.050591326	558.97645159	1.579634205	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_heat_recovery_1	negative	129.065785327	638.634926081	1.566154529	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_recovery_1	negative	129.065785327	638.634926081	1.566154529	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_1	negative	138.091419931	326.528822771	1.56309394	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_heat_1	negative	138.091419931	326.528822771	1.56309394	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_recovery_1	negative	325.110961944	732.001078015	1.556679844	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_recovery_1	negative	325.110961944	732.001078015	1.556679844	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_heat_1	negative	112.050591326	558.97645159	1.553954446	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_1	negative	112.050591326	558.97645159	1.553954446	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_1	negative	129.065785327	638.634926081	1.545517394	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_1	negative	129.065785327	638.634926081	1.545517394	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_heat_1	negative	130.049869314	638.058869627	1.544864338	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_1	negative	130.049869314	638.058869627	1.544864338	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_1	negative	127.039045173	478.908976206	1.543382328	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_1	negative	127.039045173	478.908976206	1.543382328	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_heat_1	negative	219.097087479	668.370758562	1.536804324	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_1	negative	219.097087479	668.370758562	1.536804324	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_1	negative	130.049869314	638.058869627	1.532703524	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_1	negative	130.049869314	638.058869627	1.532703524	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_1	negative	145.049606173	478.126835649	1.522687858	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	145.049606173	478.126835649	1.522687858	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	159.076469963	709.608605344	1.522170868	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_1	negative	159.076469963	709.608605344	1.522170868	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_1	negative	130.065229003	287.187393972	1.505862819	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_1	negative	130.065229003	287.187393972	1.505862819	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_1	negative	195.049508504	746.350639308	1.499205966	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-high_light_1	negative	195.049508504	746.350639308	1.499205966	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_heat_recovery_1	negative	116.070593566	454.32394417	1.494713127	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_heat_recovery_1	negative	116.070593566	454.32394417	1.494713127	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-drought_1	negative	115.086648151	417.997247466	1.485746187	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-drought_1	negative	115.086648151	417.997247466	1.485746187	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-drought_1	negative	157.060754467	673.395787895	1.484358178	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_1	negative	157.060754467	673.395787895	1.484358178	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-high_light_1	negative	131.081554456	524.085314834	1.478937208	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_1	negative	131.081554456	524.085314834	1.478937208	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_1	negative	219.097087479	668.370758562	1.474702889	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_1	negative	219.097087479	668.370758562	1.474702889	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_1	negative	161.092044112	555.351269753	1.470253675	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_heat_1	negative	161.092044112	555.351269753	1.470253675	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_1	negative	268.102707317	340.036339548	1.465585657	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_cold_1	negative	268.102707317	340.036339548	1.465585657	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_cold_1	negative	128.070716726	402.227959004	1.465176534	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_1	negative	128.070716726	402.227959004	1.465176534	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_1	negative	115.086648151	417.997247466	1.45829347	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_1	negative	115.086648151	417.997247466	1.45829347	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_recovery_1	negative	138.055097593	368.650817077	1.45682742	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_recovery_1	negative	138.055097593	368.650817077	1.45682742	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_recovery_1	negative	268.102707317	340.036339548	1.453229015	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_recovery_1	negative	268.102707317	340.036339548	1.453229015	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_recovery_1	negative	131.081554456	524.085314834	1.449942136	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_heat_recovery_1	negative	131.081554456	524.085314834	1.449942136	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_cold_1	negative	162.076178141	605.902027638	1.447820669	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_1	negative	162.076178141	605.902027638	1.447820669	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_heat_recovery_1	negative	110.071328817	867.935393029	1.446948685	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_heat_recovery_1	negative	110.071328817	867.935393029	1.446948685	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_1	negative	268.102707317	340.036339548	1.445674328	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_heat_1	negative	268.102707317	340.036339548	1.445674328	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_1	negative	160.075855395	65.4178107604	1.442981273	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_cold_1	negative	160.075855395	65.4178107604	1.442981273	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_heat_1	negative	207.065138369	362.018787023	1.435974196	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_heat_1	negative	207.065138369	362.018787023	1.435974196	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_recovery.2	negative	115.086576502	897.299789636	1.434975136	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_recovery.2	negative	115.086576502	897.299789636	1.434975136	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_1	negative	120.065516217	597.617158274	1.427070211	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_1	negative	120.065516217	597.617158274	1.427070211	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_1	negative	130.086348069	412.147868481	1.414850543	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-drought_1	negative	130.086348069	412.147868481	1.414850543	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	130.065229003	287.187393972	1.411449547	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_recovery_1	negative	130.065229003	287.187393972	1.411449547	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_1	negative	129.065947839	415.863706246	1.405156692	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-drought_1	negative	129.065947839	415.863706246	1.405156692	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_recovery_1	negative	207.065138369	362.018787023	1.40386202	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_cold_recovery_1	negative	207.065138369	362.018787023	1.40386202	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_1	negative	112.050591326	558.97645159	1.400904268	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_1	negative	112.050591326	558.97645159	1.400904268	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_1	negative	120.065516217	597.617158274	1.400851215	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_1	negative	120.065516217	597.617158274	1.400851215	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_1	negative	143.081552215	413.938579194	1.393700494	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_1	negative	143.081552215	413.938579194	1.393700494	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_recovery_1	negative	139.05031348	413.204094087	1.391419878	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_recovery_1	negative	139.05031348	413.204094087	1.391419878	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	114.054991387	708.933736893	1.381425392	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_recovery.2	negative	114.054991387	708.933736893	1.381425392	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_heat_recovery_1	negative	109.028456527	733.20884566	1.381163303	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_heat_recovery_1	negative	109.028456527	733.20884566	1.381163303	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-drought_1	negative	138.055097593	368.650817077	1.381146729	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-drought_1	negative	138.055097593	368.650817077	1.381146729	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_cold_recovery.2	negative	268.102707317	340.036339548	1.376775081	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-acquired_cold_recovery.2	negative	268.102707317	340.036339548	1.376775081	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_1	negative	129.065785327	638.634926081	1.374791941	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-basal_cold_1	negative	129.065785327	638.634926081	1.374791941	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-drought_1	negative	162.076178141	605.902027638	1.367574512	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_1	negative	162.076178141	605.902027638	1.367574512	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-high_light_1	negative	116.070593566	454.32394417	1.365410765	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_1	negative	116.070593566	454.32394417	1.365410765	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_1	negative	133.06075433	667.643542766	1.364939533	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-high_light_1	negative	133.06075433	667.643542766	1.364939533	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-drought_1	negative	161.092044112	555.351269753	1.363431422	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_1	negative	161.092044112	555.351269753	1.363431422	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_heat_recovery_1	negative	130.049869314	638.058869627	1.363296436	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_recovery_1	negative	130.049869314	638.058869627	1.363296436	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_1	negative	135.064922543	671.83915346	1.362490412	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-drought_1	negative	135.064922543	671.83915346	1.362490412	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_recovery_1	negative	161.092104354	442.102334595	1.362209622	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-high_light_recovery_1	negative	161.092104354	442.102334595	1.362209622	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_1	negative	128.10709995	285.189766771	1.351491899	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_1	negative	128.10709995	285.189766771	1.351491899	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_recovery_1	negative	120.065516217	597.617158274	1.347146736	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_recovery_1	negative	120.065516217	597.617158274	1.347146736	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_recovery_1	negative	129.065785327	638.634926081	1.342853614	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-high_light_recovery_1	negative	129.065785327	638.634926081	1.342853614	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_cold_recovery.2	negative	201.087271934	404.380901513	1.341564442	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_cold_recovery.2	negative	201.087271934	404.380901513	1.341564442	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_heat_recovery_1	negative	161.092104354	442.102334595	1.341494803	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_1	negative	161.092104354	442.102334595	1.341494803	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.2	negative	166.072040805	626.85306269	1.331913239	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_recovery.2	negative	166.072040805	626.85306269	1.331913239	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_recovery.2	negative	157.060754467	673.395787895	1.329904314	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_recovery.2	negative	157.060754467	673.395787895	1.329904314	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_1	negative	124.039350582	345.785256941	1.327163442	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	124.039350582	345.785256941	1.327163442	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	205.096997826	439.957815819	1.326916544	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-basal_cold_recovery_1	negative	205.096997826	439.957815819	1.326916544	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_1	negative	160.075855395	65.4178107604	1.32355644	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_1	negative	160.075855395	65.4178107604	1.32355644	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_heat_recovery_1	negative	120.065516217	597.617158274	1.323074172	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_recovery_1	negative	120.065516217	597.617158274	1.323074172	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_heat_recovery_1	negative	113.034523864	346.164817875	1.319434376	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_recovery_1	negative	113.034523864	346.164817875	1.319434376	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_heat_recovery_1	negative	141.0659958	531.807534215	1.316993515	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	141.0659958	531.807534215	1.316993515	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	169.035751827	567.096044524	1.310750658	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_cold_recovery.2	negative	169.035751827	567.096044524	1.310750658	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_1	negative	207.065138369	362.018787023	1.310427944	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_1	negative	207.065138369	362.018787023	1.310427944	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_recovery.2	negative	110.071328817	867.935393029	1.307824748	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_recovery.2	negative	110.071328817	867.935393029	1.307824748	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_heat_recovery_1	negative	130.049869314	638.058869627	1.306995834	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_recovery_1	negative	130.049869314	638.058869627	1.306995834	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_1	negative	121.064869668	326.093475744	1.304747294	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-drought_1	negative	121.064869668	326.093475744	1.304747294	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_recovery_1	negative	145.049624973	732.288711427	1.30358242	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_1	negative	145.049624973	732.288711427	1.30358242	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-high_light_1	negative	160.075855395	65.4178107604	1.303318789	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_1	negative	160.075855395	65.4178107604	1.303318789	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_heat_1	negative	210.076174871	556.414916611	1.301938503	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_heat_1	negative	210.076174871	556.414916611	1.301938503	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_1	negative	127.039055675	732.713879133	1.299136284	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_heat_recovery_1	negative	127.039055675	732.713879133	1.299136284	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-drought_1	negative	129.102363635	62.7787763415	1.298740438	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_1	negative	129.102363635	62.7787763415	1.298740438	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_1	negative	124.039350582	345.785256941	1.293104996	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	124.039350582	345.785256941	1.293104996	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	148.096909953	556.044083324	1.288565494	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_1	negative	148.096909953	556.044083324	1.288565494	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_recovery.2	negative	159.076469963	709.608605344	1.287591241	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_recovery.2	negative	159.076469963	709.608605344	1.287591241	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_1	negative	207.065138369	362.018787023	1.282860426	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_1	negative	207.065138369	362.018787023	1.282860426	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_recovery_1	negative	127.039045173	478.908976206	1.281670381	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	127.039045173	478.908976206	1.281670381	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_1	negative	166.072040805	626.85306269	1.28063814	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_1	negative	166.072040805	626.85306269	1.28063814	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_1	negative	116.034275331	671.712362191	1.279706465	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_1	negative	116.034275331	671.712362191	1.279706465	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_recovery_1	negative	145.049606173	478.126835649	1.279018211	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_1	negative	145.049606173	478.126835649	1.279018211	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_1	negative	116.034275331	671.712362191	1.276004177	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-high_light_1	negative	116.034275331	671.712362191	1.276004177	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_1	negative	195.049508504	746.350639308	1.275356218	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_heat_1	negative	195.049508504	746.350639308	1.275356218	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_recovery.2	negative	133.06075433	667.643542766	1.272662244	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_cold_recovery.2	negative	133.06075433	667.643542766	1.272662244	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_1	negative	143.081552215	413.938579194	1.27232473	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_cold_1	negative	143.081552215	413.938579194	1.27232473	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	207.065138369	362.018787023	1.270133097	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_recovery.2	negative	207.065138369	362.018787023	1.270133097	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_recovery_1	negative	130.065229003	287.187393972	1.26186056	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_recovery_1	negative	130.065229003	287.187393972	1.26186056	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_1	negative	127.039045173	478.908976206	1.261372293	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_heat_1	negative	127.039045173	478.908976206	1.261372293	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_cold_recovery.2	negative	116.034275331	671.712362191	1.260957196	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_cold_recovery.2	negative	116.034275331	671.712362191	1.260957196	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_cold_recovery.2	negative	245.095407817	720.45724836	1.260720002	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_recovery.2	negative	245.095407817	720.45724836	1.260720002	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-drought_1	negative	133.06075433	667.643542766	1.259780138	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-drought_1	negative	133.06075433	667.643542766	1.259780138	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-high_light_1	negative	163.075487247	362.719769144	1.257781759	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-high_light_1	negative	163.075487247	362.719769144	1.257781759	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_recovery_1	negative	162.076178141	605.902027638	1.256417156	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-basal_cold_recovery_1	negative	162.076178141	605.902027638	1.256417156	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_recovery.2	negative	135.064922543	671.83915346	1.2564045	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_recovery.2	negative	135.064922543	671.83915346	1.2564045	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_1	negative	130.065229003	287.187393972	1.253479131	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_cold_1	negative	130.065229003	287.187393972	1.253479131	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_cold_recovery.2	negative	325.110961944	732.001078015	1.251150892	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_cold_recovery.2	negative	325.110961944	732.001078015	1.251150892	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_cold_1	negative	127.039045173	478.908976206	1.248965215	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_cold_1	negative	127.039045173	478.908976206	1.248965215	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_recovery_1	negative	116.070593566	454.32394417	1.244632901	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-drought_recovery_1	negative	116.070593566	454.32394417	1.244632901	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_1	negative	130.049869314	638.058869627	1.237262139	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_1	negative	130.049869314	638.058869627	1.237262139	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_cold_1	negative	165.054706951	545.894258025	1.236530137	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_1	negative	165.054706951	545.894258025	1.236530137	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_1	negative	161.082301556	152.040443946	1.231439091	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_1	negative	161.082301556	152.040443946	1.231439091	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_cold_1	negative	195.049508504	746.350639308	1.231156836	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_cold_1	negative	195.049508504	746.350639308	1.231156836	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_recovery.2	negative	112.050591326	558.97645159	1.23102998	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_cold_recovery.2	negative	112.050591326	558.97645159	1.23102998	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_1	negative	203.102959813	922.142129909	1.229375531	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_heat_1	negative	203.102959813	922.142129909	1.229375531	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_recovery.2	negative	205.096997826	439.957815819	1.22817508	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_recovery.2	negative	205.096997826	439.957815819	1.22817508	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_1	negative	115.086648151	417.997247466	1.227094405	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_cold_1	negative	115.086648151	417.997247466	1.227094405	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_recovery_1	negative	110.071328817	867.935393029	1.226108443	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_recovery_1	negative	110.071328817	867.935393029	1.226108443	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_recovery.2	negative	124.039346937	606.311521329	1.224982416	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	124.039346937	606.311521329	1.224982416	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	133.031933396	442.294358949	1.221628136	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_recovery_1	negative	133.031933396	442.294358949	1.221628136	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_cold_1	negative	127.039045173	478.908976206	1.216068057	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_cold_1	negative	127.039045173	478.908976206	1.216068057	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_cold_recovery.2	negative	131.081554456	524.085314834	1.21504566	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_recovery.2	negative	131.081554456	524.085314834	1.21504566	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-drought_recovery_1	negative	138.055097593	368.650817077	1.214028149	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-drought_recovery_1	negative	138.055097593	368.650817077	1.214028149	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-drought_1	negative	192.050472469	513.214176912	1.213937271	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_1	negative	192.050472469	513.214176912	1.213937271	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_cold_1	negative	207.065138369	362.018787023	1.213096734	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_cold_1	negative	207.065138369	362.018787023	1.213096734	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_recovery.2	negative	146.060090727	528.080048428	1.211146627	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_recovery.2	negative	146.060090727	528.080048428	1.211146627	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_1	negative	225.075448787	353.021782816	1.21014643	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-high_light_1	negative	225.075448787	353.021782816	1.21014643	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_1	negative	133.031933396	442.294358949	1.203463046	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-drought_1	negative	133.031933396	442.294358949	1.203463046	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_recovery_1	negative	128.10709995	285.189766771	1.202808619	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_heat_recovery_1	negative	128.10709995	285.189766771	1.202808619	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_1	negative	161.092104354	442.102334595	1.199401466	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_1	negative	161.092104354	442.102334595	1.199401466	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.2	negative	130.065229003	287.187393972	1.198193901	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_cold_recovery.2	negative	130.065229003	287.187393972	1.198193901	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-high_light_recovery_1	negative	109.028456527	733.20884566	1.196332469	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-high_light_recovery_1	negative	109.028456527	733.20884566	1.196332469	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-drought_1	negative	210.076174871	556.414916611	1.195876315	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-drought_1	negative	210.076174871	556.414916611	1.195876315	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_1	negative	210.076174871	556.414916611	1.193528555	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_1	negative	210.076174871	556.414916611	1.193528555	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_cold_1	negative	207.065138369	362.018787023	1.191926644	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-acquired_cold_1	negative	207.065138369	362.018787023	1.191926644	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-high_light_1	negative	133.031933396	442.294358949	1.186818913	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_1	negative	133.031933396	442.294358949	1.186818913	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_recovery_1	negative	258.10859871	766.684498265	1.184196575	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_cold_recovery_1	negative	258.10859871	766.684498265	1.184196575	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_recovery.2	negative	134.044842716	735.778198352	1.18402884	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_recovery.2	negative	134.044842716	735.778198352	1.18402884	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_1	negative	128.10709995	285.189766771	1.182221675	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_cold_1	negative	128.10709995	285.189766771	1.182221675	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_1	negative	169.035751827	567.096044524	1.17737209	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_heat_1	negative	169.035751827	567.096044524	1.17737209	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_1	negative	268.102707317	340.036339548	1.175854244	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-drought_1	negative	268.102707317	340.036339548	1.175854244	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_1	negative	182.081257963	546.453034008	1.175486882	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_1	negative	182.081257963	546.453034008	1.175486882	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_cold_recovery.2	negative	145.049624973	732.288711427	1.171585788	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_cold_recovery.2	negative	145.049624973	732.288711427	1.171585788	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	225.075448787	353.021782816	1.171353651	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_1	negative	225.075448787	353.021782816	1.171353651	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_1	negative	129.054742348	473.08756594	1.167640599	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-drought_1	negative	129.054742348	473.08756594	1.167640599	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_1	negative	130.065229003	287.187393972	1.1675121	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_1	negative	130.065229003	287.187393972	1.1675121	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_recovery_1	negative	325.110961944	732.001078015	1.165589794	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_cold_recovery_1	negative	325.110961944	732.001078015	1.165589794	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_1	negative	277.101437375	768.482729939	1.161478701	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_heat_1	negative	277.101437375	768.482729939	1.161478701	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_recovery_1	negative	162.076178141	605.902027638	1.158207965	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_recovery_1	negative	162.076178141	605.902027638	1.158207965	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-high_light_1	negative	157.060754467	673.395787895	1.153677236	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-high_light_1	negative	157.060754467	673.395787895	1.153677236	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_1	negative	203.102959813	922.142129909	1.152684569	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_1	negative	203.102959813	922.142129909	1.152684569	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_cold_recovery_1	negative	161.092104354	442.102334595	1.151597392	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	161.092104354	442.102334595	1.151597392	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-high_light_1	negative	146.060090727	528.080048428	1.149838059	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_1	negative	146.060090727	528.080048428	1.149838059	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_recovery_1	negative	161.082301556	152.040443946	1.146907036	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_cold_recovery_1	negative	161.082301556	152.040443946	1.146907036	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_1	negative	174.076085448	664.71059456	1.146012966	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_1	negative	174.076085448	664.71059456	1.146012966	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_recovery_1	negative	141.066024093	333.035450274	1.145775559	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	141.066024093	333.035450274	1.145775559	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_1	negative	138.091419931	326.528822771	1.145516079	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_1	negative	138.091419931	326.528822771	1.145516079	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_recovery.2	negative	130.049869314	638.058869627	1.144292174	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_cold_recovery.2	negative	130.049869314	638.058869627	1.144292174	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_cold_1	negative	115.086576502	897.299789636	1.143728893	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_cold_1	negative	115.086576502	897.299789636	1.143728893	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_cold_recovery_1	negative	130.049869314	638.058869627	1.136078583	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_cold_recovery_1	negative	130.049869314	638.058869627	1.136078583	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_cold_1	negative	130.049869314	638.058869627	1.135460835	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_cold_1	negative	130.049869314	638.058869627	1.135460835	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_cold_recovery.2	negative	174.076085448	664.71059456	1.130419259	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_recovery.2	negative	174.076085448	664.71059456	1.130419259	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_cold_1	negative	225.075448787	353.021782816	1.129414754	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_cold_1	negative	225.075448787	353.021782816	1.129414754	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_recovery.2	negative	161.092044112	555.351269753	1.124032832	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.2	negative	161.092044112	555.351269753	1.124032832	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.2	negative	138.091419931	326.528822771	1.122639144	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_recovery.2	negative	138.091419931	326.528822771	1.122639144	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_heat_1	negative	121.064869668	326.093475744	1.12023368	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_heat_1	negative	121.064869668	326.093475744	1.12023368	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_cold_recovery.2	negative	161.092104354	442.102334595	1.118700438	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_recovery.2	negative	161.092104354	442.102334595	1.118700438	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_1	negative	129.065947839	415.863706246	1.118238124	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_1	negative	129.065947839	415.863706246	1.118238124	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_1	negative	225.075448787	353.021782816	1.116340617	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_heat_1	negative	225.075448787	353.021782816	1.116340617	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_recovery.2	negative	210.076174871	556.414916611	1.116289448	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_cold_recovery.2	negative	210.076174871	556.414916611	1.116289448	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-high_light_1	negative	129.065947839	415.863706246	1.112256701	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-high_light_1	negative	129.065947839	415.863706246	1.112256701	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_1	negative	163.075487247	362.719769144	1.11181012	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_1	negative	163.075487247	362.719769144	1.11181012	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_cold_recovery.2	negative	162.076178141	605.902027638	1.111030611	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_recovery.2	negative	162.076178141	605.902027638	1.111030611	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-drought_1	negative	207.065138369	362.018787023	1.107542705	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-drought_1	negative	207.065138369	362.018787023	1.107542705	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-basal_heat_1	negative	125.023379586	500.87044907	1.106006883	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_heat_1	negative	125.023379586	500.87044907	1.106006883	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_heat_recovery_1	negative	145.049606173	478.126835649	1.104619799	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_1	negative	145.049606173	478.126835649	1.104619799	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_1	negative	145.049606173	478.126835649	1.101431854	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_1	negative	145.049606173	478.126835649	1.101431854	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_recovery_1	negative	205.096997826	439.957815819	1.100920742	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_recovery_1	negative	205.096997826	439.957815819	1.100920742	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-acquired_cold_recovery.2	negative	277.101437375	768.482729939	1.098989051	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_recovery.2	negative	277.101437375	768.482729939	1.098989051	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_1	negative	229.086134186	75.4572130113	1.095347879	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_cold_1	negative	229.086134186	75.4572130113	1.095347879	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_cold_1	negative	165.054706951	545.894258025	1.095031627	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_cold_1	negative	165.054706951	545.894258025	1.095031627	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_1	negative	128.070716726	402.227959004	1.094668993	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-high_light_1	negative	128.070716726	402.227959004	1.094668993	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_heat_1	negative	138.091419931	326.528822771	1.093669114	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_heat_1	negative	138.091419931	326.528822771	1.093669114	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_1	negative	113.034523864	346.164817875	1.092539893	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_1	negative	113.034523864	346.164817875	1.092539893	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_cold_1	negative	145.049606173	478.126835649	1.087732139	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_1	negative	145.049606173	478.126835649	1.087732139	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_recovery.2	negative	128.10709995	285.189766771	1.086491229	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_cold_recovery.2	negative	128.10709995	285.189766771	1.086491229	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_cold_recovery_1	negative	130.086348069	412.147868481	1.08547515	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	130.086348069	412.147868481	1.08547515	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	129.065947839	415.863706246	1.082626019	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_recovery_1	negative	129.065947839	415.863706246	1.082626019	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-high_light_1	negative	210.076174871	556.414916611	1.082589235	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-high_light_1	negative	210.076174871	556.414916611	1.082589235	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_heat_1	negative	146.060090727	528.080048428	1.081986869	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_heat_1	negative	146.060090727	528.080048428	1.081986869	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_recovery.2	negative	121.064869668	326.093475744	1.078692572	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_cold_recovery.2	negative	121.064869668	326.093475744	1.078692572	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_1	negative	229.086134186	75.4572130113	1.077325566	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_1	negative	229.086134186	75.4572130113	1.077325566	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_1	negative	146.060090727	528.080048428	1.076336022	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_1	negative	146.060090727	528.080048428	1.076336022	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_recovery.2	negative	141.066024093	333.035450274	1.07385652	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	141.066024093	333.035450274	1.07385652	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_1	negative	124.039350582	345.785256941	1.072261202	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	124.039350582	345.785256941	1.072261202	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	138.055097593	368.650817077	1.072224579	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_1	negative	138.055097593	368.650817077	1.072224579	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_recovery_1	negative	130.065229003	287.187393972	1.071759581	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_recovery_1	negative	130.065229003	287.187393972	1.071759581	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_recovery_1	negative	113.034523864	346.164817875	1.071612472	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_recovery_1	negative	113.034523864	346.164817875	1.071612472	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_recovery_1	negative	127.039045173	478.908976206	1.070831061	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_heat_recovery_1	negative	127.039045173	478.908976206	1.070831061	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_cold_1	negative	182.081257963	546.453034008	1.067498169	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_cold_1	negative	182.081257963	546.453034008	1.067498169	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-drought_1	negative	245.095407817	720.45724836	1.064025615	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-drought_1	negative	245.095407817	720.45724836	1.064025615	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_recovery.2	negative	127.039055675	732.713879133	1.061757375	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_cold_recovery.2	negative	127.039055675	732.713879133	1.061757375	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_1	negative	128.10709995	285.189766771	1.06154512	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_1	negative	128.10709995	285.189766771	1.06154512	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_1	negative	161.092104354	442.102334595	1.060856042	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-high_light_1	negative	161.092104354	442.102334595	1.060856042	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_1	negative	128.070716726	402.227959004	1.060379392	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_1	negative	128.070716726	402.227959004	1.060379392	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	138.091419931	326.528822771	1.05669299	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_recovery_1	negative	138.091419931	326.528822771	1.05669299	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_recovery.2	negative	129.054742348	473.08756594	1.055310528	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_recovery.2	negative	129.054742348	473.08756594	1.055310528	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_heat_recovery_1	negative	131.081554456	524.085314834	1.055295534	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_recovery_1	negative	131.081554456	524.085314834	1.055295534	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-drought_1	negative	125.023379586	500.87044907	1.055258017	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-drought_1	negative	125.023379586	500.87044907	1.055258017	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_heat_1	negative	138.055097593	368.650817077	1.055252258	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_heat_1	negative	138.055097593	368.650817077	1.055252258	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_cold_recovery.2	negative	133.031933396	442.294358949	1.049666354	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_cold_recovery.2	negative	133.031933396	442.294358949	1.049666354	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-drought_1	negative	218.117141617	63.4203134757	1.048774356	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_1	negative	218.117141617	63.4203134757	1.048774356	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_recovery_1	negative	128.070716726	402.227959004	1.048628928	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	128.070716726	402.227959004	1.048628928	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	258.10859871	766.684498265	1.046131515	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_recovery.2	negative	258.10859871	766.684498265	1.046131515	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_1	negative	128.10709995	285.189766771	1.045571159	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_cold_1	negative	128.10709995	285.189766771	1.045571159	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_cold_recovery.2	negative	120.065516217	597.617158274	1.044103816	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_recovery.2	negative	120.065516217	597.617158274	1.044103816	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_1	negative	169.035751827	567.096044524	1.042512189	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_1	negative	169.035751827	567.096044524	1.042512189	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_cold_1	negative	129.065785327	638.634926081	1.040791558	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_cold_1	negative	129.065785327	638.634926081	1.040791558	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_cold_recovery.2	negative	192.050472469	513.214176912	1.039519756	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_recovery.2	negative	192.050472469	513.214176912	1.039519756	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_recovery.2	negative	203.102959813	922.142129909	1.039240393	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_recovery.2	negative	203.102959813	922.142129909	1.039240393	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_recovery.2	negative	148.096909953	556.044083324	1.039127831	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_recovery.2	negative	148.096909953	556.044083324	1.039127831	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_recovery.2	negative	129.065947839	415.863706246	1.038937027	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_recovery.2	negative	129.065947839	415.863706246	1.038937027	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_1	negative	225.075448787	353.021782816	1.037662189	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_heat_1	negative	225.075448787	353.021782816	1.037662189	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_cold_1	negative	110.071328817	867.935393029	1.0374344	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_cold_1	negative	110.071328817	867.935393029	1.0374344	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_cold_1	negative	229.086134186	75.4572130113	1.036387322	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_1	negative	229.086134186	75.4572130113	1.036387322	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_1	negative	169.035751827	567.096044524	1.036062084	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_1	negative	169.035751827	567.096044524	1.036062084	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_cold_recovery.2	negative	128.070716726	402.227959004	1.035936891	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	128.070716726	402.227959004	1.035936891	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_1	negative	113.034523864	346.164817875	1.033825988	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_cold_1	negative	113.034523864	346.164817875	1.033825988	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_heat_1	negative	277.101437375	768.482729939	1.033630029	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_1	negative	277.101437375	768.482729939	1.033630029	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_recovery_1	negative	129.102293431	306.737242727	1.033030624	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_recovery_1	negative	129.102293431	306.737242727	1.033030624	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-high_light_recovery_1	negative	205.096997826	439.957815819	1.032153743	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-high_light_recovery_1	negative	205.096997826	439.957815819	1.032153743	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-drought_1	negative	113.034523864	346.164817875	1.031265394	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_1	negative	113.034523864	346.164817875	1.031265394	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_1	negative	135.064922543	671.83915346	1.029220017	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_cold_1	negative	135.064922543	671.83915346	1.029220017	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_cold_1	negative	129.054742348	473.08756594	1.027560706	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_1	negative	129.054742348	473.08756594	1.027560706	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_heat_1	negative	129.054742348	473.08756594	1.025815979	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_heat_1	negative	129.054742348	473.08756594	1.025815979	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_1	negative	138.055097593	368.650817077	1.024832927	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-high_light_1	negative	138.055097593	368.650817077	1.024832927	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-drought_1	negative	277.101437375	768.482729939	1.024528835	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_1	negative	277.101437375	768.482729939	1.024528835	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_recovery_1	negative	145.049624973	732.288711427	1.024520497	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_cold_recovery_1	negative	145.049624973	732.288711427	1.024520497	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	258.10859871	766.684498265	1.024096256	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_recovery_1	negative	258.10859871	766.684498265	1.024096256	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_1	negative	125.023379586	500.87044907	1.023585614	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_1	negative	125.023379586	500.87044907	1.023585614	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_recovery_1	negative	130.049869314	638.058869627	1.02339856	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_recovery_1	negative	130.049869314	638.058869627	1.02339856	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-high_light_1	negative	135.064922543	671.83915346	1.022748507	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_1	negative	135.064922543	671.83915346	1.022748507	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_1	negative	225.075448787	353.021782816	1.022713723	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_1	negative	225.075448787	353.021782816	1.022713723	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-drought_1	negative	124.039378692	163.709299272	1.021074267	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	124.039378692	163.709299272	1.021074267	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	133.06075433	667.643542766	1.020447335	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_1	negative	133.06075433	667.643542766	1.020447335	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_cold_recovery.2	negative	219.097087479	668.370758562	1.018535003	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_cold_recovery.2	negative	219.097087479	668.370758562	1.018535003	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_recovery_1	negative	138.091419931	326.528822771	1.018529551	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_recovery_1	negative	138.091419931	326.528822771	1.018529551	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_1	negative	115.086576502	897.299789636	1.018508113	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-high_light_1	negative	115.086576502	897.299789636	1.018508113	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_recovery.2	negative	226.070598166	632.340656791	1.017848631	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_recovery.2	negative	226.070598166	632.340656791	1.017848631	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_1	negative	146.060090727	528.080048428	1.01551564	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_1	negative	146.060090727	528.080048428	1.01551564	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_1	negative	129.054742348	473.08756594	1.015057127	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_1	negative	129.054742348	473.08756594	1.015057127	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_recovery.2	negative	116.070593566	454.32394417	1.007327522	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_recovery.2	negative	116.070593566	454.32394417	1.007327522	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-drought_recovery_1	negative	121.064869668	326.093475744	1.007300796	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-drought_recovery_1	negative	121.064869668	326.093475744	1.007300796	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_1	negative	129.102363635	62.7787763415	1.006562043	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_1	negative	129.102363635	62.7787763415	1.006562043	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	129.102363635	62.7787763415	1.005871948	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	129.102363635	62.7787763415	1.005871948	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_1	negative	130.086348069	412.147868481	1.005795606	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	130.086348069	412.147868481	1.005795606	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	124.039346937	606.311521329	1.003110673	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	124.039346937	606.311521329	1.003110673	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	116.070593566	454.32394417	1.000081645	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-high_light_recovery_1	negative	116.070593566	454.32394417	1.000081645	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-control_1	negative	109.028456527	733.20884566	1.0	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-control_recovery_1	negative	109.028456527	733.20884566	1.0	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-control_1	negative	110.071328817	867.935393029	1.0	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_recovery_1	negative	110.071328817	867.935393029	1.0	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-control_1	negative	112.050591326	558.97645159	1.0	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-control_recovery_1	negative	112.050591326	558.97645159	1.0	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-control_1	negative	113.034523864	346.164817875	1.0	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-control_recovery_1	negative	113.034523864	346.164817875	1.0	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-control_1	negative	114.054991387	708.933736893	1.0	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-control_recovery_1	negative	114.054991387	708.933736893	1.0	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-control_1	negative	115.086576502	897.299789636	1.0	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-control_recovery_1	negative	115.086576502	897.299789636	1.0	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-control_1	negative	115.086648151	417.997247466	1.0	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-control_recovery_1	negative	115.086648151	417.997247466	1.0	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-control_1	negative	116.034275331	671.712362191	1.0	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_recovery_1	negative	116.034275331	671.712362191	1.0	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-control_1	negative	116.070593566	454.32394417	1.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-control_recovery_1	negative	116.070593566	454.32394417	1.0	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-control_1	negative	120.065516217	597.617158274	1.0	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-control_recovery_1	negative	120.065516217	597.617158274	1.0	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-control_1	negative	121.064869668	326.093475744	1.0	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-control_recovery_1	negative	121.064869668	326.093475744	1.0	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-control_1	negative	124.039350582	345.785256941	1.0	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	124.039350582	345.785256941	1.0	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-control_1	negative	124.039346937	606.311521329	1.0	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	124.039346937	606.311521329	1.0	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-control_1	negative	124.039378692	163.709299272	1.0	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	124.039378692	163.709299272	1.0	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-control_1	negative	125.023379586	500.87044907	1.0	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_recovery_1	negative	125.023379586	500.87044907	1.0	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-control_1	negative	127.039055675	732.713879133	1.0	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-control_recovery_1	negative	127.039055675	732.713879133	1.0	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-control_1	negative	127.039045173	478.908976206	1.0	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-control_recovery_1	negative	127.039045173	478.908976206	1.0	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-control_1	negative	128.070716726	402.227959004	1.0	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-control_recovery_1	negative	128.070716726	402.227959004	1.0	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-control_1	negative	128.10709995	285.189766771	1.0	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-control_recovery_1	negative	128.10709995	285.189766771	1.0	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-control_1	negative	129.054742348	473.08756594	1.0	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-control_recovery_1	negative	129.054742348	473.08756594	1.0	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-control_1	negative	129.065785327	638.634926081	1.0	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-control_recovery_1	negative	129.065785327	638.634926081	1.0	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-control_1	negative	129.102293431	306.737242727	1.0	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-control_recovery_1	negative	129.102293431	306.737242727	1.0	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-control_1	negative	129.102363635	62.7787763415	1.0	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-control_recovery_1	negative	129.102363635	62.7787763415	1.0	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-control_1	negative	129.065947839	415.863706246	1.0	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-control_recovery_1	negative	129.065947839	415.863706246	1.0	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-control_1	negative	130.049869314	638.058869627	1.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-control_recovery_1	negative	130.049869314	638.058869627	1.0	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-control_1	negative	130.086348069	412.147868481	1.0	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-control_recovery_1	negative	130.086348069	412.147868481	1.0	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-control_1	negative	130.065229003	287.187393972	1.0	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-control_recovery_1	negative	130.065229003	287.187393972	1.0	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-control_1	negative	131.081554456	524.085314834	1.0	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-control_recovery_1	negative	131.081554456	524.085314834	1.0	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-control_1	negative	133.031933396	442.294358949	1.0	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-control_recovery_1	negative	133.031933396	442.294358949	1.0	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-control_1	negative	133.06075433	667.643542766	1.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-control_recovery_1	negative	133.06075433	667.643542766	1.0	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-control_1	negative	134.044842716	735.778198352	1.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-control_recovery_1	negative	134.044842716	735.778198352	1.0	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-control_1	negative	135.064922543	671.83915346	1.0	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-control_recovery_1	negative	135.064922543	671.83915346	1.0	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-control_1	negative	138.055097593	368.650817077	1.0	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-control_recovery_1	negative	138.055097593	368.650817077	1.0	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-control_1	negative	138.091419931	326.528822771	1.0	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-control_recovery_1	negative	138.091419931	326.528822771	1.0	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-control_1	negative	139.05031348	413.204094087	1.0	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-control_recovery_1	negative	139.05031348	413.204094087	1.0	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-control_1	negative	140.034389249	507.171563189	1.0	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-control_recovery_1	negative	140.034389249	507.171563189	1.0	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-control_1	negative	141.066024093	333.035450274	1.0	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-control_recovery_1	negative	141.066024093	333.035450274	1.0	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-control_1	negative	141.0659958	531.807534215	1.0	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-control_recovery_1	negative	141.0659958	531.807534215	1.0	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-control_1	negative	143.081552215	413.938579194	1.0	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-control_recovery_1	negative	143.081552215	413.938579194	1.0	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-control_1	negative	145.049624973	732.288711427	1.0	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-control_recovery_1	negative	145.049624973	732.288711427	1.0	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-control_1	negative	145.049606173	478.126835649	1.0	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-control_recovery_1	negative	145.049606173	478.126835649	1.0	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-control_1	negative	146.060090727	528.080048428	1.0	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-control_recovery_1	negative	146.060090727	528.080048428	1.0	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-control_1	negative	148.096909953	556.044083324	1.0	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-control_recovery_1	negative	148.096909953	556.044083324	1.0	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-control_1	negative	157.060754467	673.395787895	1.0	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-control_recovery_1	negative	157.060754467	673.395787895	1.0	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-control_1	negative	159.076469963	709.608605344	1.0	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-control_recovery_1	negative	159.076469963	709.608605344	1.0	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-control_1	negative	160.075754826	271.403513484	1.0	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-control_recovery_1	negative	160.075754826	271.403513484	1.0	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-control_1	negative	160.075855395	65.4178107604	1.0	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-control_recovery_1	negative	160.075855395	65.4178107604	1.0	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-control_1	negative	161.092104354	442.102334595	1.0	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_recovery_1	negative	161.092104354	442.102334595	1.0	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-control_1	negative	161.092044112	555.351269753	1.0	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_recovery_1	negative	161.092044112	555.351269753	1.0	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-control_1	negative	161.082301556	152.040443946	1.0	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-control_recovery_1	negative	161.082301556	152.040443946	1.0	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-control_1	negative	162.076178141	605.902027638	1.0	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_recovery_1	negative	162.076178141	605.902027638	1.0	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-control_1	negative	163.075487247	362.719769144	1.0	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-control_recovery_1	negative	163.075487247	362.719769144	1.0	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-control_1	negative	165.054706951	545.894258025	1.0	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-control_recovery_1	negative	165.054706951	545.894258025	1.0	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-control_1	negative	166.086252765	407.956289771	1.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-control_recovery_1	negative	166.086252765	407.956289771	1.0	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-control_1	negative	166.072040805	626.85306269	1.0	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-control_recovery_1	negative	166.072040805	626.85306269	1.0	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-control_1	negative	169.035751827	567.096044524	1.0	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-control_recovery_1	negative	169.035751827	567.096044524	1.0	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-control_1	negative	174.076085448	664.71059456	1.0	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-control_recovery_1	negative	174.076085448	664.71059456	1.0	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-control_1	negative	182.081257963	546.453034008	1.0	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-control_recovery_1	negative	182.081257963	546.453034008	1.0	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-control_1	negative	192.050472469	513.214176912	1.0	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-control_recovery_1	negative	192.050472469	513.214176912	1.0	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-control_1	negative	195.049508504	746.350639308	1.0	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_recovery_1	negative	195.049508504	746.350639308	1.0	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-control_1	negative	201.087271934	404.380901513	1.0	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_recovery_1	negative	201.087271934	404.380901513	1.0	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-control_1	negative	203.102959813	922.142129909	1.0	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-control_recovery_1	negative	203.102959813	922.142129909	1.0	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-control_1	negative	205.096997826	439.957815819	1.0	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-control_recovery_1	negative	205.096997826	439.957815819	1.0	[['206.1055277', 'C11H14N2O2', 0.001253874000013866]]	1.27272727273	0.181818181818	0.181818181818
-control_1	negative	207.065138369	362.018787023	1.0	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_recovery_1	negative	207.065138369	362.018787023	1.0	[['208.0735589', 'C11H12O4', 0.001144530999994231]]	1.09090909091	0.363636363636	0.0
-control_1	negative	210.076174871	556.414916611	1.0	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_recovery_1	negative	210.076174871	556.414916611	1.0	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-control_1	negative	218.117141617	63.4203134757	1.0	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-control_recovery_1	negative	218.117141617	63.4203134757	1.0	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-control_1	negative	219.097087479	668.370758562	1.0	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-control_recovery_1	negative	219.097087479	668.370758562	1.0	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-control_1	negative	225.075448787	353.021782816	1.0	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-control_recovery_1	negative	225.075448787	353.021782816	1.0	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-control_1	negative	226.070598166	632.340656791	1.0	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-control_recovery_1	negative	226.070598166	632.340656791	1.0	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-control_1	negative	229.086134186	75.4572130113	1.0	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-control_recovery_1	negative	229.086134186	75.4572130113	1.0	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-control_1	negative	245.095407817	720.45724836	1.0	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-control_recovery_1	negative	245.095407817	720.45724836	1.0	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-control_1	negative	258.10859871	766.684498265	1.0	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-control_recovery_1	negative	258.10859871	766.684498265	1.0	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-control_1	negative	268.102707317	340.036339548	1.0	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_recovery_1	negative	268.102707317	340.036339548	1.0	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-control_1	negative	277.101437375	768.482729939	1.0	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-control_recovery_1	negative	277.101437375	768.482729939	1.0	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-control_1	negative	325.110961944	732.001078015	1.0	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_recovery_1	negative	325.110961944	732.001078015	1.0	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-control_1	negative	595.16565303	510.108375093	1.0	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-control_recovery_1	negative	595.16565303	510.108375093	1.0	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_cold_recovery.2	negative	138.055097593	368.650817077	0.999753278	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_cold_recovery.2	negative	138.055097593	368.650817077	0.999753278	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_recovery_1	negative	121.064869668	326.093475744	0.998338957	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_recovery_1	negative	121.064869668	326.093475744	0.998338957	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_1	negative	138.055097593	368.650817077	0.995363835	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_1	negative	138.055097593	368.650817077	0.995363835	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_heat_1	negative	128.10709995	285.189766771	0.994930404	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_heat_1	negative	128.10709995	285.189766771	0.994930404	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_cold_1	negative	134.044842716	735.778198352	0.994906291	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_1	negative	134.044842716	735.778198352	0.994906291	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_recovery.2	negative	163.075487247	362.719769144	0.994613634	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_cold_recovery.2	negative	163.075487247	362.719769144	0.994613634	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_1	negative	146.060090727	528.080048428	0.994023799	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_heat_1	negative	146.060090727	528.080048428	0.994023799	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_1	negative	277.101437375	768.482729939	0.993384303	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_1	negative	277.101437375	768.482729939	0.993384303	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_1	negative	141.0659958	531.807534215	0.991148734	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-drought_1	negative	141.0659958	531.807534215	0.991148734	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	182.081257963	546.453034008	0.988493263	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_cold_recovery.2	negative	182.081257963	546.453034008	0.988493263	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_1	negative	129.054742348	473.08756594	0.986363783	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_1	negative	129.054742348	473.08756594	0.986363783	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_1	negative	143.081552215	413.938579194	0.986258059	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_1	negative	143.081552215	413.938579194	0.986258059	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	125.023379586	500.87044907	0.985336911	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_recovery.2	negative	125.023379586	500.87044907	0.985336911	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_recovery.2	negative	595.16565303	510.108375093	0.985123916	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_cold_recovery.2	negative	595.16565303	510.108375093	0.985123916	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_1	negative	145.049606173	478.126835649	0.983324081	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_heat_1	negative	145.049606173	478.126835649	0.983324081	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_recovery_1	negative	161.092104354	442.102334595	0.982120726	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_recovery_1	negative	161.092104354	442.102334595	0.982120726	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-high_light_recovery_1	negative	128.070716726	402.227959004	0.981732204	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-high_light_recovery_1	negative	128.070716726	402.227959004	0.981732204	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	140.034389249	507.171563189	0.98078509	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_cold_recovery.2	negative	140.034389249	507.171563189	0.98078509	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_1	negative	277.101437375	768.482729939	0.979461279	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_1	negative	277.101437375	768.482729939	0.979461279	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_heat_1	negative	148.096909953	556.044083324	0.977803452	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_heat_1	negative	148.096909953	556.044083324	0.977803452	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_1	negative	134.044842716	735.778198352	0.976564709	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-drought_1	negative	134.044842716	735.778198352	0.976564709	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_1	negative	124.039350582	345.785256941	0.975642216	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	124.039350582	345.785256941	0.975642216	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	595.16565303	510.108375093	0.975055186	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_1	negative	595.16565303	510.108375093	0.975055186	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_1	negative	130.086348069	412.147868481	0.968234049	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	130.086348069	412.147868481	0.968234049	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	141.0659958	531.807534215	0.967036457	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	141.0659958	531.807534215	0.967036457	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_1	negative	129.065947839	415.863706246	0.965438509	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_cold_1	negative	129.065947839	415.863706246	0.965438509	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-drought_1	negative	124.039346937	606.311521329	0.964873957	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	124.039346937	606.311521329	0.964873957	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	166.086252765	407.956289771	0.964410131	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-basal_cold_recovery_1	negative	166.086252765	407.956289771	0.964410131	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_recovery.2	negative	165.054706951	545.894258025	0.964325388	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_cold_recovery.2	negative	165.054706951	545.894258025	0.964325388	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-acquired_heat_1	negative	125.023379586	500.87044907	0.961385177	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_heat_1	negative	125.023379586	500.87044907	0.961385177	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_1	negative	245.095407817	720.45724836	0.961031296	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-high_light_1	negative	245.095407817	720.45724836	0.961031296	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_heat_1	negative	161.082301556	152.040443946	0.960667693	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_heat_1	negative	161.082301556	152.040443946	0.960667693	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_heat_1	negative	130.065229003	287.187393972	0.960319525	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_heat_1	negative	130.065229003	287.187393972	0.960319525	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_cold_1	negative	138.055097593	368.650817077	0.9601344	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-acquired_cold_1	negative	138.055097593	368.650817077	0.9601344	[['139.0633285', 'C7H9NO2', 0.0009549070000218762]]	1.28571428571	0.285714285714	0.142857142857
-basal_cold_1	negative	116.034275331	671.712362191	0.956928015	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_cold_1	negative	116.034275331	671.712362191	0.956928015	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_cold_recovery.2	negative	124.039350582	345.785256941	0.953722965	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	124.039350582	345.785256941	0.953722965	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	169.035751827	567.096044524	0.951245113	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_heat_recovery_1	negative	169.035751827	567.096044524	0.951245113	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_1	negative	129.102293431	306.737242727	0.950743869	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_1	negative	129.102293431	306.737242727	0.950743869	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_recovery_1	negative	134.044842716	735.778198352	0.944924661	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_recovery_1	negative	134.044842716	735.778198352	0.944924661	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_recovery.2	negative	195.049508504	746.350639308	0.943469626	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_recovery.2	negative	195.049508504	746.350639308	0.943469626	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_cold_recovery_1	negative	110.071328817	867.935393029	0.943220835	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-basal_cold_recovery_1	negative	110.071328817	867.935393029	0.943220835	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-drought_recovery_1	negative	145.049624973	732.288711427	0.940981942	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_recovery_1	negative	145.049624973	732.288711427	0.940981942	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_1	negative	143.081552215	413.938579194	0.939925453	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_1	negative	143.081552215	413.938579194	0.939925453	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	160.075855395	65.4178107604	0.937204941	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_heat_recovery_1	negative	160.075855395	65.4178107604	0.937204941	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_recovery.2	negative	124.039378692	163.709299272	0.936714615	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	124.039378692	163.709299272	0.936714615	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	130.049869314	638.058869627	0.935336277	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_cold_1	negative	130.049869314	638.058869627	0.935336277	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-acquired_heat_1	negative	124.039350582	345.785256941	0.933574162	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	124.039350582	345.785256941	0.933574162	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	109.028456527	733.20884566	0.931427691	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-drought_recovery_1	negative	109.028456527	733.20884566	0.931427691	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_recovery_1	negative	131.081554456	524.085314834	0.9287189	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_cold_recovery_1	negative	131.081554456	524.085314834	0.9287189	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-acquired_cold_1	negative	120.065516217	597.617158274	0.926235017	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_1	negative	120.065516217	597.617158274	0.926235017	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_1	negative	134.044842716	735.778198352	0.926096157	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-high_light_1	negative	134.044842716	735.778198352	0.926096157	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_recovery_1	negative	120.065516217	597.617158274	0.926053067	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_cold_recovery_1	negative	120.065516217	597.617158274	0.926053067	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_1	negative	121.064869668	326.093475744	0.923470883	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_1	negative	121.064869668	326.093475744	0.923470883	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_recovery_1	negative	161.082301556	152.040443946	0.923138565	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_recovery_1	negative	161.082301556	152.040443946	0.923138565	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_1	negative	148.096909953	556.044083324	0.918165132	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-high_light_1	negative	148.096909953	556.044083324	0.918165132	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_1	negative	174.076085448	664.71059456	0.917821212	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_cold_1	negative	174.076085448	664.71059456	0.917821212	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_heat_recovery_1	negative	128.070716726	402.227959004	0.917818705	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	128.070716726	402.227959004	0.917818705	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-high_light_recovery_1	negative	201.087271934	404.380901513	0.916103024	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-high_light_recovery_1	negative	201.087271934	404.380901513	0.916103024	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-high_light_recovery_1	negative	129.065947839	415.863706246	0.915275117	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-high_light_recovery_1	negative	129.065947839	415.863706246	0.915275117	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-high_light_1	negative	277.101437375	768.482729939	0.915003183	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-high_light_1	negative	277.101437375	768.482729939	0.915003183	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-high_light_recovery_1	negative	121.064869668	326.093475744	0.913712241	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_recovery_1	negative	121.064869668	326.093475744	0.913712241	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_cold_1	negative	143.081552215	413.938579194	0.912866008	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_cold_1	negative	143.081552215	413.938579194	0.912866008	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	161.082301556	152.040443946	0.912700243	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_heat_recovery_1	negative	161.082301556	152.040443946	0.912700243	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_heat_recovery_1	negative	161.092104354	442.102334595	0.912425704	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_heat_recovery_1	negative	161.092104354	442.102334595	0.912425704	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_heat_1	negative	245.095407817	720.45724836	0.912296031	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_heat_1	negative	245.095407817	720.45724836	0.912296031	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_1	negative	121.064869668	326.093475744	0.912048482	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_1	negative	121.064869668	326.093475744	0.912048482	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-basal_cold_1	negative	120.065516217	597.617158274	0.910094824	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_cold_1	negative	120.065516217	597.617158274	0.910094824	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_heat_recovery_1	negative	277.101437375	768.482729939	0.909639673	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_heat_recovery_1	negative	277.101437375	768.482729939	0.909639673	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_1	negative	163.075487247	362.719769144	0.907924972	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_cold_1	negative	163.075487247	362.719769144	0.907924972	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_1	negative	161.082301556	152.040443946	0.90689283	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_heat_1	negative	161.082301556	152.040443946	0.90689283	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_heat_recovery_1	negative	160.075855395	65.4178107604	0.906879014	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_heat_recovery_1	negative	160.075855395	65.4178107604	0.906879014	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_cold_1	negative	124.039346937	606.311521329	0.906005658	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	124.039346937	606.311521329	0.906005658	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	129.065947839	415.863706246	0.905480603	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_cold_recovery_1	negative	129.065947839	415.863706246	0.905480603	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_1	negative	129.054742348	473.08756594	0.904433042	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_heat_1	negative	129.054742348	473.08756594	0.904433042	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_1	negative	130.086348069	412.147868481	0.902983619	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	130.086348069	412.147868481	0.902983619	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	161.092104354	442.102334595	0.901473118	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_heat_1	negative	161.092104354	442.102334595	0.901473118	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_recovery_1	negative	138.091419931	326.528822771	0.901008137	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-drought_recovery_1	negative	138.091419931	326.528822771	0.901008137	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_heat_1	negative	130.065229003	287.187393972	0.900233091	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-acquired_heat_1	negative	130.065229003	287.187393972	0.900233091	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_1	negative	141.066024093	333.035450274	0.898346682	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_1	negative	141.066024093	333.035450274	0.898346682	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_1	negative	124.039346937	606.311521329	0.897484422	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	124.039346937	606.311521329	0.897484422	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	245.095407817	720.45724836	0.89717674	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_1	negative	245.095407817	720.45724836	0.89717674	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_recovery_1	negative	127.039055675	732.713879133	0.896426424	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_recovery_1	negative	127.039055675	732.713879133	0.896426424	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-drought_1	negative	219.097087479	668.370758562	0.895776726	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_1	negative	219.097087479	668.370758562	0.895776726	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_recovery_1	negative	225.075448787	353.021782816	0.895568653	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-high_light_recovery_1	negative	225.075448787	353.021782816	0.895568653	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_1	negative	133.031933396	442.294358949	0.895202588	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_cold_1	negative	133.031933396	442.294358949	0.895202588	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-acquired_cold_1	negative	130.086348069	412.147868481	0.894502212	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	130.086348069	412.147868481	0.894502212	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	114.054991387	708.933736893	0.894442388	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_cold_recovery_1	negative	114.054991387	708.933736893	0.894442388	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_recovery.2	negative	129.102293431	306.737242727	0.894388274	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_recovery.2	negative	129.102293431	306.737242727	0.894388274	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_1	negative	113.034523864	346.164817875	0.890213839	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_1	negative	113.034523864	346.164817875	0.890213839	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_1	negative	133.031933396	442.294358949	0.889904775	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_1	negative	133.031933396	442.294358949	0.889904775	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_cold_recovery_1	negative	195.049508504	746.350639308	0.8888101	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_cold_recovery_1	negative	195.049508504	746.350639308	0.8888101	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-high_light_1	negative	138.091419931	326.528822771	0.884957405	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_1	negative	138.091419931	326.528822771	0.884957405	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-high_light_1	negative	192.050472469	513.214176912	0.884780756	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_1	negative	192.050472469	513.214176912	0.884780756	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_cold_1	negative	112.050591326	558.97645159	0.883626399	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_cold_1	negative	112.050591326	558.97645159	0.883626399	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_1	negative	163.075487247	362.719769144	0.882900596	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_1	negative	163.075487247	362.719769144	0.882900596	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-acquired_heat_recovery_1	negative	174.076085448	664.71059456	0.879723925	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_heat_recovery_1	negative	174.076085448	664.71059456	0.879723925	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_1	negative	125.023379586	500.87044907	0.878724852	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_cold_1	negative	125.023379586	500.87044907	0.878724852	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_cold_1	negative	114.054991387	708.933736893	0.875536679	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_cold_1	negative	114.054991387	708.933736893	0.875536679	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-high_light_recovery_1	negative	195.049508504	746.350639308	0.874444814	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-high_light_recovery_1	negative	195.049508504	746.350639308	0.874444814	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_recovery.2	negative	225.075448787	353.021782816	0.873606789	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-acquired_cold_recovery.2	negative	225.075448787	353.021782816	0.873606789	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_cold_1	negative	161.092104354	442.102334595	0.870907485	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_cold_1	negative	161.092104354	442.102334595	0.870907485	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-drought_1	negative	124.039350582	345.785256941	0.86954965	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	124.039350582	345.785256941	0.86954965	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	139.05031348	413.204094087	0.869476986	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-high_light_recovery_1	negative	139.05031348	413.204094087	0.869476986	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_1	negative	110.071328817	867.935393029	0.869434981	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_1	negative	110.071328817	867.935393029	0.869434981	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_cold_1	negative	121.064869668	326.093475744	0.865305923	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-acquired_cold_1	negative	121.064869668	326.093475744	0.865305923	[['122.0731649', 'C8H10O', 0.001019231999990211]]	1.25	0.125	0.0
-high_light_recovery_1	negative	595.16565303	510.108375093	0.8637406	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_recovery_1	negative	595.16565303	510.108375093	0.8637406	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_1	negative	203.102959813	922.142129909	0.863366869	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_1	negative	203.102959813	922.142129909	0.863366869	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_cold_1	negative	129.102293431	306.737242727	0.862336769	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_1	negative	129.102293431	306.737242727	0.862336769	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_1	negative	148.096909953	556.044083324	0.861815714	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_1	negative	148.096909953	556.044083324	0.861815714	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-high_light_recovery_1	negative	162.076178141	605.902027638	0.860013018	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-high_light_recovery_1	negative	162.076178141	605.902027638	0.860013018	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-high_light_1	negative	161.092044112	555.351269753	0.859708392	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-high_light_1	negative	161.092044112	555.351269753	0.859708392	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_1	negative	245.095407817	720.45724836	0.858155718	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_1	negative	245.095407817	720.45724836	0.858155718	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_1	negative	148.096909953	556.044083324	0.858141964	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_1	negative	148.096909953	556.044083324	0.858141964	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_recovery.2	negative	229.086134186	75.4572130113	0.854703114	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_cold_recovery.2	negative	229.086134186	75.4572130113	0.854703114	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_1	negative	116.070593566	454.32394417	0.85138696	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-basal_cold_1	negative	116.070593566	454.32394417	0.85138696	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_1	negative	210.076174871	556.414916611	0.850084967	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_cold_1	negative	210.076174871	556.414916611	0.850084967	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_recovery_1	negative	595.16565303	510.108375093	0.848890671	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_cold_recovery_1	negative	595.16565303	510.108375093	0.848890671	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_recovery_1	negative	127.039055675	732.713879133	0.84885982	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-drought_recovery_1	negative	127.039055675	732.713879133	0.84885982	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	124.039350582	345.785256941	0.848653941	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	124.039350582	345.785256941	0.848653941	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	124.039378692	163.709299272	0.847809681	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	124.039378692	163.709299272	0.847809681	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	201.087271934	404.380901513	0.845182718	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-drought_recovery_1	negative	201.087271934	404.380901513	0.845182718	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_cold_1	negative	210.076174871	556.414916611	0.844220492	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_1	negative	210.076174871	556.414916611	0.844220492	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_cold_1	negative	195.049508504	746.350639308	0.84362552	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_cold_1	negative	195.049508504	746.350639308	0.84362552	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_cold_recovery_1	negative	157.060754467	673.395787895	0.841626173	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_cold_recovery_1	negative	157.060754467	673.395787895	0.841626173	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_cold_1	negative	125.023379586	500.87044907	0.841448153	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_cold_1	negative	125.023379586	500.87044907	0.841448153	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_1	negative	130.086348069	412.147868481	0.838376411	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	130.086348069	412.147868481	0.838376411	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	109.028456527	733.20884566	0.837029216	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_recovery_1	negative	109.028456527	733.20884566	0.837029216	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_1	negative	219.097087479	668.370758562	0.83561208	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_cold_1	negative	219.097087479	668.370758562	0.83561208	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_1	negative	595.16565303	510.108375093	0.834525379	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_1	negative	595.16565303	510.108375093	0.834525379	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_1	negative	143.081552215	413.938579194	0.834230386	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_heat_1	negative	143.081552215	413.938579194	0.834230386	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	116.070593566	454.32394417	0.83363909	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_heat_recovery_1	negative	116.070593566	454.32394417	0.83363909	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_recovery.2	negative	127.039045173	478.908976206	0.831940543	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_cold_recovery.2	negative	127.039045173	478.908976206	0.831940543	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_cold_1	negative	138.091419931	326.528822771	0.831257579	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_1	negative	138.091419931	326.528822771	0.831257579	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-acquired_cold_1	negative	162.076178141	605.902027638	0.83125214	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_1	negative	162.076178141	605.902027638	0.83125214	[['163.0844579', 'C6H13NO4', 0.0010037589999853935]]	2.16666666667	0.666666666667	0.166666666667
-acquired_cold_recovery.2	negative	145.049606173	478.126835649	0.830869048	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_recovery.2	negative	145.049606173	478.126835649	0.830869048	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	141.066024093	333.035450274	0.82956886	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_1	negative	141.066024093	333.035450274	0.82956886	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_1	negative	141.066024093	333.035450274	0.828310975	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_1	negative	141.066024093	333.035450274	0.828310975	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_1	negative	258.10859871	766.684498265	0.828273167	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_cold_1	negative	258.10859871	766.684498265	0.828273167	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-drought_1	negative	226.070598166	632.340656791	0.827577662	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-drought_1	negative	226.070598166	632.340656791	0.827577662	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_1	negative	160.075754826	271.403513484	0.826888178	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_cold_1	negative	160.075754826	271.403513484	0.826888178	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_cold_1	negative	138.091419931	326.528822771	0.82540915	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_cold_1	negative	138.091419931	326.528822771	0.82540915	[['139.099714', 'C8H13NO', 0.0010180690000254344]]	1.625	0.125	0.125
-basal_heat_1	negative	124.039346937	606.311521329	0.824933624	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	124.039346937	606.311521329	0.824933624	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_1	negative	192.050472469	513.214176912	0.824146632	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_cold_1	negative	192.050472469	513.214176912	0.824146632	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_1	negative	115.086648151	417.997247466	0.82388211	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_1	negative	115.086648151	417.997247466	0.82388211	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_cold_1	negative	161.092104354	442.102334595	0.822917428	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_cold_1	negative	161.092104354	442.102334595	0.822917428	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_1	negative	129.065947839	415.863706246	0.822582374	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-basal_heat_recovery_1	negative	129.065947839	415.863706246	0.822582374	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-acquired_heat_recovery_1	negative	161.092044112	555.351269753	0.822100405	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_heat_recovery_1	negative	161.092044112	555.351269753	0.822100405	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_heat_1	negative	192.050472469	513.214176912	0.821367988	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_heat_1	negative	192.050472469	513.214176912	0.821367988	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_heat_1	negative	595.16565303	510.108375093	0.821129971	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_1	negative	595.16565303	510.108375093	0.821129971	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_1	negative	169.035751827	567.096044524	0.820548167	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-high_light_1	negative	169.035751827	567.096044524	0.820548167	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_recovery_1	negative	133.06075433	667.643542766	0.818539171	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_recovery_1	negative	133.06075433	667.643542766	0.818539171	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_recovery_1	negative	195.049508504	746.350639308	0.818378397	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-acquired_heat_recovery_1	negative	195.049508504	746.350639308	0.818378397	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_cold_recovery_1	negative	201.087271934	404.380901513	0.818085596	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-basal_cold_recovery_1	negative	201.087271934	404.380901513	0.818085596	[['202.0953569', 'C8H14N2O4', 0.0008089660000223375]]	1.75	0.5	0.25
-acquired_heat_1	negative	226.070598166	632.340656791	0.817280598	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_1	negative	226.070598166	632.340656791	0.817280598	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_recovery_1	negative	160.075754826	271.403513484	0.816059329	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_heat_recovery_1	negative	160.075754826	271.403513484	0.816059329	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-high_light_recovery_1	negative	169.035751827	567.096044524	0.815613347	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-high_light_recovery_1	negative	169.035751827	567.096044524	0.815613347	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_1	negative	159.076469963	709.608605344	0.815253524	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_cold_1	negative	159.076469963	709.608605344	0.815253524	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_cold_1	negative	595.16565303	510.108375093	0.814563954	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_cold_1	negative	595.16565303	510.108375093	0.814563954	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_1	negative	595.16565303	510.108375093	0.812126462	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-high_light_1	negative	595.16565303	510.108375093	0.812126462	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_1	negative	163.075487247	362.719769144	0.811722738	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-drought_1	negative	163.075487247	362.719769144	0.811722738	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_recovery_1	negative	135.064922543	671.83915346	0.811195214	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_cold_recovery_1	negative	135.064922543	671.83915346	0.811195214	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_1	negative	124.039378692	163.709299272	0.810542601	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-high_light_1	negative	124.039378692	163.709299272	0.810542601	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	116.034275331	671.712362191	0.808021845	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_cold_recovery_1	negative	116.034275331	671.712362191	0.808021845	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_cold_recovery_1	negative	112.050591326	558.97645159	0.806909369	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_cold_recovery_1	negative	112.050591326	558.97645159	0.806909369	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_cold_recovery.2	negative	129.102363635	62.7787763415	0.806621335	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_recovery.2	negative	129.102363635	62.7787763415	0.806621335	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_1	negative	226.070598166	632.340656791	0.805662599	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_heat_1	negative	226.070598166	632.340656791	0.805662599	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_recovery.2	negative	143.081552215	413.938579194	0.803429734	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	143.081552215	413.938579194	0.803429734	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_recovery_1	negative	268.102707317	340.036339548	0.801768222	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-high_light_recovery_1	negative	268.102707317	340.036339548	0.801768222	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-high_light_recovery_1	negative	325.110961944	732.001078015	0.799378736	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_recovery_1	negative	325.110961944	732.001078015	0.799378736	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_cold_recovery_1	negative	219.097087479	668.370758562	0.798583136	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_cold_recovery_1	negative	219.097087479	668.370758562	0.798583136	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_cold_1	negative	115.086576502	897.299789636	0.793305118	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_1	negative	115.086576502	897.299789636	0.793305118	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_cold_recovery_1	negative	146.060090727	528.080048428	0.792428001	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_cold_recovery_1	negative	146.060090727	528.080048428	0.792428001	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_cold_1	negative	116.070593566	454.32394417	0.791774735	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_cold_1	negative	116.070593566	454.32394417	0.791774735	[['117.0789786', 'C5H11NO2', 0.0011090339999952903]]	2.2	0.4	0.2
-acquired_heat_recovery_1	negative	210.076174871	556.414916611	0.79090649	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_1	negative	210.076174871	556.414916611	0.79090649	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_1	negative	161.082301556	152.040443946	0.789328033	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_heat_recovery_1	negative	161.082301556	152.040443946	0.789328033	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_cold_1	negative	129.102363635	62.7787763415	0.783435128	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	129.102363635	62.7787763415	0.783435128	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	166.072040805	626.85306269	0.783105492	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_1	negative	166.072040805	626.85306269	0.783105492	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_recovery_1	negative	268.102707317	340.036339548	0.78309679	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-basal_cold_recovery_1	negative	268.102707317	340.036339548	0.78309679	[['269.1085642', 'C13H19NO3S', -0.0014191170000117381]]	1.46153846154	0.230769230769	0.0769230769231
-high_light_recovery_1	negative	134.044842716	735.778198352	0.782651648	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-high_light_recovery_1	negative	134.044842716	735.778198352	0.782651648	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_recovery_1	negative	174.076085448	664.71059456	0.781617618	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_cold_recovery_1	negative	174.076085448	664.71059456	0.781617618	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_1	negative	169.035751827	567.096044524	0.777996376	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-acquired_cold_1	negative	169.035751827	567.096044524	0.777996376	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_recovery_1	negative	225.075448787	353.021782816	0.775680086	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_cold_recovery_1	negative	225.075448787	353.021782816	0.775680086	[['226.0841236', 'C11H14O5', 0.0013988130000086585]]	1.27272727273	0.454545454545	0.0
-basal_cold_recovery_1	negative	159.076469963	709.608605344	0.773547045	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_cold_recovery_1	negative	159.076469963	709.608605344	0.773547045	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_recovery_1	negative	166.072040805	626.85306269	0.77312737	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_recovery_1	negative	166.072040805	626.85306269	0.77312737	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_recovery_1	negative	166.086252765	407.956289771	0.772623852	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-high_light_recovery_1	negative	166.086252765	407.956289771	0.772623852	[['167.0946287', 'C9H13NO2', 0.0010999349999849528]]	1.44444444444	0.222222222222	0.111111111111
-acquired_cold_1	negative	124.039378692	163.709299272	0.772544786	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	124.039378692	163.709299272	0.772544786	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	245.095407817	720.45724836	0.770201165	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_1	negative	245.095407817	720.45724836	0.770201165	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_heat_recovery_1	negative	161.092044112	555.351269753	0.768992737	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_heat_recovery_1	negative	161.092044112	555.351269753	0.768992737	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	277.101437375	768.482729939	0.765615037	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_recovery_1	negative	277.101437375	768.482729939	0.765615037	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-basal_cold_1	negative	169.035751827	567.096044524	0.765176128	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_1	negative	169.035751827	567.096044524	0.765176128	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-high_light_recovery_1	negative	145.049624973	732.288711427	0.764254431	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	145.049624973	732.288711427	0.764254431	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_cold_1	negative	203.102959813	922.142129909	0.764123745	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_cold_1	negative	203.102959813	922.142129909	0.764123745	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_recovery_1	negative	165.054706951	545.894258025	0.763494311	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-drought_recovery_1	negative	165.054706951	545.894258025	0.763494311	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_recovery_1	negative	129.054742348	473.08756594	0.76030509	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_recovery_1	negative	129.054742348	473.08756594	0.76030509	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_cold_1	negative	148.096909953	556.044083324	0.757167179	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_1	negative	148.096909953	556.044083324	0.757167179	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_recovery_1	negative	169.035751827	567.096044524	0.756171782	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_recovery_1	negative	169.035751827	567.096044524	0.756171782	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_cold_recovery_1	negative	245.095407817	720.45724836	0.75372526	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_cold_recovery_1	negative	245.095407817	720.45724836	0.75372526	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_1	negative	192.050472469	513.214176912	0.753127374	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_1	negative	192.050472469	513.214176912	0.753127374	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_heat_recovery_1	negative	115.086576502	897.299789636	0.750099395	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_heat_recovery_1	negative	115.086576502	897.299789636	0.750099395	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_cold_1	negative	174.076085448	664.71059456	0.749830972	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_1	negative	174.076085448	664.71059456	0.749830972	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_recovery_1	negative	210.076174871	556.414916611	0.746280851	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_heat_recovery_1	negative	210.076174871	556.414916611	0.746280851	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_cold_1	negative	112.050591326	558.97645159	0.743837604	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_cold_1	negative	112.050591326	558.97645159	0.743837604	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_cold_1	negative	219.097087479	668.370758562	0.742944056	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_cold_1	negative	219.097087479	668.370758562	0.742944056	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_recovery_1	negative	203.102959813	922.142129909	0.739795301	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_heat_recovery_1	negative	203.102959813	922.142129909	0.739795301	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_1	negative	140.034389249	507.171563189	0.738831137	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_1	negative	140.034389249	507.171563189	0.738831137	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-acquired_heat_recovery_1	negative	128.10709995	285.189766771	0.733546425	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_recovery_1	negative	128.10709995	285.189766771	0.733546425	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_recovery_1	negative	210.076174871	556.414916611	0.731334617	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-high_light_recovery_1	negative	210.076174871	556.414916611	0.731334617	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-drought_recovery_1	negative	182.081257963	546.453034008	0.731320085	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-drought_recovery_1	negative	182.081257963	546.453034008	0.731320085	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_1	negative	161.092044112	555.351269753	0.728878153	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_1	negative	161.092044112	555.351269753	0.728878153	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	124.039350582	345.785256941	0.728293977	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	124.039350582	345.785256941	0.728293977	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	226.070598166	632.340656791	0.72539694	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_recovery_1	negative	226.070598166	632.340656791	0.72539694	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_recovery.2	negative	218.117141617	63.4203134757	0.723544926	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_cold_recovery.2	negative	218.117141617	63.4203134757	0.723544926	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_heat_1	negative	124.039346937	606.311521329	0.72280332	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	124.039346937	606.311521329	0.72280332	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	226.070598166	632.340656791	0.720960948	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_recovery_1	negative	226.070598166	632.340656791	0.720960948	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_1	negative	192.050472469	513.214176912	0.719370662	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_heat_1	negative	192.050472469	513.214176912	0.719370662	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_1	negative	133.06075433	667.643542766	0.717923948	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_cold_1	negative	133.06075433	667.643542766	0.717923948	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-high_light_recovery_1	negative	277.101437375	768.482729939	0.714856604	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-high_light_recovery_1	negative	277.101437375	768.482729939	0.714856604	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_cold_recovery.2	negative	115.086648151	417.997247466	0.713710312	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_cold_recovery.2	negative	115.086648151	417.997247466	0.713710312	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_recovery_1	negative	127.039055675	732.713879133	0.711637324	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	127.039055675	732.713879133	0.711637324	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_recovery_1	negative	166.072040805	626.85306269	0.707637908	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_recovery_1	negative	166.072040805	626.85306269	0.707637908	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_recovery_1	negative	146.060090727	528.080048428	0.705376367	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_recovery_1	negative	146.060090727	528.080048428	0.705376367	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_heat_recovery_1	negative	133.06075433	667.643542766	0.700984534	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_recovery_1	negative	133.06075433	667.643542766	0.700984534	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_cold_1	negative	157.060754467	673.395787895	0.698062189	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_cold_1	negative	157.060754467	673.395787895	0.698062189	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-high_light_recovery_1	negative	110.071328817	867.935393029	0.696620492	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-high_light_recovery_1	negative	110.071328817	867.935393029	0.696620492	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-acquired_heat_1	negative	129.102363635	62.7787763415	0.694594464	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_1	negative	129.102363635	62.7787763415	0.694594464	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_1	negative	258.10859871	766.684498265	0.694229447	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_heat_1	negative	258.10859871	766.684498265	0.694229447	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-high_light_1	negative	218.117141617	63.4203134757	0.694059301	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-high_light_1	negative	218.117141617	63.4203134757	0.694059301	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_cold_1	negative	203.102959813	922.142129909	0.691017	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_1	negative	203.102959813	922.142129909	0.691017	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_recovery_1	negative	112.050591326	558.97645159	0.690229601	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_recovery_1	negative	112.050591326	558.97645159	0.690229601	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_recovery_1	negative	125.023379586	500.87044907	0.689286462	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_recovery_1	negative	125.023379586	500.87044907	0.689286462	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_cold_recovery_1	negative	141.0659958	531.807534215	0.68832223	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	141.0659958	531.807534215	0.68832223	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_1	negative	595.16565303	510.108375093	0.687629574	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_cold_1	negative	595.16565303	510.108375093	0.687629574	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_recovery_1	negative	195.049508504	746.350639308	0.68414318	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_heat_recovery_1	negative	195.049508504	746.350639308	0.68414318	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-high_light_recovery_1	negative	120.065516217	597.617158274	0.683910634	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-high_light_recovery_1	negative	120.065516217	597.617158274	0.683910634	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-basal_cold_recovery_1	negative	127.039045173	478.908976206	0.683332462	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-basal_cold_recovery_1	negative	127.039045173	478.908976206	0.683332462	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-acquired_cold_1	negative	161.092044112	555.351269753	0.682833903	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-acquired_cold_1	negative	161.092044112	555.351269753	0.682833903	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	203.102959813	922.142129909	0.6825115	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-basal_cold_recovery_1	negative	203.102959813	922.142129909	0.6825115	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_recovery_1	negative	245.095407817	720.45724836	0.682181334	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-high_light_recovery_1	negative	245.095407817	720.45724836	0.682181334	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_recovery_1	negative	595.16565303	510.108375093	0.681752277	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_recovery_1	negative	595.16565303	510.108375093	0.681752277	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-acquired_heat_recovery_1	negative	116.034275331	671.712362191	0.680520904	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_recovery_1	negative	116.034275331	671.712362191	0.680520904	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-high_light_recovery_1	negative	192.050472469	513.214176912	0.680134437	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-high_light_recovery_1	negative	192.050472469	513.214176912	0.680134437	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_heat_recovery_1	negative	129.102293431	306.737242727	0.67928761	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_recovery_1	negative	129.102293431	306.737242727	0.67928761	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_1	negative	161.082301556	152.040443946	0.678396644	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_1	negative	161.082301556	152.040443946	0.678396644	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_recovery_1	negative	229.086134186	75.4572130113	0.676161914	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-high_light_recovery_1	negative	229.086134186	75.4572130113	0.676161914	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_recovery_1	negative	229.086134186	75.4572130113	0.675523182	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_recovery_1	negative	229.086134186	75.4572130113	0.675523182	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_cold_recovery_1	negative	115.086576502	897.299789636	0.675410274	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_cold_recovery_1	negative	115.086576502	897.299789636	0.675410274	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-high_light_recovery_1	negative	131.081554456	524.085314834	0.672468893	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_recovery_1	negative	131.081554456	524.085314834	0.672468893	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-basal_heat_1	negative	163.075487247	362.719769144	0.671106364	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_heat_1	negative	163.075487247	362.719769144	0.671106364	[['164.0837296', 'C10H12O2', 0.000966352999995479]]	1.2	0.2	0.0
-basal_cold_1	negative	140.034389249	507.171563189	0.668067395	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-basal_cold_1	negative	140.034389249	507.171563189	0.668067395	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-high_light_1	negative	226.070598166	632.340656791	0.667671404	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_1	negative	226.070598166	632.340656791	0.667671404	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_recovery_1	negative	210.076174871	556.414916611	0.665349738	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-basal_cold_recovery_1	negative	210.076174871	556.414916611	0.665349738	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_1	negative	219.097087479	668.370758562	0.664509195	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_recovery_1	negative	219.097087479	668.370758562	0.664509195	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_recovery_1	negative	135.064922543	671.83915346	0.664484219	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_heat_recovery_1	negative	135.064922543	671.83915346	0.664484219	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_1	negative	159.076469963	709.608605344	0.663546393	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_1	negative	159.076469963	709.608605344	0.663546393	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_cold_1	negative	226.070598166	632.340656791	0.662365201	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_cold_1	negative	226.070598166	632.340656791	0.662365201	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_recovery_1	negative	203.102959813	922.142129909	0.661755566	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_recovery_1	negative	203.102959813	922.142129909	0.661755566	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_cold_1	negative	135.064922543	671.83915346	0.661026886	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-acquired_cold_1	negative	135.064922543	671.83915346	0.661026886	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_1	negative	160.075754826	271.403513484	0.660438756	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-high_light_1	negative	160.075754826	271.403513484	0.660438756	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_heat_recovery_1	negative	157.060754467	673.395787895	0.658902066	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_recovery_1	negative	157.060754467	673.395787895	0.658902066	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-high_light_recovery_1	negative	124.039346937	606.311521329	0.656436362	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	124.039346937	606.311521329	0.656436362	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	161.092044112	555.351269753	0.655325235	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	161.092044112	555.351269753	0.655325235	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_heat_1	negative	218.117141617	63.4203134757	0.653194312	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_1	negative	218.117141617	63.4203134757	0.653194312	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_recovery_1	negative	115.086648151	417.997247466	0.651910481	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_recovery_1	negative	115.086648151	417.997247466	0.651910481	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_cold_1	negative	226.070598166	632.340656791	0.649672313	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_1	negative	226.070598166	632.340656791	0.649672313	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-high_light_1	negative	114.054991387	708.933736893	0.649314443	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-high_light_1	negative	114.054991387	708.933736893	0.649314443	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-high_light_1	negative	159.076469963	709.608605344	0.649023176	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_1	negative	159.076469963	709.608605344	0.649023176	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_cold_recovery_1	negative	145.049606173	478.126835649	0.648556046	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_cold_recovery_1	negative	145.049606173	478.126835649	0.648556046	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-basal_heat_recovery_1	negative	160.075754826	271.403513484	0.648318114	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_recovery_1	negative	160.075754826	271.403513484	0.648318114	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_1	negative	160.075855395	65.4178107604	0.646213941	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_heat_1	negative	160.075855395	65.4178107604	0.646213941	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_1	negative	141.0659958	531.807534215	0.644983945	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_1	negative	141.0659958	531.807534215	0.644983945	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	160.075855395	65.4178107604	0.64373294	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_recovery.2	negative	160.075855395	65.4178107604	0.64373294	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_cold_1	negative	116.034275331	671.712362191	0.643479699	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_cold_1	negative	116.034275331	671.712362191	0.643479699	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-high_light_recovery_1	negative	124.039378692	163.709299272	0.64207259	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	124.039378692	163.709299272	0.64207259	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	218.117141617	63.4203134757	0.634507468	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_recovery_1	negative	218.117141617	63.4203134757	0.634507468	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-high_light_recovery_1	negative	174.076085448	664.71059456	0.632721353	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-high_light_recovery_1	negative	174.076085448	664.71059456	0.632721353	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_1	negative	258.10859871	766.684498265	0.63212114	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_cold_1	negative	258.10859871	766.684498265	0.63212114	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_cold_recovery_1	negative	139.05031348	413.204094087	0.629252918	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	139.05031348	413.204094087	0.629252918	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_recovery_1	negative	133.031933396	442.294358949	0.626274031	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-drought_recovery_1	negative	133.031933396	442.294358949	0.626274031	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-high_light_recovery_1	negative	127.039045173	478.908976206	0.626121177	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	127.039045173	478.908976206	0.626121177	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	140.034389249	507.171563189	0.624028388	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-high_light_recovery_1	negative	140.034389249	507.171563189	0.624028388	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-high_light_recovery_1	negative	145.049606173	478.126835649	0.619504485	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-high_light_recovery_1	negative	145.049606173	478.126835649	0.619504485	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_1	negative	114.054991387	708.933736893	0.616618974	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_1	negative	114.054991387	708.933736893	0.616618974	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_recovery.2	negative	113.034523864	346.164817875	0.616427109	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-acquired_cold_recovery.2	negative	113.034523864	346.164817875	0.616427109	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-basal_cold_1	negative	218.117141617	63.4203134757	0.614319814	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_cold_1	negative	218.117141617	63.4203134757	0.614319814	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_1	negative	129.102363635	62.7787763415	0.613881178	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_1	negative	129.102363635	62.7787763415	0.613881178	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_recovery_1	negative	192.050472469	513.214176912	0.61382028	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_cold_recovery_1	negative	192.050472469	513.214176912	0.61382028	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_heat_recovery_1	negative	134.044842716	735.778198352	0.610360843	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_heat_recovery_1	negative	134.044842716	735.778198352	0.610360843	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_recovery_1	negative	124.039378692	163.709299272	0.609549803	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	124.039378692	163.709299272	0.609549803	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	112.050591326	558.97645159	0.608428838	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-drought_recovery_1	negative	112.050591326	558.97645159	0.608428838	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-basal_cold_recovery_1	negative	129.054742348	473.08756594	0.607458057	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_recovery_1	negative	129.054742348	473.08756594	0.607458057	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-high_light_recovery_1	negative	219.097087479	668.370758562	0.607093366	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_recovery_1	negative	219.097087479	668.370758562	0.607093366	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-high_light_recovery_1	negative	161.092044112	555.351269753	0.60421662	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-high_light_recovery_1	negative	161.092044112	555.351269753	0.60421662	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-basal_cold_recovery_1	negative	124.039346937	606.311521329	0.601687891	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	124.039346937	606.311521329	0.601687891	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	165.054706951	545.894258025	0.600558383	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-basal_cold_recovery_1	negative	165.054706951	545.894258025	0.600558383	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_recovery_1	negative	133.06075433	667.643542766	0.600141117	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-high_light_recovery_1	negative	133.06075433	667.643542766	0.600141117	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_1	negative	134.044842716	735.778198352	0.599198845	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_1	negative	134.044842716	735.778198352	0.599198845	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_recovery_1	negative	182.081257963	546.453034008	0.598958355	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-basal_cold_recovery_1	negative	182.081257963	546.453034008	0.598958355	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_recovery_1	negative	203.102959813	922.142129909	0.597294535	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-acquired_heat_recovery_1	negative	203.102959813	922.142129909	0.597294535	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-high_light_recovery_1	negative	141.0659958	531.807534215	0.597005152	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_1	negative	141.0659958	531.807534215	0.597005152	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	115.086648151	417.997247466	0.595031848	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-drought_recovery_1	negative	115.086648151	417.997247466	0.595031848	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_1	negative	145.049624973	732.288711427	0.592397751	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-high_light_1	negative	145.049624973	732.288711427	0.592397751	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_1	negative	145.049606173	478.126835649	0.590851234	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_heat_1	negative	145.049606173	478.126835649	0.590851234	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_cold_1	negative	134.044842716	735.778198352	0.586698789	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_cold_1	negative	134.044842716	735.778198352	0.586698789	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_cold_recovery_1	negative	125.023379586	500.87044907	0.586240255	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_cold_recovery_1	negative	125.023379586	500.87044907	0.586240255	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-high_light_recovery_1	negative	130.086348069	412.147868481	0.583820187	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-high_light_recovery_1	negative	130.086348069	412.147868481	0.583820187	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	141.066024093	333.035450274	0.580100926	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_1	negative	141.066024093	333.035450274	0.580100926	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	128.070716726	402.227959004	0.579308689	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-drought_recovery_1	negative	128.070716726	402.227959004	0.579308689	[['129.0789786', 'C6H11NO2', 0.0009858740000083799]]	1.83333333333	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	161.082301556	152.040443946	0.57889409	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_cold_recovery.2	negative	161.082301556	152.040443946	0.57889409	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-high_light_recovery_1	negative	116.034275331	671.712362191	0.576760809	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-high_light_recovery_1	negative	116.034275331	671.712362191	0.576760809	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_recovery_1	negative	166.072040805	626.85306269	0.572885287	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_recovery_1	negative	166.072040805	626.85306269	0.572885287	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_heat_1	negative	141.066024093	333.035450274	0.568555924	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_1	negative	141.066024093	333.035450274	0.568555924	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	245.095407817	720.45724836	0.568337664	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_heat_recovery_1	negative	245.095407817	720.45724836	0.568337664	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-acquired_cold_1	negative	166.072040805	626.85306269	0.567731722	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_1	negative	166.072040805	626.85306269	0.567731722	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_cold_recovery.2	negative	160.075754826	271.403513484	0.565681646	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_cold_recovery.2	negative	160.075754826	271.403513484	0.565681646	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_heat_recovery_1	negative	130.086348069	412.147868481	0.565406672	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	130.086348069	412.147868481	0.565406672	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	166.072040805	626.85306269	0.565372728	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_1	negative	166.072040805	626.85306269	0.565372728	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_1	negative	166.072040805	626.85306269	0.563937297	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_cold_1	negative	166.072040805	626.85306269	0.563937297	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-acquired_heat_recovery_1	negative	129.054742348	473.08756594	0.560103184	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_heat_recovery_1	negative	129.054742348	473.08756594	0.560103184	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_heat_recovery_1	negative	124.039350582	345.785256941	0.559711638	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	124.039350582	345.785256941	0.559711638	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-basal_cold_recovery_1	negative	148.096909953	556.044083324	0.556982944	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_cold_recovery_1	negative	148.096909953	556.044083324	0.556982944	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_1	negative	161.092104354	442.102334595	0.556101611	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-acquired_heat_1	negative	161.092104354	442.102334595	0.556101611	[['162.1004423', 'C6H14N2O3', 0.0010619459999929859]]	2.33333333333	0.5	0.333333333333
-high_light_recovery_1	negative	160.075754826	271.403513484	0.55590288	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-high_light_recovery_1	negative	160.075754826	271.403513484	0.55590288	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_cold_1	negative	161.082301556	152.040443946	0.555726325	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-acquired_cold_1	negative	161.082301556	152.040443946	0.555726325	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_1	negative	131.081554456	524.085314834	0.552579976	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-drought_recovery_1	negative	131.081554456	524.085314834	0.552579976	[['132.0898776', 'C5H12N2O2', 0.0010471440000117127]]	2.4	0.4	0.4
-high_light_recovery_1	negative	135.064922543	671.83915346	0.550188856	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_recovery_1	negative	135.064922543	671.83915346	0.550188856	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-high_light_recovery_1	negative	157.060754467	673.395787895	0.550157877	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-high_light_recovery_1	negative	157.060754467	673.395787895	0.550157877	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_recovery_1	negative	148.096909953	556.044083324	0.549261391	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_recovery_1	negative	148.096909953	556.044083324	0.549261391	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_heat_1	negative	160.075855395	65.4178107604	0.549179829	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_heat_1	negative	160.075855395	65.4178107604	0.549179829	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_recovery_1	negative	148.096909953	556.044083324	0.549058689	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-high_light_recovery_1	negative	148.096909953	556.044083324	0.549058689	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_1	negative	229.086134186	75.4572130113	0.547415383	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_1	negative	229.086134186	75.4572130113	0.547415383	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_heat_1	negative	134.044842716	735.778198352	0.546583754	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_heat_1	negative	134.044842716	735.778198352	0.546583754	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-high_light_recovery_1	negative	182.081257963	546.453034008	0.544642037	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-high_light_recovery_1	negative	182.081257963	546.453034008	0.544642037	[['183.0895433', 'C9H13NO3', 0.0010093369999992774]]	1.44444444444	0.333333333333	0.111111111111
-acquired_heat_1	negative	141.066024093	333.035450274	0.544258473	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_1	negative	141.066024093	333.035450274	0.544258473	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_recovery_1	negative	115.086648151	417.997247466	0.542965821	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_recovery_1	negative	115.086648151	417.997247466	0.542965821	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-high_light_recovery_1	negative	160.075855395	65.4178107604	0.53778411	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-high_light_recovery_1	negative	160.075855395	65.4178107604	0.53778411	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-acquired_heat_recovery_1	negative	125.023379586	500.87044907	0.537472657	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_heat_recovery_1	negative	125.023379586	500.87044907	0.537472657	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-acquired_heat_recovery_1	negative	277.101437375	768.482729939	0.536999671	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_recovery_1	negative	277.101437375	768.482729939	0.536999671	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_recovery_1	negative	112.050591326	558.97645159	0.536077652	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-acquired_heat_recovery_1	negative	112.050591326	558.97645159	0.536077652	[['113.0589119', 'C4H7N3O', 0.0010445739999909165]]	1.75	0.25	0.75
-high_light_recovery_1	negative	159.076469963	709.608605344	0.529910901	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_recovery_1	negative	159.076469963	709.608605344	0.529910901	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_recovery_1	negative	218.117141617	63.4203134757	0.528222742	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-high_light_recovery_1	negative	218.117141617	63.4203134757	0.528222742	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_recovery_1	negative	127.039045173	478.908976206	0.524630239	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-drought_recovery_1	negative	127.039045173	478.908976206	0.524630239	[['128.0473441', 'C6H8O3', 0.001022927000008167]]	1.33333333333	0.5	0.0
-high_light_recovery_1	negative	114.054991387	708.933736893	0.52359026	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-high_light_recovery_1	negative	114.054991387	708.933736893	0.52359026	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_recovery_1	negative	245.095407817	720.45724836	0.520004172	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_heat_recovery_1	negative	245.095407817	720.45724836	0.520004172	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-basal_heat_recovery_1	negative	219.097087479	668.370758562	0.51620159	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-basal_heat_recovery_1	negative	219.097087479	668.370758562	0.51620159	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-acquired_heat_recovery_1	negative	141.0659958	531.807534215	0.515237468	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	141.0659958	531.807534215	0.515237468	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	145.049606173	478.126835649	0.507894851	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-drought_recovery_1	negative	145.049606173	478.126835649	0.507894851	[['146.0579088', 'C6H10O4', 0.0010266270000158784]]	1.66666666667	0.666666666667	0.0
-acquired_heat_recovery_1	negative	146.060090727	528.080048428	0.507540869	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_heat_recovery_1	negative	146.060090727	528.080048428	0.507540869	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-high_light_1	negative	109.028456527	733.20884566	0.50236005	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-high_light_1	negative	109.028456527	733.20884566	0.50236005	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-high_light_recovery_1	negative	165.054706951	545.894258025	0.501425155	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_recovery_1	negative	165.054706951	545.894258025	0.501425155	[['166.0629942', 'C9H10O3', 0.0010112490000153684]]	1.11111111111	0.333333333333	0.0
-high_light_recovery_1	negative	143.081552215	413.938579194	0.500077717	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_recovery_1	negative	143.081552215	413.938579194	0.500077717	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_cold_1	negative	218.117141617	63.4203134757	0.499405369	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_cold_1	negative	218.117141617	63.4203134757	0.499405369	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_recovery_1	negative	130.049869314	638.058869627	0.498250885	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-drought_recovery_1	negative	130.049869314	638.058869627	0.498250885	[['131.0582432', 'C5H9NO3', 0.0010978859999966062]]	1.8	0.6	0.2
-basal_heat_1	negative	166.072040805	626.85306269	0.497928136	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_heat_1	negative	166.072040805	626.85306269	0.497928136	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-high_light_1	negative	127.039055675	732.713879133	0.49572028	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-high_light_1	negative	127.039055675	732.713879133	0.49572028	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-drought_recovery_1	negative	130.065229003	287.187393972	0.492854602	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-drought_recovery_1	negative	130.065229003	287.187393972	0.492854602	[['131.0734993', 'C9H9N', 0.0009942970000054174]]	1.0	0.0	0.111111111111
-basal_cold_1	negative	145.049624973	732.288711427	0.492782818	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_cold_1	negative	145.049624973	732.288711427	0.492782818	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_1	negative	218.117141617	63.4203134757	0.492581779	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_heat_1	negative	218.117141617	63.4203134757	0.492581779	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_cold_1	negative	141.0659958	531.807534215	0.488522744	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_cold_1	negative	141.0659958	531.807534215	0.488522744	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	128.10709995	285.189766771	0.484686281	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_cold_recovery_1	negative	128.10709995	285.189766771	0.484686281	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_recovery_1	negative	115.086648151	417.997247466	0.482263467	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_recovery_1	negative	115.086648151	417.997247466	0.482263467	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_recovery_1	negative	192.050472469	513.214176912	0.478278311	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_heat_recovery_1	negative	192.050472469	513.214176912	0.478278311	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_recovery_1	negative	129.102293431	306.737242727	0.476994402	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_1	negative	129.102293431	306.737242727	0.476994402	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_1	negative	145.049624973	732.288711427	0.471349679	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_heat_1	negative	145.049624973	732.288711427	0.471349679	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	145.049624973	732.288711427	0.470116878	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_1	negative	145.049624973	732.288711427	0.470116878	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-basal_cold_1	negative	141.0659958	531.807534215	0.46856581	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_1	negative	141.0659958	531.807534215	0.46856581	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	143.081552215	413.938579194	0.466814194	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	143.081552215	413.938579194	0.466814194	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-high_light_recovery_1	negative	115.086576502	897.299789636	0.462276157	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-high_light_recovery_1	negative	115.086576502	897.299789636	0.462276157	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_recovery_1	negative	148.096909953	556.044083324	0.461671763	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-basal_heat_recovery_1	negative	148.096909953	556.044083324	0.461671763	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-acquired_cold_1	negative	145.049624973	732.288711427	0.459559295	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_cold_1	negative	145.049624973	732.288711427	0.459559295	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_recovery_1	negative	258.10859871	766.684498265	0.45705664	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-drought_recovery_1	negative	258.10859871	766.684498265	0.45705664	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-acquired_heat_1	negative	145.049624973	732.288711427	0.455724792	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-acquired_heat_1	negative	145.049624973	732.288711427	0.455724792	[['146.0579088', 'C6H10O4', 0.0010078270000235534]]	1.66666666667	0.666666666667	0.0
-drought_recovery_1	negative	161.082301556	152.040443946	0.454180364	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_1	negative	161.082301556	152.040443946	0.454180364	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_1	negative	129.065785327	638.634926081	0.439683142	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-drought_recovery_1	negative	129.065785327	638.634926081	0.439683142	[['130.0742276', 'C5H10N2O2', 0.0011662730000239208]]	2.0	0.4	0.4
-acquired_heat_1	negative	141.0659958	531.807534215	0.432461362	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-acquired_heat_1	negative	141.0659958	531.807534215	0.432461362	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-high_light_1	negative	325.110961944	732.001078015	0.431616356	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_1	negative	325.110961944	732.001078015	0.431616356	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_heat_recovery_1	negative	226.070598166	632.340656791	0.43137549	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_recovery_1	negative	226.070598166	632.340656791	0.43137549	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_cold_1	negative	325.110961944	732.001078015	0.428372757	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_cold_1	negative	325.110961944	732.001078015	0.428372757	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_recovery_1	negative	169.035751827	567.096044524	0.420403254	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_recovery_1	negative	169.035751827	567.096044524	0.420403254	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_recovery_1	negative	129.065947839	415.863706246	0.419566203	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-drought_recovery_1	negative	129.065947839	415.863706246	0.419566203	[['130.0742276', 'C5H10N2O2', 0.0010037610000210861]]	2.0	0.4	0.4
-high_light_recovery_1	negative	128.10709995	285.189766771	0.419537775	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-high_light_recovery_1	negative	128.10709995	285.189766771	0.419537775	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-basal_cold_1	negative	161.082301556	152.040443946	0.414774413	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-basal_cold_1	negative	161.082301556	152.040443946	0.414774413	[['162.0892089', 'C7H14O4', -0.00036865600000624]]	2.0	0.571428571429	0.0
-drought_recovery_1	negative	120.065516217	597.617158274	0.409764603	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-drought_recovery_1	negative	120.065516217	597.617158274	0.409764603	[['121.0738932', 'C4H11NO3', 0.0011009830000006104]]	2.75	0.75	0.25
-acquired_cold_recovery.2	negative	130.086348069	412.147868481	0.40441425	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	130.086348069	412.147868481	0.40441425	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-acquired_cold_recovery.2	negative	139.05031348	413.204094087	0.401481498	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_recovery.2	negative	139.05031348	413.204094087	0.401481498	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	174.076085448	664.71059456	0.396404161	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_recovery_1	negative	174.076085448	664.71059456	0.396404161	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-acquired_cold_1	negative	157.060754467	673.395787895	0.394406215	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_1	negative	157.060754467	673.395787895	0.394406215	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_recovery_1	negative	146.060090727	528.080048428	0.392030458	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-basal_heat_recovery_1	negative	146.060090727	528.080048428	0.392030458	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-acquired_heat_recovery_1	negative	139.05031348	413.204094087	0.390927589	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	139.05031348	413.204094087	0.390927589	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	160.075754826	271.403513484	0.389291016	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_cold_recovery_1	negative	160.075754826	271.403513484	0.389291016	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_1	negative	139.05031348	413.204094087	0.387545466	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_heat_1	negative	139.05031348	413.204094087	0.387545466	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_recovery_1	negative	160.075855395	65.4178107604	0.383428505	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_cold_recovery_1	negative	160.075855395	65.4178107604	0.383428505	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_heat_1	negative	141.0659958	531.807534215	0.381256418	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_1	negative	141.0659958	531.807534215	0.381256418	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	157.060754467	673.395787895	0.374559276	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-drought_recovery_1	negative	157.060754467	673.395787895	0.374559276	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_cold_1	negative	325.110961944	732.001078015	0.373886218	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_cold_1	negative	325.110961944	732.001078015	0.373886218	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_recovery_1	negative	595.16565303	510.108375093	0.367712136	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_recovery_1	negative	595.16565303	510.108375093	0.367712136	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-basal_heat_1	negative	127.039055675	732.713879133	0.367113577	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_1	negative	127.039055675	732.713879133	0.367113577	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	133.06075433	667.643542766	0.361328132	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_recovery_1	negative	133.06075433	667.643542766	0.361328132	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-acquired_heat_1	negative	127.039055675	732.713879133	0.361150242	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_heat_1	negative	127.039055675	732.713879133	0.361150242	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_heat_recovery_1	negative	124.039346937	606.311521329	0.353152009	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	124.039346937	606.311521329	0.353152009	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-drought_1	negative	127.039055675	732.713879133	0.347456359	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-drought_1	negative	127.039055675	732.713879133	0.347456359	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-drought_1	negative	109.028456527	733.20884566	0.344882045	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-drought_1	negative	109.028456527	733.20884566	0.344882045	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_heat_recovery_1	negative	116.034275331	671.712362191	0.342810792	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-basal_heat_recovery_1	negative	116.034275331	671.712362191	0.342810792	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_recovery_1	negative	169.035751827	567.096044524	0.341772409	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-drought_recovery_1	negative	169.035751827	567.096044524	0.341772409	[['170.0439901', 'C5H6N4O3', 0.0009622729999989588]]	1.2	0.6	0.8
-basal_heat_1	negative	109.028456527	733.20884566	0.340717734	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_heat_1	negative	109.028456527	733.20884566	0.340717734	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_1	negative	109.028456527	733.20884566	0.340661797	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_cold_1	negative	109.028456527	733.20884566	0.340661797	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-drought_1	negative	139.05031348	413.204094087	0.339830078	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_1	negative	139.05031348	413.204094087	0.339830078	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_1	negative	127.039055675	732.713879133	0.337083848	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_cold_1	negative	127.039055675	732.713879133	0.337083848	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_recovery_1	negative	133.031933396	442.294358949	0.336467861	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-basal_heat_recovery_1	negative	133.031933396	442.294358949	0.336467861	[['134.0401503', 'C5H10O2S', 0.0009409040000036839]]	2.0	0.4	0.0
-drought_recovery_1	negative	124.039350582	345.785256941	0.333930513	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	124.039350582	345.785256941	0.333930513	[['125.0476785', 'C6H7NO2', 0.0010519180000017059]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	109.028456527	733.20884566	0.331243096	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_heat_1	negative	109.028456527	733.20884566	0.331243096	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-basal_heat_recovery_1	negative	166.072040805	626.85306269	0.326498307	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_heat_recovery_1	negative	166.072040805	626.85306269	0.326498307	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-basal_heat_1	negative	115.086576502	897.299789636	0.324424958	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_1	negative	115.086576502	897.299789636	0.324424958	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_1	negative	124.039378692	163.709299272	0.32203455	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_1	negative	124.039378692	163.709299272	0.32203455	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	125.023379586	500.87044907	0.319316195	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_heat_recovery_1	negative	125.023379586	500.87044907	0.319316195	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-basal_heat_recovery_1	negative	192.050472469	513.214176912	0.318821529	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-basal_heat_recovery_1	negative	192.050472469	513.214176912	0.318821529	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_cold_1	negative	109.028456527	733.20884566	0.316194892	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_cold_1	negative	109.028456527	733.20884566	0.316194892	[['110.0367794', 'C6H6O2', 0.0010468729999928428]]	1.0	0.333333333333	0.0
-acquired_heat_1	negative	124.039378692	163.709299272	0.315664518	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_1	negative	124.039378692	163.709299272	0.315664518	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	229.086134186	75.4572130113	0.315302082	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_heat_recovery_1	negative	229.086134186	75.4572130113	0.315302082	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_heat_1	negative	139.05031348	413.204094087	0.313713754	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_heat_1	negative	139.05031348	413.204094087	0.313713754	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_1	negative	127.039055675	732.713879133	0.313049996	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-acquired_cold_1	negative	127.039055675	732.713879133	0.313049996	[['128.0473441', 'C6H8O3', 0.0010124249999989843]]	1.33333333333	0.5	0.0
-basal_heat_1	negative	229.086134186	75.4572130113	0.309698967	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_heat_1	negative	229.086134186	75.4572130113	0.309698967	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_heat_recovery_1	negative	226.070598166	632.340656791	0.308390021	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-basal_heat_recovery_1	negative	226.070598166	632.340656791	0.308390021	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-drought_1	negative	325.110961944	732.001078015	0.307259349	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_1	negative	325.110961944	732.001078015	0.307259349	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-drought_recovery_1	negative	128.10709995	285.189766771	0.302440812	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-drought_recovery_1	negative	128.10709995	285.189766771	0.302440812	[['129.1153641', 'C7H15NO', 0.0009881500000119559]]	2.14285714286	0.142857142857	0.142857142857
-acquired_heat_1	negative	115.086576502	897.299789636	0.297659161	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-acquired_heat_1	negative	115.086576502	897.299789636	0.297659161	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_recovery_1	negative	195.049508504	746.350639308	0.297604627	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-drought_recovery_1	negative	195.049508504	746.350639308	0.297604627	[['196.0583027', 'C6H12O7', 0.0015181960000347772]]	2.0	1.16666666667	0.0
-basal_heat_recovery_1	negative	134.044842716	735.778198352	0.297184787	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_recovery_1	negative	134.044842716	735.778198352	0.297184787	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-basal_heat_1	negative	159.076469963	709.608605344	0.295240754	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_1	negative	159.076469963	709.608605344	0.295240754	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_1	negative	325.110961944	732.001078015	0.292256698	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-basal_heat_1	negative	325.110961944	732.001078015	0.292256698	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-high_light_1	negative	139.05031348	413.204094087	0.289628254	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-high_light_1	negative	139.05031348	413.204094087	0.289628254	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_heat_1	negative	114.054991387	708.933736893	0.289426316	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_1	negative	114.054991387	708.933736893	0.289426316	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_recovery_1	negative	135.064922543	671.83915346	0.28764381	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_heat_recovery_1	negative	135.064922543	671.83915346	0.28764381	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-basal_heat_recovery_1	negative	218.117141617	63.4203134757	0.285421959	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_recovery_1	negative	218.117141617	63.4203134757	0.285421959	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-basal_heat_recovery_1	negative	129.054742348	473.08756594	0.284381773	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_heat_recovery_1	negative	129.054742348	473.08756594	0.284381773	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-acquired_heat_1	negative	325.110961944	732.001078015	0.27632397	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_heat_1	negative	325.110961944	732.001078015	0.27632397	[['326.1212969', 'C12H22O10', 0.0030589560000180427], ['326.1214669', 'C15H21N3O3S', 0.003228955999986738]]	1.83333333333	0.833333333333	0.0
-acquired_heat_recovery_1	negative	143.081552215	413.938579194	0.275568288	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_recovery_1	negative	143.081552215	413.938579194	0.275568288	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	258.10859871	766.684498265	0.271588772	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_heat_recovery_1	negative	258.10859871	766.684498265	0.271588772	[['259.1168207', 'C10H17N3O5', 0.0009459899999910704]]	1.7	0.5	0.3
-basal_heat_recovery_1	negative	157.060754467	673.395787895	0.270728268	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-basal_heat_recovery_1	negative	157.060754467	673.395787895	0.270728268	[['158.0691422', 'C6H10N2O3', 0.0011117329999876802]]	1.66666666667	0.5	0.333333333333
-acquired_heat_1	negative	229.086134186	75.4572130113	0.262823916	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_heat_1	negative	229.086134186	75.4572130113	0.262823916	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_recovery_1	negative	161.092044112	555.351269753	0.258794075	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_recovery_1	negative	161.092044112	555.351269753	0.258794075	[['162.1004423', 'C6H14N2O3', 0.0011221880000107376]]	2.33333333333	0.5	0.333333333333
-drought_recovery_1	negative	218.117141617	63.4203134757	0.257006288	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-drought_recovery_1	negative	218.117141617	63.4203134757	0.257006288	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_heat_recovery_1	negative	218.117141617	63.4203134757	0.25578463	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-acquired_heat_recovery_1	negative	218.117141617	63.4203134757	0.25578463	[['219.1259288', 'C13H17NO2', 0.0015111830000194004]]	1.30769230769	0.153846153846	0.0769230769231
-high_light_recovery_1	negative	113.034523864	346.164817875	0.239528808	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-high_light_recovery_1	negative	113.034523864	346.164817875	0.239528808	[['114.0429274', 'C4H6N2O2', 0.0011275359999984857]]	1.5	0.5	0.5
-drought_recovery_1	negative	226.070598166	632.340656791	0.239084869	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-drought_recovery_1	negative	226.070598166	632.340656791	0.239084869	[['227.0793725', 'C10H13NO5', 0.0014983340000185308]]	1.3	0.5	0.1
-acquired_heat_recovery_1	negative	159.076469963	709.608605344	0.234541873	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_heat_recovery_1	negative	159.076469963	709.608605344	0.234541873	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-high_light_recovery_1	negative	129.102363635	62.7787763415	0.221665232	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-high_light_recovery_1	negative	129.102363635	62.7787763415	0.221665232	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_recovery_1	negative	129.102363635	62.7787763415	0.217164434	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_cold_recovery_1	negative	129.102363635	62.7787763415	0.217164434	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_1	negative	110.071328817	867.935393029	0.211040568	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-drought_recovery_1	negative	110.071328817	867.935393029	0.211040568	[['111.0796473', 'C5H9N3', 0.0010424830000062002]]	1.8	0.0	0.6
-drought_recovery_1	negative	134.044842716	735.778198352	0.206874201	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-drought_recovery_1	negative	134.044842716	735.778198352	0.206874201	[['135.0531578', 'C4H9NO4', 0.0010390840000127355]]	2.25	1.0	0.25
-acquired_heat_recovery_1	negative	124.039378692	163.709299272	0.20515973	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_heat_recovery_1	negative	124.039378692	163.709299272	0.20515973	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	210.076174871	556.414916611	0.203665127	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-drought_recovery_1	negative	210.076174871	556.414916611	0.203665127	[['211.0844579', 'C10H13NO4', 0.0010070289999930537]]	1.3	0.4	0.1
-acquired_heat_recovery_1	negative	114.054991387	708.933736893	0.197473743	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_heat_recovery_1	negative	114.054991387	708.933736893	0.197473743	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_cold_1	negative	139.05031348	413.204094087	0.196247188	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-acquired_cold_1	negative	139.05031348	413.204094087	0.196247188	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_recovery_1	negative	129.054742348	473.08756594	0.195509219	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-drought_recovery_1	negative	129.054742348	473.08756594	0.195509219	[['130.0629942', 'C6H10O3', 0.0009758520000104909]]	1.66666666667	0.5	0.0
-basal_cold_1	negative	139.05031348	413.204094087	0.188337256	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-basal_cold_1	negative	139.05031348	413.204094087	0.188337256	[['140.0585775', 'C6H8N2O2', 0.0009880200000225159]]	1.33333333333	0.333333333333	0.333333333333
-drought_recovery_1	negative	277.101437375	768.482729939	0.187644141	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-drought_recovery_1	negative	277.101437375	768.482729939	0.187644141	[['278.1095504', 'C22H14', 0.0008370250000098167], ['278.1073576', 'C16H19ClO2', -0.0013557749999790758]]	0.636363636364	0.0	0.0
-acquired_heat_1	negative	160.075754826	271.403513484	0.185472101	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_heat_1	negative	160.075754826	271.403513484	0.185472101	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_recovery_1	negative	124.039346937	606.311521329	0.1837081	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	124.039346937	606.311521329	0.1837081	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	192.050472469	513.214176912	0.176760252	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-drought_recovery_1	negative	192.050472469	513.214176912	0.176760252	[['193.0586371', 'C6H11NO6', 0.0008886310000093545]]	1.83333333333	1.0	0.166666666667
-acquired_heat_1	negative	115.086648151	417.997247466	0.175020723	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-acquired_heat_1	negative	115.086648151	417.997247466	0.175020723	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-drought_recovery_1	negative	148.096909953	556.044083324	0.172508838	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-drought_recovery_1	negative	148.096909953	556.044083324	0.172508838	[['149.1051934', 'C6H15NO3', 0.001007447000006323]]	2.5	0.5	0.166666666667
-high_light_1	negative	129.102293431	306.737242727	0.164878177	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-high_light_1	negative	129.102293431	306.737242727	0.164878177	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_recovery_1	negative	143.081552215	413.938579194	0.163954984	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	143.081552215	413.938579194	0.163954984	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_recovery_1	negative	141.0659958	531.807534215	0.162890768	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	141.0659958	531.807534215	0.162890768	[['142.0742276', 'C6H10N2O2', 0.000955800000014051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_1	negative	115.086648151	417.997247466	0.159876414	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_heat_1	negative	115.086648151	417.997247466	0.159876414	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_heat_recovery_1	negative	115.086576502	897.299789636	0.144855939	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-basal_heat_recovery_1	negative	115.086576502	897.299789636	0.144855939	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_recovery_1	negative	133.06075433	667.643542766	0.143210302	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-drought_recovery_1	negative	133.06075433	667.643542766	0.143210302	[['134.0691422', 'C4H10N2O3', 0.0011118699999883574]]	2.5	0.75	0.5
-basal_heat_recovery_1	negative	229.086134186	75.4572130113	0.13821683	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-basal_heat_recovery_1	negative	229.086134186	75.4572130113	0.13821683	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_recovery_1	negative	116.034275331	671.712362191	0.13694674	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-drought_recovery_1	negative	116.034275331	671.712362191	0.13694674	[['117.0425931', 'C4H7NO3', 0.0010417689999968616]]	1.75	0.75	0.25
-acquired_heat_1	negative	159.076469963	709.608605344	0.135095152	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-acquired_heat_1	negative	159.076469963	709.608605344	0.135095152	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_recovery_1	negative	245.095407817	720.45724836	0.129534499	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-drought_recovery_1	negative	245.095407817	720.45724836	0.129534499	[['246.1004423', 'C13H14N2O3', -0.002241516999987425]]	1.07692307692	0.230769230769	0.153846153846
-drought_recovery_1	negative	203.102959813	922.142129909	0.125917378	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_recovery_1	negative	203.102959813	922.142129909	0.125917378	[['204.111007', 'C8H16N2O4', 0.0007711869999980081]]	2.0	0.5	0.25
-drought_recovery_1	negative	160.075855395	65.4178107604	0.121255724	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-drought_recovery_1	negative	160.075855395	65.4178107604	0.121255724	[['161.084064', 'C10H11NO', 0.000932605000031117]]	1.1	0.1	0.1
-basal_heat_recovery_1	negative	124.039378692	163.709299272	0.109273299	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	124.039378692	163.709299272	0.109273299	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	166.072040805	626.85306269	0.107160367	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_recovery_1	negative	166.072040805	626.85306269	0.107160367	[['167.0807099', 'C6H9N5O', 0.0013930949999974018]]	1.5	0.166666666667	0.833333333333
-drought_recovery_1	negative	135.064922543	671.83915346	0.104062752	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-drought_recovery_1	negative	135.064922543	671.83915346	0.104062752	[['136.0735589', 'C5H12O4', 0.0013603570000100262]]	2.4	0.8	0.0
-drought_recovery_1	negative	143.081552215	413.938579194	0.096346543	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-drought_recovery_1	negative	143.081552215	413.938579194	0.096346543	[['144.0898776', 'C6H12N2O2', 0.0010493850000159455]]	2.0	0.333333333333	0.333333333333
-acquired_heat_1	negative	114.054991387	708.933736893	0.095866323	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-acquired_heat_1	negative	114.054991387	708.933736893	0.095866323	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_recovery_1	negative	114.054991387	708.933736893	0.094970283	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_recovery_1	negative	114.054991387	708.933736893	0.094970283	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-basal_heat_recovery_1	negative	159.076469963	709.608605344	0.091793095	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-basal_heat_recovery_1	negative	159.076469963	709.608605344	0.091793095	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_recovery_1	negative	219.097087479	668.370758562	0.091789082	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_recovery_1	negative	219.097087479	668.370758562	0.091789082	[['220.1059216', 'C8H16N2O5', 0.0015581209999879775]]	2.0	0.625	0.25
-drought_recovery_1	negative	159.076469963	709.608605344	0.088666954	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_recovery_1	negative	159.076469963	709.608605344	0.088666954	[['160.0847923', 'C6H12N2O3', 0.0010463370000195482]]	2.0	0.5	0.333333333333
-drought_recovery_1	negative	146.060090727	528.080048428	0.085372134	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-drought_recovery_1	negative	146.060090727	528.080048428	0.085372134	[['147.0684139', 'C9H9NO', 0.0010471730000176649]]	1.0	0.111111111111	0.111111111111
-drought_recovery_1	negative	595.16565303	510.108375093	0.084453221	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_recovery_1	negative	595.16565303	510.108375093	0.084453221	[['596.1741204', 'C27H32O15', 0.001191369999901326]]	1.18518518519	0.555555555556	0.0
-drought_recovery_1	negative	114.054991387	708.933736893	0.076174123	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_recovery_1	negative	114.054991387	708.933736893	0.076174123	[['115.0633285', 'C5H9NO2', 0.0010611129999915647]]	1.8	0.4	0.2
-drought_recovery_1	negative	229.086134186	75.4572130113	0.069011691	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-drought_recovery_1	negative	229.086134186	75.4572130113	0.069011691	[['230.0942943', 'C14H14O3', 0.0008841140000015457]]	1.0	0.214285714286	0.0
-acquired_heat_recovery_1	negative	129.102363635	62.7787763415	0.06396995	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_recovery_1	negative	129.102363635	62.7787763415	0.06396995	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_1	negative	141.066024093	333.035450274	0.058617401	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-drought_recovery_1	negative	141.066024093	333.035450274	0.058617401	[['142.0742276', 'C6H10N2O2', 0.0009275070000001051]]	1.66666666667	0.333333333333	0.333333333333
-basal_heat_recovery_1	negative	115.086648151	417.997247466	0.055094091	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-basal_heat_recovery_1	negative	115.086648151	417.997247466	0.055094091	[['116.094963', 'C5H12N2O', 0.0010388489999968442]]	2.4	0.2	0.4
-drought_recovery_1	negative	115.086576502	897.299789636	0.050838889	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_recovery_1	negative	115.086576502	897.299789636	0.050838889	[['116.094963', 'C5H12N2O', 0.0011104980000027354]]	2.4	0.2	0.4
-drought_recovery_1	negative	174.076085448	664.71059456	0.049941548	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-drought_recovery_1	negative	174.076085448	664.71059456	0.049941548	[['175.0844579', 'C7H13NO4', 0.0010964520000129596]]	1.85714285714	0.571428571429	0.142857142857
-basal_heat_1	negative	160.075754826	271.403513484	0.046231533	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_1	negative	160.075754826	271.403513484	0.046231533	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-drought_recovery_1	negative	124.039346937	606.311521329	0.041997813	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	124.039346937	606.311521329	0.041997813	[['125.0476785', 'C6H7NO2', 0.0010555629999942084]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	129.102293431	306.737242727	0.040694027	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_cold_1	negative	129.102293431	306.737242727	0.040694027	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_recovery_1	negative	129.102363635	62.7787763415	0.037803516	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_recovery_1	negative	129.102363635	62.7787763415	0.037803516	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_1	negative	160.075754826	271.403513484	0.036176096	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-drought_recovery_1	negative	160.075754826	271.403513484	0.036176096	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-basal_heat_recovery_1	negative	130.086348069	412.147868481	0.030898305	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-basal_heat_recovery_1	negative	130.086348069	412.147868481	0.030898305	[['131.0946287', 'C6H13NO2', 0.0010046310000006997]]	2.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	125.023379586	500.87044907	0.028530359	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-drought_recovery_1	negative	125.023379586	500.87044907	0.028530359	[['126.0316941', 'C6H6O3', 0.0010385139999868898]]	1.0	0.5	0.0
-drought_recovery_1	negative	124.039378692	163.709299272	0.025666975	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-drought_recovery_1	negative	124.039378692	163.709299272	0.025666975	[['125.0476785', 'C6H7NO2', 0.0010238079999993488]]	1.16666666667	0.333333333333	0.166666666667
-acquired_cold_1	negative	160.075754826	271.403513484	0.024959664	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_cold_1	negative	160.075754826	271.403513484	0.024959664	[['161.084064', 'C10H11NO', 0.0010331740000140144]]	1.1	0.1	0.1
-acquired_heat_1	negative	129.102293431	306.737242727	0.021509138	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-acquired_heat_1	negative	129.102293431	306.737242727	0.021509138	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_1	negative	129.102293431	306.737242727	0.016222586	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-basal_heat_1	negative	129.102293431	306.737242727	0.016222586	[['130.1106131', 'C6H14N2O', 0.0010436690000119597]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_1	negative	140.034389249	507.171563189	0.014171728	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_recovery_1	negative	140.034389249	507.171563189	0.014171728	[['141.0425931', 'C6H7NO3', 0.0009278510000285678]]	1.16666666667	0.5	0.166666666667
-drought_recovery_1	negative	129.102363635	62.7787763415	0.012743815	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
-drought_recovery_1	negative	129.102363635	62.7787763415	0.012743815	[['130.1106131', 'C6H14N2O', 0.0009734650000154943]]	2.33333333333	0.166666666667	0.333333333333
--- a/test-data/d3-test-data.tsv	Tue Jul 10 17:58:35 2018 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,254 +0,0 @@
-sample_id	polarity	mz	rt	intensity	predictions	delta	hc	oc	nc	size	color
-acquired_cold_1	negative	151.027252644	478.986287339	2479927.686	[['151.026943', 'C7H5NO3', -0.00030964440799152726, {'H': '5', 'C': '7', 'O': '3', 'N': 1}]]	-0.000309644407992	0.714285714286	0.428571428571	0.142857142857	4.92121160707	0.519427832004
-acquired_cold_1	negative	151.027252644	478.986287339	2848595.64	[['151.026943', 'C7H5NO3', -0.00030964440799152726, {'H': '5', 'C': '7', 'O': '3', 'N': 1}]]	-0.000309644407992	0.714285714286	0.428571428571	0.142857142857	5.6528027033	0.519427832004
-acquired_cold_1	negative	151.027252644	478.986287339	2848595.64	[['151.026943', 'C7H5NO3', -0.00030964440799152726, {'H': '5', 'C': '7', 'O': '3', 'N': 1}]]	-0.000309644407992	0.714285714286	0.428571428571	0.142857142857	5.6528027033	0.519427832004
-acquired_cold_1	negative	151.027252644	478.986287339	1.540666893	[['151.026943', 'C7H5NO3', -0.00030964440799152726, {'H': '5', 'C': '7', 'O': '3', 'N': 1}]]	-0.000309644407992	0.714285714286	0.428571428571	0.142857142857	3.05732616288E-06	0.519427832004
-acquired_cold_1	negative	151.027252644	478.986287339	1.540666893	[['151.026943', 'C7H5NO3', -0.00030964440799152726, {'H': '5', 'C': '7', 'O': '3', 'N': 1}]]	-0.000309644407992	0.714285714286	0.428571428571	0.142857142857	3.05732616288E-06	0.519427832004
-acquired_cold_1	negative	153.043243309	295.704858962	32656331.08	[['153.0425931', 'C7H7NO3', -0.0006502092489881761, {'H': '7', 'C': '7', 'O': '3', 'N': 1}]]	-0.000650209248988	1	0.428571428571	0.142857142857	64.8037910389	0.320671672371
-acquired_cold_1	negative	153.043243309	295.704858962	32179243.79	[['153.0425931', 'C7H7NO3', -0.0006502092489881761, {'H': '7', 'C': '7', 'O': '3', 'N': 1}]]	-0.000650209248988	1	0.428571428571	0.142857142857	63.8570507277	0.320671672371
-acquired_cold_1	negative	153.043243309	295.704858962	32179243.79	[['153.0425931', 'C7H7NO3', -0.0006502092489881761, {'H': '7', 'C': '7', 'O': '3', 'N': 1}]]	-0.000650209248988	1	0.428571428571	0.142857142857	63.8570507277	0.320671672371
-acquired_cold_1	negative	153.043243309	295.704858962	0.846444012	[['153.0425931', 'C7H7NO3', -0.0006502092489881761, {'H': '7', 'C': '7', 'O': '3', 'N': 1}]]	-0.000650209248988	1	0.428571428571	0.142857142857	1.6796982106E-06	0.320671672371
-acquired_cold_1	negative	153.043243309	295.704858962	0.846444012	[['153.0425931', 'C7H7NO3', -0.0006502092489881761, {'H': '7', 'C': '7', 'O': '3', 'N': 1}]]	-0.000650209248988	1	0.428571428571	0.142857142857	1.6796982106E-06	0.320671672371
-acquired_cold_1	negative	154.040185969	311.833276359	39656341.43	[['154.0394954', 'C4H11O4P', -0.0006905693499845711, {'H': '11', 'C': '4', 'O': '4', 'N': 0}]]	-0.000690569349985	2.75	1	0	78.6947332541	0.338161836712
-acquired_cold_1	negative	154.040185969	311.833276359	39063903.98	[['154.0394954', 'C4H11O4P', -0.0006905693499845711, {'H': '11', 'C': '4', 'O': '4', 'N': 0}]]	-0.000690569349985	2.75	1	0	77.5190900803	0.338161836712
-acquired_cold_1	negative	154.040185969	311.833276359	39063903.98	[['154.0394954', 'C4H11O4P', -0.0006905693499845711, {'H': '11', 'C': '4', 'O': '4', 'N': 0}]]	-0.000690569349985	2.75	1	0	77.5190900803	0.338161836712
-acquired_cold_1	negative	154.040185969	311.833276359	0.851262333	[['154.0394954', 'C4H11O4P', -0.0006905693499845711, {'H': '11', 'C': '4', 'O': '4', 'N': 0}]]	-0.000690569349985	2.75	1	0	1.68925977054E-06	0.338161836712
-acquired_cold_1	negative	154.040185969	311.833276359	0.851262333	[['154.0394954', 'C4H11O4P', -0.0006905693499845711, {'H': '11', 'C': '4', 'O': '4', 'N': 0}]]	-0.000690569349985	2.75	1	0	1.68925977054E-06	0.338161836712
-acquired_cold_1	negative	162.089577556	152.040443946	2318451.736	[['162.0892089', 'C7H14O4', -0.00036865556100451613, {'H': '14', 'C': '7', 'O': '4', 'N': 0}]]	-0.000368655561005	2	0.571428571429	0	4.60077592506	0.164877451116
-acquired_cold_1	negative	162.089577556	152.040443946	2171383.76	[['162.0892089', 'C7H14O4', -0.00036865556100451613, {'H': '14', 'C': '7', 'O': '4', 'N': 0}]]	-0.000368655561005	2	0.571428571429	0	4.30893167709	0.164877451116
-acquired_cold_1	negative	162.089577556	152.040443946	2171383.76	[['162.0892089', 'C7H14O4', -0.00036865556100451613, {'H': '14', 'C': '7', 'O': '4', 'N': 0}]]	-0.000368655561005	2	0.571428571429	0	4.30893167709	0.164877451116
-acquired_cold_1	negative	162.089577556	152.040443946	0.555726325	[['162.0892089', 'C7H14O4', -0.00036865556100451613, {'H': '14', 'C': '7', 'O': '4', 'N': 0}]]	-0.000368655561005	2	0.571428571429	0	1.10279297916E-06	0.164877451116
-acquired_cold_1	negative	162.089577556	152.040443946	0.555726325	[['162.0892089', 'C7H14O4', -0.00036865556100451613, {'H': '14', 'C': '7', 'O': '4', 'N': 0}]]	-0.000368655561005	2	0.571428571429	0	1.10279297916E-06	0.164877451116
-acquired_cold_1	negative	187.083592016	480.379795321	1120363.921	[['187.0844579', 'C8H13NO4', 0.0008658838970063698, {'H': '13', 'C': '8', 'O': '4', 'N': 1}]]	0.000865883897006	1.625	0.5	0.125	2.22326963939	0.520938995997
-acquired_cold_1	negative	187.083592016	480.379795321	1423853.099	[['187.0844579', 'C8H13NO4', 0.0008658838970063698, {'H': '13', 'C': '8', 'O': '4', 'N': 1}]]	0.000865883897006	1.625	0.5	0.125	2.82551883957	0.520938995997
-acquired_cold_1	negative	187.083592016	480.379795321	1423853.099	[['187.0844579', 'C8H13NO4', 0.0008658838970063698, {'H': '13', 'C': '8', 'O': '4', 'N': 1}]]	0.000865883897006	1.625	0.5	0.125	2.82551883957	0.520938995997
-acquired_cold_1	negative	187.083592016	480.379795321	1.506978765	[['187.0844579', 'C8H13NO4', 0.0008658838970063698, {'H': '13', 'C': '8', 'O': '4', 'N': 1}]]	0.000865883897006	1.625	0.5	0.125	2.9904748561E-06	0.520938995997
-acquired_cold_1	negative	187.083592016	480.379795321	1.506978765	[['187.0844579', 'C8H13NO4', 0.0008658838970063698, {'H': '13', 'C': '8', 'O': '4', 'N': 1}]]	0.000865883897006	1.625	0.5	0.125	2.9904748561E-06	0.520938995997
-acquired_cold_1	negative	189.078126744	439.409526095	10893582.97	[['189.0789786', 'C11H11NO2', 0.0008518564590076494, {'H': '11', 'C': '11', 'O': '2', 'N': 1}]]	0.000851856459008	1	0.181818181818	0.0909090909091	21.6174154017	0.476509544292
-acquired_cold_1	negative	189.078126744	439.409526095	13174216.29	[['189.0789786', 'C11H11NO2', 0.0008518564590076494, {'H': '11', 'C': '11', 'O': '2', 'N': 1}]]	0.000851856459008	1	0.181818181818	0.0909090909091	26.1431438047	0.476509544292
-acquired_cold_1	negative	189.078126744	439.409526095	13174216.29	[['189.0789786', 'C11H11NO2', 0.0008518564590076494, {'H': '11', 'C': '11', 'O': '2', 'N': 1}]]	0.000851856459008	1	0.181818181818	0.0909090909091	26.1431438047	0.476509544292
-acquired_cold_1	negative	189.078126744	439.409526095	1.662143651	[['189.0789786', 'C11H11NO2', 0.0008518564590076494, {'H': '11', 'C': '11', 'O': '2', 'N': 1}]]	0.000851856459008	1	0.181818181818	0.0909090909091	3.29838675301E-06	0.476509544292
-acquired_cold_1	negative	189.078126744	439.409526095	1.662143651	[['189.0789786', 'C11H11NO2', 0.0008518564590076494, {'H': '11', 'C': '11', 'O': '2', 'N': 1}]]	0.000851856459008	1	0.181818181818	0.0909090909091	3.29838675301E-06	0.476509544292
-acquired_cold_1	negative	193.057748469	513.214176912	1897826.444	[['193.0586371', 'C6H11NO6', 0.0008886309830131722, {'H': '11', 'C': '6', 'O': '6', 'N': 1}]]	0.000888630983013	1.83333333333	1	0.166666666667	3.76607978416	0.556545634633
-acquired_cold_1	negative	193.057748469	513.214176912	2207900.333	[['193.0586371', 'C6H11NO6', 0.0008886309830131722, {'H': '11', 'C': '6', 'O': '6', 'N': 1}]]	0.000888630983013	1.83333333333	1	0.166666666667	4.3813957993	0.556545634633
-acquired_cold_1	negative	193.057748469	513.214176912	2207900.333	[['193.0586371', 'C6H11NO6', 0.0008886309830131722, {'H': '11', 'C': '6', 'O': '6', 'N': 1}]]	0.000888630983013	1.83333333333	1	0.166666666667	4.3813957993	0.556545634633
-acquired_cold_1	negative	193.057748469	513.214176912	0.753127374	[['193.0586371', 'C6H11NO6', 0.0008886309830131722, {'H': '11', 'C': '6', 'O': '6', 'N': 1}]]	0.000888630983013	1.83333333333	1	0.166666666667	1.49451905209E-06	0.556545634633
-acquired_cold_1	negative	193.057748469	513.214176912	0.753127374	[['193.0586371', 'C6H11NO6', 0.0008886309830131722, {'H': '11', 'C': '6', 'O': '6', 'N': 1}]]	0.000888630983013	1.83333333333	1	0.166666666667	1.49451905209E-06	0.556545634633
-acquired_cold_1	negative	194.058394907	745.96277729	471019.4078	[['194.0579088', 'C10H10O4', -0.00048610695597517406, {'H': '10', 'C': '10', 'O': '4', 'N': 0}]]	-0.000486106955975	1	0.4	0	0.934699100262	0.808945555241
-acquired_cold_1	negative	194.058394907	745.96277729	1019637.56	[['194.0579088', 'C10H10O4', -0.00048610695597517406, {'H': '10', 'C': '10', 'O': '4', 'N': 0}]]	-0.000486106955975	1	0.4	0	2.02338649776	0.808945555241
-acquired_cold_1	negative	194.058394907	745.96277729	1019637.56	[['194.0579088', 'C10H10O4', -0.00048610695597517406, {'H': '10', 'C': '10', 'O': '4', 'N': 0}]]	-0.000486106955975	1	0.4	0	2.02338649776	0.808945555241
-acquired_cold_1	negative	194.058394907	745.96277729	0.699989397	[['194.0579088', 'C10H10O4', -0.00048610695597517406, {'H': '10', 'C': '10', 'O': '4', 'N': 0}]]	-0.000486106955975	1	0.4	0	1.38907112687E-06	0.808945555241
-acquired_cold_1	negative	194.058394907	745.96277729	0.699989397	[['194.0579088', 'C10H10O4', -0.00048610695597517406, {'H': '10', 'C': '10', 'O': '4', 'N': 0}]]	-0.000486106955975	1	0.4	0	1.38907112687E-06	0.808945555241
-acquired_cold_1	negative	202.094547934	404.380901513	180743.2777	[['202.0953569', 'C8H14N2O4', 0.0008089656210188423, {'H': '14', 'C': '8', 'O': '4', 'N': '2'}]]	0.000808965621019	1.75	0.5	0.25	0.358670102011	0.438523399374
-acquired_cold_1	negative	202.094547934	404.380901513	505994.9895	[['202.0953569', 'C8H14N2O4', 0.0008089656210188423, {'H': '14', 'C': '8', 'O': '4', 'N': '2'}]]	0.000808965621019	1.75	0.5	0.25	1.00410525255	0.438523399374
-acquired_cold_1	negative	202.094547934	404.380901513	505994.9895	[['202.0953569', 'C8H14N2O4', 0.0008089656210188423, {'H': '14', 'C': '8', 'O': '4', 'N': '2'}]]	0.000808965621019	1.75	0.5	0.25	1.00410525255	0.438523399374
-acquired_cold_1	negative	202.094547934	404.380901513	1.602786796	[['202.0953569', 'C8H14N2O4', 0.0008089656210188423, {'H': '14', 'C': '8', 'O': '4', 'N': '2'}]]	0.000808965621019	1.75	0.5	0.25	3.18059797818E-06	0.438523399374
-acquired_cold_1	negative	202.094547934	404.380901513	1.602786796	[['202.0953569', 'C8H14N2O4', 0.0008089656210188423, {'H': '14', 'C': '8', 'O': '4', 'N': '2'}]]	0.000808965621019	1.75	0.5	0.25	3.18059797818E-06	0.438523399374
-acquired_cold_1	negative	204.110235813	922.142129909	263016.508	[['204.111007', 'C8H16N2O4', 0.000771186995024209, {'H': '16', 'C': '8', 'O': '4', 'N': '2'}]]	0.000771186995024	2	0.5	0.25	0.52193453032	1
-acquired_cold_1	negative	204.110235813	922.142129909	480166.0209	[['204.111007', 'C8H16N2O4', 0.000771186995024209, {'H': '16', 'C': '8', 'O': '4', 'N': '2'}]]	0.000771186995024	2	0.5	0.25	0.952849798287	1
-acquired_cold_1	negative	204.110235813	922.142129909	480166.0209	[['204.111007', 'C8H16N2O4', 0.000771186995024209, {'H': '16', 'C': '8', 'O': '4', 'N': '2'}]]	0.000771186995024	2	0.5	0.25	0.952849798287	1
-acquired_cold_1	negative	204.110235813	922.142129909	0.691017	[['204.111007', 'C8H16N2O4', 0.000771186995024209, {'H': '16', 'C': '8', 'O': '4', 'N': '2'}]]	0.000771186995024	2	0.5	0.25	1.3712661463E-06	1
-acquired_cold_1	negative	204.110235813	922.142129909	0.691017	[['204.111007', 'C8H16N2O4', 0.000771186995024209, {'H': '16', 'C': '8', 'O': '4', 'N': '2'}]]	0.000771186995024	2	0.5	0.25	1.3712661463E-06	1
-acquired_cold_1	negative	211.083450871	556.414916611	12250723.87	[['211.0844579', 'C10H13NO4', 0.0010070289640111696, {'H': '13', 'C': '10', 'O': '4', 'N': 1}]]	0.00100702896401	1.3	0.4	0.1	24.310549394	0.603393878844
-acquired_cold_1	negative	211.083450871	556.414916611	13390924.45	[['211.0844579', 'C10H13NO4', 0.0010070289640111696, {'H': '13', 'C': '10', 'O': '4', 'N': 1}]]	0.00100702896401	1.3	0.4	0.1	26.5731832443	0.603393878844
-acquired_cold_1	negative	211.083450871	556.414916611	13390924.45	[['211.0844579', 'C10H13NO4', 0.0010070289640111696, {'H': '13', 'C': '10', 'O': '4', 'N': 1}]]	0.00100702896401	1.3	0.4	0.1	26.5731832443	0.603393878844
-acquired_cold_1	negative	211.083450871	556.414916611	0.850084967	[['211.0844579', 'C10H13NO4', 0.0010070289640111696, {'H': '13', 'C': '10', 'O': '4', 'N': 1}]]	0.00100702896401	1.3	0.4	0.1	1.68692338499E-06	0.603393878844
-acquired_cold_1	negative	211.083450871	556.414916611	0.850084967	[['211.0844579', 'C10H13NO4', 0.0010070289640111696, {'H': '13', 'C': '10', 'O': '4', 'N': 1}]]	0.00100702896401	1.3	0.4	0.1	1.68692338499E-06	0.603393878844
-acquired_cold_1	negative	219.052458208	452.870979892	459981595.8	[['219.0531578', 'C11H9NO4', 0.0006995918140262347, {'H': '9', 'C': '11', 'O': '4', 'N': 1}]]	0.000699591814026	0.818181818182	0.363636363636	0.0909090909091	912.795474266	0.491107569216
-acquired_cold_1	negative	219.052458208	452.870979892	524725631.1	[['219.0531578', 'C11H9NO4', 0.0006995918140262347, {'H': '9', 'C': '11', 'O': '4', 'N': 1}]]	0.000699591814026	0.818181818182	0.363636363636	0.0909090909091	1041.27466332	0.491107569216
-acquired_cold_1	negative	219.052458208	452.870979892	524725631.1	[['219.0531578', 'C11H9NO4', 0.0006995918140262347, {'H': '9', 'C': '11', 'O': '4', 'N': 1}]]	0.000699591814026	0.818181818182	0.363636363636	0.0909090909091	1041.27466332	0.491107569216
-acquired_cold_1	negative	219.052458208	452.870979892	1.023617082	[['219.0531578', 'C11H9NO4', 0.0006995918140262347, {'H': '9', 'C': '11', 'O': '4', 'N': 1}]]	0.000699591814026	0.818181818182	0.363636363636	0.0909090909091	2.03128353039E-06	0.491107569216
-acquired_cold_1	negative	219.052458208	452.870979892	1.023617082	[['219.0531578', 'C11H9NO4', 0.0006995918140262347, {'H': '9', 'C': '11', 'O': '4', 'N': 1}]]	0.000699591814026	0.818181818182	0.363636363636	0.0909090909091	2.03128353039E-06	0.491107569216
-acquired_cold_1	negative	230.093410186	75.4572130113	1531326.87	[['230.0942943', 'C14H14O3', 0.0008841138660216075, {'H': '14', 'C': '14', 'O': '3', 'N': 0}]]	0.000884113866022	1	0.214285714286	0	3.03879165889	0.0818281808887
-acquired_cold_1	negative	230.093410186	75.4572130113	1575200.489	[['230.0942943', 'C14H14O3', 0.0008841138660216075, {'H': '14', 'C': '14', 'O': '3', 'N': 0}]]	0.000884113866022	1	0.214285714286	0	3.12585523106	0.0818281808887
-acquired_cold_1	negative	230.093410186	75.4572130113	1575200.489	[['230.0942943', 'C14H14O3', 0.0008841138660216075, {'H': '14', 'C': '14', 'O': '3', 'N': 0}]]	0.000884113866022	1	0.214285714286	0	3.12585523106	0.0818281808887
-acquired_cold_1	negative	230.093410186	75.4572130113	1.095347879	[['230.0942943', 'C14H14O3', 0.0008841138660216075, {'H': '14', 'C': '14', 'O': '3', 'N': 0}]]	0.000884113866022	1	0.214285714286	0	2.17362737081E-06	0.0818281808887
-acquired_cold_1	negative	230.093410186	75.4572130113	1.095347879	[['230.0942943', 'C14H14O3', 0.0008841138660216075, {'H': '14', 'C': '14', 'O': '3', 'N': 0}]]	0.000884113866022	1	0.214285714286	0	2.17362737081E-06	0.0818281808887
-acquired_cold_1	negative	235.047160668	530.800481028	20389365.21	[['235.0480724', 'C11H9NO5', 0.0009117316849938106, {'H': '9', 'C': '11', 'O': '5', 'N': 1}]]	0.000911731684994	0.818181818182	0.454545454545	0.0909090909091	40.4610107378	0.575616777297
-acquired_cold_1	negative	235.047160668	530.800481028	23146725.02	[['235.0480724', 'C11H9NO5', 0.0009117316849938106, {'H': '9', 'C': '11', 'O': '5', 'N': 1}]]	0.000911731684994	0.818181818182	0.454545454545	0.0909090909091	45.9327634741	0.575616777297
-acquired_cold_1	negative	235.047160668	530.800481028	23146725.02	[['235.0480724', 'C11H9NO5', 0.0009117316849938106, {'H': '9', 'C': '11', 'O': '5', 'N': 1}]]	0.000911731684994	0.818181818182	0.454545454545	0.0909090909091	45.9327634741	0.575616777297
-acquired_cold_1	negative	235.047160668	530.800481028	0.792378576	[['235.0480724', 'C11H9NO5', 0.0009117316849938106, {'H': '9', 'C': '11', 'O': '5', 'N': 1}]]	0.000911731684994	0.818181818182	0.454545454545	0.0909090909091	1.57240981962E-06	0.575616777297
-acquired_cold_1	negative	235.047160668	530.800481028	0.792378576	[['235.0480724', 'C11H9NO5', 0.0009117316849938106, {'H': '9', 'C': '11', 'O': '5', 'N': 1}]]	0.000911731684994	0.818181818182	0.454545454545	0.0909090909091	1.57240981962E-06	0.575616777297
-acquired_cold_1	negative	235.104605035	63.240476447	18551.22758	[['235.1055873', 'C9H17NO6', 0.0009822648900126296, {'H': '17', 'C': '9', 'O': '6', 'N': 1}]]	0.000982264890013	1.88888888889	0.666666666667	0.111111111111	0.0368133784737	0.0685799665755
-acquired_cold_1	negative	235.104605035	63.240476447	28013.10591	[['235.1055873', 'C9H17NO6', 0.0009822648900126296, {'H': '17', 'C': '9', 'O': '6', 'N': 1}]]	0.000982264890013	1.88888888889	0.666666666667	0.111111111111	0.0555896943014	0.0685799665755
-acquired_cold_1	negative	235.104605035	63.240476447	28013.10591	[['235.1055873', 'C9H17NO6', 0.0009822648900126296, {'H': '17', 'C': '9', 'O': '6', 'N': 1}]]	0.000982264890013	1.88888888889	0.666666666667	0.111111111111	0.0555896943014	0.0685799665755
-acquired_cold_1	negative	235.104605035	63.240476447	2.041362736	[['235.1055873', 'C9H17NO6', 0.0009822648900126296, {'H': '17', 'C': '9', 'O': '6', 'N': 1}]]	0.000982264890013	1.88888888889	0.666666666667	0.111111111111	4.050915697E-06	0.0685799665755
-acquired_cold_1	negative	235.104605035	63.240476447	2.041362736	[['235.1055873', 'C9H17NO6', 0.0009822648900126296, {'H': '17', 'C': '9', 'O': '6', 'N': 1}]]	0.000982264890013	1.88888888889	0.666666666667	0.111111111111	4.050915697E-06	0.0685799665755
-acquired_cold_1	negative	259.11587471	766.684498265	5283199.134	[['259.1168207', 'C10H17N3O5', 0.0009459897630108571, {'H': '17', 'C': '10', 'O': '5', 'N': '3'}]]	0.000945989763011	1.7	0.5	0.3	10.4840721959	0.831416842804
-acquired_cold_1	negative	259.11587471	766.684498265	7857504.591	[['259.1168207', 'C10H17N3O5', 0.0009459897630108571, {'H': '17', 'C': '10', 'O': '5', 'N': '3'}]]	0.000945989763011	1.7	0.5	0.3	15.5925686923	0.831416842804
-acquired_cold_1	negative	259.11587471	766.684498265	7857504.591	[['259.1168207', 'C10H17N3O5', 0.0009459897630108571, {'H': '17', 'C': '10', 'O': '5', 'N': '3'}]]	0.000945989763011	1.7	0.5	0.3	15.5925686923	0.831416842804
-acquired_cold_1	negative	259.11587471	766.684498265	0.63212114	[['259.1168207', 'C10H17N3O5', 0.0009459897630108571, {'H': '17', 'C': '10', 'O': '5', 'N': '3'}]]	0.000945989763011	1.7	0.5	0.3	1.25439217797E-06	0.831416842804
-acquired_cold_1	negative	259.11587471	766.684498265	0.63212114	[['259.1168207', 'C10H17N3O5', 0.0009459897630108571, {'H': '17', 'C': '10', 'O': '5', 'N': '3'}]]	0.000945989763011	1.7	0.5	0.3	1.25439217797E-06	0.831416842804
-acquired_cold_1	negative	266.073586235	464.47406321	126193.5913	[['266.072513', 'C12H14N2O3S', -0.0010732350889952613, {'H': '14', 'C': '12', 'O': '3', 'N': '2'}]]	-0.001073235089	1.16666666667	0.25	0.166666666667	0.250420756117	0.503690318602
-acquired_cold_1	negative	266.073586235	464.47406321	117872.2969	[['266.072513', 'C12H14N2O3S', -0.0010732350889952613, {'H': '14', 'C': '12', 'O': '3', 'N': '2'}]]	-0.001073235089	1.16666666667	0.25	0.166666666667	0.233907834866	0.503690318602
-acquired_cold_1	negative	266.073586235	464.47406321	117872.2969	[['266.072513', 'C12H14N2O3S', -0.0010732350889952613, {'H': '14', 'C': '12', 'O': '3', 'N': '2'}]]	-0.001073235089	1.16666666667	0.25	0.166666666667	0.233907834866	0.503690318602
-acquired_cold_1	negative	266.073586235	464.47406321	0.62224979	[['266.072513', 'C12H14N2O3S', -0.0010732350889952613, {'H': '14', 'C': '12', 'O': '3', 'N': '2'}]]	-0.001073235089	1.16666666667	0.25	0.166666666667	1.23480329944E-06	0.503690318602
-acquired_cold_1	negative	266.073586235	464.47406321	0.62224979	[['266.072513', 'C12H14N2O3S', -0.0010732350889952613, {'H': '14', 'C': '12', 'O': '3', 'N': '2'}]]	-0.001073235089	1.16666666667	0.25	0.166666666667	1.23480329944E-06	0.503690318602
-acquired_cold_1	negative	266.117786327	361.247668059	222595.1918	[['266.1175552', 'C17H16NO2', -0.00023112667497571238, {'H': '16', 'C': '17', 'O': '2', 'N': 1}], ['266.1167611', 'C15H14N4O', -0.0010252266749830596]]	-0.000231126674976	0.941176470588	0.117647058824	0.0588235294118	0.441721767835	0.391748361063
-acquired_cold_1	negative	266.117786327	361.247668059	1171792.729	[['266.1175552', 'C17H16NO2', -0.00023112667497571238, {'H': '16', 'C': '17', 'O': '2', 'N': 1}], ['266.1167611', 'C15H14N4O', -0.0010252266749830596]]	-0.000231126674976	0.941176470588	0.117647058824	0.0588235294118	2.32532585994	0.391748361063
-acquired_cold_1	negative	266.117786327	361.247668059	1171792.729	[['266.1175552', 'C17H16NO2', -0.00023112667497571238, {'H': '16', 'C': '17', 'O': '2', 'N': 1}], ['266.1167611', 'C15H14N4O', -0.0010252266749830596]]	-0.000231126674976	0.941176470588	0.117647058824	0.0588235294118	2.32532585994	0.391748361063
-acquired_cold_1	negative	266.117786327	361.247668059	0.256865407	[['266.1175552', 'C17H16NO2', -0.00023112667497571238, {'H': '16', 'C': '17', 'O': '2', 'N': 1}], ['266.1167611', 'C15H14N4O', -0.0010252266749830596]]	-0.000231126674976	0.941176470588	0.117647058824	0.0588235294118	5.09728178575E-07	0.391748361063
-acquired_cold_1	negative	266.117786327	361.247668059	0.256865407	[['266.1175552', 'C17H16NO2', -0.00023112667497571238, {'H': '16', 'C': '17', 'O': '2', 'N': 1}], ['266.1167611', 'C15H14N4O', -0.0010252266749830596]]	-0.000231126674976	0.941176470588	0.117647058824	0.0588235294118	5.09728178575E-07	0.391748361063
-acquired_cold_1	negative	270.113722076	344.97883301	5866930.661	[['270.1135056', 'C13H19ClN2O2', -0.00021647569400329303, {'H': '19', 'C': '13', 'O': '2', 'N': '2'}]]	-0.000216475694003	1.46153846154	0.153846153846	0.153846153846	11.6424391847	0.374105923394
-acquired_cold_1	negative	270.113722076	344.97883301	5617220.614	[['270.1135056', 'C13H19ClN2O2', -0.00021647569400329303, {'H': '19', 'C': '13', 'O': '2', 'N': '2'}]]	-0.000216475694003	1.46153846154	0.153846153846	0.153846153846	11.1469102269	0.374105923394
-acquired_cold_1	negative	270.113722076	344.97883301	5617220.614	[['270.1135056', 'C13H19ClN2O2', -0.00021647569400329303, {'H': '19', 'C': '13', 'O': '2', 'N': '2'}]]	-0.000216475694003	1.46153846154	0.153846153846	0.153846153846	11.1469102269	0.374105923394
-acquired_cold_1	negative	270.113722076	344.97883301	1.516352638	[['270.1135056', 'C13H19ClN2O2', -0.00021647569400329303, {'H': '19', 'C': '13', 'O': '2', 'N': '2'}]]	-0.000216475694003	1.46153846154	0.153846153846	0.153846153846	3.00907653262E-06	0.374105923394
-acquired_cold_1	negative	270.113722076	344.97883301	1.516352638	[['270.1135056', 'C13H19ClN2O2', -0.00021647569400329303, {'H': '19', 'C': '13', 'O': '2', 'N': '2'}]]	-0.000216475694003	1.46153846154	0.153846153846	0.153846153846	3.00907653262E-06	0.374105923394
-acquired_cold_1	negative	276.073473663	531.081953388	2718674.095	[['276.0721768', 'C11H11F3N2O3', -0.0012968625699727454, {'H': '11', 'C': '11', 'O': '3', 'N': '2'}]]	-0.00129686256997	1	0.272727272727	0.181818181818	5.39498413106	0.575922014798
-acquired_cold_1	negative	276.073473663	531.081953388	2927093.456	[['276.0721768', 'C11H11F3N2O3', -0.0012968625699727454, {'H': '11', 'C': '11', 'O': '3', 'N': '2'}]]	-0.00129686256997	1	0.272727272727	0.181818181818	5.80857513385	0.575922014798
-acquired_cold_1	negative	276.073473663	531.081953388	2927093.456	[['276.0721768', 'C11H11F3N2O3', -0.0012968625699727454, {'H': '11', 'C': '11', 'O': '3', 'N': '2'}]]	-0.00129686256997	1	0.272727272727	0.181818181818	5.80857513385	0.575922014798
-acquired_cold_1	negative	276.073473663	531.081953388	0.748599802	[['276.0721768', 'C11H11F3N2O3', -0.0012968625699727454, {'H': '11', 'C': '11', 'O': '3', 'N': '2'}]]	-0.00129686256997	1	0.272727272727	0.181818181818	1.48553445951E-06	0.575922014798
-acquired_cold_1	negative	276.073473663	531.081953388	0.748599802	[['276.0721768', 'C11H11F3N2O3', -0.0012968625699727454, {'H': '11', 'C': '11', 'O': '3', 'N': '2'}]]	-0.00129686256997	1	0.272727272727	0.181818181818	1.48553445951E-06	0.575922014798
-acquired_cold_1	negative	278.108713375	768.482729939	2236107.686	[['278.1095504', 'C22H14', 0.0008370253290195251, {'H': '14', 'C': '22', 'O': 0, 'N': 0}], ['278.1073576', 'C16H19ClO2', -0.0013557746709693674]]	0.00083702532902	0.636363636364	0	0	4.4373709609	0.833366901927
-acquired_cold_1	negative	278.108713375	768.482729939	2450331.896	[['278.1095504', 'C22H14', 0.0008370253290195251, {'H': '14', 'C': '22', 'O': 0, 'N': 0}], ['278.1073576', 'C16H19ClO2', -0.0013557746709693674]]	0.00083702532902	0.636363636364	0	0	4.86248120695	0.833366901927
-acquired_cold_1	negative	278.108713375	768.482729939	2450331.896	[['278.1095504', 'C22H14', 0.0008370253290195251, {'H': '14', 'C': '22', 'O': 0, 'N': 0}], ['278.1073576', 'C16H19ClO2', -0.0013557746709693674]]	0.00083702532902	0.636363636364	0	0	4.86248120695	0.833366901927
-acquired_cold_1	negative	278.108713375	768.482729939	0.993384303	[['278.1095504', 'C22H14', 0.0008370253290195251, {'H': '14', 'C': '22', 'O': 0, 'N': 0}], ['278.1073576', 'C16H19ClO2', -0.0013557746709693674]]	0.00083702532902	0.636363636364	0	0	1.97128907823E-06	0.833366901927
-acquired_cold_1	negative	278.108713375	768.482729939	0.993384303	[['278.1095504', 'C22H14', 0.0008370253290195251, {'H': '14', 'C': '22', 'O': 0, 'N': 0}], ['278.1073576', 'C16H19ClO2', -0.0013557746709693674]]	0.00083702532902	0.636363636364	0	0	1.97128907823E-06	0.833366901927
-acquired_cold_1	negative	285.10456312	548.790566947	4510083.898	[['285.1034788', 'C13H19NO4S', -0.0010843199110013302, {'H': '19', 'C': '13', 'O': '4', 'N': 1}]]	-0.001084319911	1.46153846154	0.307692307692	0.0769230769231	8.94988888304	0.595125793679
-acquired_cold_1	negative	285.10456312	548.790566947	5300144.38	[['285.1034788', 'C13H19NO4S', -0.0010843199110013302, {'H': '19', 'C': '13', 'O': '4', 'N': 1}]]	-0.001084319911	1.46153846154	0.307692307692	0.0769230769231	10.5176986366	0.595125793679
-acquired_cold_1	negative	285.10456312	548.790566947	5300144.38	[['285.1034788', 'C13H19NO4S', -0.0010843199110013302, {'H': '19', 'C': '13', 'O': '4', 'N': 1}]]	-0.001084319911	1.46153846154	0.307692307692	0.0769230769231	10.5176986366	0.595125793679
-acquired_cold_1	negative	285.10456312	548.790566947	0.718598513	[['285.1034788', 'C13H19NO4S', -0.0010843199110013302, {'H': '19', 'C': '13', 'O': '4', 'N': 1}]]	-0.001084319911	1.46153846154	0.307692307692	0.0769230769231	1.42599938013E-06	0.595125793679
-acquired_cold_1	negative	285.10456312	548.790566947	0.718598513	[['285.1034788', 'C13H19NO4S', -0.0010843199110013302, {'H': '19', 'C': '13', 'O': '4', 'N': 1}]]	-0.001084319911	1.46153846154	0.307692307692	0.0769230769231	1.42599938013E-06	0.595125793679
-acquired_cold_1	negative	294.090390927	793.176371384	457818.4418	[['294.0892089', 'C18H14O4', -0.0011820274399951813, {'H': '14', 'C': '18', 'O': '4', 'N': 0}]]	-0.00118202744	0.777777777778	0.222222222222	0	0.908502873868	0.860145465279
-acquired_cold_1	negative	294.090390927	793.176371384	615267.1506	[['294.0892089', 'C18H14O4', -0.0011820274399951813, {'H': '14', 'C': '18', 'O': '4', 'N': 0}]]	-0.00118202744	0.777777777778	0.222222222222	0	1.22094682844	0.860145465279
-acquired_cold_1	negative	294.090390927	793.176371384	615267.1506	[['294.0892089', 'C18H14O4', -0.0011820274399951813, {'H': '14', 'C': '18', 'O': '4', 'N': 0}]]	-0.00118202744	0.777777777778	0.222222222222	0	1.22094682844	0.860145465279
-acquired_cold_1	negative	294.090390927	793.176371384	0.967395122	[['294.0892089', 'C18H14O4', -0.0011820274399951813, {'H': '14', 'C': '18', 'O': '4', 'N': 0}]]	-0.00118202744	0.777777777778	0.222222222222	0	1.9197156957E-06	0.860145465279
-acquired_cold_1	negative	294.090390927	793.176371384	0.967395122	[['294.0892089', 'C18H14O4', -0.0011820274399951813, {'H': '14', 'C': '18', 'O': '4', 'N': 0}]]	-0.00118202744	0.777777777778	0.222222222222	0	1.9197156957E-06	0.860145465279
-acquired_cold_1	negative	302.111583255	527.36199144	4996657.344	[['302.1114009', 'C12H18N2O7', -0.00018235531598520538, {'H': '18', 'C': '12', 'O': '7', 'N': '2'}]]	-0.000182355315985	1.5	0.583333333333	0.166666666667	9.91545368708	0.571887970775
-acquired_cold_1	negative	302.111583255	527.36199144	10651411.73	[['302.1114009', 'C12H18N2O7', -0.00018235531598520538, {'H': '18', 'C': '12', 'O': '7', 'N': '2'}]]	-0.000182355315985	1.5	0.583333333333	0.166666666667	21.1368465836	0.571887970775
-acquired_cold_1	negative	302.111583255	527.36199144	10651411.73	[['302.1114009', 'C12H18N2O7', -0.00018235531598520538, {'H': '18', 'C': '12', 'O': '7', 'N': '2'}]]	-0.000182355315985	1.5	0.583333333333	0.166666666667	21.1368465836	0.571887970775
-acquired_cold_1	negative	302.111583255	527.36199144	1.335892695	[['302.1114009', 'C12H18N2O7', -0.00018235531598520538, {'H': '18', 'C': '12', 'O': '7', 'N': '2'}]]	-0.000182355315985	1.5	0.583333333333	0.166666666667	2.65096868491E-06	0.571887970775
-acquired_cold_1	negative	302.111583255	527.36199144	1.335892695	[['302.1114009', 'C12H18N2O7', -0.00018235531598520538, {'H': '18', 'C': '12', 'O': '7', 'N': '2'}]]	-0.000182355315985	1.5	0.583333333333	0.166666666667	2.65096868491E-06	0.571887970775
-acquired_cold_1	negative	302.119547774	710.971694931	2654483.145	[['302.118591', 'C17H19ClN2O', -0.0009567739489853011, {'H': '19', 'C': '17', 'O': 1, 'N': '2'}]]	-0.000956773948985	1.11764705882	0.0588235294118	0.117647058824	5.26760249409	0.771000122293
-acquired_cold_1	negative	302.119547774	710.971694931	3384058.056	[['302.118591', 'C17H19ClN2O', -0.0009567739489853011, {'H': '19', 'C': '17', 'O': 1, 'N': '2'}]]	-0.000956773948985	1.11764705882	0.0588235294118	0.117647058824	6.71538362921	0.771000122293
-acquired_cold_1	negative	302.119547774	710.971694931	3384058.056	[['302.118591', 'C17H19ClN2O', -0.0009567739489853011, {'H': '19', 'C': '17', 'O': 1, 'N': '2'}]]	-0.000956773948985	1.11764705882	0.0588235294118	0.117647058824	6.71538362921	0.771000122293
-acquired_cold_1	negative	302.119547774	710.971694931	1.509812566	[['302.118591', 'C17H19ClN2O', -0.0009567739489853011, {'H': '19', 'C': '17', 'O': 1, 'N': '2'}]]	-0.000956773948985	1.11764705882	0.0588235294118	0.117647058824	2.99609830006E-06	0.771000122293
-acquired_cold_1	negative	302.119547774	710.971694931	1.509812566	[['302.118591', 'C17H19ClN2O', -0.0009567739489853011, {'H': '19', 'C': '17', 'O': 1, 'N': '2'}]]	-0.000956773948985	1.11764705882	0.0588235294118	0.117647058824	2.99609830006E-06	0.771000122293
-acquired_cold_1	negative	308.105465693	675.903950207	3977736.064	[['308.104859', 'C19H16O4', -0.0006066931580335222, {'H': '16', 'C': '19', 'O': '4', 'N': 0}]]	-0.000606693158034	0.842105263158	0.210526315789	0	7.8934885878	0.732971554259
-acquired_cold_1	negative	308.105465693	675.903950207	5012528.959	[['308.104859', 'C19H16O4', -0.0006066931580335222, {'H': '16', 'C': '19', 'O': '4', 'N': 0}]]	-0.000606693158034	0.842105263158	0.210526315789	0	9.94694959577	0.732971554259
-acquired_cold_1	negative	308.105465693	675.903950207	5012528.959	[['308.104859', 'C19H16O4', -0.0006066931580335222, {'H': '16', 'C': '19', 'O': '4', 'N': 0}]]	-0.000606693158034	0.842105263158	0.210526315789	0	9.94694959577	0.732971554259
-acquired_cold_1	negative	308.105465693	675.903950207	0.51717351	[['308.104859', 'C19H16O4', -0.0006066931580335222, {'H': '16', 'C': '19', 'O': '4', 'N': 0}]]	-0.000606693158034	0.842105263158	0.210526315789	0	1.02628810293E-06	0.732971554259
-acquired_cold_1	negative	308.105465693	675.903950207	0.51717351	[['308.104859', 'C19H16O4', -0.0006066931580335222, {'H': '16', 'C': '19', 'O': '4', 'N': 0}]]	-0.000606693158034	0.842105263158	0.210526315789	0	1.02628810293E-06	0.732971554259
-acquired_cold_1	negative	322.120765748	607.614859349	3208453.404	[['322.1205091', 'C20H18O4', -0.000256648160984696, {'H': '18', 'C': '20', 'O': '4', 'N': 0}], ['322.1198571', 'C12H22N2O6S', -0.0009086481609870134]]	-0.000256648160985	0.9	0.2	0	6.36691070536	0.658916711038
-acquired_cold_1	negative	322.120765748	607.614859349	3811321.603	[['322.1205091', 'C20H18O4', -0.000256648160984696, {'H': '18', 'C': '20', 'O': '4', 'N': 0}], ['322.1198571', 'C12H22N2O6S', -0.0009086481609870134]]	-0.000256648160985	0.9	0.2	0	7.56325283872	0.658916711038
-acquired_cold_1	negative	322.120765748	607.614859349	3811321.603	[['322.1205091', 'C20H18O4', -0.000256648160984696, {'H': '18', 'C': '20', 'O': '4', 'N': 0}], ['322.1198571', 'C12H22N2O6S', -0.0009086481609870134]]	-0.000256648160985	0.9	0.2	0	7.56325283872	0.658916711038
-acquired_cold_1	negative	322.120765748	607.614859349	0.912302157	[['322.1205091', 'C20H18O4', -0.000256648160984696, {'H': '18', 'C': '20', 'O': '4', 'N': 0}], ['322.1198571', 'C12H22N2O6S', -0.0009086481609870134]]	-0.000256648160985	0.9	0.2	0	1.81038825831E-06	0.658916711038
-acquired_cold_1	negative	322.120765748	607.614859349	0.912302157	[['322.1205091', 'C20H18O4', -0.000256648160984696, {'H': '18', 'C': '20', 'O': '4', 'N': 0}], ['322.1198571', 'C12H22N2O6S', -0.0009086481609870134]]	-0.000256648160985	0.9	0.2	0	1.81038825831E-06	0.658916711038
-acquired_cold_1	negative	323.118294686	497.885341455	3896622.348	[['323.1191289', 'C16H21NO4S', 0.0008342138530110788, {'H': '21', 'C': '16', 'O': '4', 'N': 1}]]	0.000834213853011	1.3125	0.25	0.0625	7.73252511982	0.539922562159
-acquired_cold_1	negative	323.118294686	497.885341455	3936411.663	[['323.1191289', 'C16H21NO4S', 0.0008342138530110788, {'H': '21', 'C': '16', 'O': '4', 'N': 1}]]	0.000834213853011	1.3125	0.25	0.0625	7.81148372814	0.539922562159
-acquired_cold_1	negative	323.118294686	497.885341455	3936411.663	[['323.1191289', 'C16H21NO4S', 0.0008342138530110788, {'H': '21', 'C': '16', 'O': '4', 'N': 1}]]	0.000834213853011	1.3125	0.25	0.0625	7.81148372814	0.539922562159
-acquired_cold_1	negative	323.118294686	497.885341455	0.647258273	[['323.1191289', 'C16H21NO4S', 0.0008342138530110788, {'H': '21', 'C': '16', 'O': '4', 'N': 1}]]	0.000834213853011	1.3125	0.25	0.0625	1.28443056781E-06	0.539922562159
-acquired_cold_1	negative	323.118294686	497.885341455	0.647258273	[['323.1191289', 'C16H21NO4S', 0.0008342138530110788, {'H': '21', 'C': '16', 'O': '4', 'N': 1}]]	0.000834213853011	1.3125	0.25	0.0625	1.28443056781E-06	0.539922562159
-acquired_cold_1	negative	338.116069914	718.150649678	2037207.816	[['338.1154237', 'C20H18O5', -0.0006462136339564495, {'H': '18', 'C': '20', 'O': '5', 'N': 0}]]	-0.000646213633956	0.9	0.25	0	4.04267060153	0.778785207166
-acquired_cold_1	negative	338.116069914	718.150649678	2219218.811	[['338.1154237', 'C20H18O5', -0.0006462136339564495, {'H': '18', 'C': '20', 'O': '5', 'N': 0}]]	-0.000646213633956	0.9	0.25	0	4.40385638378	0.778785207166
-acquired_cold_1	negative	338.116069914	718.150649678	2219218.811	[['338.1154237', 'C20H18O5', -0.0006462136339564495, {'H': '18', 'C': '20', 'O': '5', 'N': 0}]]	-0.000646213633956	0.9	0.25	0	4.40385638378	0.778785207166
-acquired_cold_1	negative	338.116069914	718.150649678	0.527531746	[['338.1154237', 'C20H18O5', -0.0006462136339564495, {'H': '18', 'C': '20', 'O': '5', 'N': 0}]]	-0.000646213633956	0.9	0.25	0	1.0468431665E-06	0.778785207166
-acquired_cold_1	negative	338.116069914	718.150649678	0.527531746	[['338.1154237', 'C20H18O5', -0.0006462136339564495, {'H': '18', 'C': '20', 'O': '5', 'N': 0}]]	-0.000646213633956	0.9	0.25	0	1.0468431665E-06	0.778785207166
-acquired_cold_1	negative	339.129143227	493.622288007	2168240.887	[['339.1297136', 'C24H20P', 0.0005703727180161877, {'H': '20', 'C': '24', 'O': 0, 'N': 0}]]	0.000570372718016	0.833333333333	0	0	4.30269490528	0.535299572589
-acquired_cold_1	negative	339.129143227	493.622288007	2845571.592	[['339.1297136', 'C24H20P', 0.0005703727180161877, {'H': '20', 'C': '24', 'O': 0, 'N': 0}]]	0.000570372718016	0.833333333333	0	0	5.64680172988	0.535299572589
-acquired_cold_1	negative	339.129143227	493.622288007	2845571.592	[['339.1297136', 'C24H20P', 0.0005703727180161877, {'H': '20', 'C': '24', 'O': 0, 'N': 0}]]	0.000570372718016	0.833333333333	0	0	5.64680172988	0.535299572589
-acquired_cold_1	negative	339.129143227	493.622288007	0.658826931	[['339.1297136', 'C24H20P', 0.0005703727180161877, {'H': '20', 'C': '24', 'O': 0, 'N': 0}]]	0.000570372718016	0.833333333333	0	0	1.30738761384E-06	0.535299572589
-acquired_cold_1	negative	339.129143227	493.622288007	0.658826931	[['339.1297136', 'C24H20P', 0.0005703727180161877, {'H': '20', 'C': '24', 'O': 0, 'N': 0}]]	0.000570372718016	0.833333333333	0	0	1.30738761384E-06	0.535299572589
-acquired_cold_1	negative	340.131453725	494.555890332	1420175.882	[['340.1310738', 'C20H20O5', -0.0003799254919840678, {'H': '20', 'C': '20', 'O': '5', 'N': 0}]]	-0.000379925491984	1	0.25	0	2.81822170623	0.536312000387
-acquired_cold_1	negative	340.131453725	494.555890332	1535435.452	[['340.1310738', 'C20H20O5', -0.0003799254919840678, {'H': '20', 'C': '20', 'O': '5', 'N': 0}]]	-0.000379925491984	1	0.25	0	3.04694480042	0.536312000387
-acquired_cold_1	negative	340.131453725	494.555890332	1535435.452	[['340.1310738', 'C20H20O5', -0.0003799254919840678, {'H': '20', 'C': '20', 'O': '5', 'N': 0}]]	-0.000379925491984	1	0.25	0	3.04694480042	0.536312000387
-acquired_cold_1	negative	340.131453725	494.555890332	0.894222876	[['340.1310738', 'C20H20O5', -0.0003799254919840678, {'H': '20', 'C': '20', 'O': '5', 'N': 0}]]	-0.000379925491984	1	0.25	0	1.77451141883E-06	0.536312000387
-acquired_cold_1	negative	340.131453725	494.555890332	0.894222876	[['340.1310738', 'C20H20O5', -0.0003799254919840678, {'H': '20', 'C': '20', 'O': '5', 'N': 0}]]	-0.000379925491984	1	0.25	0	1.77451141883E-06	0.536312000387
-acquired_cold_1	negative	370.083995677	378.24091118	4783097.282	[['370.0850891', 'C18H19NaO5S', 0.0010934229910048998, {'H': '19', 'C': '18', 'O': '5', 'N': 0}]]	0.001093422991	1.05555555556	0.277777777778	0	9.49166138787	0.410176369685
-acquired_cold_1	negative	370.083995677	378.24091118	4394725.851	[['370.0850891', 'C18H19NaO5S', 0.0010934229910048998, {'H': '19', 'C': '18', 'O': '5', 'N': 0}]]	0.001093422991	1.05555555556	0.277777777778	0	8.72097036938	0.410176369685
-acquired_cold_1	negative	370.083995677	378.24091118	4394725.851	[['370.0850891', 'C18H19NaO5S', 0.0010934229910048998, {'H': '19', 'C': '18', 'O': '5', 'N': 0}]]	0.001093422991	1.05555555556	0.277777777778	0	8.72097036938	0.410176369685
-acquired_cold_1	negative	370.083995677	378.24091118	0.884518006	[['370.0850891', 'C18H19NaO5S', 0.0010934229910048998, {'H': '19', 'C': '18', 'O': '5', 'N': 0}]]	0.001093422991	1.05555555556	0.277777777778	0	1.75525290611E-06	0.410176369685
-acquired_cold_1	negative	370.083995677	378.24091118	0.884518006	[['370.0850891', 'C18H19NaO5S', 0.0010934229910048998, {'H': '19', 'C': '18', 'O': '5', 'N': 0}]]	0.001093422991	1.05555555556	0.277777777778	0	1.75525290611E-06	0.410176369685
-acquired_cold_1	negative	382.084659237	731.920207863	23077238.1	[['382.0850979', 'C18H20Cl2N2O3', 0.0004386629860277935, {'H': '20', 'C': '18', 'O': '3', 'N': '2'}], ['382.0859741', 'C12H18N2O12', 0.0013148629860211258]]	0.000438662986028	1.11111111111	0.166666666667	0.111111111111	45.7948724223	0.793717350204
-acquired_cold_1	negative	382.084659237	731.920207863	28403600.37	[['382.0850979', 'C18H20Cl2N2O3', 0.0004386629860277935, {'H': '20', 'C': '18', 'O': '3', 'N': '2'}], ['382.0859741', 'C12H18N2O12', 0.0013148629860211258]]	0.000438662986028	1.11111111111	0.166666666667	0.111111111111	56.3645982955	0.793717350204
-acquired_cold_1	negative	382.084659237	731.920207863	28403600.37	[['382.0850979', 'C18H20Cl2N2O3', 0.0004386629860277935, {'H': '20', 'C': '18', 'O': '3', 'N': '2'}], ['382.0859741', 'C12H18N2O12', 0.0013148629860211258]]	0.000438662986028	1.11111111111	0.166666666667	0.111111111111	56.3645982955	0.793717350204
-acquired_cold_1	negative	382.084659237	731.920207863	0.44612936	[['382.0850979', 'C18H20Cl2N2O3', 0.0004386629860277935, {'H': '20', 'C': '18', 'O': '3', 'N': '2'}], ['382.0859741', 'C12H18N2O12', 0.0013148629860211258]]	0.000438662986028	1.11111111111	0.166666666667	0.111111111111	8.8530685676E-07	0.793717350204
-acquired_cold_1	negative	382.084659237	731.920207863	0.44612936	[['382.0850979', 'C18H20Cl2N2O3', 0.0004386629860277935, {'H': '20', 'C': '18', 'O': '3', 'N': '2'}], ['382.0859741', 'C12H18N2O12', 0.0013148629860211258]]	0.000438662986028	1.11111111111	0.166666666667	0.111111111111	8.8530685676E-07	0.793717350204
-acquired_cold_1	negative	394.140159274	278.77561502	502303.5167	[['394.1416384', 'C23H22O6', 0.0014791258619766268, {'H': '22', 'C': '23', 'O': '6', 'N': 0}]]	0.00147912586198	0.95652173913	0.260869565217	0	0.996779829755	0.302313066476
-acquired_cold_1	negative	394.140159274	278.77561502	640046.7359	[['394.1416384', 'C23H22O6', 0.0014791258619766268, {'H': '22', 'C': '23', 'O': '6', 'N': 0}]]	0.00147912586198	0.95652173913	0.260869565217	0	1.27011986824	0.302313066476
-acquired_cold_1	negative	394.140159274	278.77561502	640046.7359	[['394.1416384', 'C23H22O6', 0.0014791258619766268, {'H': '22', 'C': '23', 'O': '6', 'N': 0}]]	0.00147912586198	0.95652173913	0.260869565217	0	1.27011986824	0.302313066476
-acquired_cold_1	negative	394.140159274	278.77561502	0.351733415	[['394.1416384', 'C23H22O6', 0.0014791258619766268, {'H': '22', 'C': '23', 'O': '6', 'N': 0}]]	0.00147912586198	0.95652173913	0.260869565217	0	6.97985902679E-07	0.302313066476
-acquired_cold_1	negative	394.140159274	278.77561502	0.351733415	[['394.1416384', 'C23H22O6', 0.0014791258619766268, {'H': '22', 'C': '23', 'O': '6', 'N': 0}]]	0.00147912586198	0.95652173913	0.260869565217	0	6.97985902679E-07	0.302313066476
-acquired_cold_1	negative	412.110813295	293.95244398	1	[['412.1124597', 'C21H21ClN4OS', 0.0016464053069853435, {'H': '21', 'C': '21', 'O': 1, 'N': '4'}]]	0.00164640530699	1	0.047619047619	0.190476190476	1.98441738235E-06	0.318771298312
-acquired_cold_1	negative	550.497401135	514.416576261	6239096.472	[['550.4961106', 'C35H66O4', -0.0012905353941050635, {'H': '66', 'C': '35', 'O': '4', 'N': 0}]]	-0.00129053539411	1.88571428571	0.114285714286	0	12.3809714892	0.557849554397
-acquired_cold_1	negative	550.497401135	514.416576261	7036247.273	[['550.4961106', 'C35H66O4', -0.0012905353941050635, {'H': '66', 'C': '35', 'O': '4', 'N': 0}]]	-0.00129053539411	1.88571428571	0.114285714286	0	13.962851395	0.557849554397
-acquired_cold_1	negative	550.497401135	514.416576261	7036247.273	[['550.4961106', 'C35H66O4', -0.0012905353941050635, {'H': '66', 'C': '35', 'O': '4', 'N': 0}]]	-0.00129053539411	1.88571428571	0.114285714286	0	13.962851395	0.557849554397
-acquired_cold_1	negative	550.497401135	514.416576261	0.772187738	[['550.4961106', 'C35H66O4', -0.0012905353941050635, {'H': '66', 'C': '35', 'O': '4', 'N': 0}]]	-0.00129053539411	1.88571428571	0.114285714286	0	1.53234276972E-06	0.557849554397
-acquired_cold_1	negative	550.497401135	514.416576261	0.772187738	[['550.4961106', 'C35H66O4', -0.0012905353941050635, {'H': '66', 'C': '35', 'O': '4', 'N': 0}]]	-0.00129053539411	1.88571428571	0.114285714286	0	1.53234276972E-06	0.557849554397
-acquired_cold_1	negative	596.17292903	510.108375093	15190042.4	[['596.1741204', 'C27H32O15', 0.0011913696919236827, {'H': '32', 'C': '27', 'O': '15', 'N': 0}]]	0.00119136969192	1.18518518519	0.555555555556	0	30.1433841772	0.553177605217
-acquired_cold_1	negative	596.17292903	510.108375093	18748041.74	[['596.1741204', 'C27H32O15', 0.0011913696919236827, {'H': '32', 'C': '27', 'O': '15', 'N': 0}]]	0.00119136969192	1.18518518519	0.555555555556	0	37.2039399139	0.553177605217
-acquired_cold_1	negative	596.17292903	510.108375093	18748041.74	[['596.1741204', 'C27H32O15', 0.0011913696919236827, {'H': '32', 'C': '27', 'O': '15', 'N': 0}]]	0.00119136969192	1.18518518519	0.555555555556	0	37.2039399139	0.553177605217
-acquired_cold_1	negative	596.17292903	510.108375093	0.687629574	[['596.1741204', 'C27H32O15', 0.0011913696919236827, {'H': '32', 'C': '27', 'O': '15', 'N': 0}]]	0.00119136969192	1.18518518519	0.555555555556	0	1.36454407926E-06	0.553177605217
-acquired_cold_1	negative	596.17292903	510.108375093	0.687629574	[['596.1741204', 'C27H32O15', 0.0011913696919236827, {'H': '32', 'C': '27', 'O': '15', 'N': 0}]]	0.00119136969192	1.18518518519	0.555555555556	0	1.36454407926E-06	0.553177605217
-acquired_cold_2	negative	151.027252644	478.986287339	3325815.22	[['151.026943', 'C7H5NO3', -0.00030964440799152726, {'H': '5', 'C': '7', 'O': '3', 'N': 1}]]	-0.000309644407992	0.714285714286	0.428571428571	0.142857142857	6.59980553305	0.519427832004
-acquired_cold_2	negative	153.043243309	295.704858962	31919972.08	[['153.0425931', 'C7H7NO3', -0.0006502092489881761, {'H': '7', 'C': '7', 'O': '3', 'N': 1}]]	-0.000650209248988	1	0.428571428571	0.142857142857	63.3425474397	0.320671672371
-acquired_cold_2	negative	154.040185969	311.833276359	38314213.91	[['154.0394954', 'C4H11O4P', -0.0006905693499845711, {'H': '11', 'C': '4', 'O': '4', 'N': 0}]]	-0.000690569349985	2.75	1	0	76.0313920741	0.338161836712
-acquired_cold_2	negative	162.089577556	152.040443946	2300163.677	[['162.0892089', 'C7H14O4', -0.00036865556100451613, {'H': '14', 'C': '7', 'O': '4', 'N': 0}]]	-0.000368655561005	2	0.571428571429	0	4.56448478289	0.164877451116
-acquired_cold_2	negative	187.083592016	480.379795321	1558034.472	[['187.0844579', 'C8H13NO4', 0.0008658838970063698, {'H': '13', 'C': '8', 'O': '4', 'N': 1}]]	0.000865883897006	1.625	0.5	0.125	3.09179068854	0.520938995997
-acquired_cold_2	negative	189.078126744	439.409526095	13764096.58	[['189.0789786', 'C11H11NO2', 0.0008518564590076494, {'H': '11', 'C': '11', 'O': '2', 'N': 1}]]	0.000851856459008	1	0.181818181818	0.0909090909091	27.3137125057	0.476509544292
-acquired_cold_2	negative	193.057748469	513.214176912	2342799.121	[['193.0586371', 'C6H11NO6', 0.0008886309830131722, {'H': '11', 'C': '6', 'O': '6', 'N': 1}]]	0.000888630983013	1.83333333333	1	0.166666666667	4.64909129907	0.556545634633
-acquired_cold_2	negative	194.058394907	745.96277729	1026299.822	[['194.0579088', 'C10H10O4', -0.00048610695597517406, {'H': '10', 'C': '10', 'O': '4', 'N': 0}]]	-0.000486106955975	1	0.4	0	2.03660720628	0.808945555241
-acquired_cold_2	negative	202.094547934	404.380901513	570724.3075	[['202.0953569', 'C8H14N2O4', 0.0008089656210188423, {'H': '14', 'C': '8', 'O': '4', 'N': '2'}]]	0.000808965621019	1.75	0.5	0.25	1.13255523633	0.438523399374
-acquired_cold_2	negative	204.110235813	922.142129909	530746.9981	[['204.111007', 'C8H16N2O4', 0.000771186995024209, {'H': '16', 'C': '8', 'O': '4', 'N': '2'}]]	0.000771186995024	2	0.5	0.25	1.05322356866	1
-acquired_cold_2	negative	211.083450871	556.414916611	13259981.33	[['211.0844579', 'C10H13NO4', 0.0010070289640111696, {'H': '13', 'C': '10', 'O': '4', 'N': 1}]]	0.00100702896401	1.3	0.4	0.1	26.3133374409	0.603393878844
-acquired_cold_2	negative	219.052458208	452.870979892	561172031.6	[['219.0531578', 'C11H9NO4', 0.0006995918140262347, {'H': '9', 'C': '11', 'O': '4', 'N': 1}]]	0.000699591814026	0.818181818182	0.363636363636	0.0909090909091	1113.599534	0.491107569216
-acquired_cold_2	negative	230.093410186	75.4572130113	1733768.031	[['230.0942943', 'C14H14O3', 0.0008841138660216075, {'H': '14', 'C': '14', 'O': '3', 'N': 0}]]	0.000884113866022	1	0.214285714286	0	3.44051941768	0.0818281808887
-acquired_cold_2	negative	235.047160668	530.800481028	25486450.73	[['235.0480724', 'C11H9NO5', 0.0009117316849938106, {'H': '9', 'C': '11', 'O': '5', 'N': 1}]]	0.000911731684994	0.818181818182	0.454545454545	0.0909090909091	50.575755843	0.575616777297
-acquired_cold_2	negative	235.104605035	63.240476447	49002.29349	[['235.1055873', 'C9H17NO6', 0.0009822648900126296, {'H': '17', 'C': '9', 'O': '6', 'N': 1}]]	0.000982264890013	1.88888888889	0.666666666667	0.111111111111	0.0972410029765	0.0685799665755
-acquired_cold_2	negative	259.11587471	766.684498265	9577640.423	[['259.1168207', 'C10H17N3O5', 0.0009459897630108571, {'H': '17', 'C': '10', 'O': '5', 'N': '3'}]]	0.000945989763011	1.7	0.5	0.3	19.0060361373	0.831416842804
-acquired_cold_2	negative	266.073586235	464.47406321	198352.8285	[['266.072513', 'C12H14N2O3S', -0.0010732350889952613, {'H': '14', 'C': '12', 'O': '3', 'N': '2'}]]	-0.001073235089	1.16666666667	0.25	0.166666666667	0.393614800714	0.503690318602
-acquired_cold_2	negative	266.117786327	361.247668059	1200780.808	[['266.1175552', 'C17H16NO2', -0.00023112667497571238, {'H': '16', 'C': '17', 'O': '2', 'N': 1}], ['266.1167611', 'C15H14N4O', -0.0010252266749830596]]	-0.000231126674976	0.941176470588	0.117647058824	0.0588235294118	2.38285030779	0.391748361063
-acquired_cold_2	negative	270.113722076	344.97883301	5722491.754	[['270.1135056', 'C13H19ClN2O2', -0.00021647569400329303, {'H': '19', 'C': '13', 'O': '2', 'N': '2'}]]	-0.000216475694003	1.46153846154	0.153846153846	0.153846153846	11.355812107	0.374105923394
-acquired_cold_2	negative	276.073473663	531.081953388	3200868.478	[['276.0721768', 'C11H11F3N2O3', -0.0012968625699727454, {'H': '11', 'C': '11', 'O': '3', 'N': '2'}]]	-0.00129686256997	1	0.272727272727	0.181818181818	6.35185904636	0.575922014798
-acquired_cold_2	negative	278.108713375	768.482729939	2447200.06	[['278.1095504', 'C22H14', 0.0008370253290195251, {'H': '14', 'C': '22', 'O': 0, 'N': 0}], ['278.1073576', 'C16H19ClO2', -0.0013557746709693674]]	0.00083702532902	0.636363636364	0	0	4.85626633715	0.833366901927
-acquired_cold_2	negative	285.10456312	548.790566947	5561833.162	[['285.1034788', 'C13H19NO4S', -0.0010843199110013302, {'H': '19', 'C': '13', 'O': '4', 'N': 1}]]	-0.001084319911	1.46153846154	0.307692307692	0.0769230769231	11.0369984044	0.595125793679
-acquired_cold_2	negative	294.090390927	793.176371384	659869.3861	[['294.0892089', 'C18H14O4', -0.0011820274399951813, {'H': '14', 'C': '18', 'O': '4', 'N': 0}]]	-0.00118202744	0.777777777778	0.222222222222	0	1.30945627986	0.860145465279
-acquired_cold_2	negative	302.111583255	527.36199144	10989905.22	[['302.1114009', 'C12H18N2O7', -0.00018235531598520538, {'H': '18', 'C': '12', 'O': '7', 'N': '2'}]]	-0.000182355315985	1.5	0.583333333333	0.166666666667	21.8085589489	0.571887970775
-acquired_cold_2	negative	302.119547774	710.971694931	3768367.354	[['302.118591', 'C17H19ClN2O', -0.0009567739489853011, {'H': '19', 'C': '17', 'O': 1, 'N': '2'}]]	-0.000956773948985	1.11764705882	0.0588235294118	0.117647058824	7.47801368036	0.771000122293
-acquired_cold_2	negative	308.105465693	675.903950207	5183377.143	[['308.104859', 'C19H16O4', -0.0006066931580335222, {'H': '16', 'C': '19', 'O': '4', 'N': 0}]]	-0.000606693158034	0.842105263158	0.210526315789	0	10.2859837018	0.732971554259
-acquired_cold_2	negative	322.120765748	607.614859349	3871299.124	[['322.1205091', 'C20H18O4', -0.000256648160984696, {'H': '18', 'C': '20', 'O': '4', 'N': 0}], ['322.1198571', 'C12H22N2O6S', -0.0009086481609870134]]	-0.000256648160985	0.9	0.2	0	7.68227327394	0.658916711038
-acquired_cold_2	negative	323.118294686	497.885341455	4459770.377	[['323.1191289', 'C16H21NO4S', 0.0008342138530110788, {'H': '21', 'C': '16', 'O': '4', 'N': 1}]]	0.000834213853011	1.3125	0.25	0.0625	8.85004585741	0.539922562159
-acquired_cold_2	negative	338.116069914	718.150649678	2151095.928	[['338.1154237', 'C20H18O5', -0.0006462136339564495, {'H': '18', 'C': '20', 'O': '5', 'N': 0}]]	-0.000646213633956	0.9	0.25	0	4.26867215062	0.778785207166
-acquired_cold_2	negative	339.129143227	493.622288007	3117280.627	[['339.1297136', 'C24H20P', 0.0005703727180161877, {'H': '20', 'C': '24', 'O': 0, 'N': 0}]]	0.000570372718016	0.833333333333	0	0	6.18598586188	0.535299572589
-acquired_cold_2	negative	340.131453725	494.555890332	1487278.708	[['340.1310738', 'C20H20O5', -0.0003799254919840678, {'H': '20', 'C': '20', 'O': '5', 'N': 0}]]	-0.000379925491984	1	0.25	0	2.95138172055	0.536312000387
-acquired_cold_2	negative	370.083995677	378.24091118	4787932.836	[['370.0850891', 'C18H19NaO5S', 0.0010934229910048998, {'H': '19', 'C': '18', 'O': '5', 'N': 0}]]	0.001093422991	1.05555555556	0.277777777778	0	9.50125714528	0.410176369685
-acquired_cold_2	negative	382.084659237	731.920207863	29475065.81	[['382.0850979', 'C18H20Cl2N2O3', 0.0004386629860277935, {'H': '20', 'C': '18', 'O': '3', 'N': '2'}], ['382.0859741', 'C12H18N2O12', 0.0013148629860211258]]	0.000438662986028	1.11111111111	0.166666666667	0.111111111111	58.4908329393	0.793717350204
-acquired_cold_2	negative	394.140159274	278.77561502	603092.1097	[['394.1416384', 'C23H22O6', 0.0014791258619766268, {'H': '22', 'C': '23', 'O': '6', 'N': 0}]]	0.00147912586198	0.95652173913	0.260869565217	0	1.19678646565	0.302313066476
-acquired_cold_2	negative	550.497401135	514.416576261	6965936.689	[['550.4961106', 'C35H66O4', -0.0012905353941050635, {'H': '66', 'C': '35', 'O': '4', 'N': 0}]]	-0.00129053539411	1.88571428571	0.114285714286	0	13.82332585	0.557849554397
-acquired_cold_2	negative	596.17292903	510.108375093	19734855.43	[['596.1741204', 'C27H32O15', 0.0011913696919236827, {'H': '32', 'C': '27', 'O': '15', 'N': 0}]]	0.00119136969192	1.18518518519	0.555555555556	0	39.1621901534	0.553177605217
-acquired_cold_3	negative	151.027252644	478.986287339	2740044.015	[['151.026943', 'C7H5NO3', -0.00030964440799152726, {'H': '5', 'C': '7', 'O': '3', 'N': 1}]]	-0.000309644407992	0.714285714286	0.428571428571	0.142857142857	5.43739097177	0.519427832004
-acquired_cold_3	negative	153.043243309	295.704858962	31961428.2	[['153.0425931', 'C7H7NO3', -0.0006502092489881761, {'H': '7', 'C': '7', 'O': '3', 'N': 1}]]	-0.000650209248988	1	0.428571428571	0.142857142857	63.4248136848	0.320671672371
-acquired_cold_3	negative	154.040185969	311.833276359	39221156.6	[['154.0394954', 'C4H11O4P', -0.0006905693499845711, {'H': '11', 'C': '4', 'O': '4', 'N': 0}]]	-0.000690569349985	2.75	1	0	77.8311449129	0.338161836712
-acquired_cold_3	negative	162.089577556	152.040443946	1895535.866	[['162.0892089', 'C7H14O4', -0.00036865556100451613, {'H': '14', 'C': '7', 'O': '4', 'N': 0}]]	-0.000368655561005	2	0.571428571429	0	3.76153432136	0.164877451116
-acquired_cold_3	negative	187.083592016	480.379795321	1593160.903	[['187.0844579', 'C8H13NO4', 0.0008658838970063698, {'H': '13', 'C': '8', 'O': '4', 'N': 1}]]	0.000865883897006	1.625	0.5	0.125	3.16149618879	0.520938995997
-acquired_cold_3	negative	189.078126744	439.409526095	14864969.33	[['189.0789786', 'C11H11NO2', 0.0008518564590076494, {'H': '11', 'C': '11', 'O': '2', 'N': 1}]]	0.000851856459008	1	0.181818181818	0.0909090909091	29.4983035265	0.476509544292
-acquired_cold_3	negative	193.057748469	513.214176912	2383075.433	[['193.0586371', 'C6H11NO6', 0.0008886309830131722, {'H': '11', 'C': '6', 'O': '6', 'N': 1}]]	0.000888630983013	1.83333333333	1	0.166666666667	4.72901631269	0.556545634633
-acquired_cold_3	negative	194.058394907	745.96277729	1561593.452	[['194.0579088', 'C10H10O4', -0.00048610695597517406, {'H': '10', 'C': '10', 'O': '4', 'N': 0}]]	-0.000486106955975	1	0.4	0	3.09885319031	0.808945555241
-acquired_cold_3	negative	202.094547934	404.380901513	766517.3832	[['202.0953569', 'C8H14N2O4', 0.0008089656210188423, {'H': '14', 'C': '8', 'O': '4', 'N': '2'}]]	0.000808965621019	1.75	0.5	0.25	1.52109041909	0.438523399374
-acquired_cold_3	negative	204.110235813	922.142129909	646734.5568	[['204.111007', 'C8H16N2O4', 0.000771186995024209, {'H': '16', 'C': '8', 'O': '4', 'N': '2'}]]	0.000771186995024	2	0.5	0.25	1.28339129628	1
-acquired_cold_3	negative	211.083450871	556.414916611	14662068.16	[['211.0844579', 'C10H13NO4', 0.0010070289640111696, {'H': '13', 'C': '10', 'O': '4', 'N': 1}]]	0.00100702896401	1.3	0.4	0.1	29.0956629179	0.603393878844
-acquired_cold_3	negative	219.052458208	452.870979892	553023266	[['219.0531578', 'C11H9NO4', 0.0006995918140262347, {'H': '9', 'C': '11', 'O': '4', 'N': 1}]]	0.000699591814026	0.818181818182	0.363636363636	0.0909090909091	1097.42898189	0.491107569216
-acquired_cold_3	negative	230.093410186	75.4572130113	1460506.566	[['230.0942943', 'C14H14O3', 0.0008841138660216075, {'H': '14', 'C': '14', 'O': '3', 'N': 0}]]	0.000884113866022	1	0.214285714286	0	2.89825461661	0.0818281808887
-acquired_cold_3	negative	235.047160668	530.800481028	23564359.1	[['235.0480724', 'C11H9NO5', 0.0009117316849938106, {'H': '9', 'C': '11', 'O': '5', 'N': 1}]]	0.000911731684994	0.818181818182	0.454545454545	0.0909090909091	46.761523802	0.575616777297
-acquired_cold_3	negative	235.104605035	63.240476447	16485.79667	[['235.1055873', 'C9H17NO6', 0.0009822648900126296, {'H': '17', 'C': '9', 'O': '6', 'N': 1}]]	0.000982264890013	1.88888888889	0.666666666667	0.111111111111	0.0327147014738	0.0685799665755
-acquired_cold_3	negative	259.11587471	766.684498265	8711674.217	[['259.1168207', 'C10H17N3O5', 0.0009459897630108571, {'H': '17', 'C': '10', 'O': '5', 'N': '3'}]]	0.000945989763011	1.7	0.5	0.3	17.2875977456	0.831416842804
-acquired_cold_3	negative	266.073586235	464.47406321	29070.47086	[['266.072513', 'C12H14N2O3S', -0.0010732350889952613, {'H': '14', 'C': '12', 'O': '3', 'N': '2'}]]	-0.001073235089	1.16666666667	0.25	0.166666666667	0.0576879476877	0.503690318602
-acquired_cold_3	negative	266.117786327	361.247668059	2092002.188	[['266.1175552', 'C17H16NO2', -0.00023112667497571238, {'H': '16', 'C': '17', 'O': '2', 'N': 1}], ['266.1167611', 'C15H14N4O', -0.0010252266749830596]]	-0.000231126674976	0.941176470588	0.117647058824	0.0588235294118	4.15140550578	0.391748361063
-acquired_cold_3	negative	270.113722076	344.97883301	5262239.426	[['270.1135056', 'C13H19ClN2O2', -0.00021647569400329303, {'H': '19', 'C': '13', 'O': '2', 'N': '2'}]]	-0.000216475694003	1.46153846154	0.153846153846	0.153846153846	10.442479387	0.374105923394
-acquired_cold_3	negative	276.073473663	531.081953388	2861737.795	[['276.0721768', 'C11H11F3N2O3', -0.0012968625699727454, {'H': '11', 'C': '11', 'O': '3', 'N': '2'}]]	-0.00129686256997	1	0.272727272727	0.181818181818	5.67888222412	0.575922014798
-acquired_cold_3	negative	278.108713375	768.482729939	2667687.94	[['278.1095504', 'C22H14', 0.0008370253290195251, {'H': '14', 'C': '22', 'O': 0, 'N': 0}], ['278.1073576', 'C16H19ClO2', -0.0013557746709693674]]	0.00083702532902	0.636363636364	0	0	5.29380631882	0.833366901927
-acquired_cold_3	negative	285.10456312	548.790566947	5828516.081	[['285.1034788', 'C13H19NO4S', -0.0010843199110013302, {'H': '19', 'C': '13', 'O': '4', 'N': 1}]]	-0.001084319911	1.46153846154	0.307692307692	0.0769230769231	11.5662086244	0.595125793679
-acquired_cold_3	negative	294.090390927	793.176371384	728113.6238	[['294.0892089', 'C18H14O4', -0.0011820274399951813, {'H': '14', 'C': '18', 'O': '4', 'N': 0}]]	-0.00118202744	0.777777777778	0.222222222222	0	1.44488133139	0.860145465279
-acquired_cold_3	negative	302.111583255	527.36199144	15967672.61	[['302.1114009', 'C12H18N2O7', -0.00018235531598520538, {'H': '18', 'C': '12', 'O': '7', 'N': '2'}]]	-0.000182355315985	1.5	0.583333333333	0.166666666667	31.6865270829	0.571887970775
-acquired_cold_3	negative	302.119547774	710.971694931	3729323.669	[['302.118591', 'C17H19ClN2O', -0.0009567739489853011, {'H': '19', 'C': '17', 'O': 1, 'N': '2'}]]	-0.000956773948985	1.11764705882	0.0588235294118	0.117647058824	7.40053471317	0.771000122293
-acquired_cold_3	negative	308.105465693	675.903950207	5876473.67	[['308.104859', 'C19H16O4', -0.0006066931580335222, {'H': '16', 'C': '19', 'O': '4', 'N': 0}]]	-0.000606693158034	0.842105263158	0.210526315789	0	11.6613764977	0.732971554259
-acquired_cold_3	negative	322.120765748	607.614859349	4354212.283	[['322.1205091', 'C20H18O4', -0.000256648160984696, {'H': '18', 'C': '20', 'O': '4', 'N': 0}], ['322.1198571', 'C12H22N2O6S', -0.0009086481609870134]]	-0.000256648160985	0.9	0.2	0	8.64057454082	0.658916711038
-acquired_cold_3	negative	323.118294686	497.885341455	3452842.266	[['323.1191289', 'C16H21NO4S', 0.0008342138530110788, {'H': '21', 'C': '16', 'O': '4', 'N': 1}]]	0.000834213853011	1.3125	0.25	0.0625	6.85188021116	0.539922562159
-acquired_cold_3	negative	338.116069914	718.150649678	2469352.688	[['338.1154237', 'C20H18O5', -0.0006462136339564495, {'H': '18', 'C': '20', 'O': '5', 'N': 0}]]	-0.000646213633956	0.9	0.25	0	4.90022639722	0.778785207166
-acquired_cold_3	negative	339.129143227	493.622288007	3251193.264	[['339.1297136', 'C24H20P', 0.0005703727180161877, {'H': '20', 'C': '24', 'O': 0, 'N': 0}]]	0.000570372718016	0.833333333333	0	0	6.45172442646	0.535299572589
-acquired_cold_3	negative	340.131453725	494.555890332	1698851.767	[['340.1310738', 'C20H20O5', -0.0003799254919840678, {'H': '20', 'C': '20', 'O': '5', 'N': 0}]]	-0.000379925491984	1	0.25	0	3.37123097647	0.536312000387
-acquired_cold_3	negative	370.083995677	378.24091118	3613147.434	[['370.0850891', 'C18H19NaO5S', 0.0010934229910048998, {'H': '19', 'C': '18', 'O': '5', 'N': 0}]]	0.001093422991	1.05555555556	0.277777777778	0	7.16999257302	0.410176369685
-acquired_cold_3	negative	382.084659237	731.920207863	32658497.21	[['382.0850979', 'C18H20Cl2N2O3', 0.0004386629860277935, {'H': '20', 'C': '18', 'O': '3', 'N': '2'}], ['382.0859741', 'C12H18N2O12', 0.0013148629860211258]]	0.000438662986028	1.11111111111	0.166666666667	0.111111111111	64.8080895449	0.793717350204
-acquired_cold_3	negative	394.140159274	278.77561502	814744.5814	[['394.1416384', 'C23H22O6', 0.0014791258619766268, {'H': '22', 'C': '23', 'O': '6', 'N': 0}]]	0.00147912586198	0.95652173913	0.260869565217	0	1.61679330951	0.302313066476
-acquired_cold_3	negative	550.497401135	514.416576261	7903708.657	[['550.4961106', 'C35H66O4', -0.0012905353941050635, {'H': '66', 'C': '35', 'O': '4', 'N': 0}]]	-0.00129053539411	1.88571428571	0.114285714286	0	15.684256844	0.557849554397
-acquired_cold_3	negative	596.17292903	510.108375093	21319227.41	[['596.1741204', 'C27H32O15', 0.0011913696919236827, {'H': '32', 'C': '27', 'O': '15', 'N': 0}]]	0.00119136969192	1.18518518519	0.555555555556	0	42.3062454507	0.553177605217
--- a/test-data/tabular.tabular	Tue Jul 10 17:58:35 2018 -0400
+++ b/test-data/tabular.tabular	Thu Dec 20 00:36:04 2018 -0500
@@ -1,4 +1,4 @@
-sample_id	polarity	mz	rt	intensity
+sample_name	polarity	mz	rt	intensity
 control_2	negative	58.0649616577	66.4569085128	2436019.067
 control_3	negative	58.0649616577	66.4569085128	2244732.895
 control_recovery_1	negative	58.0649616577	66.4569085128	5468467.966
--- a/vkmz.py	Tue Jul 10 17:58:35 2018 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,239 +0,0 @@
-import argparse
-import csv
-import math
-import re
- 
-parser = argparse.ArgumentParser()
-inputSubparser = parser.add_subparsers(help='Select input type:', dest='input-type')
-parse_tsv = inputSubparser.add_parser('tsv', help='Use tabular data as input.')
-parse_tsv.add_argument('--input', '-i', required=True, help='Path to tabular file. Must include columns: sample ID, mz, polarity, intensity, & retention time.')
-parse_xcms = inputSubparser.add_parser('xcms', help='Use XCMS data as input.')
-parse_xcms.add_argument('--data-matrix', '-xd', required=True, nargs='?', type=str, help='Path to XCMS data matrix file.')
-parse_xcms.add_argument('--sample-metadata', '-xs', required=True, nargs='?', type=str, help='Path to XCMS sample metadata file.')
-parse_xcms.add_argument('--variable-metadata', '-xv', required=True, nargs='?', type=str, help='Path to XCMS variable metadata file.')
-for inputSubparser in [parse_tsv, parse_xcms]:
-  inputSubparser.add_argument('--output',   '-o', nargs='?', type=str, required=True, help='Specify output file path.')
-  inputSubparser.add_argument('--error',    '-e', nargs='?', type=float, required=True, help='Mass error of mass spectrometer in parts-per-million.')
-  inputSubparser.add_argument('--database', '-db', nargs='?', default='databases/bmrb-light.tsv', help='Select database of known formula masses.')
-  inputSubparser.add_argument('--directory','-dir', nargs='?', default='', type=str, help='Define path of tool directory. Assumes relative path if unset.')
-  inputSubparser.add_argument('--polarity', '-p', choices=['positive','negative'], help='Force polarity mode to positive or negative. Overrides variables in input file.')
-  inputSubparser.add_argument('--neutral',  '-n', action='store_true', help='Set neutral flag if masses in input data are neutral. No mass adjustmnet will be made.')
-  inputSubparser.add_argument('--unique',   '-u', action='store_true', help='Set flag to remove features with multiple predictions.')
-args = parser.parse_args()
-
-# store input constants
-INPUT_TYPE = getattr(args, "input-type")
-POLARITY = getattr(args, "polarity")
-
-def polaritySanitizer(sample_polarity):
-  if sample_polarity.lower() in {'positive','pos','+'}:
-    sample_polarity = 'positive'
-  elif sample_polarity.lower() in {'negative', 'neg', '-'}:
-    sample_polarity = 'negative'
-  else:
-    print('A sample has an unknown polarity type: %s. Polarity in the XCMS sample metadata should be set to "negative" or "positive".' % sample_polarity)
-    raise ValueError
-  return sample_polarity
-
-# read input
-vkInput = [] # each element is a feature from input
-if INPUT_TYPE == "tsv":
-  tsvFile = getattr(args, "input")
-  try:
-    with open(tsvFile, 'r') as f:
-      next(f) # skip hearder line
-      tsvData = csv.reader(f, delimiter='\t')
-      for row in tsvData:
-        vkInput.append([row[0],polaritySanitizer(row[1]),float(row[2]),float(row[3]),float(row[4])])
-  except ValueError:
-    print('The %s data file could not be read.' % tsvFile)
-else: # INPUT_TYPE == "xcms"
-  xcmsSampleMetadataFile = getattr(args, "sample_metadata")
-  try:
-    polarity = {}
-    with open(xcmsSampleMetadataFile, 'r') as f:
-      xcmsSampleMetadata = csv.reader(f, delimiter='\t')
-      next(xcmsSampleMetadata, None) # skip header
-      for row in xcmsSampleMetadata:
-        sample = row[0]
-        if POLARITY:
-          polarity[sample] = POLARITY
-        else:
-          sample_polarity = polaritySanitizer(row[2])
-          polarity[sample] = sample_polarity
-  except ValueError:
-    print('The %s data file could not be read. Check that polarity is set to "negative" or "positive"' % xcmsSampleMetadataFile)
-  xcmsVariableMetadataFile = getattr(args, "variable_metadata")
-  try:
-    mz = {}
-    rt = {}
-    variable_index = {}
-    mz_index = int()
-    rt_index = int()
-    with open(xcmsVariableMetadataFile, 'r') as f:
-      xcmsVariableMetadata = csv.reader(f, delimiter='\t')
-      i = 0
-      for row in xcmsVariableMetadata:
-        if i != 0:
-          mz[row[0]] = float(row[mz_index])
-          rt[row[0]] = float(row[rt_index])
-        else:
-          for column in row:
-            variable_index[column] = i
-            i += 1
-          mz_index = variable_index["mz"]
-          rt_index = variable_index["rt"]
-  except ValueError:
-    print('The %s data file could not be read.' % xcmsVariableMetadataFile)
-  xcmsDataMatrixFile = getattr(args, "data_matrix")
-  try:
-    with open(xcmsDataMatrixFile, 'r') as f:
-      xcmsDataMatrix = csv.reader(f, delimiter='\t')
-      first_row = True
-      for row in xcmsDataMatrix:
-        if first_row:
-          sample_id = row
-          first_row = False
-        else: 
-          i = 0
-          while(i < len(row)):
-            if i == 0:
-              i+=1
-            else:
-              intensity = row[i]
-              if intensity not in {'NA', '#DIV/0!', '0'}:
-                variable = row[0]
-                sample = sample_id[i]
-                # XCMS data may include empty columns
-                if sample != "":
-                  vkInput.append([sample, polarity[sample], mz[variable], rt[variable], float(intensity)])
-            i+=1
-  except ValueError:
-    print('The %s data file could not be read.' % xcmsDataMatrixFile)
-
-# store||generate remaining constants
-OUTPUT = getattr(args, "output")
-MASS_ERROR = getattr(args, "error")
-UNIQUE = getattr(args, "unique")
-NEUTRAL = getattr(args, "neutral")
-DATABASE = getattr(args, "database")
-DIRECTORY = getattr(args, "directory")
-MASS = []
-FORMULA = []
-try:
-  with open(DIRECTORY+DATABASE, 'r') as tsv:
-    for row in tsv:
-      mass, formula = row.split()
-      MASS.append(mass)
-      FORMULA.append(formula)
-except ValueError:
-  print('The %s database could not be loaded.' % DATABASE)
-MAX_MASS_INDEX = len(MASS)-1
-
-# adjust charged mass to a neutral mass
-def adjust(mass, polarity):
-  # value to adjust by
-  proton = 1.007276
-  if polarity == 'positive':
-    mass -= proton
-  else: # sanitized to negative
-    mass += proton
-  return mass
-
-# binary search to match a neutral mass to known mass within error
-def predict(mass, uncertainty, left, right):
-  mid = ((right - left) / 2) + left
-  if left <= mid <= right and mid <= MAX_MASS_INDEX:
-    delta = float(MASS[mid]) - mass
-    if uncertainty >= abs(delta):
-      return mid
-    elif uncertainty < delta:
-      return predict(mass, uncertainty, left, mid-1)
-    else:
-      return predict(mass, uncertainty, mid+1, right)
-  return -1
-
-# find and rank predictions which are adjacent to the index of an intial prediction
-def predictNeighbors(mass, uncertainty, prediction):
-  i = 0
-  neighbors = [[MASS[prediction],FORMULA[prediction],(float(MASS[prediction])-mass)],]
-  while prediction+i+1 <= MAX_MASS_INDEX:
-    neighbor = prediction+i+1
-    delta = float(MASS[neighbor])-mass
-    if uncertainty >= abs(delta):
-      neighbors.append([MASS[neighbor],FORMULA[neighbor],delta])
-      i += 1
-    else:
-      break
-  i = 0
-  while prediction+i-1 >= 0:
-    neighbor = prediction+i-1
-    delta = float(MASS[neighbor])-mass
-    if uncertainty >= abs(delta):
-      neighbors.append([MASS[neighbor],FORMULA[neighbor],(float(MASS[neighbor])-mass)])
-      i -= 1
-    else:
-      break
-  neighbors = sorted(neighbors, key = (lambda delta: abs(delta[2])))
-  return neighbors
-
-# predict formulas by the mass of a feature
-def featurePrediction(feature):
-  if NEUTRAL:
-    mass = feature[2]
-  else:
-    mass = adjust(feature[2], feature[1]) # mz & polarity
-  uncertainty = mass * MASS_ERROR / 1e6
-  prediction = predict(mass, uncertainty, 0, MAX_MASS_INDEX)
-  if prediction != -1: # else feature if forgotten
-    predictions = predictNeighbors(mass, uncertainty, prediction)
-    if UNIQUE and len(predictions) > 1:
-      return
-    feature.append(predictions) # feature[5]
-    formula = predictions[0][1] # formula of prediction with lowest abs(delta)
-    formulaList = re.findall('[A-Z][a-z]?|[0-9]+', formula)
-    formulaDictionary = {'C':0,'H':0,'O':0,'N':0} # other elements are easy to add
-    i = 0;
-    while i < len(formulaList):
-      if formulaList[i] in formulaDictionary:
-        # if there is only one of this element
-        if i+1 == len(formulaList) or formulaList[i+1].isalpha():
-          formulaDictionary[formulaList[i]] = 1
-        else:
-          formulaDictionary[formulaList[i]] = formulaList[i+1]
-          i+=1
-      i+=1
-    hc = float(formulaDictionary['H'])/float(formulaDictionary['C'])
-    oc = float(formulaDictionary['O'])/float(formulaDictionary['C'])
-    nc = float(formulaDictionary['N'])/float(formulaDictionary['C'])
-    feature += [hc, oc, nc] # feature[6], [7], [8]
-    return(feature)
- 
-# write output file
-def write(vkData):
-  json = ''
-  try: 
-    # write tabular file and generate json for html output
-    with open(OUTPUT+'.tsv', 'w') as f: 
-      f.writelines(str("sample_id\tpolarity\tmz\trt\tintensity\tpredictions\thc\toc\tnc") + '\n')
-      for feature in vkData:
-        f.writelines(feature[0]+'\t'+feature[1]+'\t'+str(feature[2])+'\t'+str(feature[3])+'\t'+str(feature[4])+'\t'+str(feature[5])+'\t'+str(feature[6])+'\t'+str(feature[7])+'\t'+str(feature[8])+'\n')
-        json += '{sample_id:\''+str(feature[0])+'\', polarity:\''+str(feature[1])+'\', mz:'+str(feature[2])+', rt:'+str(feature[3])+', intensity:'+str(feature[4])+', predictions:'+str(feature[5])+', hc:'+str(feature[6])+', oc:'+str(feature[7])+', nc:'+str(feature[8])+'},'
-    json = json[:-1] # remove final comma
-    # write html
-    try:
-      with open(DIRECTORY+'d3.html', 'r') as template, open(OUTPUT+'.html', 'w') as f:
-       for line in template:
-         line = re.sub('^var data.*$', 'var data = ['+json+']', line, flags=re.M)
-         f.write(line)
-    except ValueError:
-      print('"%s" could not be read or "%s" could not be written' % template, f)
-  except ValueError:
-    print('"%s" could not be saved.' % filename)
-
-# main
-vkData = map(featurePrediction, vkInput)
-vkData = [x for x in vkData if x is not None]
-# sort by intensity so D3 draws largest symbols first
-vkData.sort(key=lambda x: x[4], reverse=True)
-write(vkData)
--- a/vkmz.xml	Tue Jul 10 17:58:35 2018 -0400
+++ b/vkmz.xml	Thu Dec 20 00:36:04 2018 -0500
@@ -1,9 +1,10 @@
-<tool id="VKMZ" name="VKMZ" version="1.2.0">
+<tool id="vkmz" name="vkmz" version="1.4dev1">
 
-  <description>metabolomics formula prediction and van Krevelen diagram generation</description>
+  <description>Metabolomics formula prediction and van Krevelen diagram generation</description>
   
   <requirements>
-    <requirement type="package" version="2.7">python</requirement>
+    <requirement type="package" version="3.6">python</requirement>
+    <requirement type="package" version="v1.4dev1">vkmz</requirement>
   </requirements>
   
   <stdio>
@@ -11,45 +12,53 @@
   </stdio>
 
   <command detect_errors="aggressive"><![CDATA[
-    python $__tool_directory__/vkmz.py
-    #if str( $mode.mode_selector ) == "xcms":
+    vkmz
+    #if str( $mode.mode_selector ) == "w4m":
       xcms
       --data-matrix $mode.datamatrix
       --sample-metadata $mode.samplemetadata
       --variable-metadata $mode.variablemetadata
-    #elif str( $mode.mode_selector ) == "tsv":
-      tsv
+    #elif str( $mode.mode_selector ) == "tabular":
+      tabular
       --input $mode.input
     #end if
-    #if $advanced_input.polarity=="negative":
+    --error $prediction.error
+    --database $prediction.database_type.database
+    --output vkmz
+    #if $advanced_input.polarity == "negative":
       --polarity negative
-    #else if $advanced_input.polarity=="positive":
+    #else if $advanced_input.polarity == "positive":
       --polarity positive
     #end if
-    #if $advanced_input.no_adjustment=="True":
-      --no-adjustment
+    #if $advanced_input.impute_charge == "True":
+      --impute_charge
+    #end if
+    #if $advanced_input.neutral == "True":
+      --neutral
     #end if
-    --output vkmz
-    --error $prediction.error
-    --database $prediction.database_type.database
-    #if $prediction.unique=="True":
-      --unique
+    #if $advanced_input.alternate == "True":
+      --alternate
     #end if
-    --directory $__tool_directory__/
+    #if $advanced_output.json == "True":
+      --json
+    #end if
+    #if $advanced_output.sql == "True":
+      --sql
+    #end if
   ]]></command>
 
   <inputs>
     <conditional name="mode">
       <param name="mode_selector" type="select" label="Input Data">
-        <option value="xcms">xcms</option>
-        <option value="tsv">tsv</option>
+        <option value="w4m">w4m</option>
+        <option value="tabular">tabular</option>
       </param>
-      <when value="xcms">
-        <param name="datamatrix" label="XCMS Data Matrix" type="data" format="tabular" help="Select XCMS data matrix" />
-        <param name="samplemetadata" label="XCMS Sample Metadata" type="data" format="tabular" help="Select XCMS sample metadata" />
-        <param name="variablemetadata" label="XCMS Variable Metadata" type="data" format="tabular" help="Select XCMS variable metadata" />
+      <when value="w4m">
+        <param name="datamatrix" label="W4M-XCMS Data Matrix" type="data" format="tabular" help="Select W4M-XCMS data matrix" />
+        <param name="samplemetadata" label="W4M-XCMS Sample Metadata" type="data" format="tabular" help="Select W4M-XCMS sample metadata" />
+        <param name="variablemetadata" label="W4M-XCMS Variable Metadata" type="data" format="tabular" help="Select W4M-XCMS variable metadata" />
       </when>
-      <when value="tsv">
+      <when value="tabular">
         <param name="input" label="Tabular input" type="data" format="tabular" help="Select tabular data" />
       </when>
     </conditional>
@@ -59,7 +68,9 @@
         <option value="negative">Negative</option>
         <option value="positive">Positive</option>
       </param>
-      <param name="no_adjustment" label="Disable polarity based mass adjustment" type="boolean" truevalue="True" help="Use this option if data contains neutral masses." />
+      <param name="neutral" label="Disable polarity based mass adjustment" type="boolean" truevalue="True" help="Use this option if data contains neutral masses." />
+      <param name="alternate" label="Keep feature's with more than one prediction" type="boolean" truevalue="False" help="Keeping features with multiple predictions raises the false discovery rate." />
+      <param name="impute_charge" label="Impute Charge" type="boolean" truevalue="True" help="If impute data in annotated with charge information, features with no (null) charge valeus are removed. Setting Impute Charge to True imputes a charge for all of these features instead." />
     </section>
     <section name="prediction" title="Prediction Options" expanded="true">
       <param name="error" label="Mass Error (PPM)" type="float" value="10.0" min="0" help="Set according to expected mass error in parts-per-million" />
@@ -80,52 +91,41 @@
           <param name="database" label="Database" type="data" format="tabular" help="Select a custom tabular database" />
         </when>
       </conditional>
-      <param name="unique" label="Unique matches" type="boolean" truevalue="True" help="Only output features with a single prediction" />
+    </section>
+    <section name="advanced_output" title="Advanced Output Options" expanded="false">
+      <param name="json" label="JSON" type="boolean" truevalue="False" help="Save results to JSON." />
+      <param name="sql" label="SQL" type="boolean" truevalue="False" help="Save results to sqlite." />
     </section>
   </inputs>
   <outputs>
-    <data format="tabular" name="output" from_work_dir="vkmz.tsv" label="${tool.name}_${mode.mode_selector}_tabular" />
+    <data format="tabular" name="output_tabular" from_work_dir="vkmz.tabular" label="${tool.name}_${mode.mode_selector}_tabular" />
     <data format="html" name="output_html" from_work_dir="vkmz.html" label="${tool.name}_${mode.mode_selector}_html" />
+    <data format="json" name="output_json" from_work_dir="vkmz.json" label="${tool.name}_${mode.mode_selector}_json" />
+    <data format="sqlite" name="output_sqlite" from_work_dir="vkmz.db" label="${tool.name}_${mode.mode_selector}_sqlite" />
   </outputs>
 
   <tests>
     <test>
       <conditional name="mode">
-        <param name="mode_selector" value="xcms" />
+        <param name="mode_selector" value="w4m" />
         <param name="datamatrix" value="datamatrix.tabular" />
         <param name="samplemetadata" value="sampleMetadata.tabular" />
         <param name="variablemetadata" value="variableMetadata.tabular" />
       </conditional>
       <param name="error" value="10" />
       <param name="database" value="databases/bmrb-light.tsv" />
-      <output name="output">
+      <output name="output_tabular">
         <assert_contents>
-          <has_text text="0.00016357" />
+      	  <has_text text="C6H7NO2" />
         </assert_contents>
       </output>
     </test>
-    <test>
-      <conditional name="mode">
-        <param name="mode_selector" value="tsv" />
-        <param name="input" value="tabular.tabular" />
-      </conditional>
-      <param name="error" value="10" />
-      <conditional name="database_type">
-        <param name="database" value="databases/bmrb-light.tsv" />
-      </conditional>
-      <output name="output">
-        <assert_contents>
-          <has_text text="0.00016357" />
-        </assert_contents>
-      </output>
-    </test>
-
   </tests>
 
   <help><![CDATA[
-==========
-VKMZ 1.2.0
-==========
+============
+VKMZ 1.4dev1
+============
 
 VKMZ is a metabolomics prediction and vizualization tool which creates van Krevelen diagrams from mass spectrometry data. A van Krevelen diagram (VKD) plots a molecule on a scatterplot by the molecules oxygen to carbon ratio (O:C) against it's hydrogen to carbon ratio (H:C). Classes of metabolites cluster together on a VKD [0]. Plotting a complex mixture of metabolites on a VKD briefly conveys untargeted metabolomics data.
 
@@ -135,9 +135,9 @@
 
 **Input Data**
 
-VKMZ is designed to use XCMS [1] or tabular data as input.
+VKMZ is designed to use W4M-XCMS [1] or tabular data as input.
 
-*XCMS* mode requires three files which XCMS generates: the data matrix, sample metadata, and variable metadata files.
+*W4M* mode requires three files which W4M's XCMS wrapper generates: the data matrix, sample metadata, and variable metadata files.
 
 *Tabular* mode requires a tab delimited file with the first five columns being: sample_id, polarity, mz, retention_time, and intensity.
 
@@ -145,7 +145,7 @@
 
 *Override polarity* allows users to set the polarity of all features to either *Positive* or *Negative*. Set this if input does not contain the correct polarity information. This option should not be used if data contains both positive and negative polarity.
 
-*Disable mass adjustment* prevents converting charged masses to neutral masses.
+*Neutral* disable mass adjustment of features in case nominal exact mass information is present instead of m/z.
 
 **Prediction Options**
 
@@ -155,8 +155,6 @@
 
 *Database* can be set to the provided heuristically generated databases for unlabeled and labeled molecules [2] or to a custom database.
 
-*Unique matches* removes features from the output which have multiple predictions. High mass molecules are affected by this filter more than low mass molecules. This is due to the increased number of possible elemental combinations at a higher mass.
-
 **Tabular Output**
 
 Tabular output contians the columns: sample_id, polarity, mz, rt (retentnion time), intensity, predictions (list of list-elements which contains: predicted mz, predicted formula, and predicted delta), hc (hydrogen to carbon ratio), oc, nc.
@@ -195,3 +193,4 @@
   </citations>
 
 </tool>
+