changeset 0:43b60b28ccf7 draft

"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
author recetox
date Mon, 07 Dec 2020 22:14:48 +0000
parents
children d9c9ec0e2bd8
files ramclustr_csv.xml ramclustr_macros.xml ramclustr_wrapper.R test-data/fill.msp test-data/metadata.txt test-data/ramclustObj.rdata test-data/spec_abundance.csv test-data/xcmsObj.rdata.xcms.fillpeaks
diffstat 8 files changed, 2535 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ramclustr_csv.xml	Mon Dec 07 22:14:48 2020 +0000
@@ -0,0 +1,92 @@
+<tool id="ramclustr_csv" name="RAMClustR (CSV)" version="@TOOL_VERSION@+galaxy0">
+    <macros>
+        <import>ramclustr_macros.xml</import>
+    </macros>
+
+    <requirements>
+        <container type="docker">recetox/ramclustr:1.1.0-recetox0</container>
+    </requirements>
+
+    <inputs>
+        <expand macro="parameters_csv" />
+        <expand macro="parameters_required" />
+        <expand macro="parameters_optional" />
+    </inputs>
+
+    <command detect_errors="aggressive"><![CDATA[
+        Rscript
+            -e 'source("${__tool_directory__}/ramclustr_wrapper.R")'
+            -e 'x <- ramclustr_csv(
+                ms="$ms_csv.ms",
+                idmsms="$ms_csv.idmsms",
+                feature_delimiter="$ms_csv.feature_delimiter",
+                sample_name_column = $ms_csv.sample_name_column,
+                retention_time_column= $ms_csv.retention_time_column,
+                sr = $required.sr,
+                deep_split = $required.deepSplit,
+                block_size = $required.blocksize,
+                mult = $required.mult,
+                hmax = $required.hmax,
+                collapse = $required.collapse,
+                use_pheno = $required.usePheno,
+                qc_inj_range = $required.qc_inj_range,
+                normalize = "$required.normalize",
+                min_module_size = $required.minModuleSize,
+                linkage = "$required.linkage",
+                mzdec = $required.mzdec,
+                cor_method = "$required.cor_method",
+                rt_only_low_n = $required.rt_only_low_n,
+                replace_zeros = $required.replace_zeros,
+                #if $optional.st
+                    st = $optional.st,
+                #end if
+                #if $optional.maxt
+                    maxt = $optional.maxt,
+                #end if
+                #if $optional.fftempdir
+                    fftempdir = $optional.fftempdir,
+                #end if
+                )'
+            -e 'store_output(x, "$result", "$method_metadata", $required.merge_msp, "$spec_abundance")'
+
+    ]]>
+    </command>
+
+    <outputs>
+        <data label="${tool.name} on ${on_string}" name="result" format="RData" />
+        <data label="Spec Abundance of ${on_string}" name="spec_abundance" format="csv" />
+        <data label="Metadata for ${tool.name} on ${on_string}" name="method_metadata" format="txt"/>
+        <expand macro="output_msp"/>
+    </outputs>
+
+    <help>
+    Documentation
+        For documentation on the tool see https://github.com/cbroeckl/RAMClustR/blob/master/vignettes/RAMClustR.Rmd
+
+    Upstream Tools
+        +-------+------------------------+--------+------------+
+        | Name  | Output File            | Format | Parameter  |
+        +=======+========================+========+============+
+        | ???   | Feature Table with MS1 | csv    | ms         |
+        +-------+------------------------+--------+------------+
+        | ???   | Feature Table with MS2 | csv    | idmsms     |
+        +-------+------------------------+--------+------------+
+
+        The tool takes a **csv** table as input which has to fulfill the following requirements
+
+        (1) no more than one sample (or file) name column and one feature name row;
+        (2) feature names that contain the mass and retention times, separated by a constant delimiter; and
+        (3) features in columns and samples in rows.
+
+    Downstream Tools
+        +---------+--------------+----------------------+
+        | Name    | Output File  | Format               |
+        +=========+==============+======================+
+        | matchMS | Mass Spectra | collection (tgz/msp) |
+        +---------+--------------+----------------------+
+
+    @GENERAL_HELP@
+    </help>
+
+    <expand macro="citations" />
+</tool>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ramclustr_macros.xml	Mon Dec 07 22:14:48 2020 +0000
@@ -0,0 +1,135 @@
+<macros>
+    <token name="@TOOL_VERSION@">1.1.0</token>
+
+    <xml name="parameters_csv">
+        <section name="ms_csv" title="Input MS Data as CSV" expanded="true">
+            <param label="ms" name="ms" type="data" format="csv" help="Features as columns, rows as samples. Column header mz_rt" />
+            <param label="idmsms" name="idmsms" type="data" format="csv" optional="true" help="Optional idMSMS / MSe csv data.  same dim and names as ms required" />
+            <param label="sample_name_column" name="sample_name_column" type="integer" value="1" help="which column from the csv file contains sample names?" />
+            <param label="feature_delimiter" name="feature_delimiter" type="text" value="_" help="Only required if ms input is set! How feature mz and rt are delimited in csv import column header e.g. ='-'" />
+            <param label="retention_time_column" name="retention_time_column" type="integer" value="2" help="which position in delimited column header represents the retention time (csv only)" />
+        </section>
+    </xml>
+
+    <xml name="parameters_excluded">
+        <param label="MStag" name="MStag" type="text" optional="true" help="character string in 'taglocation' to designat MS / MSe files e.g. '01.cdf'" />
+        <param label="idMSMStag" name="idMSMStag" type="text" optional="true" help="character string in 'taglocation' to designat idMSMS / MSe files e.g. '02.cdf'" />
+        <param label="taglocation" name="taglocation" type="text" value="filepaths" help="'filepaths' by default, 'phenoData[,1]' is another option. refers to xcms slot" />
+    </xml>
+
+    <xml name="parameters_required">
+        <section name="required" title="Required Parameters" expanded="true">
+            <param label="sr" name="sr" type="float" value="0.5" help="sigma r - correlational similarity decay value" />
+            <param label="deepSplit" name="deepSplit" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" help="controls how agressively the HCA tree is cut - see ?cutreeDynamicTree" />
+            <param label="blocksize" name="blocksize" type="integer" value="2000" help="number of features (scans?) processed in one block  =1000," />
+            <param label="mult" name="mult" type="integer" value="5" help="internal value, can be used to influence processing speed/ram usage" />
+            <param label="hmax" name="hmax" type="float" value="0.3" help="precut the tree at this height, default 0.3 - see ?cutreeDynamicTree" />
+            <param label="collapse" name="collapse" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" help="reduce feature intensities to spectrum intensities?" />
+            <param label="usePheno" name="usePheno" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" help="transfer phenotype data from XCMS object to SpecAbund dataset?" />
+            <!--
+            Currently not forwarded because the MSP is exported always manually afterwards
+            <param label="mspout" name="mspout" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" help="write msp formatted spectra to file?" />
+            -->
+            <param label="normalize" name="normalize" type="select" display="radio" help="either 'none', 'TIC', 'quantile', or 'batch.qc' normalization of feature intensities.  see batch.qc overview in details. ">
+                <option value="none" selected="true">none</option>
+                <option value="TIC">TIC</option>
+                <option value="quantile">quantile</option>
+                <option value="batch.qc">batch.qc</option>
+            </param>
+            <param label="qc_inj_range" name="qc_inj_range" type="integer" value="20" help="how many injections around each injection are to be scanned for presence of QC samples when using batch.qc normalization?  A good rule of thumb is between 1 and 3 times the typical injection span between QC injections.  i.e. if you inject QC ever 7 samples, set this to between 7 and 21.  smaller values provide more local precision but make normalization sensitive to individual poor outliers (though these are first removed using the boxplot function outlier detection), while wider values provide less local precision in normalization but better stability to individual peak areas." />
+
+            <param label="minModuleSize" name="minModuleSize" type="integer" value="2" help="how many features must be part of a cluster to be returned? default = 2" />
+            <param label="linkage" name="linkage" type="select" display="radio" value="average" help="hierarchical clustering linkage method - see ?hclust">
+                <option value="average" selected="true">average</option>
+                <option value="ward.D">ward.D</option>
+                <option value="ward.D2">ward.D2</option>
+                <option value="single">single</option>
+                <option value="complete">complete</option>
+                <option value="mcquitty">mcquitty</option>
+                <option value="median">median</option>
+                <option value="centroid">centroid</option>
+            </param>
+
+            <param label="mzdec" name="mzdec" type="integer" value="3" help="number of decimal places used in printing m/z values" />
+            <param label="cor_method" name="cor_method" type="select" display="radio" value="pearson" help="which correlational method used to calculate 'r' - see ?cor">
+                <option value="pearson" selected="true">pearson</option>
+                <option value="everything">everything</option>
+                <option value="spearman">spearman</option>
+                <option value="kendall">kendall</option>
+            </param>
+
+            <param label="rt_only_low_n" name="rt_only_low_n" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" help="At low injection numbers, correlational relationships of peak intensities may be unreliable.  by defualt ramclustR will simply ignore the correlational r value and cluster on retention time alone.  if you wish to use correlation with at n less than 5, set this value to FALSE." />
+            <param label="replace_zeros" name="replace_zeros" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" help="NA, NaN, and Inf values are replaced with zero, and zero values are sometimes returned from peak peaking.  When TRUE, zero values will be replaced with a small amount of noise, with noise level set based on the detected signal intensities for that feature. " />
+            <param label="Merge MSP Files" name="merge_msp" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" help="Whether to merge all msp in one file or export one msp per spectra"/>
+        </section>
+    </xml>
+
+    <xml name="parameters_optional">
+        <section name="optional" title="Optional Parameters" expanded="false">
+            <param label="st" name="st" type="float" optional="true" help="sigma t - time similarity decay value " />
+            <param label="fftempdir" name="fftempdir" type="text" optional="true" help="valid path: if there are file size limitations on the default ff pacakge temp directory  - getOptions('fftempdir') - you can change the directory used as the fftempdir with this option." />
+            <param label="maxt" name="maxt" type="integer" optional="true" help="maximum time difference to calculate retention similarity for - all values beyond this are assigned similarity of zero" />
+        </section>
+    </xml>
+
+    <xml name="parameters_optional_metadata">
+        <section name="metadata" title="Optional Metadata" expanded="false">
+            <param label="batch" name="batch" type="integer" optional="true" help="vector with length equal to number of injections in xset or csv file" />
+            <param label="order" name="order" type="integer" optional="true" help="vector with length equal to number of injections in xset or csv file" />
+            <param label="qc" name="qc" type="boolean" truevalue="TRUE" falsevalue="FALSE" optional="true" help=" vector with length equal to number of injections in xset or csv file.  " />
+            <param label="ExpDes" name="ExpDes" type="data" format="RData" optional="true" help=" an R object created by R ExpDes object: data used for record keeping and labelling msp spectral output" />
+        </section>
+    </xml>
+
+    <xml name="parameters_define_experiment">
+        <section name="define_experiment" title="Define Experiment" expanded="false">
+            <param label="Experiment" name="experiment" type="text" help="experiment name, no spaces" />
+            <param label="Species" name="species" type="text" help="species name" />
+            <param label="Sample" name="sample" type="text" help="sample type" />
+            <param label="Contributor" name="contributor" type="text" help="individual and/or organizational affiliation" />
+            <param label="Platform" name="platform" type="select" display="radio" help="platform">
+                <option value="GC-MS" selected="true">GC-MS</option>
+                <option value="LC-MS">LC-MS</option>
+            </param>
+        </section>
+    </xml>
+
+    <xml name="output_msp">
+        <collection label="Mass spectra from ${tool.name} on ${on_string}" name="mass_spectra" type="list">
+            <discover_datasets pattern="__name_and_ext__" directory="spectra" recurse="true" ext="msp" />
+        </collection>
+    </xml>
+
+    <token name="@GENERAL_HELP@">
+    Background
+        Metabolomics
+            Metabolomics is frequently performed using chromatographically coupled mass spectrometry, with gas chromatography, liquid chromatography, and capillary electrophoresis being the most frequently utilized methods of separation.  The coupling of chromatography to mass spectrometry is enabled with an appropriate ionization source - electron impact (EI) for gas phase separations and electrospray ionization (ESI) for liquid phase separations. XCMS is a commonly used tool to detect all the signals from a metabolomics dataset, generating aligned features, where a feature is represented by a mass and retention time.  Each feature is presumed to derive from a single compound.  However, each compound is represented by several features.  With any ionization method, isotopic peaks will be observed reflective of the elemental composition of the analyte.  In EI, fragmentation is a byproduct of ionization, and has driven the generation of large mass spectral libraries.  In ESI, in-source fragmentation frequently occurs, the magnitude of which is compound dependent, with more labile compounds being more prone to in-source fragmentation.  ESI can also product multiple adduct forms (protonated, potassiated, sodiated, ammoniated...), and can produce multimers (i.e. [2M+H]+, [3M+K]+, etc) and multiple charged species ([M+2H]++).  This can become further complicated by considering combinations of these phenomena.  For example [2M+3H]+++ (triply charged dimer) or an in-source fragment of a dimer.
+    
+        RAMClustR approach
+            RAMClustR was designed to group features designed from the same compound using an approach which is __1.__ unsupervised, __2.__ platform agnosic, and __3.__ devoid of curated rules, as the depth of understanding of these processes is insufficent to enable accurate curation/prediction of all phenomenon that may occur.  We acheive this by making two assumptions.  The first is that two features derived from the same compound with have (approximately) the same retention time.  The second is that two features derived from the same compound will have (approximately) the same quantitative trend across all samples in the xcms sample set.  From these assumptions, we can calculate a retention time similarity score and a correlational similarity score for each feature pair.  A high similarity score for both retention time and correlation indicates a strong probability that two features derive from the same compound.  Since both conditions must be met, the product of the two similarity scores provides the best approximatio of the total similarity score - i.e. a feature pair with retention time similarity of 1 and correlational similarity of 0 is unlikely to derive from one compound - 1 x 0 = 0, the final similarity score is zero, indicating the two features represent two different compounds.  Similarly, a feature pair with retention time similarity of 0 and correlational similarity of 1 is unlikely to derive from one compound - 0 x 1 = 0.  Alternatively - a feature pair with retention time similarity of 1 and correlational similarity of 1 is likely to derive from one compound - 1 x 1 = 1.  
+
+
+            The RAMClustR algorithm is built on creating similarity scores for all pairs of features, submitting this score matrix for heirarchical clustering, and then cutting the resulting dendrogram into neat chunks using the dynamicTreeCut package - where each 'chunk' of the dendrogram results in a group of features likely to be derived from a single compound.  Importantly, this is acheived without looking for specific phenomenon (i.e. sodiation), meaning that grouping can be performed on any dataset, whether it is poisitive or negative ionization mode, EI or ESI, LC-MS GC-MS or CE-MS, in-source fragment or complex adduction event, and predictable or unpredictable signals.  
+    </token>
+
+    <xml name="citations">
+    <citations>
+        <!-- Example of annotating a citation using a BibTex entry. -->
+        <citation type="bibtex">
+            @article{Broeckling2014e,
+            abstract = {Metabolomic data are frequently acquired using chromatographically coupled mass spectrometry (MS) platforms. For such datasets, the first step in data analysis relies on feature detection, where a feature is defined by a mass and retention time. While a feature typically is derived from a single compound, a spectrum of mass signals is more a more-accurate representation of the mass spectrometric signal for a given metabolite. Here, we report a novel feature grouping method that operates in an unsupervised manner to group signals from MS data into spectra without relying on predictability of the in-source phenomenon. We additionally address a fundamental bottleneck in metabolomics, annotation of MS level signals, by incorporating indiscriminant MS/MS (idMS/MS) data implicitly: feature detection is performed on both MS and idMS/MS data, and feature-feature relationships are determined simultaneously from the MS and idMS/MS data. This approach facilitates identification of metabolites using in-source MS and/or idMS/MS spectra from a single experiment, reduces quantitative analytical variation compared to single-feature measures, and decreases false positive annotations of unpredictable phenomenon as novel compounds. This tool is released as a freely available R package, called RAMClustR, and is sufficiently versatile to group features from any chromatographic-spectrometric platform or feature-finding software. {\textcopyright} 2014 American Chemical Society.},
+            author = {Broeckling, C. D. and Afsar, F. A. and Neumann, S. and Ben-Hur, A. and Prenni, J. E.},
+            doi = {10.1021/ac501530d},
+            issn = {15206882},
+            journal = {Analytical Chemistry},
+            number = {14},
+            pages = {6812--6817},
+            pmid = {24927477},
+            title = {{RAMClust: A novel feature clustering method enables spectral-matching-based annotation for metabolomics data}},
+            volume = {86},
+            year = {2014}
+            }
+        </citation>
+    </citations>
+    </xml>
+</macros>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ramclustr_wrapper.R	Mon Dec 07 22:14:48 2020 +0000
@@ -0,0 +1,113 @@
+store_output <- function(
+    ramclustr_obj,
+    output_filename,
+    output_method_metadata,
+    output_merge_msp,
+    output_spec_abundance) {
+    save(ramclustr_obj, file = output_filename)
+    RAMClustR::write.methods(ramclustr_obj, output_method_metadata)
+    RAMClustR::write.msp(ramclustr_obj, one.file = output_merge_msp)
+    write.csv(ramclustr_obj$SpecAbund, file = output_spec_abundance, row.names = TRUE)
+}
+
+ramclustr_xcms <- function(
+    input_xcms,
+    sr,
+    deep_split,
+    block_size,
+    mult,
+    hmax,
+    collapse,
+    use_pheno,
+    qc_inj_range,
+    normalize,
+    min_module_size,
+    linkage,
+    mzdec,
+    cor_method,
+    rt_only_low_n,
+    replace_zeros,
+    st = NULL,
+    maxt = NULL,
+    fftempdir = NULL
+) {
+    obj <- load(input_xcms)
+
+    x <- RAMClustR::ramclustR(
+        xcmsObj = xdata,
+        st = st,
+        maxt = maxt,
+        sr = sr,
+        deepSplit = deep_split,
+        blocksize = block_size,
+        mult = mult,
+        hmax = hmax,
+        collapse = collapse,
+        usePheno = use_pheno,
+        mspout = FALSE,
+        qc.inj.range = qc_inj_range,
+        normalize = normalize,
+        minModuleSize = min_module_size,
+        linkage = linkage,
+        mzdec = mzdec,
+        cor.method = cor_method,
+        rt.only.low.n = rt_only_low_n,
+        fftempdir = fftempdir,
+        replace.zeros = replace_zeros
+        )
+    return(x)
+}
+
+ramclustr_csv <- function(
+    ms,
+    idmsms,
+    sample_name_column,
+    feature_delimiter,
+    retention_time_column,
+    sr,
+    deep_split,
+    block_size,
+    mult,
+    hmax,
+    collapse,
+    use_pheno,
+    qc_inj_range,
+    normalize,
+    min_module_size,
+    linkage,
+    mzdec,
+    cor_method,
+    rt_only_low_n,
+    replace_zeros,
+    st = NULL,
+    maxt = NULL,
+    fftempdir = NULL
+) {
+    x <- RAMClustR::ramclustR(
+        ms = ms,
+        idmsms = idmsms,
+        featdelim = feature_delimiter,
+        timepos = retention_time_column,
+        sampNameCol = sample_name_column,
+        st = st,
+        maxt = maxt,
+        sr = sr,
+        deepSplit = deep_split,
+        blocksize = block_size,
+        mult = mult,
+        hmax = hmax,
+        collapse = collapse,
+        usePheno = use_pheno,
+        mspout = FALSE,
+        qc.inj.range = qc_inj_range,
+        normalize = normalize,
+        minModuleSize = min_module_size,
+        linkage = linkage,
+        mzdec = mzdec,
+        cor.method = cor_method,
+        rt.only.low.n = rt_only_low_n,
+        fftempdir = fftempdir,
+        replace.zeros = replace_zeros
+        )
+        return(x)
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/fill.msp	Mon Dec 07 22:14:48 2020 +0000
@@ -0,0 +1,2165 @@
+NAME:C001
+IONMODE:Negative
+RETENTIONTIME:38.74
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:57
+216.9205 32607700
+256.8215 31377637
+175.0641 26780143
+206.9034 26130980
+254.8252 23747536
+198.8647 21688594
+196.8658 21390430
+372.7383 19374863
+258.8237 15532799
+382.8218 12815572
+488.6825 12267966
+392.7685 10913351
+316.7777 10734168
+440.7322 10603010
+138.9121 10186226
+312.7841 10051801
+434.7287 9943329
+266.8652 9805546
+370.7418 9765463
+450.7016 8762673
+324.9549 8619910
+428.7834 8554675
+384.8177 8311500
+442.7401 8271752
+200.8848 7742528
+492.744 7662344
+494.8953 7188793
+546.6093 7177067
+498.8794 6811405
+500.8484 6520691
+322.8157 6317648
+350.9875 6150799
+550.6949 6104789
+426.7772 5431633
+566.5977 5171811
+510.763 4989757
+486.7743 4886062
+460.7076 4528973
+484.7242 4273989
+518.7415 4243468
+334.849 4178412
+413.2664 3965867
+436.8161 3705247
+502.7832 3567833
+342.8093 3285552
+366.8281 3253770
+306.9914 3169316
+268.8537 3090354
+800.4451 2792137
+186.1095 2675456
+234.0134 2550129
+462.7862 2123666
+349.9455 2050695
+612.6927 2005587
+676.6436 1982714
+351.941 1965882
+148.9337 1008656
+
+NAME:C002
+IONMODE:Negative
+RETENTIONTIME:520.25
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:35
+525.375 1073323842
+310.1623 295359836
+526.3783 181668883
+1047.7378 150394804
+551.3321 111616808
+1048.7399 90978863
+289.6491 46498377
+312.0296 38757284
+1075.1968 33352763
+1049.7432 29946438
+552.3348 28340614
+813.5403 25060147
+527.3812 23642795
+309.1649 18045974
+301.1565 15185412
+311.1658 13124727
+330.6757 12666597
+624.296 11790213
+1076.2004 10417953
+578.2905 7578406
+562.3269 7538206
+1050.7453 6807767
+267.2688 6103973
+814.5336 5865975
+1069.7158 5074652
+619.3008 4742103
+1216.8041 4439324
+1206.3127 3738816
+1217.807 3565334
+1074.1979 3402288
+553.3314 2609936
+955.1171 2322927
+1101.6535 2023916
+131.1733 1971789
+279.0196 1946255
+
+NAME:C003
+IONMODE:Negative
+RETENTIONTIME:483.67
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:26
+522.3565 4089569222
+523.354 1201714423
+288.6414 202172046
+1043.7028 144351468
+1044.7068 83271854
+549.3267 63300808
+279.6362 29849749
+1045.706 27998321
+1058.1594 20718345
+1071.1639 15461047
+378.2093 15309961
+796.9808 13576738
+809.9883 12596682
+265.2529 11366224
+280.6546 8848921
+576.2749 7386007
+1059.1626 6608764
+810.9916 6601055
+1046.7131 6505178
+797.9841 6368973
+1072.1671 5096642
+625.4543 4040374
+379.1966 2902366
+577.3074 2354251
+617.2778 2323470
+266.2564 1420444
+
+NAME:C004
+IONMODE:Negative
+RETENTIONTIME:473.48
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:24
+496.34 12577588056
+497.3442 3337125302
+991.6726 1420557258
+992.6749 763118028
+498.3462 532285213
+993.6787 239161906
+296.147 190395687
+1017.6897 168186952
+482.3247 145772322
+1018.6656 120599518
+499.3493 68176083
+1019.6555 57647644
+994.6801 53549573
+770.964 49250157
+483.3283 36245876
+275.6336 28001849
+771.9675 22666873
+1020.6591 12469103
+783.9721 9839299
+949.6233 8009033
+124.1405 6517662
+950.6274 3674694
+784.9749 3622908
+170.2437 1237313
+
+NAME:C005
+IONMODE:Negative
+RETENTIONTIME:41.72
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:20
+337.0623 88672453
+359.0443 48435582
+353.0361 37061354
+375.018 29159485
+218.1386 14009249
+417.0027 13822994
+381.0261 13522755
+438.9851 11307111
+396.9999 10317665
+454.9592 9820452
+432.9764 9779399
+338.0654 8770055
+360.0459 5025128
+418.9966 4386311
+512.8989 4072570
+456.9603 3774845
+470.9263 3632486
+572.871 3485486
+440.9796 3364168
+376.0216 2740193
+
+NAME:C006
+IONMODE:Negative
+RETENTIONTIME:452.08
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:19
+494.3249 803829845
+495.3278 207959661
+542.3239 193323900
+543.3276 55501736
+1087.6715 34676828
+516.3076 24092471
+274.6257 21694276
+1088.6773 21466528
+1001.658 11852076
+1089.682 9948820
+290.6256 9704443
+1061.6562 9417442
+987.6411 7453650
+1037.6578 7076912
+1062.6592 5657208
+484.3311 5283943
+265.6196 4371245
+988.6455 3739523
+471.1945 2160605
+
+NAME:C007
+IONMODE:Negative
+RETENTIONTIME:568.2
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:15
+358.2442 106872298
+234.1324 59050456
+188.0007 52041531
+239.2372 26344305
+477.2519 11827163
+585.9028 8902947
+357.238 7379522
+426.2308 5286033
+240.2407 4459744
+233.1437 3922399
+222.6244 3385929
+186.0063 3083451
+221.2257 2567396
+189.0039 2523814
+229.0269 867587
+
+NAME:C008
+IONMODE:Negative
+RETENTIONTIME:429.17
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:15
+286.1443 678064374
+287.1479 122889402
+376.2598 104678013
+393.2867 29696724
+398.2416 23513763
+377.263 22500000
+308.126 22425844
+593.2789 15955209
+201.0585 12214676
+475.3648 10668083
+115.0544 5827739
+309.1297 4382098
+256.26 2558551
+236.1231 1734151
+444.2974 1144591
+
+NAME:C009
+IONMODE:Negative
+RETENTIONTIME:456.73
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:14
+520.3407 5225209356
+521.3439 1495548391
+1039.675 296334239
+1040.6772 169704741
+287.6336 113569471
+278.6264 17428500
+997.6248 14800316
+1021.6269 12502966
+1067.6364 10969869
+806.9648 10540710
+335.1682 10461098
+539.2937 5768815
+807.9689 5556917
+130.1826 3436249
+
+NAME:C010
+IONMODE:Negative
+RETENTIONTIME:438.79
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:13
+468.3091 298660480
+469.3122 74605200
+492.3091 14962230
+500.2783 12422814
+470.3144 10513291
+490.2906 10495863
+282.1334 7996578
+381.2584 6633225
+298.6263 5761949
+564.3067 4795194
+501.282 3263594
+183.0814 2981313
+491.2968 2431955
+
+NAME:C011
+IONMODE:Negative
+RETENTIONTIME:465.31
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:13
+546.3555 383799553
+547.3446 131983322
+184.0736 110532874
+1041.6834 90837006
+1042.6858 34768516
+528.3083 30967171
+504.3095 29428619
+1066.6536 18333740
+125 16887384
+300.6409 12001615
+529.3094 8108676
+505.3163 6772098
+782.9657 2439709
+
+NAME:C012
+IONMODE:Negative
+RETENTIONTIME:39.22
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:11
+96.9225 62967962
+272.7962 13679316
+212.8395 8994833
+404.6892 8814347
+288.779 8191056
+290.7977 4568865
+422.7095 4562755
+170.8763 4123908
+420.6603 3664599
+480.6509 3562470
+154.8822 2030207
+
+NAME:C013
+IONMODE:Negative
+RETENTIONTIME:39.48
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:11
+203.0531 167631100
+249.0624 25609635
+227.0272 16535154
+264.9601 15156116
+169.0486 13872724
+389.1367 13765849
+226.0764 9468969
+506.6274 6372061
+250.0554 3024291
+122.0613 1727162
+726.5993 1311674
+
+NAME:C014
+IONMODE:Negative
+RETENTIONTIME:39.33
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:11
+176.0633 15979877
+210.0505 15449502
+390.7218 11447541
+448.6698 9824962
+402.7508 6210443
+332.7687 6016647
+452.7387 5475678
+444.6803 4780956
+564.5853 3917503
+268.0083 1320856
+632.5996 1288164
+
+NAME:C015
+IONMODE:Negative
+RETENTIONTIME:458.34
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:11
+544.3404 1225750896
+545.3439 374466023
+1063.6731 134466308
+570.3554 115918953
+1064.6791 79612422
+571.3534 37301377
+1065.6812 34277415
+559.3 18421012
+818.9649 6824176
+133.0392 2377532
+592.3319 1860147
+
+NAME:C016
+IONMODE:Negative
+RETENTIONTIME:38.05
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:10
+225.0469 59892950
+152.0216 58787867
+200.0631 54989442
+125.9853 20256452
+154.0796 17471055
+117.0558 8912239
+123.0133 6506577
+214.0165 5828884
+128.0168 3493680
+262.1042 1191413
+
+NAME:C017
+IONMODE:Negative
+RETENTIONTIME:39.26
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:10
+135.0046 68491054
+308.8763 7782902
+310.8765 7492963
+261.0198 6541108
+326.8343 5180455
+251.1353 4829854
+320.9624 4504376
+236.9895 3334317
+192.9904 3145024
+262.9367 1798075
+
+NAME:C018
+IONMODE:Negative
+RETENTIONTIME:454.48
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:10
+478.2937 332073307
+502.294 203097896
+479.2975 82619606
+503.2971 56245739
+1079.1344 12647964
+396.3107 5070738
+1080.1364 4163189
+460.2793 3911971
+819.9685 3407741
+979.5825 2776558
+
+NAME:C019
+IONMODE:Negative
+RETENTIONTIME:42.78
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:9
+114.9111 32990841
+389.9726 11145004
+164.9322 7431207
+405.9475 5844544
+447.9245 2426472
+216.0284 1605907
+365.9668 1446420
+505.8763 1329836
+507.8783 648316
+
+NAME:C020
+IONMODE:Negative
+RETENTIONTIME:54.99
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:9
+293.0983 2422772404
+294.1014 257775459
+198.0937 131560403
+347.0176 47407058
+174.0125 36962385
+295.102 32422311
+638.0996 10689139
+348.021 4803964
+661.0894 2312323
+
+NAME:C021
+IONMODE:Negative
+RETENTIONTIME:38.53
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:9
+156.0426 222394961
+219.0263 57128369
+158.0428 18805186
+214.8414 9188386
+243.0514 5726028
+221.0125 4427671
+476.8048 4253268
+300.917 1014846
+266.0228 865794
+
+NAME:C022
+IONMODE:Negative
+RETENTIONTIME:39.11
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:9
+270.8003 10913935
+446.6714 9101385
+328.7861 5462630
+466.7313 4933554
+514.696 3743953
+582.6038 3668915
+640.5143 1982245
+830.3697 1650429
+816.3996 1639206
+
+NAME:C023
+IONMODE:Negative
+RETENTIONTIME:41.74
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:9
+188.0708 86813172
+205.0972 60709701
+232.9318 25933446
+146.0645 18564145
+170.0751 7231551
+286.9372 7044982
+206.1002 7041628
+253.1035 6018088
+355.0172 4540271
+
+NAME:C024
+IONMODE:Negative
+RETENTIONTIME:556.73
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:9
+269.2251 98997424
+270.2293 21011406
+95.0857 4595720
+286.2294 4043920
+255.2054 2246657
+271.2328 1949807
+213.1634 1358632
+201.1645 1071554
+199.1466 1069553
+
+NAME:C025
+IONMODE:Negative
+RETENTIONTIME:480.14
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:9
+480.3242 225142434
+481.3283 57405909
+572.372 31453561
+573.3745 10605576
+975.643 9623856
+339.2894 7507144
+530.3239 6943908
+976.6459 4287929
+462.2982 1796039
+
+NAME:C026
+IONMODE:Negative
+RETENTIONTIME:426.54
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:9
+209.1227 23179929
+368.2797 23024870
+344.2799 20088935
+251.08 18575424
+369.2898 5324942
+345.2809 4025576
+388.2683 3724460
+252.1154 2039708
+447.3136 1897988
+
+NAME:C027
+IONMODE:Negative
+RETENTIONTIME:416.01
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:9
+512.3351 37021229
+342.2643 34920216
+513.3327 8866978
+366.2639 4336343
+386.2863 4324224
+255.1628 4097834
+121.0995 3144992
+198.1856 2059762
+389.2772 2055946
+
+NAME:C028
+IONMODE:Negative
+RETENTIONTIME:49
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:8
+160.0625 82372331
+331.0539 60780528
+332.0574 6460288
+629.1524 6206440
+651.1352 4440552
+660.0826 3422585
+381.9922 2334231
+682.0634 1513098
+
+NAME:C029
+IONMODE:Negative
+RETENTIONTIME:38.86
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:8
+162.1127 308309016
+184.0929 81708077
+163.1147 22045846
+185.0673 10137160
+125.0255 4719310
+496.9328 4556080
+668.7844 2318264
+322.132 1735238
+
+NAME:C030
+IONMODE:Negative
+RETENTIONTIME:40.08
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:8
+285.099 18100021
+98.0603 11371093
+348.9972 7635486
+161.0222 5114176
+354.0305 3727355
+570.8778 3644920
+164.0967 2446073
+588.8371 1855891
+
+NAME:C031
+IONMODE:Negative
+RETENTIONTIME:494.99
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:8
+524.3373 4406739555
+510.3567 277170353
+511.3593 74813283
+512.41 43155571
+532.3395 6128954
+543.8175 3281220
+533.3443 1713625
+253.2492 1397116
+
+NAME:C032
+IONMODE:Negative
+RETENTIONTIME:410.48
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:8
+414.3008 67174004
+432.311 48052180
+450.3216 33099069
+415.3041 18837411
+433.3164 14051812
+451.325 9279876
+504.2415 3861767
+434.3163 2103190
+
+NAME:C033
+IONMODE:Negative
+RETENTIONTIME:40.16
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:7
+120.0803 58687086
+86.0965 55329962
+180.0807 13815076
+103.0535 11371875
+202.0618 5186609
+121.0765 5168117
+87.0961 3259767
+
+NAME:C034
+IONMODE:Negative
+RETENTIONTIME:39.56
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:7
+166.0846 178192881
+182.0634 130373801
+116.0619 120691918
+144.0965 108611017
+157.0492 41677273
+167.0832 14989742
+145.0982 8354818
+
+NAME:C035
+IONMODE:Negative
+RETENTIONTIME:37.63
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:7
+112.9034 85545886
+222.8686 13769163
+238.8437 5325572
+280.8314 5214305
+240.84 3365303
+296.8089 2240176
+298.8014 2106450
+
+NAME:C036
+IONMODE:Negative
+RETENTIONTIME:37.64
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:7
+408.755 8487354
+398.7404 8038976
+414.7157 5404259
+472.6761 3956681
+474.6969 3506445
+464.7339 2837872
+532.6307 2766988
+
+NAME:C037
+IONMODE:Negative
+RETENTIONTIME:38.66
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:7
+191.0391 31256068
+318.9532 6922130
+508.7699 6827792
+364.9531 3274488
+124.0559 1972246
+168.0896 1964344
+244.0998 1402698
+
+NAME:C038
+IONMODE:Negative
+RETENTIONTIME:17.56
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:7
+113.9639 884114874
+141.9589 178232538
+158.9616 128816272
+130.9667 51395622
+117.9597 13415776
+89.94 9040424
+299.9124 1880980
+
+NAME:C039
+IONMODE:Negative
+RETENTIONTIME:568.17
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:7
+313.2743 49761422
+331.284 25330864
+353.2668 14412912
+314.2779 10250020
+332.288 5165351
+109.0936 3367194
+378.7574 2750830
+
+NAME:C040
+IONMODE:Negative
+RETENTIONTIME:387.74
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:7
+181.0835 84943549
+223.1099 46655050
+448.3062 12015194
+211.1705 9133246
+224.1132 5667427
+163.086 4875483
+626.3529 4834637
+
+NAME:C041
+IONMODE:Negative
+RETENTIONTIME:453.17
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:7
+568.34 320070712
+526.294 130284635
+569.3431 103890431
+527.2969 38181651
+590.322 5188496
+493.3513 4170416
+538.2924 3722053
+
+NAME:C042
+IONMODE:Negative
+RETENTIONTIME:494.9
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:7
+548.3718 57710648
+506.3605 33858286
+464.314 19745728
+281.652 16902444
+507.3635 10018492
+421.2329 9340554
+465.3171 4874193
+
+NAME:C043
+IONMODE:Negative
+RETENTIONTIME:496.93
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:7
+149.0237 1046269875
+121.0291 104312995
+303.1553 88839098
+327.2198 14111373
+91.0544 7737151
+583.4371 5272741
+371.2241 2045984
+
+NAME:C044
+IONMODE:Negative
+RETENTIONTIME:439.39
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:7
+415.212 83379727
+437.1949 23384573
+416.2152 22144229
+514.3191 7670834
+453.1967 6996965
+438.1974 6181203
+432.2384 4602293
+
+NAME:C045
+IONMODE:Negative
+RETENTIONTIME:38.72
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:6
+204.1232 104594587
+424.7473 5143002
+220.0361 3822478
+482.7147 3819577
+526.6926 3098115
+85.0374 922414
+
+NAME:C046
+IONMODE:Negative
+RETENTIONTIME:522.9
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:6
+680.4293 23371624
+1204.2998 12180905
+681.433 10790523
+942.6132 7409370
+693.4366 6450701
+694.4422 2967375
+
+NAME:C047
+IONMODE:Negative
+RETENTIONTIME:568.96
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:6
+523.885 65066801
+688.5201 14341797
+524.8874 7166738
+689.5235 6478555
+522.8873 4794972
+715.4799 3672190
+
+NAME:C048
+IONMODE:Negative
+RETENTIONTIME:570.42
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:6
+596.8946 15091259
+597.9015 7000919
+762.0311 5271486
+609.9019 3635412
+598.909 2264745
+775.5467 2217744
+
+NAME:C049
+IONMODE:Negative
+RETENTIONTIME:548.99
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:6
+637.3061 40025984
+638.3092 14899454
+654.3336 5820376
+659.2881 4514707
+639.3125 2997621
+655.3356 2193767
+
+NAME:C050
+IONMODE:Negative
+RETENTIONTIME:562.13
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:6
+335.167 30837870
+376.1936 9206685
+336.1723 5451925
+281.2478 1427835
+665.4442 1293707
+339.1624 1173554
+
+NAME:C051
+IONMODE:Negative
+RETENTIONTIME:456.67
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:6
+299.6334 26082055
+566.3211 20198673
+1090.6457 6272992
+567.3244 5871222
+291.6451 4435338
+1085.656 2558054
+
+NAME:C052
+IONMODE:Negative
+RETENTIONTIME:478.9
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:6
+536.308 48824542
+353.0562 14621952
+537.3106 11482454
+256.0036 7683803
+297.1488 7327555
+127.2741 3285476
+
+NAME:C053
+IONMODE:Negative
+RETENTIONTIME:500.02
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:6
+468.3899 33971049
+609.34 9554282
+604.3847 8198417
+605.413 7101524
+610.3361 3888670
+606.4209 1836398
+
+NAME:C054
+IONMODE:Negative
+RETENTIONTIME:491.71
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:6
+399.2528 20584280
+395.2774 12115107
+313.1321 10599434
+163.0757 4155052
+335.1258 3732806
+365.1362 2964850
+
+NAME:C055
+IONMODE:Negative
+RETENTIONTIME:38.64
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+150.9966 13505497
+280.0989 11446380
+148.083 6444124
+258.0099 3216933
+278.8998 1588478
+
+NAME:C056
+IONMODE:Negative
+RETENTIONTIME:50.55
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+315.08 444337895
+316.0837 48279316
+247.0975 42192032
+235.0874 30725201
+143.0804 9023795
+
+NAME:C057
+IONMODE:Negative
+RETENTIONTIME:39.38
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+138.05 11589913
+274.8004 7399559
+386.7156 5744862
+504.6304 5051649
+584.623 2769986
+
+NAME:C058
+IONMODE:Negative
+RETENTIONTIME:37.83
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+136.0489 91083916
+400.7495 6533309
+410.7787 4155900
+542.6812 3135865
+528.7721 2343823
+
+NAME:C059
+IONMODE:Negative
+RETENTIONTIME:38.84
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+209.0731 140532642
+490.8177 16128577
+208.0701 7862862
+192.0572 5685906
+373.9241 1194415
+
+NAME:C060
+IONMODE:Negative
+RETENTIONTIME:521.59
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+668.4305 8028504
+1192.2996 4150468
+669.4357 4028528
+930.1118 2367648
+931.117 1841159
+
+NAME:C061
+IONMODE:Negative
+RETENTIONTIME:573.21
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+265.2529 9899139
+371.2519 8233366
+226.6269 3415692
+266.2547 1785474
+701.5302 1157410
+
+NAME:C062
+IONMODE:Negative
+RETENTIONTIME:404.94
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+353.2304 32739905
+277.2131 11416355
+296.2306 10660434
+373.2739 9818194
+272.2095 7792653
+
+NAME:C063
+IONMODE:Negative
+RETENTIONTIME:388.92
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+585.271 56140774
+586.2757 19804349
+601.2667 3868276
+587.2789 3756282
+292.6357 2008767
+
+NAME:C064
+IONMODE:Negative
+RETENTIONTIME:477.39
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+518.3223 174628688
+519.326 47361590
+438.2983 22072874
+330.04 9899883
+439.3032 4759535
+
+NAME:C065
+IONMODE:Negative
+RETENTIONTIME:484.01
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+240.0999 57718485
+679.4209 6413969
+1201.2745 3920305
+1188.7713 3552262
+1057.1551 3001955
+
+NAME:C066
+IONMODE:Negative
+RETENTIONTIME:477.61
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+508.3589 85631225
+509.3621 29637747
+1031.6491 17237588
+1032.6524 9264007
+769.9668 2034350
+
+NAME:C067
+IONMODE:Negative
+RETENTIONTIME:496.87
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+556.4425 28755077
+600.4695 19352534
+644.4952 11254491
+557.445 8575104
+601.4722 6487708
+
+NAME:C068
+IONMODE:Negative
+RETENTIONTIME:446.34
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+357.2789 114727535
+312.1598 48528731
+358.2846 32919178
+313.238 12723416
+359.2915 4641654
+
+NAME:C069
+IONMODE:Negative
+RETENTIONTIME:431.04
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+327.0085 42852661
+329.0054 41634508
+331.0028 13141699
+252.9981 5112473
+328.0117 4011270
+
+NAME:C070
+IONMODE:Negative
+RETENTIONTIME:436.01
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+603.2936 12822464
+621.3034 7105990
+597.3036 6280556
+604.2967 4096514
+622.3061 2351379
+
+NAME:C071
+IONMODE:Negative
+RETENTIONTIME:428.33
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+301.2166 18169090
+325.2163 7069382
+343.2266 2908718
+172.1645 1320296
+205.1767 805534
+
+NAME:C072
+IONMODE:Negative
+RETENTIONTIME:404.46
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:5
+352.2253 64611107
+300.2174 12961057
+341.2118 3403529
+440.2781 3231404
+318.0913 2035771
+
+NAME:C073
+IONMODE:Negative
+RETENTIONTIME:39.45
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+132.0911 149213134
+105.1079 25643451
+133.093 9606398
+106.0882 1008121
+
+NAME:C074
+IONMODE:Negative
+RETENTIONTIME:48.99
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+367.9888 19794460
+368.9907 10577331
+324.0009 6981928
+383.9615 6271699
+
+NAME:C075
+IONMODE:Negative
+RETENTIONTIME:38.61
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+231.0565 7541254
+395.1564 6383328
+377.132 4900119
+107.0073 3031654
+
+NAME:C076
+IONMODE:Negative
+RETENTIONTIME:55.64
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+172.9567 33953504
+133.927 12290571
+92.9005 5352672
+108.914 2618921
+
+NAME:C077
+IONMODE:Negative
+RETENTIONTIME:568.29
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+583.8869 36863018
+749.0231 12396899
+584.891 12016606
+750.0278 7401510
+
+NAME:C078
+IONMODE:Negative
+RETENTIONTIME:398.62
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+316.248 46844363
+340.2484 7340552
+360.2746 2404874
+384.2747 2390732
+
+NAME:C079
+IONMODE:Negative
+RETENTIONTIME:385.1
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+314.2328 55972011
+315.2342 9937448
+261.1103 8569525
+338.2334 3234158
+
+NAME:C080
+IONMODE:Negative
+RETENTIONTIME:410.4
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+225.1924 28100176
+226.1948 3835768
+647.2353 2107218
+649.2515 1886834
+
+NAME:C081
+IONMODE:Negative
+RETENTIONTIME:367.91
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+271.2061 11931733
+505.1464 7616256
+253.1952 3853260
+283.2425 2898656
+
+NAME:C082
+IONMODE:Negative
+RETENTIONTIME:379.79
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+466.3171 7929750
+430.2953 5331329
+412.2849 4835668
+467.3198 2167391
+
+NAME:C083
+IONMODE:Negative
+RETENTIONTIME:469.39
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+1015.672 36276276
+1016.676 19226871
+535.3019 10075790
+207.1969 3373287
+
+NAME:C084
+IONMODE:Negative
+RETENTIONTIME:502.62
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+473.3452 10623724
+517.3716 8926693
+458.3479 6136032
+590.4116 3279579
+
+NAME:C085
+IONMODE:Negative
+RETENTIONTIME:505.7
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+426.3579 107580438
+400.339 54213917
+427.3613 29338788
+401.3452 13221351
+
+NAME:C086
+IONMODE:Negative
+RETENTIONTIME:440.16
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+284.1286 13622785
+230.2479 7797320
+417.3195 4847876
+214.2533 1493815
+
+NAME:C087
+IONMODE:Negative
+RETENTIONTIME:437.62
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+476.2963 13371322
+394.2904 10535151
+471.7966 5456746
+540.3676 4228098
+
+NAME:C088
+IONMODE:Negative
+RETENTIONTIME:430.41
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+348.9906 5939980
+350.9873 5719912
+426.1135 590428
+428.1109 573856
+
+NAME:C089
+IONMODE:Negative
+RETENTIONTIME:407.21
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:4
+158.1543 12609020
+374.2762 3731741
+391.209 1174675
+159.1576 1084056
+
+NAME:C090
+IONMODE:Negative
+RETENTIONTIME:38.56
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+104.1071 417600412
+98.919 34309379
+137.0709 19389252
+
+NAME:C091
+IONMODE:Negative
+RETENTIONTIME:41.11
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+94.0648 29912950
+110.0706 3533397
+96.0453 2810684
+
+NAME:C092
+IONMODE:Negative
+RETENTIONTIME:47.76
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+195.0878 229226763
+181.0711 22419168
+196.0894 20952137
+
+NAME:C093
+IONMODE:Negative
+RETENTIONTIME:43.24
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+286.2015 11316338
+153.0676 6096061
+304.2116 3065540
+
+NAME:C094
+IONMODE:Negative
+RETENTIONTIME:59.41
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+346.0096 208562691
+302.02 42982160
+344.0145 12088963
+
+NAME:C095
+IONMODE:Negative
+RETENTIONTIME:17.88
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+287.8894 13522201
+246.8615 7541207
+305.9005 3724287
+
+NAME:C096
+IONMODE:Negative
+RETENTIONTIME:18.25
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+241.8884 9750879
+259.8949 3972734
+304.8923 2897534
+
+NAME:C097
+IONMODE:Negative
+RETENTIONTIME:17.2
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+111.9685 52093481
+294.8639 3662077
+88.9319 1738316
+
+NAME:C098
+IONMODE:Negative
+RETENTIONTIME:520.97
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+320.168 7908369
+314.0269 3344905
+321.1683 2715496
+
+NAME:C099
+IONMODE:Negative
+RETENTIONTIME:513.8
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+228.2326 6233400
+268.2658 2396656
+220.1175 1361371
+
+NAME:C100
+IONMODE:Negative
+RETENTIONTIME:589.95
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+810.6019 170332070
+732.5543 29332289
+733.5576 12786143
+
+NAME:C101
+IONMODE:Negative
+RETENTIONTIME:596.5
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+378.2092 6124105
+663.4541 1495638
+325.2922 966346
+
+NAME:C102
+IONMODE:Negative
+RETENTIONTIME:568.65
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+235.1326 4646021
+236.1305 1698666
+190.0013 1371611
+
+NAME:C103
+IONMODE:Negative
+RETENTIONTIME:535.76
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+263.2373 9502360
+614.4833 2200287
+658.51 2078188
+
+NAME:C104
+IONMODE:Negative
+RETENTIONTIME:531.01
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+466.33 13287998
+467.3202 3787115
+237.22 1561112
+
+NAME:C105
+IONMODE:Negative
+RETENTIONTIME:351.57
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+363.2171 20574377
+364.2205 4609697
+361.2015 3929265
+
+NAME:C106
+IONMODE:Negative
+RETENTIONTIME:358.55
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+288.2172 21440274
+311.2052 7425805
+332.2433 6088330
+
+NAME:C107
+IONMODE:Negative
+RETENTIONTIME:402.91
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+583.2564 11666865
+633.2562 5502961
+584.2607 4806507
+
+NAME:C108
+IONMODE:Negative
+RETENTIONTIME:388.14
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+274.2123 89701347
+416.3167 18882679
+284.9615 3063470
+
+NAME:C109
+IONMODE:Negative
+RETENTIONTIME:449.77
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+266.6214 6852794
+361.2739 5667417
+489.1806 1695863
+
+NAME:C110
+IONMODE:Negative
+RETENTIONTIME:469.09
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+454.2933 89940088
+455.2967 19108220
+436.2823 1402683
+
+NAME:C111
+IONMODE:Negative
+RETENTIONTIME:475.44
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+515.3077 11336664
+596.2657 6107659
+599.4392 1882543
+
+NAME:C112
+IONMODE:Negative
+RETENTIONTIME:480.9
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+424.3453 65681466
+425.3459 16618174
+448.3429 4650811
+
+NAME:C113
+IONMODE:Negative
+RETENTIONTIME:507.69
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+283.2017 5499746
+261.2422 1470485
+369.1252 1397276
+
+NAME:C114
+IONMODE:Negative
+RETENTIONTIME:500.04
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+111.5221 8871153
+109.5218 8470191
+469.3939 8286428
+
+NAME:C115
+IONMODE:Negative
+RETENTIONTIME:498.95
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+239.1464 2483711
+390.3208 1535784
+259.1161 653696
+
+NAME:C116
+IONMODE:Negative
+RETENTIONTIME:455.37
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+229.0895 4621754
+354.2842 3818861
+257.2238 2133166
+
+NAME:C117
+IONMODE:Negative
+RETENTIONTIME:425.37
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+356.2801 11507639
+177.0628 3105367
+245.0854 1520439
+
+NAME:C118
+IONMODE:Negative
+RETENTIONTIME:439.21
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:3
+380.2567 13628316
+382.2719 3659980
+264.2696 3219638
+
+NAME:C119
+IONMODE:Negative
+RETENTIONTIME:75.44
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+267.043 3378727
+244.0267 1028121
+
+NAME:C120
+IONMODE:Negative
+RETENTIONTIME:38.24
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+130.0494 15956803
+239.9654 1459631
+
+NAME:C121
+IONMODE:Negative
+RETENTIONTIME:35.65
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+468.745 4564703
+465.8067 2674183
+
+NAME:C122
+IONMODE:Negative
+RETENTIONTIME:42.78
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+246.1704 11953696
+232.1548 11289500
+
+NAME:C123
+IONMODE:Negative
+RETENTIONTIME:40.19
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+149.9462 11520115
+102.0359 2328253
+
+NAME:C124
+IONMODE:Negative
+RETENTIONTIME:40.7
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+147.0736 18882528
+229.1558 16017750
+
+NAME:C125
+IONMODE:Negative
+RETENTIONTIME:35.04
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+276.896 10711749
+271.9473 2149468
+
+NAME:C126
+IONMODE:Negative
+RETENTIONTIME:36.81
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+140.0669 214841376
+141.0353 15611039
+
+NAME:C127
+IONMODE:Negative
+RETENTIONTIME:17.03
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+277.8643 3798476
+295.8715 2325241
+
+NAME:C128
+IONMODE:Negative
+RETENTIONTIME:317.37
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+286.2016 21614042
+287.2049 3344526
+
+NAME:C129
+IONMODE:Negative
+RETENTIONTIME:520.57
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+1205.3044 6938899
+943.6165 3052234
+
+NAME:C130
+IONMODE:Negative
+RETENTIONTIME:511.04
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+341.2854 4773092
+269.983 889010
+
+NAME:C131
+IONMODE:Negative
+RETENTIONTIME:584.44
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+111.0204 81745635
+139.9881 60275297
+
+NAME:C132
+IONMODE:Negative
+RETENTIONTIME:594.5
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+241.1402 2703532
+253.2523 948549
+
+NAME:C133
+IONMODE:Negative
+RETENTIONTIME:587.56
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+134.1177 233169113
+135.1211 15007034
+
+NAME:C134
+IONMODE:Negative
+RETENTIONTIME:586.91
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+118.1228 927034767
+100.1122 314050032
+
+NAME:C135
+IONMODE:Negative
+RETENTIONTIME:587
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+101.1156 19921503
+90.0915 18125403
+
+NAME:C136
+IONMODE:Negative
+RETENTIONTIME:586.09
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+125.0745 5222472
+284.3251 3483102
+
+NAME:C137
+IONMODE:Negative
+RETENTIONTIME:567.43
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+572.8946 4699172
+573.9011 965749
+
+NAME:C138
+IONMODE:Negative
+RETENTIONTIME:567.99
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+571.8874 9632225
+737.0252 3438536
+
+NAME:C139
+IONMODE:Negative
+RETENTIONTIME:569.1
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+467.2343 5702586
+354.2721 3585655
+
+NAME:C140
+IONMODE:Negative
+RETENTIONTIME:561.51
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+428.3739 27323731
+454.3894 5088107
+
+NAME:C141
+IONMODE:Negative
+RETENTIONTIME:536.31
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+333.1517 8840004
+334.1551 1501440
+
+NAME:C142
+IONMODE:Negative
+RETENTIONTIME:543.48
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+383.188 14719171
+384.1866 3279849
+
+NAME:C143
+IONMODE:Negative
+RETENTIONTIME:548.78
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+387.1432 12915848
+407.6598 4564346
+
+NAME:C144
+IONMODE:Negative
+RETENTIONTIME:553.62
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+359.1781 45383099
+360.185 9704481
+
+NAME:C145
+IONMODE:Negative
+RETENTIONTIME:545.31
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+443.3331 1151694
+394.3559 432819
+
+NAME:C146
+IONMODE:Negative
+RETENTIONTIME:551.39
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+350.1838 4199726
+365.2288 1932289
+
+NAME:C147
+IONMODE:Negative
+RETENTIONTIME:563.22
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+282.2792 241362345
+256.2615 19433189
+
+NAME:C148
+IONMODE:Negative
+RETENTIONTIME:548.47
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+305.2468 9633582
+329.249 5814756
+
+NAME:C149
+IONMODE:Negative
+RETENTIONTIME:350.93
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+130.0643 7419216
+190.0865 4433780
+
+NAME:C150
+IONMODE:Negative
+RETENTIONTIME:365.37
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+490.2083 5275418
+465.1226 1763287
+
+NAME:C151
+IONMODE:Negative
+RETENTIONTIME:394.87
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+328.2481 11119434
+329.2519 2068394
+
+NAME:C152
+IONMODE:Negative
+RETENTIONTIME:385.78
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+427.1607 2275086
+409.1497 1369551
+
+NAME:C153
+IONMODE:Negative
+RETENTIONTIME:401.39
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+107.0557 2271180
+197.1612 1286942
+
+NAME:C154
+IONMODE:Negative
+RETENTIONTIME:388.72
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+239.1276 1743749
+286.9585 1645545
+
+NAME:C155
+IONMODE:Negative
+RETENTIONTIME:373.67
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+507.1617 6285930
+508.1657 1535734
+
+NAME:C156
+IONMODE:Negative
+RETENTIONTIME:378.37
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+777.6928 4522421
+257.2254 3302868
+
+NAME:C157
+IONMODE:Negative
+RETENTIONTIME:473.08
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+534.2949 13399261
+267.6425 11780168
+
+NAME:C158
+IONMODE:Negative
+RETENTIONTIME:508.15
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+380.2992 5790633
+423.2518 1386850
+
+NAME:C159
+IONMODE:Negative
+RETENTIONTIME:471.89
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+304.2357 21716257
+306.1523 8327492
+
+NAME:C160
+IONMODE:Negative
+RETENTIONTIME:465.45
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+295.1974 20379534
+193.1239 1274413
+
+NAME:C161
+IONMODE:Negative
+RETENTIONTIME:488.7
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+667.4214 3075774
+1189.7766 2040172
+
+NAME:C162
+IONMODE:Negative
+RETENTIONTIME:471.97
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+393.2201 8389493
+316.6601 7221684
+
+NAME:C163
+IONMODE:Negative
+RETENTIONTIME:465.16
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+431.3157 12163271
+422.3267 4962906
+
+NAME:C164
+IONMODE:Negative
+RETENTIONTIME:474.29
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+398.3268 11918127
+239.1779 8236995
+
+NAME:C165
+IONMODE:Negative
+RETENTIONTIME:477.74
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+307.15 1941191
+249.1858 1576729
+
+NAME:C166
+IONMODE:Negative
+RETENTIONTIME:494.51
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+355.2846 54372680
+373.2951 6108864
+
+NAME:C167
+IONMODE:Negative
+RETENTIONTIME:497.67
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+474.3486 2732000
+649.4483 2434649
+
+NAME:C168
+IONMODE:Negative
+RETENTIONTIME:498.02
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+539.4163 5285541
+459.2569 3550909
+
+NAME:C169
+IONMODE:Negative
+RETENTIONTIME:492.45
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+732.5452 4526953
+733.5465 1043642
+
+NAME:C170
+IONMODE:Negative
+RETENTIONTIME:497.3
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+451.3631 6446370
+450.3586 4210116
+
+NAME:C171
+IONMODE:Negative
+RETENTIONTIME:467.81
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+185.0776 5067455
+200.203 1398415
+
+NAME:C172
+IONMODE:Negative
+RETENTIONTIME:457.02
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+263.2347 3933284
+615.2633 1132491
+
+NAME:C173
+IONMODE:Negative
+RETENTIONTIME:443.89
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+370.2956 41596161
+371.304 9966707
+
+NAME:C174
+IONMODE:Negative
+RETENTIONTIME:438.81
+RETENTIONINDEX:
+SPECTRUMTYPE:Centroid
+Num Peaks:2
+579.2938 6044865
+330.2563 5274387
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/metadata.txt	Mon Dec 07 22:14:48 2020 +0000
@@ -0,0 +1,9 @@
+Raw mass spectrometry data were processed using an R based workflow for feature detection, retention time alignment, feature grouping, peak filling, feature clustering. XCMS(v.3.10.2)was used for feature detection and retention time alighment. Processing was performed using R(v.R Core Team 2020). Feature data was input as an xcms object with ramclustR parameter settings of  st = 12.99 sr = 0.5 and maxt = 259.8.RAMClustR (version 1.1.0) was utilized to cluster features into spectra (Broeckling 2014). The feature similarity matrix was clustered using fastcluster package heirarchical clustering method using the average method. The dendrogram was cut using the cutreeDynamicTree function from the dynamicTreeCut package.  Cutting parameters were set to minModuleSize = 2, hmax = 0.3, and deepSplit = FALSE. 
+ 
+ 1041 features were collapsed into 174 spectra.
+ 
+(Broeckling 2014):  Broeckling CD, Afsar FA, Neumann S, Ben-Hur A, Prenni JE. RAMClust: a novel feature clustering method enables spectral-matching-based annotation for metabolomics data. Anal Chem. 2014. 86(14):6812-7.
+
+R Core Team:  R Core Team (2020). R: A Language and Environment for Statistical Computing. R Foundation for Statistical Computing, Vienna, Austria, https://www.R-project.org/.
+
+R Core Team (2020). R: A Language and Environment for Statistical Computing. R Foundation for Statistical Computing, Vienna, Austria, https://www.R-project.org/.
\ No newline at end of file
Binary file test-data/ramclustObj.rdata has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/spec_abundance.csv	Mon Dec 07 22:14:48 2020 +0000
@@ -0,0 +1,21 @@
+"","C001","C002","C003","C004","C005","C006","C007","C008","C009","C010","C011","C012","C013","C014","C015","C016","C017","C018","C019","C020","C021","C022","C023","C024","C025","C026","C027","C028","C029","C030","C031","C032","C033","C034","C035","C036","C037","C038","C039","C040","C041","C042","C043","C044","C045","C046","C047","C048","C049","C050","C051","C052","C053","C054","C055","C056","C057","C058","C059","C060","C061","C062","C063","C064","C065","C066","C067","C068","C069","C070","C071","C072","C073","C074","C075","C076","C077","C078","C079","C080","C081","C082","C083","C084","C085","C086","C087","C088","C089","C090","C091","C092","C093","C094","C095","C096","C097","C098","C099","C100","C101","C102","C103","C104","C105","C106","C107","C108","C109","C110","C111","C112","C113","C114","C115","C116","C117","C118","C119","C120","C121","C122","C123","C124","C125","C126","C127","C128","C129","C130","C131","C132","C133","C134","C135","C136","C137","C138","C139","C140","C141","C142","C143","C144","C145","C146","C147","C148","C149","C150","C151","C152","C153","C154","C155","C156","C157","C158","C159","C160","C161","C162","C163","C164","C165","C166","C167","C168","C169","C170","C171","C172","C173","C174"
+"VT_160120_002",26480785.0891106,399859649.198881,2104284510.74258,6675130030.06406,1499957.81967764,318043152.466315,61477288.9081959,73794262.7711201,3197985690.93964,118431570.911764,172665744.941519,11717591.4285174,172926315.990067,14284200.818593,609838001.113396,17603366.542419,55484475.8351803,193612104.079719,13455990.4386033,16723631.0790822,47746607.1542379,5538044.01272274,42685533.9813905,56450027.4128617,129527400.797922,16640834.3577322,19339437.6869156,28357396.8284156,261019245.204031,3793084.66444665,44555530.821972,30143103.4478274,36222589.3891992,77048983.7042474,13989207.4822869,2669685.80389055,34274285.5897713,703763556.934929,30469745.890156,9827417.87195153,104772302.153675,24123159.8347651,32723937.2818103,69277420.3342917,105915325.960741,13861874.3534395,43277961.2704277,7583920.70042505,26017351.8113601,28525120.7654534,15630751.0257207,21936927.6755451,24455623.5840264,14428285.0939504,3378732.26168508,3757899.11695674,5647058.34806264,110035616.803078,178555200.71062,4098456.5266808,8222666.51120847,2416917.48995518,17373898.4001443,116582087.036685,39965396.673045,24226440.3031727,20412991.7566548,28053084.3192514,33369856.8752417,6231732.60962466,1059194.77294312,1483159.55031429,113891808.768022,3330760.15940971,6195065.31376669,33326685.8903388,22661353.6895352,36449022.3653874,30764850.751867,1307941.47588369,11695746.0948915,3899829.16094261,17265129.2492156,9860774.62441437,53649424.3775037,4476887.59746866,7949569.76002875,5264054.83660712,11768554.1274131,346730892.256956,4868317.96133317,45639912.6236037,3762959.21819141,10481284.6362266,11944533.8236318,5007978.91782271,46067033.8417022,4303817.61357864,3838233.30722077,187962646.05226,5947821.09161683,2982400.94848531,9479158.0852234,6472428.36582334,11643072.4552945,14766878.3258018,2216345.14527864,5005579.81098529,5384206.35953005,62606312.5116365,8124344.85667039,45993626.6462123,4561886.75604072,9690117.34792147,1889791.14899546,4449536.8688802,6951468.73671257,8065678.91005781,3661281.50857228,16615938.0163335,4284671.7253457,8191477.41576186,9277214.47451158,19428767.6525622,11457663.2667832,242828254.301433,3653270.91901345,9629330.52950157,4632627.0981171,4027521.0103355,68660322.3186885,1907903.55873796,211460728.474636,749519007.450309,17851780.9220726,5517925.04003241,4219657.62418883,9572366.45237584,5935454.44195376,18167497.6107987,9048121.58174244,7514173.20131591,9974903.70234197,33954225.133559,1176481.32989057,6037388.72666593,39902946.1340699,1627219.6584135,5275435.57807874,895549.052457177,5465078.9751835,1730566.66958422,1552541.96270834,1513153.27352283,5454237.29966026,3139480.69045361,10625341.4622228,4448720.27717584,5461797.36909749,14181447.8230887,2399721.07393062,7374908.01946441,8490182.5023586,9303135.6435071,1940649.72795941,47835877.9568274,2810824.78990142,5069975.52871793,4046670.64855365,5205234.2064923,8237339.98664298,2789646.53681269,30828285.5464489,5079809.95290469
+"VT_160120_004",26561162.3286186,395724118.629157,2099260589.5398,6724601425.29503,1497655.02683946,321055504.642769,55338242.0578176,71560728.9731613,3274861931.76781,117344629.129099,175392662.021682,11877123.1967983,166493247.875936,14505550.6611255,629417286.408817,17821049.9550815,50297540.4595502,195159867.453986,13031387.588167,14052271.6205058,48717672.0011676,5309969.58371518,43265221.0578383,55142088.8852027,130725574.816996,16743445.8037412,18187018.9912964,23236848.0684118,264863543.97851,3818421.3825595,43317160.5930274,29502585.2549738,36177792.2501275,77205148.7996125,14304962.7806754,2562048.7241809,33391842.1661493,697363424.513206,28623223.5121628,9619491.14171569,105910894.482876,23779038.9562782,31364737.2138728,69052068.2244714,110937121.718688,13671709.5236867,38754316.0701303,8483105.37219587,25207452.4188976,25630102.7807619,15982673.2577959,21595601.3056288,23344503.8492017,14602145.1436981,3106493.03147665,3246575.24132755,5655918.61238142,110462431.958038,171371740.859716,4167637.28735563,7688924.89310099,2404142.76091541,17271695.9721092,117407225.985028,38374807.3648844,24205475.6762203,19581269.4280163,28468943.2787664,33292305.555647,6237200.53093188,1549676.03585849,1433884.94998488,113806187.076965,3108789.30639256,6103113.84610829,33660891.5934336,25166462.157389,35699772.0198411,30760799.7721716,1275274.88108098,12028863.9053843,3900402.61143981,17545819.1177791,9816238.17470772,52849016.6300955,4493053.35766487,7321781.19266484,5491225.60300474,11851212.060599,357878823.150291,5101606.26261998,48027671.5582244,3667519.18026446,8402775.91357071,9792436.94150015,9461623.72436937,50644877.4659725,4361206.48841869,3862657.09336969,174962118.282567,5992439.15317147,3132832.87318621,9021768.71983475,6643855.90426193,11858638.8019885,15146370.0128903,2107105.3058837,5002297.52408804,5287910.34186827,64167905.0666384,7812475.78847991,45455301.6281767,4369831.86309904,9042835.03267862,1912230.40065764,4295927.2980448,7208616.87809218,7802627.74371629,3633144.0639627,16331954.0680655,3619364.89772598,8247482.73160666,9239091.09654106,19928576.680259,11281263.9923524,249153305.5308,3102132.73232753,9515937.59138428,4786450.23135887,4055484.31145271,74992540.3971121,1864979.66389771,216278981.451812,765447936.023287,18023581.8791238,4872457.80947455,3650930.90310711,6472377.35107347,5489577.69018866,18554709.9348,8237263.51631243,7539593.9641952,9068455.18029342,33488658.4060327,1208669.75508981,5266854.58906925,40545358.9238148,1919410.60776847,5454464.49613368,928179.644132599,5327370.64812453,1792364.79269073,1462883.28695929,1463438.7281516,5542058.8204334,3169030.40933674,10389932.1583112,4483721.89548928,5107265.17453646,14558022.6558104,2553337.8567527,6539114.8632132,8618018.49232322,9589285.53209421,2064776.06681695,48072286.7490167,2891588.06015954,4991915.17620567,4053560.97685312,5150594.46383677,7719892.55981445,2820690.48349365,30393550.1442398,5170783.67727946
+"VT_160120_006",26178781.5644243,400509811.015853,2145304909.17757,6781784011.32426,1536456.18104325,326370009.575519,51997496.7431339,73433322.5280804,3319530073.09892,123868663.453044,178043856.992674,11857441.1130724,160725385.039658,14249901.7512864,632017801.948661,17325134.4996036,51099761.5304718,201161528.569081,13460281.6978057,14599039.0119969,47726219.5422459,5174686.04163777,44281516.3938279,55820294.149198,133092706.083402,16856781.1534334,18532224.134331,27940963.7593575,260853875.532624,3727996.50768152,44872556.9805824,30400981.3587292,37676877.4363046,75441538.0125347,13358690.0927535,2629692.1949922,33094982.0011994,736540786.505711,30146898.6472304,9408453.10142253,107473558.004631,24163180.7867807,31612542.1708648,72840442.5610443,109257101.246334,13983052.3331173,36653951.7431738,8025531.59412309,25528566.8542483,23287251.8192321,15918694.9457677,22386542.7192087,22741063.4720325,14061332.5830947,3439941.72123691,3524715.09503109,5663920.04325562,109669188.710058,163697790.626056,3797556.72028258,7332312.5879918,2432034.40965456,17114582.460291,118286408.34582,39663466.2784795,25522942.4716264,20176734.9530186,28491664.6877234,34572777.0293804,6542412.25434553,1495144.81697831,1420314.3838829,114931712.05804,3151960.06998748,6046721.41759707,32773350.9616059,23463511.490441,36451544.1496945,31096318.3142599,1345854.6279835,11992117.5176276,4008865.55349097,17806802.309077,9492454.42787248,53967270.6142059,4702784.10117223,7495841.80456809,5691398.38608901,12268335.1696792,356301167.879007,4924017.32985077,47922291.2211712,3378725.14370953,7918757.32034697,10141841.4295023,9982964.27217323,49176958.7134055,4691052.92008355,3738152.83900588,192807568.250192,6012576.81534029,3619703.13470049,9046491.65632273,6693055.48802607,12087639.3218203,15215832.0855302,2132285.61707715,4992948.44354882,5283933.8227205,64943581.0255274,7688338.62099493,46011668.0286367,4538961.99778848,9592220.98755049,1890590.00968564,4417593.08735603,7224576.24292074,8192744.21800833,3544687.20321553,15797777.1613587,3754760.94343638,8293821.5931805,9245148.91977363,19894042.6423532,11619802.6476071,242046817.763192,3035952.81745998,9896062.49002775,4564339.17633222,4092974.87331004,81991526.9524327,1845168.02243709,223018668.893715,755023126.030682,18167165.8633891,4049462.44385268,3295449.10658644,6359846.41268637,5344936.36232196,18868460.239158,8152718.85988986,7262530.49271348,8716318.80870127,30852439.2249702,1284803.01928446,4881869.79615221,42296604.9059076,1469567.8835532,5490367.13163221,975378.178112719,5304175.00374628,1814793.26849027,1523421.28238618,1530845.76372825,5336382.10458661,3283939.77757151,10560601.8235974,4513161.32877333,5276399.71059114,13909648.5937585,2413441.7329101,6529501.41529832,8725294.17366447,9109595.85631848,2152109.93324202,49057416.496423,2702516.01575666,4951887.59565211,4185493.69372818,5146478.8720629,2799852.52267403,2986220.6885983,31911946.2682852,5341999.93951756
+"VT_160120_008",9041605.77094929,471250396.568392,1811037672.46625,7501541260.82157,25964408.0314802,231697162.546962,54074089.8273097,98699652.3499906,2476742292.13698,108269115.618271,160805758.092354,32084132.6215884,41892441.8496479,9040679.30836649,510537844.396623,41490611.4002443,68541575.6151237,128263661.099987,25525139.3956717,1803001362.48249,123032127.041262,5672057.72841273,47811219.9955048,43372112.041996,145927723.328606,11784354.5149506,10562896.2312877,51554100.598696,171655945.261338,3085576.19964214,52593353.1484615,53855732.7877136,46332034.1574442,75718705.8425661,54828903.1015036,4197073.85330739,8103781.62160334,728885430.276567,27239633.0280826,5584253.27408704,81369146.1181398,29802433.9176991,916241252.658778,45216922.907359,63209752.4616287,14323738.162441,38300683.4546943,6421873.4421755,26264896.401859,22995285.6640942,13687615.5728325,19758488.506626,23179144.291502,14685141.5254949,14383629.1067734,223445884.882156,4437172.05804423,53022628.9562815,111537358.998652,3940809.57841217,6392136.0118398,7235396.78339572,6076946.66790287,141740258.611992,30788535.5286912,24861426.2345312,19941654.6898961,25691004.1869767,34911755.9905971,4999679.74752849,15350970.1233314,41981425.8204663,138776095.454506,15432072.8739591,5881999.26855236,27340043.3765868,23075698.0212469,14148794.3344274,15876738.1684853,1464696.00302031,9527967.56223811,8141419.68188451,14259228.8602253,7748686.98173418,56550502.1019241,4371419.38394134,6262382.32320382,5528268.38496586,11736836.7971215,588117813.983641,4044968.51538041,54646893.2251827,4512852.06366826,133183109.487417,10661785.7858453,8297494.57938106,50256239.4545877,5165191.01875758,7808691.41978766,207826051.534932,4188796.88027733,3453549.74436969,3238370.15683996,16539591.275124,8348074.96242236,6639236.60900152,5322763.24637314,4956756.09079233,4026864.02889465,72544981.7831535,7467300.13088716,46907590.5502861,4130073.75074492,8342217.02263611,2035732.5502976,4505463.67338048,6146288.80554052,11580461.7456275,2299324.7832436,15546406.5487398,2408341.11560685,7295029.16689022,7267251.5859988,10435503.0335069,12469201.264703,138604004.207408,2611763.14463318,9793732.29176631,4890595.82728916,4666331.57966998,70844564.2179827,1808027.46877188,216810107.465422,743927504.561755,17808693.8902294,6192498.13499944,3707181.84967947,6173063.04113565,4337421.07153503,17031063.9682179,7635712.95617617,8884760.98903786,8625720.01066073,39864166.6361562,939817.277033017,2743416.59607102,251940885.373679,12191125.4735331,4993201.19535135,980357.178604597,5587800.61221276,813412.205625175,1564677.83863007,1560641.60443849,4670189.85461214,3194866.63612096,10127026.2418792,4274889.59692193,16891451.9101341,16005403.4117281,2036889.74817604,5553716.62374584,9406271.1196055,7626605.17555396,1906972.76952673,48774868.5225388,2756772.12597011,5451227.58423505,3861882.67451165,5895579.93872453,2563186.12335108,3864972.93799257,16534156.2120112,5846614.90390586
+"VT_160120_010",9065626.17007385,488863535.989891,1853077944.25181,7636884864.50936,26311868.3846351,234861232.226014,55170821.1176809,95929531.8529002,2490846875.80481,112372684.520478,159346601.622646,32865800.3840606,38491037.7425695,9088196.64989128,507238649.537151,39057516.952925,64861942.4747916,130611202.046654,25021775.556609,1572581847.77139,118349424.943986,6132973.21814966,48131193.0622713,47291777.3432154,152840275.657693,11971029.6857851,11166198.3604737,48210392.296406,173746206.93144,2947536.31868438,54552921.4514795,57085182.3403061,46477154.1706153,76431163.7311411,54804164.0772258,4322434.47861548,8073918.17500518,711155775.184009,31800316.5504403,5920261.94612105,81203016.1404507,31069440.67906,912542818.160813,46686351.8336295,63622281.7872596,7686127.3727482,42138515.9728987,4754295.01459909,26799799.2702648,24052695.1827605,13784431.8928535,21829822.0511022,23713198.504505,15837875.6383682,13732467.0963076,227878890.128948,4761060.1873006,50121400.5785209,107572437.226486,5945308.45374536,6946965.65776791,7492447.28299154,6270470.27051352,144597878.923979,32328035.4824911,25435439.2034167,19761259.1280485,26131621.5938896,35957411.8695658,5229199.5762693,16132095.61037,43903783.2933793,141150411.167505,15334491.1029377,5773018.74104554,23581930.4817015,18456968.1210875,15016488.8559912,16410923.4758882,1629339.18412058,9993755.07453849,8398376.38739215,15018587.4942598,8073066.61029663,58088527.2225584,4644774.3471576,5655393.97643114,5810564.91272351,12337694.9820869,565373858.617892,3878214.35689665,57657961.5589863,4717353.93679851,141335461.817015,10396041.2304125,8901956.39326496,50043750.652175,5135130.55263955,8220398.11936768,130761051.218661,4435663.88119201,3166792.4006381,3150511.83397148,17090361.7987426,8624602.18784399,7174075.20427396,5523363.16298542,5092511.0604895,3934856.0735005,73018666.3452832,7667964.4424507,47603309.3408648,4344930.83250139,8594134.9764402,2088097.29391704,4601689.94394753,6211322.12470698,11628370.5120883,2285007.08485575,15341132.8343571,2319138.76596968,7519430.07068658,6791740.86834166,10701441.1380223,11729219.679904,127923846.792799,2644427.49544395,10058762.5117922,4281681.64887469,4904917.12677794,65128948.5927888,1935683.69426421,226394898.019739,765524611.735982,20007034.6251235,6140034.57046073,4026620.03102193,8421315.32567514,4924065.62913473,17645870.1412629,8596205.40810059,10438053.6180953,9903820.00073359,35572752.1606415,821464.483349459,2825648.79755294,266124285.301308,12997669.9929133,5329917.12307871,1050763.82935056,5869876.20594663,838457.464450316,1680139.15878902,1615391.57729838,4862324.05110164,3443492.27791696,10504038.8784687,4629111.75732366,18024665.162672,20268489.312299,1947810.64873112,6031706.08403233,9527666.75832775,7769941.22998735,2035753.19499619,51783004.1635662,2739572.69464132,5647381.23546498,3941226.05344497,5899984.44474795,2540636.42517109,4068511.08394802,16904948.5627006,6525507.29888345
+"VT_160120_012",8849007.4684018,494760014.58656,1904621490.16643,7941247143.76186,26126972.3251372,236779446.227142,57429889.7944861,97295159.6163342,2520245376.51775,111621292.338872,169565125.504838,32697594.7375088,40452023.5967701,9135999.07696994,511338550.947547,40127828.7781344,67767251.8923193,131403929.830815,24986105.9247013,1914762850.4955,122643127.065807,5882061.10968306,48194035.3717553,48279679.5517268,152599654.2151,12051568.0650125,11433427.2788574,55800319.7616475,168798440.494724,3144699.0205302,54592614.0606429,58553614.5263836,47080063.3199137,76493471.5501245,55617910.4822958,4273329.60888492,8708460.95325411,701651609.41476,31481844.1606455,6040459.03527195,82461397.9349627,31732823.1703342,946321844.071753,48321874.8814787,60098597.8983192,7023960.43184146,43354324.3099151,4743036.46472275,28638673.4112916,24646648.3906468,14114023.4306384,21888894.9038677,23163824.1015522,16020944.9654865,14319891.6539096,292029469.590196,4473366.49153419,53567174.1713336,112256231.627175,7413981.44809428,7039296.03053647,7674922.56766397,6527148.5027904,147919590.172415,31725855.4725971,26170274.9829628,19555982.5725586,26654038.2180741,35697487.2141787,5234131.16731196,16211861.4212019,45095712.382396,141236489.688314,13535052.2341925,5950297.3943652,22476990.3702779,18618344.5926832,15668579.9533397,17061042.092306,1612647.95545584,8780937.76715252,8632913.83225602,15454606.1946051,7787233.46811986,58514884.3887774,4527061.98296559,5970820.83577764,5746589.79350136,12357814.1802957,572927989.263976,4361335.24181824,56748631.2802294,4442785.69266877,223110726.473821,12459405.2191899,4088206.69894174,49947040.9235922,5290705.81033021,8058047.91258245,69327636.4812153,5116644.26953785,3340772.76960633,3215119.21185987,17143696.7216619,8607893.65285094,7304831.88904801,5737404.81895718,5284779.44449721,3985756.63443506,75541989.4860504,7686800.56758481,48523440.7954754,4279218.33318729,8499904.64509408,2133028.27526377,4714904.90914962,6289244.85727612,11841974.4441174,2134656.9542572,15565771.4322468,2764096.89222744,7738984.45434312,6915090.21867078,10190536.4062855,10904901.807893,129903067.530742,3664410.29529628,10177911.6726736,4024619.914169,4946744.82870316,68954726.2276534,2032916.69230374,230197778.809904,802398479.949603,19491602.5532145,5949237.35813215,4940442.83417011,10882567.9192196,4984847.02124,17695838.6594354,8402509.83370642,10722816.9477799,9797219.35508985,36126396.6054024,902817.677785632,2827649.63348319,256917991.441497,13116327.9917853,5216830.70209913,1052595.22339729,6084797.7179572,843971.45647185,1714525.36256056,1672312.98207525,4694539.66394965,3496674.26605609,10834402.0753893,4705575.46894664,17750295.6199343,20649293.4054868,1994073.50389238,5756489.94774082,10201877.9493619,7900575.98756736,2300046.15236051,52083784.1606388,2795164.85924204,5579158.29689684,4024962.86476807,5910350.62262612,2853015.02550068,3778349.67283596,17200990.1486986,6707486.07168864
+"VT_160120_014",10056937.369129,407273169.361724,2396417908.15579,7527153704.74948,28535777.0961087,408923841.698245,55757238.3290642,334597513.291813,4184063376.76584,136349468.319836,185471081.711031,41835977.0725982,99864207.9048042,10014528.9464624,724956935.294089,50432868.2654348,19512271.8872233,290948153.141973,22055347.6009257,1369097041.00493,191533610.944372,7979353.73760593,53310884.8808597,76548152.8374239,151234198.160118,17262966.7330417,27549120.2299678,50271242.0289642,249684974.362824,5003347.65841244,53644503.7797161,11176645.0934669,37168596.3125722,53266938.1038162,75407264.7469534,7396492.51527188,15850020.9783926,686086511.84225,29276118.7908424,6030268.91098214,109808273.495022,22328936.534431,32879463.2374979,53478797.8346506,111819419.598353,6882146.29722603,40665313.0412407,4936916.79262724,26659422.2191368,16936976.3636211,15125889.4612193,25593649.2296358,22338190.4332913,14501904.289385,4915209.20200831,222375871.446329,9162872.21337438,64764491.3166618,106830905.854788,6905971.8901088,3209822.94450722,12332430.5325983,26468106.5006821,120097026.07686,44039483.5173442,32603326.0802537,19639022.3414165,95322690.2458251,34394070.030577,14021681.0743349,467620.253825203,1934541.23724413,89274337.8450295,12289459.4423357,5630614.78263815,27091330.9115448,19371856.5169494,32186908.5428562,39205171.4585498,2788651.25162034,1741776.04471703,1507220.84670075,24987479.4148581,8086681.56056049,83373133.5640895,5521971.94467324,8863956.7482917,5104675.35457675,8628262.89884565,306898134.377771,28917222.7531045,290263516.461263,6432964.27457252,182036323.647194,11388984.2410777,3822081.64432722,48799145.5977761,4801524.66009096,2913694.19467173,68571698.0596447,3411140.32594066,3312442.72328,3706626.80786088,3578043.06984199,11081184.3232695,13870044.1486235,7551479.96149542,7903411.39194394,7600128.4414202,69792035.0952949,9072576.07024188,46214445.1107167,4431933.4857953,9310162.1861565,2087488.77256092,3519902.60913,12456585.8268038,5842557.67822037,3375407.04747966,13327602.3444862,3442010.81995218,11199938.7928249,6568003.50859815,15889270.0627507,8359749.02862059,213385228.325948,3673648.85542837,15370755.5838232,3710026.73451045,3455973.38107892,66950039.9727191,2007216.70570666,220517155.520482,776015921.251582,19898553.5179353,3940456.74462694,4887731.90263035,11462174.4152275,4902845.10337668,31607739.2093693,4184789.24369099,6239266.36406876,9745791.92165077,30808350.1065263,782053.650377607,1831693.73439086,2555597.55448124,1614772.56790186,2521233.49007453,6407325.7987949,10382369.4167516,2392345.71842924,1789913.33191295,1730289.64090519,1657455.466656,1311524.98408121,13838497.9040188,4644622.89081468,6122079.03099974,18465549.773961,3159104.68924092,7369976.70338209,9057968.75627163,13106824.7799986,1839014.26322561,49126450.8725704,2772475.21817727,3911936.9405199,4281208.27974326,5462456.63102986,2807930.46974358,3654759.85059643,30667766.5336415,7644272.24989082
+"VT_160120_016",9921334.04245394,394839571.264429,2369449486.9396,7566848150.26125,28283976.4683759,417535465.073347,54159744.8891035,351431419.275994,4211915826.99171,139632033.238696,187745939.512341,40254636.8669798,96870600.429904,9047602.88181688,719212130.492843,49612788.5822392,19155192.2639993,293622503.999201,21859429.7246547,1378530727.91261,190710454.24526,7907711.43655018,52195444.9818229,74584560.6730657,149948749.52333,17552106.3713771,27788753.6728368,51365818.6648699,247335895.641197,5008477.01219028,52310535.2184312,11286296.6821365,37059999.2823471,52731562.84467,74777634.1417948,7210454.93965209,16229513.3405058,688384258.203205,28641842.8660642,6085336.65196695,111005500.137044,21825026.8153281,31777556.9086057,53878089.751963,109194423.473904,13196472.3306867,38545518.459235,6909452.17442949,27024417.0959412,15100578.0675631,14659604.8542686,24626346.6597531,21494666.1303339,13207425.0932733,5205402.89382384,212226526.12032,9066336.25495176,65396605.793213,107379618.782638,5307037.30885941,3034022.1616308,12738519.3084012,26000251.1837264,120728022.539401,42996586.0530391,31887980.3306376,19453751.6350615,96489178.7223224,34874113.8952613,14004689.2072421,392028.291972076,1894158.51053983,86318229.6358879,13502973.3656627,5650441.5199865,25015913.6487907,24948489.2700075,33005711.1302101,39212281.7001934,2895034.44765784,1732473.31038256,1220575.09918028,25167259.0641734,7889100.75297358,81953505.3074901,5533936.98763999,9257003.20857233,4935621.12148192,8694830.25082883,292939992.473616,29363584.5280698,293967062.920549,6584832.65282786,119164814.189066,9912632.19214089,8315042.74964852,48674155.7520452,4524480.01361183,2901020.51145225,69178561.17526,3386041.706045,3274002.57139126,3417814.41681204,3371267.98883571,11168267.2300135,14233159.3818995,7742707.6530957,8187473.37924239,7195393.73283357,70820152.2534394,8804988.38156746,45825688.0079443,4239918.1626914,8166399.2987528,1885385.9628287,3593900.99531871,12879163.9981109,5954268.54602275,3334128.64695011,13267414.7739598,2970180.12159338,11087435.0941716,5891389.04922046,15461390.6586104,8628660.18852357,207699746.385989,2900961.27359474,15366900.9579807,4457336.23195042,3230495.89322753,74313917.2548402,1840429.103405,219279767.291582,802314394.062787,19965954.4959309,3477202.45988644,4165984.16326284,8220909.54318291,4541564.31760416,31529101.0025926,3459806.20927818,5016566.64424836,9228374.35279561,40056585.7370394,715877.969105934,1802439.64087618,2540916.77061726,1213678.52127399,2583487.50092695,6480243.95175582,10250443.131995,2345240.48445822,1817915.5142479,1740770.95657052,1625053.48186672,1381840.14386265,13560720.6886479,4735130.78727592,5634090.91641081,18570341.5754949,3293575.12333419,7747090.55036666,8959314.31098576,12975189.737674,1884454.5602894,48212283.9126954,2386900.42078585,3714489.5500013,4140284.06792659,5390871.94942715,2982558.89330914,3402740.47246927,32145819.1111505,7681500.02366803
+"VT_160120_018",9765786.38108953,406704551.186718,2400621205.72809,7547570860.152,29880045.861249,424176310.038056,54006119.11954,348772611.657749,4244929706.43284,138941956.977867,184736960.950811,40479987.5862271,97934867.7674699,9935375.42473174,728500644.868141,49951347.5155138,19818497.9225534,299190858.903876,21675603.4419543,1409478932.98494,192440425.08448,7673540.43553182,53708294.5853515,75213687.8053672,149755069.436807,17443990.8282564,27678521.2844026,52261621.8538009,249155357.763279,5056153.82500291,51594065.7406387,11244250.7720856,37778222.7508168,53321140.0492184,74593164.6084221,7117323.80857768,16420335.289256,675423341.169107,27496910.7839167,6131583.91110612,112037259.601856,22226039.3256517,32071539.9477974,54131159.2271454,112195682.183141,13683229.7139458,38082072.6928273,7026336.80899186,27177278.0275967,15302838.8139666,15112141.0779612,25300546.5469971,22516914.9266876,13282879.1270985,5090273.98739922,243665754.779636,8973383.80876509,63662076.2177535,106602821.051523,5154992.07981188,3059657.7117478,13095381.3348505,26284642.6424465,120181150.691249,44251245.3308928,32568404.955441,19638087.3005542,98413821.7859301,34917828.9632685,13966171.7626149,364818.077743717,1980083.17267452,89538711.4031969,11810481.2359464,5471804.03524272,24610642.959473,24966228.7685927,33214605.3294891,39449414.4211288,3058910.20062976,1772516.20889071,1200653.23786099,25025728.4400843,7327802.11752485,82534894.0200488,5609296.31299004,9848790.38649371,4887167.81683563,8851730.37128891,303811396.157158,29528480.2335008,296611443.714421,6858912.4646731,181285975.341185,11018857.0219061,4359728.486715,47996597.6993479,4573476.61487967,2842121.74558415,87001895.6947349,3692468.02894966,3428414.83761292,3466483.113999,3546624.05569312,11077814.0812724,13839030.9793676,8029724.35496412,8122278.80372836,7399194.23564961,70295523.5535979,8827544.52511466,46981628.6418616,4170682.408301,9713337.64643246,1981989.52496517,3466309.95691788,12720476.9956504,5894679.64277343,3066690.89422269,13535591.9431581,3716985.07510413,11678502.365612,5476968.43831304,16112117.431409,8277450.18350638,211083652.632869,3560459.56596247,15121821.2337962,4943036.24158586,3297773.46973622,72463978.7371212,2050102.25649342,218004813.002955,768259891.143629,18543140.2974884,4370019.32870596,3555214.36601797,7902167.56334947,4189701.94661047,30998321.9550014,3604624.15461831,5136468.08666808,9417772.56091534,40372936.3173341,748735.677871501,1784643.99184264,2429667.43168739,1353479.83974623,2603545.61311898,6499467.14862286,10193898.668947,2363435.7929565,1982156.49391454,1688559.23662619,1556564.60617238,1384494.60565737,13636589.3525563,4531350.90937642,5258897.35594502,18162096.5678284,3274696.29405987,7703484.67468176,9018082.00053684,12827180.7151587,1818629.86873529,48685816.4640741,2402622.87390149,3870048.23880562,3841029.56937707,5284542.81383537,3063083.12021162,3384305.61218076,32126960.0186255,7772165.67582169
+"VT_160120_020",8647328.31950771,728339629.568542,3746650242.2396,11185929669.3969,62759266.4244026,726289490.398499,64483029.7215138,51327188.4090394,2936416436.93318,318206044.35591,199422558.817586,32155353.0830057,71138259.4529307,7241361.05856671,777817177.791775,59087553.9538476,32270577.4208463,132328247.731806,19991188.1019205,2311515466.45794,164076817.111167,4829324.39188889,65754521.4311228,80929206.5745362,141255953.702754,13726943.4477023,16983549.776388,83323808.7930355,256747016.14205,12644519.326618,3773060538.16693,47769512.0900951,41387478.1389931,60653744.1031391,59140722.4283855,4988600.28946674,14481346.7607578,668800468.629547,30165041.7905091,73806393.035526,353561272.378944,47584560.765733,30673463.5485123,41665601.5931801,66136316.9626334,18022489.6257725,44332322.2174685,9573986.80110363,27048094.581855,18382914.2330817,19169358.0991335,38332647.5412583,20174633.2513529,11067854.8502169,12345688.1151492,436728017.110632,4250730.56429709,93079644.1806634,109877978.198548,6590665.10929642,7820782.35098659,12761914.4032225,57369005.7741627,145836605.538252,51601593.1687023,57485164.5010159,19207217.1469006,44075554.7949539,35065916.8266887,5384137.70983672,6672408.55931768,2378880.85934616,105517301.040078,16586744.3152287,6200120.50246024,17742225.0737145,27820654.3382835,28498495.0929678,20868275.80946,27799456.2822473,7503911.87454368,6783799.61926016,26415231.943573,8140872.07212652,49468007.1801138,3188699.63864562,6521610.82499046,5222270.88093431,7911962.22284302,238777884.190417,1654287.01649017,69212975.7284016,1673955.51627696,151310090.945456,9334024.11732695,8388571.16879707,48619417.8339526,6621635.51778908,3669087.01898704,91534610.761855,3405887.68746127,3330776.58963915,5448532.7160257,9825350.45530681,19902383.6905279,10687515.6126771,13602909.2660721,13826365.6646955,4674432.76962048,89199843.3433755,8856905.50933509,42639517.0767348,3669839.17794515,7608992.96403707,1750479.10665402,3895055.18648551,7289192.70912155,13791459.8269816,1846044.68737759,16060002.5232861,2397264.17864829,11882420.3706611,14246356.9519055,18597204.860223,9071466.42617727,198847620.245091,2905721.3695374,3294717.68721138,7973276.58435432,4319272.52539389,72501838.2555566,2336625.75666044,217065970.333048,780732261.173375,20165234.4727374,3930796.2183264,3833873.08861008,9162647.38536613,4576162.7153788,14653704.6066792,3399128.59517399,17046894.4377958,11445450.7820826,40263626.5684569,1203663.2326907,2297989.19896629,18290316.5472235,3917848.42112115,8565707.08879864,628982.077376744,5448363.63538189,1807243.19691962,2127049.97778033,1762870.52747264,8092167.7016506,4373247.4269227,13646949.4573019,5695794.41098009,4854764.35149401,24386775.3295688,3166498.4353113,9560814.0888283,8159283.62949788,5077829.62057298,1460183.40048349,47663452.2903675,2392172.91149066,3925271.56189571,3597195.11530813,4452865.05557177,3633838.55137679,2412698.28845039,14795669.850175,2788536.82383029
+"VT_160120_022",8602195.85674078,758409240.82984,3752495776.52498,11284812181.2423,61201491.3718233,722862519.973766,74818829.2502962,49771666.67074,2919638408.09229,317070290.888256,202024235.451622,32131757.5203524,67614881.7183584,7385289.20359746,781033574.70355,55287676.0752449,29288877.1280989,132737075.644761,18963683.1058672,2342669225.06668,152668265.640262,5024005.56183485,68543256.3862574,78673933.134979,139825335.691138,13588899.5268226,19026388.5550211,86408450.6626597,269958591.798188,12260189.395166,3928335681.66589,47256652.0659777,42385662.4930644,60954723.1853586,59779520.1459526,4978501.64988702,14940693.6100209,657126937.683241,32719460.2489615,72543518.3397193,351882813.847692,48386378.3410067,30709096.0019661,41830629.8120093,71692081.646968,17384605.2119269,53457996.3703126,12419886.8411392,27101850.0265448,19890248.6759471,18793518.3532435,39370261.1909353,19833574.5257233,10979558.8734856,12514476.9487532,465634511.695821,4458652.2244495,83750222.857991,106377605.356206,5559837.58236032,8659670.99296361,12906847.7053597,55969375.8502785,146045872.109856,51817288.3199411,109184958.749471,18699094.2281875,44175131.4711128,34775334.9802249,5295446.15251352,6672148.31424126,2706679.85507262,106226617.139278,14451511.866415,6164618.2239031,17748161.8362782,29277103.4875385,28186991.7263334,20638321.2974905,28464949.8006534,8030266.02985389,6824865.77400407,26353939.1852772,8369744.83174271,50359545.2720677,3208261.94167847,6611928.32179963,5110384.01624968,7910452.83570605,232847689.109406,1607575.81808132,71260233.4110075,1702477.55546872,253185398.128249,10380068.7600769,4809118.45462822,47967804.8520187,6683845.61872189,3427002.93657689,123505249.653897,3603595.61218153,3167113.18068168,6047925.06333125,10441916.7637914,20135814.9316952,10881260.4092421,13593027.8470976,13366358.9603683,4729263.51262634,93790881.4433596,9311481.31502754,42631101.0017862,3767909.82014197,6795436.84703827,1704607.67470298,3801075.15177583,7261679.11590701,13452713.3160823,1875551.69797236,15683077.7683313,4376850.10913844,12838519.6703875,13142785.6260361,18502126.6631641,9032791.97815102,182177392.192226,3664990.10350207,3557667.16500475,6635850.27691713,4624942.01969532,67227136.5115902,2640439.45019565,208197871.530942,736273821.033372,18074765.6982816,4285190.36743275,3973047.92532728,8724689.73204989,4925527.14495091,14171721.6141991,4052654.6715044,21259625.4734974,12780896.9545444,45868709.9465371,1119519.2618164,2562165.06260176,17856193.8879854,3632388.9667337,8550671.4738143,694951.062238157,5437086.13316309,1818326.91022794,2200465.27909408,1676436.54057984,8377054.98603253,4442999.52619997,13196078.9523056,5690994.47118321,4975702.47539085,24297992.8942754,2723714.25916789,9491275.93283223,8510818.92682057,5410254.18024941,1180071.3088611,48755385.0629722,2379850.46943515,4114106.08300055,3623413.1834827,4537108.91906245,3789444.67890085,2567680.24858225,14777942.7603927,2779108.82253837
+"VT_160120_024",8539533.0620899,776174180.446213,3800728855.48082,11375420124.848,62534007.9052689,731641035.521038,80156242.5044537,50739053.1275401,2993042894.74546,323900703.138841,208654885.720999,32736238.2198299,67557536.978692,7479496.94570557,802265090.702486,55017091.4006304,30106914.8592112,137085795.543706,19520200.9407284,2439553959.93915,154176761.923544,5050228.79728208,70981099.4952448,79019448.6693121,143261775.290188,13610851.2755343,19549723.743694,87130017.4756423,275885248.268225,11577358.3055531,4009718089.57735,47618351.1040905,44811385.0475171,63735936.0592752,58809277.5444033,4985961.48790245,14676074.8175824,624637967.142092,33401281.7401503,71827362.6031738,366049075.889223,48915473.5650878,30741386.1286841,42452138.1591747,73737331.6711383,18165398.2937999,56361220.8868515,13890910.2042726,27808956.9813967,20158239.6144213,19736355.3802763,41372509.8449336,20222481.1370295,11008316.9565907,12354000.6448862,453554487.226669,4530340.54453764,83913309.3727118,105514789.004503,4269624.77034285,9129241.16817615,13210887.0333058,55905472.203792,148990656.046613,53541501.8794696,109650447.766119,18843307.8420361,45124175.2109681,35901540.2059376,5426965.85953729,6635298.08958638,2387796.36749121,110559583.996263,16498465.9357237,6104291.81607847,18651577.1057345,30896128.4509134,28726782.076618,20861023.9522258,28146738.6524825,8180159.4401223,6815182.11447282,26181457.1226136,8441312.75346786,52108327.365934,4264066.52555176,6619089.4693289,5047398.09984424,7691777.46622632,233582127.600923,1619029.64948139,74451957.3265588,1676367.89040029,159843015.444807,9467895.66102705,7404484.57922541,47159624.8510473,6718044.37362178,3531103.42493267,195886415.650155,3697398.68346391,3034775.03660288,6532415.58291168,10138127.6313817,20427154.2489045,11353964.4660618,13362453.8442304,13311698.5187874,4761224.90357359,94319639.9465408,9672525.66965504,42293744.3311668,3763214.01756911,7357855.03409502,1746277.96646195,3706217.35358528,7354173.56791065,13584767.8370372,2096374.82374313,15821390.7626018,2346096.57992473,13267841.8070934,8670039.10745895,18839068.7245478,7765506.78914168,182549196.881249,3200073.32838451,3661265.6494929,6975209.58018519,4500706.30453414,72835690.3122203,2760206.08512754,213677424.653972,736520301.476694,18755479.7429975,3858554.48253713,3748650.29590482,6801186.91805314,4829599.26225156,14565295.4937811,4267394.02736257,24510615.7655578,14407532.2741539,51434577.4321355,1204608.11373185,2729081.54577984,18075622.4065993,3384091.31114809,8606186.60110574,712779.163926045,5481721.87191915,1939606.61475324,2107754.26341114,1640448.35676304,8827273.06839827,4526215.47429194,13957521.4796252,6096981.9029539,4922610.86185379,24156209.5012721,2408121.77812485,10176752.3818163,8869416.27418172,5342745.91491155,1229795.08071861,48784409.4863048,2689701.11511791,4128468.44344435,3787438.56562402,4604940.66476226,3886209.76019075,2484088.46007925,14765812.7573812,2761552.85702753
+"VT_160120_026",8951364.09369381,713653137.850959,3174989123.78645,9771735086.93364,40662307.9464139,471165964.288498,69818271.9743763,85529210.6099191,3843260057.4845,252635731.391755,270092745.859283,35054430.0946108,66787862.4206401,9317976.60568077,1048473453.14047,47181068.4247444,17296659.6699805,226217146.115149,19872659.9293965,2172404036.83512,153335550.560261,6719592.7225913,44258399.1613132,76541093.896736,175810175.411827,13553214.4955622,18728981.5271861,73189056.4986877,254646512.159308,3561204.00846758,3723013103.78803,43029669.0057816,42751328.7017407,179468222.974494,63538396.2026367,6117980.54434803,15119237.7700901,640846988.410079,33082398.316864,4805503.98955079,170507461.649409,32541346.8245826,31649121.5472219,46509023.2594004,74565050.2817079,17511065.521457,49750056.7054138,12663930.3424553,29591964.7006838,21571545.4313206,23396675.662784,33565544.6597328,20358132.8140505,11919367.5823493,5761914.17572623,378292558.833046,7947023.1677003,58046908.9060076,127977480.081834,3626212.8782448,8597075.60238499,5281275.30822036,48211264.4829885,135848996.074946,50558973.4189743,50002499.108972,19127111.643166,44785342.6723222,35355046.0706315,5202147.75291542,4566060.68165928,1973994.05428333,139833011.134259,13931745.3984639,7238857.55092002,17180866.1633843,25973696.6071272,25729503.8230881,25801606.6825274,6503793.10639242,7348557.6121791,4743893.75395336,27844633.3344701,8094775.14548669,45149724.4960146,3230699.53164948,10193666.3306975,5415128.68292778,7519777.57107076,317942590.793361,6492602.82908617,12582532.9164873,6369738.81241834,255980993.299737,8945119.03689267,6560646.95605026,46241008.1542413,6628009.22805318,3204019.68029721,199901675.009343,5105709.64363615,3195212.59373794,8557347.57030084,8205265.60912777,6442673.35729392,10728284.2485466,7536617.20540136,2267411.25775255,5727674.60119237,78944388.3567297,9815203.07769845,37709217.6424585,3849775.04756658,7800387.80539261,1729523.17756731,3524234.26148566,8382797.52862953,4800747.14133528,3010256.56098098,14137732.2512176,5803786.61708554,16995292.9199043,4845689.09828886,17334373.7076085,8616927.30075072,176458294.702757,2698108.4400895,13418037.6584906,5968362.6684936,4578533.33114154,70665515.1288043,2542140.39517338,217750250.881967,769142450.635198,18186037.7032372,3573756.10745025,4391764.53879721,6017547.62238507,4691709.2634039,21043015.1372231,7822595.00227285,9435660.09910893,12855502.0637184,40259615.6858625,793720.025416067,3039320.75105834,5306008.07416478,1659532.23979214,2825167.10819272,728095.198289091,15189042.9398812,1875555.39867138,1787996.75659832,1615835.00713694,3605430.02240177,3663321.13948111,12778535.4197298,5415960.40909846,5159830.93068153,19698418.4833686,1869395.506827,8653793.36499401,8453881.95892516,4649645.9618325,1527688.0158624,48796290.5054928,2402090.16192429,4221841.76591739,3758850.69442222,4262492.72168152,3528603.08292772,2535073.37236811,17655064.4547388,3419546.30242722
+"VT_160120_028",8780735.66611994,719438970.353638,3136564016.39083,9824182583.57813,42232978.9567361,475828392.514451,68366203.8312546,85582191.0167602,3884694451.99313,249347181.573255,269084612.313674,34959329.9475782,65946169.1784094,8734740.51767746,1062291351.24119,48343527.5414989,18252860.8334621,228906874.485263,20324280.9601826,2622784609.17682,158737185.377354,6423816.43033477,44178909.7707332,77221510.533259,174844931.118924,13269589.8025131,18497441.325806,83237894.7072926,237681525.3421,3750808.79291916,3743390633.76941,42559535.0544045,42520658.3501884,180067056.253205,63425554.254293,5961855.12906827,14208787.8638935,638508143.83482,35861945.8069421,4647083.46812721,171911758.680941,32747596.1858985,32781801.6439423,46668437.653577,68961228.4704207,15314076.258022,50302957.6769918,10610681.3434078,30326273.9919509,21683666.8926822,23319924.552225,32959334.528794,21328284.061223,12552748.9251853,5645286.62296532,423682759.815814,7677265.53906146,62037489.8981691,126054902.494163,4926765.94332355,8915506.89446577,5357536.69264664,46490996.0322093,136455331.895837,49003825.9621616,51228382.3368798,19903786.4669092,44394082.7088971,35539690.3014024,5093690.55570856,4548324.76784095,1708758.3990433,138740728.776852,15022319.1927391,7306153.72746881,16380156.9750299,26727331.0845889,25749125.3913481,25359220.4428254,6508188.68412642,6732557.26568815,4547472.79106789,26752102.2643309,7569297.79539015,44652079.4453701,3211073.47644476,9874245.73461968,5539754.80599,7633670.77384887,321893032.956035,6401506.82410584,12310481.0106095,6275331.44387552,164394693.475542,9484232.26233238,6689033.03392567,45901738.6525555,7122563.31398443,3364572.93340292,149937457.570025,4485399.47137695,3421805.97801914,8421611.00287895,8466206.70474925,6393678.38319177,10534505.4541143,7489625.06780121,1945527.63742939,5276764.46986189,79158307.6883446,10184644.8836223,38350219.3247472,3811767.29720505,8353873.04721906,1858639.07432373,3579296.79654037,8080041.21584909,4600027.07351514,2703336.94405217,13921678.3376644,2837309.92444013,15988710.1084381,4649785.76589772,16428271.7827547,8136268.800463,185780477.036211,2628624.18698607,13154022.2610436,6421914.47947667,4822182.94036802,72433954.3333265,2485246.16353614,216777711.450623,798360089.782354,19288165.5894955,3311336.94085672,4978398.71826269,6572077.30355464,5358260.25864496,20377001.1889626,8053527.32837316,8300107.70478278,12452540.7062638,36175351.3342855,785082.732796372,2862151.35530519,5614192.33960124,1837450.35469303,2682472.83257581,639128.99985121,15152720.8807167,1803381.38735062,1819764.48845674,1708707.16323234,3691005.56416614,3485985.77141178,12720423.5862498,5341776.64417224,5071898.31719947,19326741.9977315,2488239.76349066,8772772.09916042,8093378.48908368,5146262.63305273,1537251.38987715,51057190.9219238,2392379.396599,3985594.74667816,4027601.78655869,4343883.49586288,3319013.91738138,2751327.25841939,17519509.6514896,3365101.50378045
+"VT_160120_030",8783996.79931839,731603759.124223,3169654187.82525,9907144051.73786,43586571.8690377,491025323.483822,68879952.8942003,86997370.2196106,3908726662.3847,257293254.445351,263437303.685495,34467263.4888196,67504416.4235497,8859362.3960363,1075056192.1296,48452399.5141796,18135138.4525681,233839811.529061,19694836.6536386,2838280167.8954,158886866.742632,6310246.17628568,44508483.6332525,80101346.8144018,177621387.341892,13406598.8851239,18895373.6891751,91286387.6171242,237371800.341327,4205939.70799851,3813652940.4044,44143250.6049015,41643757.2824172,180028944.1741,62491737.1660355,6026919.58793549,14399128.2932907,631069829.478664,34734076.6954338,4606361.15707373,175733223.516305,32569536.7696689,32480759.5224097,47936645.7025664,68610902.3049771,15174687.547991,48714134.1327248,10122937.027509,29275055.0002078,22617098.8562054,23096660.1770913,33520104.6651532,20573569.8526509,12252850.9098397,5683173.02819794,480575692.575266,7577814.33286858,62134246.1311841,126918262.246567,5856204.64764618,8698555.66870578,5602101.17630627,47005034.6269836,137631731.887346,49325460.0381351,50987825.4785001,18831665.3784654,45440937.137411,36517266.0427967,5315336.48657371,4577055.08064005,1710909.02121726,137400935.886343,12858457.3672473,7301652.71461599,4860574.66769341,26155235.3254676,25985881.3045981,25649743.0874052,6794846.34138911,6689841.73565202,4617530.89367382,28380479.6741764,7910097.85555923,46037102.5065256,3259983.75047707,10196517.6918657,5750337.66129621,7881755.21053898,322931910.225363,6423264.8619127,11894620.0069431,6313794.13332285,97270701.6424391,10376152.5637633,3229435.93827575,45899846.3130098,6803748.65071981,3361061.24236527,101085853.719159,4902770.1008041,3354491.62406782,8796166.55009332,8462643.31578528,6487928.23690664,10506695.075759,7700286.98797014,2289534.98106096,5592946.86392583,78550645.1383083,10067223.1862741,38477455.8557654,3988850.94203855,8182571.85647094,1899428.00111885,3658600.65040773,8338113.9926573,4693685.40472717,2789755.17559472,14148081.8873455,3092176.16217075,15933652.3138196,5057550.44575371,16192404.5237048,7280544.00384079,187279453.008337,3471807.15575549,13444527.9086052,7145540.42702925,4900297.74880701,73526787.3075081,2563041.31595794,233319630.144898,807055767.331599,20050115.7161622,3881268.40788638,5475955.70112066,7285088.29223823,4842073.85871258,21013458.5561707,7962117.25654577,7760335.1078489,12482662.971091,35444298.1803298,769591.880778819,2855605.19574988,5758823.1262055,2188604.92024273,2688690.27793749,663493.882312016,15516506.406623,1764867.9567001,1851748.4522066,1734237.6436426,3546911.17062123,3538512.20220372,12702394.7432339,5599880.51175064,5331473.44606741,18858218.9785762,2739029.00273866,8657732.51393505,7755047.66613397,4730643.0183712,1414971.63969399,51397686.3270178,2504816.68377449,3938492.07320145,3970909.937477,4540511.59712511,3384231.19404216,2469991.76628153,18086563.0874268,3562658.58151501
+"VT_160120_032",10811247.9744272,645532160.214399,3871763307.80248,8202855217.12035,29750253.9080953,496271263.126059,64105058.6941379,78915310.5751381,5654955995.55967,166743591.229786,262860787.477869,40918788.195325,88686959.7410115,10659802.760968,963981505.373401,42302850.3666711,22336389.5931768,286973203.250301,19466657.4135275,1328878592.5482,163393680.867407,8678085.53954483,63465416.4455304,91511012.5922319,177713964.939423,26142508.0456109,42754677.970805,44045995.9640741,247287488.645377,3515191.31345765,3368284410.48155,41784565.5661158,46888874.5372567,139240931.71592,66378266.657545,7034739.33672266,17743015.5891777,632383242.348401,33245505.1577313,6677657.57420715,202188034.097512,42048709.1700984,30214105.2310234,50298654.7702832,115165615.74167,15014556.8742114,48943839.4424722,7759847.57218367,25071344.3218454,25889350.3871679,17959103.1673196,32584950.0045639,20580376.2263146,11888065.0187789,6076521.62063499,237600401.675092,9544760.25362195,72604683.0423977,93156871.1678788,5442304.09476012,2329982.52092858,7328333.53343502,10864537.1664676,120930959.09772,53404233.0743346,29462399.3025531,18301516.6788539,21389733.7006554,36382488.6107459,8400537.01619739,536444.486440419,2078192.7482904,116356374.946055,11307748.9472629,4458009.59478199,19076608.5064026,26285201.9833519,60821655.3168952,69357893.6596659,2333610.59664267,4997102.76573609,5005893.96826473,35373723.3059199,8064160.62810329,114930672.428169,3330374.41164794,13453932.870087,5740842.22207538,8214923.16225102,349809640.738469,5262888.98846845,147351887.067685,13060144.4761704,142391619.326057,10860740.9276784,2486731.42989278,45090386.1036065,6513952.20307905,3325004.84128503,115822638.255037,5567715.19459597,3614480.44813239,2695292.46499103,6453384.80565557,23028017.7708182,27420890.8511635,3135880.38958446,5236343.92461248,6185703.55596854,58643465.3599971,8273606.51325042,82405823.7782263,3804816.62644794,7978640.91417199,1943345.89904868,2933380.64915843,8905933.21642423,11259121.9751716,3160939.64730699,13894174.7167904,4765518.69267106,10020011.1615662,8617436.0009605,17654579.0838706,8042530.16075165,184452414.765998,3307573.14734652,34120836.5145542,6614891.85149723,3516607.3285244,74137420.5202181,2178214.42893773,238944539.428275,806158078.208777,20054582.5777897,3922623.11244058,3943037.2795739,7460075.16452955,4916025.06564051,32255937.6223093,10943052.9334443,11552206.1615062,10397380.6178807,42633696.7138299,754563.04153002,2625590.48524462,4584392.81761894,2025072.73490867,5391475.31665499,1352834.63799433,8747908.75219173,2400778.9271833,2239469.95253658,1763436.17525713,1472580.14501526,5198852.04389163,13209582.8958759,5148519.1708588,4972698.41850883,18529715.2822536,2710319.67797125,7190870.67865882,13942327.2922651,14147654.0121406,1555427.57171192,49463447.8748385,2524860.31434439,3715099.81965177,3759533.55371021,6953692.81407917,3552742.81802384,2750339.83037047,57772067.2843025,4923091.74667843
+"VT_160120_034",10742908.5423956,651756056.256985,3864872881.2067,8249770633.66375,29161259.895392,490311702.425969,59907592.2780827,80236888.3405355,5545237892.70623,165532825.144457,266831396.035082,41049356.710241,90685601.8001513,10482040.2678342,941520867.828961,45501646.0508811,24940614.2262585,286769415.980052,19684340.8551404,1609142691.53693,170694023.874931,8255417.41382759,61850334.8280229,89787413.3967728,175318922.141519,25809352.2369738,41629950.0836125,50674745.6712462,221729649.602923,3649287.71423409,3394598759.90759,41592970.9520508,45867346.0600307,141529372.141456,67373313.4866975,7091307.71879486,18086111.0845985,609157580.222049,30801676.4815382,6739027.9122655,200141012.678528,41911941.131379,30744013.0550148,50893658.0953233,98831065.0003681,14992918.4748916,43533310.3220252,8979929.70156876,24470222.9399661,24105808.6674465,16887080.3141655,31479388.2876728,19930236.6854497,12028868.6979902,5982229.40701392,296224472.873064,9133012.24983791,80819897.3819012,95480383.046838,4693856.75290069,2045303.94171841,7163192.85075461,10380476.3098224,123986370.170437,53560281.1914353,29655611.727933,19228420.5629433,20486085.5973848,37285366.9678973,8304700.43282335,672457.585784738,2071822.92872727,115133070.797276,11045355.5855259,4738071.66550817,20214055.6208251,22477130.2027463,60949658.5528787,69922601.3126593,2260415.71320599,4561066.91483625,4798501.55050092,33930790.4574558,8422932.49626874,114436388.544117,3371421.89905741,13499558.5108451,5756916.4508853,8179321.24736815,355965292.938446,5286763.62997576,140301039.388493,15031162.734728,68895115.9436791,10053812.4922782,2612079.69286789,42546438.7661242,6631969.08821518,3397786.80804989,128542990.53897,4654873.5152053,3749162.70359823,2532171.29360704,6433558.73544913,22160606.6698087,25704852.1678604,2977167.33950671,5169949.86452922,6425689.03627893,60443216.4828676,8116460.66529204,82800097.9538752,3880269.99838342,8370064.93938642,1918745.46100702,3013907.9271912,9030958.49565559,11298515.0261435,2825593.48488713,14845374.6811091,3962860.93276461,8870956.18575457,9308941.36651859,17200898.6784356,7418632.72672158,197267721.524188,3405245.52040349,32075306.6805035,6458523.62558145,3419014.91498139,71828539.2607438,2230596.97258067,217438764.808822,768816970.197232,20367183.7993486,4287011.09566013,3254938.49544847,6254319.59088648,4500193.69974583,30738368.6847927,10192060.7717919,10584248.8653038,9542299.02705553,39641132.3236252,762860.392004252,2482836.93948907,4537714.52971088,1977228.70628122,5287421.45123332,1190644.81729419,9049837.61136884,2204038.9795085,2113303.83643849,1744325.87295555,1354300.33858818,4883332.16647846,13592134.8726604,5042863.81842117,5191564.3894331,19305523.1244213,2829036.05422223,7677973.80359817,14613093.9581605,14277498.8453136,1585624.30456272,50944548.397389,2582495.04235109,3797280.18352972,3811365.8958862,6961376.29426277,3287043.5873235,3007007.27999329,58132075.0081519,4911181.34109528
+"VT_160120_036",10408886.7321768,659933588.895103,3875932994.02779,8265011833.81668,29882066.2482375,501458441.753539,59123591.5822921,81388542.374939,5531774914.60543,169288359.530655,263926083.882861,40325475.3022755,90340730.8911893,10289673.5114933,942905325.501217,44210484.1336893,23986615.5044938,289665874.751216,19764093.8812337,1532299340.3341,169298123.317582,8218101.37527623,61340130.8826054,90074105.2020231,179091697.282651,26280550.4214386,41785033.9823134,49611492.3913184,221991036.662771,3690530.14705392,52308264.6073928,42144887.8865086,45879119.7509087,141914576.345,67586820.0580082,6978457.64299444,17796818.1268295,617725743.508916,32266156.6690737,6655139.48690388,201964433.898754,41739193.5903795,30855833.075207,52097526.0412493,100236715.783299,14858730.0352203,44084620.2896131,9058245.79039632,25949698.7821595,23246923.9866388,17029383.4113578,30437348.4879577,20476102.9762042,12054715.1116816,5246837.23492359,265411606.040731,9103071.22589486,78099623.8887256,96104966.5574221,4641419.06489521,2072231.89722948,6580655.65691805,10402329.0531764,121752178.205715,51774442.367446,29243316.895044,18975962.1916436,21221402.3291575,37158900.4410879,8481722.2002698,503356.901189725,2056439.75001325,113873295.500986,11786758.1284884,4524036.93260582,16784400.0754646,22618098.7800966,61072311.9583624,70167956.268017,2424214.04372733,4720861.44767803,4821021.96106327,34009512.6295067,8349078.83673656,118640471.01689,3443644.92986658,13787628.4370623,5875067.88213946,8201399.77937765,350313501.695503,5040976.38524842,143533861.995833,14199834.992581,116055685.980969,8978497.45360278,4020621.28637043,42445227.9540822,6469791.88661776,3376827.88736983,146065586.469334,5293374.21460022,3621278.95325048,2591129.12447164,6464222.38280154,22438715.7656585,26429673.6547181,3040438.76113408,5202446.83188703,6375507.65466666,59402679.0789087,8264065.43708765,81593788.131848,3940639.85359658,8134819.078789,1903217.32276564,2595078.77755127,9220266.75472651,11394474.3265425,2629993.17145351,13815097.5392184,5960111.32988745,9135567.41562738,15055136.4120528,16862194.7906648,7526455.67611555,192914276.35847,3428199.67991705,32184734.4640586,6156221.95410136,3515352.76730767,74408548.7361226,2153713.88404952,217847502.026884,761308966.654759,18123433.1130227,3884332.97236203,3067452.84415032,6272326.69540698,4660832.0031907,31033577.2166565,9942462.08461579,10602120.1022485,9607926.52697339,31485707.5726601,761088.791965244,2314397.89212487,4809495.52413262,1993611.56017972,5388652.46488036,1135067.49372094,8825478.72855671,2333733.51494003,2109847.91149513,1764867.87816734,1170448.05419452,4961628.78378116,13211608.9851919,4833867.18644505,5002025.16997376,18493614.2929438,2633917.25081032,6437991.51780598,14290134.1312787,14211368.2939067,1709820.99064116,51384088.5246588,2598317.737054,3780506.2594988,3759716.36334095,7203724.96283297,3277018.93473143,3137902.3067091,58068106.9605639,4996561.14429719
+"VT_160120_038",9737038.75893492,368518413.625396,2891791572.72271,7671346457.34129,35423987.3743618,556546555.313522,60756591.5911573,701438359.143738,4285777204.83857,148622232.67984,193947349.663091,42000677.5039896,60865844.6866114,11376992.211017,947369458.736714,37148559.2132642,13524724.2435455,189780090.45052,21561561.4450305,1755038729.59238,213178564.979766,8115298.35284535,64542588.0958398,83051386.7523342,169203620.654991,11934842.679656,17036397.2511046,56486708.8311716,186739672.052224,6107681.4566226,46839052.5490278,39133708.4174995,66732618.4965807,155915740.398016,76489063.7615458,6909834.2042758,19581507.3831806,613452499.704266,30754689.4611055,28658384.3799295,111850665.1318,32389925.3928751,32327063.4363465,48762079.8209192,47850656.8583377,12152256.911876,42619538.846407,9630682.92847398,23748455.5947836,10070757.4373681,19340137.2245802,28979173.3404493,20567333.6632375,13756779.2134703,4602158.73380097,318202849.681546,7180063.84390208,45620801.1369903,96296787.5706837,3769923.30583726,2098620.00760023,35138799.7458807,49689790.1081646,120073855.016501,46395687.444069,26928047.9187727,18919686.9407487,132266247.232872,36166301.1797497,5031433.19232095,707053.610947893,1394005.7311468,159214354.164343,11349565.9403154,4910523.98254755,24826611.2007112,23752009.3780334,8111519.06005253,21589923.9550717,24125568.7299683,4328996.79055693,2227591.58726477,24250675.4310731,8410066.128786,37082057.5687576,14224495.2395335,12353058.2028901,4459546.8861434,8205823.94310216,345795926.107209,31516591.8122795,8225799.93193819,2802939.51150029,172810811.950007,9072143.85811167,2447276.58438679,42856148.5427511,4653046.78233423,1157007.79389902,135997175.158737,1793508.13385509,3801068.30106759,2554784.37648892,3784789.80692066,11581676.1323214,13036659.8219079,8546309.57159567,61896881.7862739,5193183.48815226,89215677.5109713,8461057.4702682,32998832.6013011,4197586.6854419,8738985.29277514,1860696.94786637,3399029.65380767,2993860.63768406,9642044.04160737,1535406.33857181,16655752.0566749,3857006.9238429,9652125.16961954,11880272.6456162,21399274.0553287,7100456.29630388,227810599.698933,3446014.6829706,8472744.46638792,4162046.71097091,3645017.9782067,76465572.0039944,2454697.24762855,211543304.298828,755576242.604989,19270448.943012,3305213.67842646,2969616.19802908,6625385.15751642,4413428.48841472,7703432.37071986,1509038.85499435,4647200.13796836,9400462.69758371,40999952.1948159,798729.08761983,898245.441705513,2093215.81426166,858187.208515652,8998030.60531843,3580859.05985589,6138142.56028074,1634124.58617973,1993244.26284168,1904153.91842343,1521538.20373311,4175298.75778174,13170749.7303204,4339278.26654379,5012313.01908508,18538377.088746,2471408.24371351,7719139.5360016,10967208.5538996,4730914.42537849,1474058.66901063,48082901.5727836,2435909.0111971,4363094.60249199,3374840.82046952,5243620.49883889,2847462.79891007,4266848.58563449,8109156.36459577,5038951.1941462
+"VT_160120_040",9934799.25263992,375836247.174509,2884373047.77547,7905301044.22145,35573132.2266778,560387015.661853,63984244.9827572,698385769.976211,4317099037.59284,151604425.143095,196659379.588214,42475863.9975435,63672587.4872164,11672577.2394498,957650455.061172,38277672.0418209,14663135.0807262,193764912.185701,21847421.2370331,1776491710.18451,219384517.34675,8134547.31426432,67031405.4295678,86128351.9530911,169094486.796142,11927291.612244,17099735.0114863,56987972.8270964,184617430.189418,6380565.92562305,49799157.9983667,39339741.7221688,67730803.6121619,158088964.700247,77784470.41518,7261968.14694198,19366117.0357642,575967487.14093,31228350.4237222,28749021.6606678,114152953.620449,32837476.001478,32313689.6082591,49037900.4597961,47923935.0904822,11920541.5503579,45302490.2670043,8009917.67162212,25676037.4957024,10215928.2063743,19784232.0977507,30225996.4107507,20393856.5020287,13619724.8886577,4799552.82620209,296424678.235081,7062029.55375609,48848209.3559762,101323813.923856,4439500.12796503,2220358.88866602,35246869.4741919,49710713.0864728,121727321,46950407.9311092,27150702.1783594,19474544.8078591,132245080.214264,36280741.4248055,5285185.41341366,600016.989319636,1418448.33573977,159474509.725069,13110398.8393007,4999824.64133883,26139820.5030213,26213265.2529846,8124057.89988214,21897039.2704881,24453471.1284649,4261685.53357104,2198442.4682436,25298771.4410718,8204391.11995749,38359981.2263799,14381181.0834863,12470759.0110495,4513799.42038729,8276453.11275374,342507775.798005,31433715.2319776,7575385.88884809,2902017.66296793,123409718.476101,7465071.31714924,6297211.26647415,706892.229336319,4789495.94318605,1230699.88256605,123461259.759045,1622745.51087538,3927917.76946473,2123307.99652869,3828533.09446011,11846880.990395,13168395.4970154,8780619.83074943,63635250.2252369,5330271.72591704,91258286.9807226,9656198.56632925,46162652.2583335,4149817.72577566,8854465.37429845,1931534.82177527,3401749.74453956,3095370.84783698,9644818.34360461,1368678.67459345,17234636.0601444,2785373.04929555,9881934.42695221,12568959.7693456,21100358.1920544,5867219.29185353,236932876.729115,2904846.50728148,8719937.07549249,4228207.86925475,3624635.7453292,77719840.4794496,2466026.78548825,220712642.88383,778968494.028449,18211869.4106139,3552955.67831798,3090117.07708974,7305928.87017414,4469944.59281558,7921992.1109694,1586368.23328241,4885515.40764741,9866157.50261439,41987649.9280603,859018.580344819,855402.855651353,1958863.68711785,981476.935521276,9086609.86176663,3588768.7633977,6136277.45781362,1526970.58621673,2072417.0660832,1923374.88726624,1526197.52507684,4304648.56079495,13003904.0929066,4329421.11585443,5397418.05431216,18454516.2047903,2666788.32880361,7374046.62878731,11122827.1903071,5168033.64186004,1765658.4883592,49322159.1546131,2392087.59185383,4399240.41858028,3498005.25636277,5396857.46348111,3048506.72264773,4414135.34455428,8167061.84351309,5138026.01743978
Binary file test-data/xcmsObj.rdata.xcms.fillpeaks has changed