-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexam3ou.csv
We can't make this file beautiful and searchable because it's too large.
4029 lines (4029 loc) · 651 KB
/
exam3ou.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"Raw_Data_File","cells","tracer_molecule","labelled_positions","abundance","injection","Replicate","Incubation_time","Metabolite_name","CHEBI","atomic_positions","Empirical_formula","retention(min)","m/z_monitored","signal_intensity","isotopologue","isotologue_abundance"
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",260,81519,"Lac_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",261,23987041,"Lac_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",262,5893114,"Lac_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",263,8436129,"Lac_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",264,1635972,"Lac_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",265,624931,"Lac_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",266,83037,"Lac_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",259,75177,"Ala_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",260,14615138,"Ala_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",261,3666107,"Ala_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",262,5028443,"Ala_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",263,985552,"Ala_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",264,362950,"Ala_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",265,48669,"Ala_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",231,79111,"Ala_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",232,18394259,"Ala_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",233,4396829,"Ala_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",234,6182021,"Ala_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",235,1128790,"Ala_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",236,417601,"Ala_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",237,50789,"Ala_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",245,66247,"Gly_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",246,12181614,"Gly_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",247,2781093,"Gly_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",248,1135740,"Gly_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",249,169139,"Gly_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",250,27924,"Gly_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",217,59313,"Gly_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",218,15370613,"Gly_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",219,3317751,"Gly_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",220,1363584,"Gly_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",221,188145,"Gly_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",259,32243,"Val_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",260,8548820,"Val_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",261,2115843,"Val_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",262,818584,"Val_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",263,181604,"Val_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",264,33895,"Val_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",265,9016,"Val_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",266,1464,"Val_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",267,728,"Val_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",273,35819,"Leu_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",274,7126108,"Leu_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",275,1786075,"Leu_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",276,687299,"Leu_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",277,122308,"Leu_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",278,20520,"Leu_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",279,3220,"Leu_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",280,380,"Leu_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",281,1912,"Leu_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",282,709,"Leu_13C8"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",301,29579,"Iso_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",302,8151578,"Iso_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",303,2152865,"Iso_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",304,834947,"Iso_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",305,144055,"Iso_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",306,24496,"Iso_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",307,2990,"Iso_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",308,263,"Iso_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",309,101,"Iso_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",310,74,"Iso_13C8"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",285,16000,"Pro_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",286,2147726,"Pro_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",287,565427,"Pro_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",288,329009,"Pro_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",289,2393917,"Pro_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",290,669533,"Pro_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",291,372721,"Pro_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",292,78723,"Pro_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",293,22475,"Pro_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",294,3574,"Pro_13C8"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",295,542,"Pro_13C9"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",257,16044,"Pro_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",258,3384844,"Pro_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",259,883164,"Pro_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",260,489699,"Pro_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",261,98498,"Pro_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",262,31089,"Pro_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",263,5387,"Pro_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",264,1206,"Pro_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",286,2603,"Fum_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",287,643337,"Fum_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",288,166880,"Fum_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",289,95724,"Fum_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",290,25435,"Fum_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",291,8499,"Fum_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",292,1764,"Fum_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",293,443,"Fum_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",294,80,"Fum_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",295,-26,"Fum_13C8"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",319,8380,"Met_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",320,505692,"Met_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",321,133004,"Met_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",322,77209,"Met_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",323,15749,"Met_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",324,4343,"Met_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",325,1006,"Met_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",326,653,"Met_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",327,3709,"Met_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",291,1820,"Met_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",292,649661,"Met_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",293,159011,"Met_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",294,94975,"Met_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",295,18428,"Met_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",296,8795,"Met_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",297,3001,"Met_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",298,8136,"Met_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",389,10376,"Ser_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",390,2190005,"Ser_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",391,806970,"Ser_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",392,380870,"Ser_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",393,92990,"Ser_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",394,22763,"Ser_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",395,3780,"Ser_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",361,4946,"Ser_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",362,1814884,"Ser_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",363,652760,"Ser_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",364,305868,"Ser_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",365,72300,"Ser_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",366,17081,"Ser_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",403,12046,"Thr_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",404,2329606,"Thr_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",405,825963,"Thr_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",406,380141,"Thr_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",407,87535,"Thr_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",408,20442,"Thr_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",409,3216,"Thr_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",410,506,"Thr_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",335,5636,"Phe_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",336,1255819,"Phe_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",337,371053,"Phe_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",338,139608,"Phe_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",339,25893,"Phe_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",340,4412,"Phe_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",341,920,"Phe_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",342,1369,"Phe_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",343,367,"Phe_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",344,2432,"Phe_13C8"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",345,746,"Phe_13C9"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",346,825,"Phe_13C10"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",347,243,"Phe_13C11"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",418,15904,"Mal_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",419,4392584,"Mal_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",420,1629373,"Mal_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",421,990224,"Mal_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",422,272929,"Mal_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",423,86331,"Mal_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",424,18377,"Mal_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",425,5866,"Mal_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",417,31697,"Asp_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",418,4770490,"Asp_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",419,1815815,"Asp_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",420,1095236,"Asp_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",421,304874,"Asp_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",422,95145,"Asp_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",423,20205,"Asp_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",424,4164,"Asp_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",389,9295,"Asp_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",390,2081922,"Asp_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",391,806088,"Asp_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",392,425087,"Asp_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",393,111167,"Asp_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",394,30071,"Asp_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",395,5870,"Asp_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",396,1198,"Asp_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",405,959,"Cys_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",406,209254,"Cys_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",407,72611,"Cys_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",408,42410,"Cys_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",409,42149,"Cys_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",410,13257,"Cys_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",411,6265,"Cys_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",377,664,"Cys_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",378,176193,"Cys_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",379,59560,"Cys_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",380,34229,"Cys_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",381,8774,"Cys_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","01","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",382,2609,"Cys_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",260,56422,"Lac_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",261,16279838,"Lac_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",262,3988397,"Lac_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",263,5673694,"Lac_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",264,1097637,"Lac_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",265,418350,"Lac_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",266,55185,"Lac_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",259,53225,"Ala_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",260,10015767,"Ala_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",261,2497959,"Ala_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",262,3416661,"Ala_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",263,670805,"Ala_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",264,245547,"Ala_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",265,33267,"Ala_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",231,51827,"Ala_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",232,11887968,"Ala_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",233,2853891,"Ala_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",234,4009152,"Ala_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",235,735927,"Ala_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",236,273231,"Ala_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",237,33186,"Ala_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",245,52484,"Gly_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",246,9367176,"Gly_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",247,2140040,"Gly_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",248,874212,"Gly_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",249,130849,"Gly_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",250,22994,"Gly_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",217,45285,"Gly_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",218,11584725,"Gly_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",219,2505222,"Gly_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",220,1032481,"Gly_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",221,142865,"Gly_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",259,21618,"Val_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",260,5855881,"Val_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",261,1445721,"Val_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",262,561989,"Val_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",263,121010,"Val_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",264,22640,"Val_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",265,5614,"Val_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",266,890,"Val_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",267,419,"Val_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",273,24284,"Leu_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",274,4813711,"Leu_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",275,1202831,"Leu_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",276,463825,"Leu_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",277,77389,"Leu_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",278,12821,"Leu_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",279,1623,"Leu_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",280,278,"Leu_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",281,1248,"Leu_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",282,397,"Leu_13C8"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",301,20853,"Iso_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",302,5659658,"Iso_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",303,1494438,"Iso_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",304,580619,"Iso_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",305,99676,"Iso_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",306,17155,"Iso_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",307,2110,"Iso_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",308,196,"Iso_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",309,102,"Iso_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",310,81,"Iso_13C8"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",285,11395,"Pro_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",286,1512688,"Pro_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",287,398402,"Pro_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",288,233038,"Pro_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",289,1180832,"Pro_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",290,348466,"Pro_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",291,191639,"Pro_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",292,41372,"Pro_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",293,11062,"Pro_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",294,1925,"Pro_13C8"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",295,383,"Pro_13C9"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",257,11921,"Pro_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",258,2375987,"Pro_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",259,620300,"Pro_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",260,344017,"Pro_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",261,69635,"Pro_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",262,21011,"Pro_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",263,3935,"Pro_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",264,870,"Pro_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",286,1748,"Fum_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",287,452383,"Fum_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",288,118293,"Fum_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",289,67489,"Fum_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",290,16982,"Fum_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",291,5906,"Fum_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",292,1292,"Fum_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",293,303,"Fum_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",294,98,"Fum_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",295,41,"Fum_13C8"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",319,3196,"Met_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",320,386571,"Met_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",321,100933,"Met_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",322,59104,"Met_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",323,12270,"Met_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",324,5749,"Met_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",325,1797,"Met_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",326,902,"Met_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",327,2129,"Met_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",291,1404,"Met_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",292,497215,"Met_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",293,121865,"Met_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",294,72794,"Met_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",295,13689,"Met_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",296,6395,"Met_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",297,1897,"Met_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",298,6917,"Met_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",389,7371,"Ser_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",390,1497590,"Ser_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",391,553693,"Ser_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",392,263686,"Ser_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",393,63952,"Ser_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",394,15224,"Ser_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",395,2753,"Ser_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",361,3584,"Ser_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",362,1281439,"Ser_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",363,459102,"Ser_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",364,217020,"Ser_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",365,51113,"Ser_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",366,11983,"Ser_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",403,10773,"Thr_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",404,2135587,"Thr_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",405,753539,"Thr_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",406,346824,"Thr_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",407,80327,"Thr_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",408,18514,"Thr_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",409,2930,"Thr_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",410,442,"Thr_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",335,4559,"Phe_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",336,1013052,"Phe_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",337,297552,"Phe_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",338,111531,"Phe_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",339,20435,"Phe_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",340,3487,"Phe_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",341,896,"Phe_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",342,954,"Phe_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",343,363,"Phe_13C7"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",344,1551,"Phe_13C8"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",345,473,"Phe_13C9"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",346,534,"Phe_13C10"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",347,156,"Phe_13C11"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",418,11074,"Mal_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",419,2966928,"Mal_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",420,1101635,"Mal_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",421,674797,"Mal_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",422,186223,"Mal_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",423,59914,"Mal_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",424,12353,"Mal_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",425,3829,"Mal_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",417,23099,"Asp_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",418,3424569,"Asp_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",419,1294877,"Asp_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",420,781132,"Asp_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",421,218446,"Asp_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",422,67944,"Asp_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",423,14334,"Asp_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",424,2945,"Asp_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",389,6689,"Asp_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",390,1458746,"Asp_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",391,563100,"Asp_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",392,297515,"Asp_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",393,77924,"Asp_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",394,21524,"Asp_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",395,4259,"Asp_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",396,833,"Asp_13C6"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",405,816,"Cys_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",406,166062,"Cys_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",407,57870,"Cys_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",408,33661,"Cys_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",409,18002,"Cys_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",410,5284,"Cys_13C4"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",411,2293,"Cys_13C5"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",377,1222,"Cys_13C-1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",378,141570,"Cys_13C0"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",379,47412,"Cys_13C1"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",380,27491,"Cys_13C2"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",381,6540,"Cys_13C3"," "
"SW620_24h_12Glc_R1_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R1","02","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",382,2055,"Cys_13C4"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",260,93290,"Lac_13C-1"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",261,30260590,"Lac_13C0"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",262,7366697,"Lac_13C1"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",263,10509866,"Lac_13C2"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",264,2030738,"Lac_13C3"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",265,819104,"Lac_13C4"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",266,117581,"Lac_13C5"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",259,121874,"Ala_13C-1"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",260,25439808,"Ala_13C0"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",261,6345546,"Ala_13C1"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",262,8731032,"Ala_13C2"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",263,1712900,"Ala_13C3"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",264,626071,"Ala_13C4"," "
"SW620_24h_12Glc_R2_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",265,82429,"Ala_13C5"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",260,49750,"Lac_13C-1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",261,14720638,"Lac_13C0"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",262,3599553,"Lac_13C1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",263,5075082,"Lac_13C2"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",264,986325,"Lac_13C3"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",265,374568,"Lac_13C4"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",266,50324,"Lac_13C5"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",259,67269,"Ala_13C-1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",260,12993724,"Ala_13C0"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",261,3240396,"Ala_13C1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",262,4423869,"Ala_13C2"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",263,870332,"Ala_13C3"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",264,316952,"Ala_13C4"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",265,42783,"Ala_13C5"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",231,65558,"Ala_13C-1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",232,15155419,"Ala_13C0"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",233,3642971,"Ala_13C1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",234,5108560,"Ala_13C2"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",235,936689,"Ala_13C3"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",236,347574,"Ala_13C4"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",237,41984,"Ala_13C5"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",245,67029,"Gly_13C-1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",246,12222774,"Gly_13C0"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",247,2787163,"Gly_13C1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",248,1144538,"Gly_13C2"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",249,169418,"Gly_13C3"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",250,29385,"Gly_13C4"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",217,58159,"Gly_13C-1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",218,15195940,"Gly_13C0"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",219,3276965,"Gly_13C1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",220,1349425,"Gly_13C2"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",221,187474,"Gly_13C3"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",259,25608,"Val_13C-1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",260,6882543,"Val_13C0"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",261,1687416,"Val_13C1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",262,654888,"Val_13C2"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",263,159690,"Val_13C3"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",264,30889,"Val_13C4"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",265,8788,"Val_13C5"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",266,1570,"Val_13C6"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",267,530,"Val_13C7"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",273,30490,"Leu_13C-1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",274,6014945,"Leu_13C0"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",275,1504726,"Leu_13C1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",276,578296,"Leu_13C2"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",277,96987,"Leu_13C3"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",278,16315,"Leu_13C4"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",279,2363,"Leu_13C5"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",280,260,"Leu_13C6"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",281,1530,"Leu_13C7"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",282,488,"Leu_13C8"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",301,25452,"Iso_13C-1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",302,7125347,"Iso_13C0"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",303,1880838,"Iso_13C1"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",304,727248,"Iso_13C2"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",305,126327,"Iso_13C3"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",306,21573,"Iso_13C4"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",307,2611,"Iso_13C5"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",308,207,"Iso_13C6"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",309,165,"Iso_13C7"," "
"SW620_24h_12Glc_R2_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R2","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",310,101,"Iso_13C8"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",260,75272,"Lac_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",261,21898764,"Lac_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",262,5383132,"Lac_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",263,7632343,"Lac_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",264,1474679,"Lac_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",265,561322,"Lac_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",266,75282,"Lac_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",259,109812,"Ala_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",260,21331512,"Ala_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",261,5350523,"Ala_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",262,7367813,"Ala_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",263,1447712,"Ala_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",264,530779,"Ala_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",265,70723,"Ala_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",231,109822,"Ala_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",232,24921918,"Ala_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",233,6032275,"Ala_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",234,8548558,"Ala_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",235,1571289,"Ala_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",236,581843,"Ala_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",237,70971,"Ala_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",245,110412,"Gly_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",246,20137691,"Gly_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",247,4598761,"Gly_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",248,1889017,"Gly_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",249,282323,"Gly_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",250,48062,"Gly_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",217,91805,"Gly_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",218,23154910,"Gly_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",219,5037689,"Gly_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",220,2081054,"Gly_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",221,288590,"Gly_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",259,35867,"Val_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",260,9753211,"Val_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",261,2392646,"Val_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",262,926912,"Val_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",263,226470,"Val_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",264,44196,"Val_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",265,12363,"Val_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",266,2263,"Val_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",267,792,"Val_13C7"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",273,42301,"Leu_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",274,8166798,"Leu_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",275,2038878,"Leu_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",276,782278,"Leu_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",277,131634,"Leu_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",278,21679,"Leu_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",279,2793,"Leu_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",280,295,"Leu_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",281,1817,"Leu_13C7"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",282,480,"Leu_13C8"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",301,36146,"Iso_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",302,9651943,"Iso_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",303,2542057,"Iso_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",304,985936,"Iso_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",305,170756,"Iso_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",306,29541,"Iso_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",307,3355,"Iso_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",308,351,"Iso_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",309,253,"Iso_13C7"," "
"SW620_24h_12Glc_R3_PIM_SIM_01","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",310,36,"Iso_13C8"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",260,63911,"Lac_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",261,18538000,"Lac_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",262,4552829,"Lac_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",263,6400081,"Lac_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",264,1238964,"Lac_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",265,468060,"Lac_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",266,62777,"Lac_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",259,86529,"Ala_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",260,16436222,"Ala_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",261,4139069,"Ala_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",262,5683198,"Ala_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",263,1122180,"Ala_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",264,410989,"Ala_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",265,55263,"Ala_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",231,90872,"Ala_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",232,20234126,"Ala_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",233,4876928,"Ala_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",234,6896990,"Ala_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",235,1268668,"Ala_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",236,470280,"Ala_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",237,57421,"Ala_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",245,101177,"Gly_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",246,17837469,"Gly_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",247,4089835,"Gly_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",248,1687909,"Gly_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",249,252908,"Gly_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",250,43640,"Gly_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",217,86031,"Gly_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",218,21389696,"Gly_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",219,4649777,"Gly_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",220,1920223,"Gly_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",221,266796,"Gly_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",273,34160,"Leu_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",274,6597125,"Leu_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",275,1638679,"Leu_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",276,631260,"Leu_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",277,104156,"Leu_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",278,17412,"Leu_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",279,2131,"Leu_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",280,300,"Leu_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",281,1411,"Leu_13C7"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",282,478,"Leu_13C8"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",301,29386,"Iso_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",302,7939079,"Iso_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",303,2104564,"Iso_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",304,812754,"Iso_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",305,139928,"Iso_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",306,24325,"Iso_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",307,2814,"Iso_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",308,335,"Iso_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",309,181,"Iso_13C7"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",310,122,"Iso_13C8"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",285,11099,"Pro_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",286,1532776,"Pro_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",287,403627,"Pro_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",288,234312,"Pro_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",289,1133422,"Pro_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",290,338044,"Pro_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",291,185035,"Pro_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",292,40271,"Pro_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",293,11160,"Pro_13C7"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",294,1857,"Pro_13C8"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",295,403,"Pro_13C9"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",257,13245,"Pro_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",258,2417643,"Pro_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",259,632565,"Pro_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",260,357274,"Pro_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",261,74431,"Pro_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",262,21911,"Pro_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",263,4196,"Pro_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",264,907,"Pro_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",286,4398,"Fum_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",287,1090661,"Fum_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",288,288927,"Fum_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",289,170097,"Fum_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",290,39994,"Fum_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",291,12852,"Fum_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",292,2179,"Fum_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",293,562,"Fum_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",294,119,"Fum_13C7"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",295,21,"Fum_13C8"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",319,2565,"Met_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",320,545146,"Met_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",321,143513,"Met_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",322,84099,"Met_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",323,17090,"Met_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",324,7449,"Met_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",325,2305,"Met_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",326,917,"Met_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",327,1205,"Met_13C7"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",291,1675,"Met_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",292,699671,"Met_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",293,172426,"Met_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",294,102980,"Met_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",295,19938,"Met_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",296,8382,"Met_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",297,2625,"Met_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",298,7915,"Met_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",389,7857,"Ser_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",390,1718322,"Ser_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",391,639640,"Ser_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",392,301603,"Ser_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",393,73367,"Ser_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",394,17965,"Ser_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",395,3069,"Ser_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",361,4136,"Ser_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",362,1466272,"Ser_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",363,527885,"Ser_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",364,249550,"Ser_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",365,58700,"Ser_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",366,13698,"Ser_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","alpha-Ketoglutarate","chebi","C1C5","C14H28N1O5Si2","22.72",345,1169,"alp_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","alpha-Ketoglutarate","chebi","C1C5","C14H28N1O5Si2","22.72",346,384521,"alp_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","alpha-Ketoglutarate","chebi","C1C5","C14H28N1O5Si2","22.72",347,104556,"alp_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","alpha-Ketoglutarate","chebi","C1C5","C14H28N1O5Si2","22.72",348,39979,"alp_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","alpha-Ketoglutarate","chebi","C1C5","C14H28N1O5Si2","22.72",349,7024,"alp_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","alpha-Ketoglutarate","chebi","C1C5","C14H28N1O5Si2","22.72",350,1204,"alp_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","alpha-Ketoglutarate","chebi","C1C5","C14H28N1O5Si2","22.72",351,221,"alp_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","alpha-Ketoglutarate","chebi","C1C5","C14H28N1O5Si2","22.72",352,51,"alp_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","alpha-Ketoglutarate","chebi","C1C5","C14H28N1O5Si2","22.72",353,313,"alp_13C7"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",403,21239,"Thr_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",404,4248355,"Thr_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",405,1500317,"Thr_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",406,690717,"Thr_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",407,161244,"Thr_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",408,36884,"Thr_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",409,6013,"Thr_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",410,981,"Thr_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",335,6433,"Phe_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",336,1456228,"Phe_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",337,426206,"Phe_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",338,160337,"Phe_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",339,29295,"Phe_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",340,4868,"Phe_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",341,2005,"Phe_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",342,1576,"Phe_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",343,401,"Phe_13C7"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",344,4280,"Phe_13C8"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",345,1338,"Phe_13C9"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",346,979,"Phe_13C10"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",347,297,"Phe_13C11"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",418,15952,"Mal_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",419,4365842,"Mal_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",420,1633705,"Mal_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",421,1013228,"Mal_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",422,284679,"Mal_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",423,91035,"Mal_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",424,19566,"Mal_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",425,5407,"Mal_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",417,32702,"Asp_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",418,5012421,"Asp_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",419,1906307,"Asp_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",420,1162913,"Asp_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",421,329273,"Asp_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",422,103519,"Asp_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",423,22079,"Asp_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",424,4685,"Asp_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",389,9559,"Asp_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",390,2123257,"Asp_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",391,827943,"Asp_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",392,442299,"Asp_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",393,118462,"Asp_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",394,33096,"Asp_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",395,6533,"Asp_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",396,1283,"Asp_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",405,1159,"Cys_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",406,234109,"Cys_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",407,82755,"Cys_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",408,47833,"Cys_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",409,17656,"Cys_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",410,5502,"Cys_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",411,2107,"Cys_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",377,1568,"Cys_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",378,201765,"Cys_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",379,67864,"Cys_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",380,40048,"Cys_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",381,9866,"Cys_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",382,3173,"Cys_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",432,6196,"2-h_13C-1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",433,2648,"2-h_13C0"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",434,937,"2-h_13C1"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",435,261,"2-h_13C2"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",436,20,"2-h_13C3"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",437,-12,"2-h_13C4"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",438,-53,"2-h_13C5"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",439,-54,"2-h_13C6"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",440,4,"2-h_13C7"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",441,-30,"2-h_13C8"," "
"SW620_24h_12Glc_R3_PIM_SIM_02","SW620","[1,2-C13]-Glucose","1,1,0,0,0,0","50","R3","02","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",442,-7,"2-h_13C9"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",260,73732,"Lac_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",261,21414480,"Lac_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",262,4828036,"Lac_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",263,2054182,"Lac_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",264,309066,"Lac_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",265,60811,"Lac_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",266,6998,"Lac_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",259,80271,"Ala_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",260,16489702,"Ala_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",261,3773295,"Ala_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",262,1555296,"Ala_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",263,232723,"Ala_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",264,40229,"Ala_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",265,4418,"Ala_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",231,79094,"Ala_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",232,20704888,"Ala_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",233,4538571,"Ala_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",234,1860189,"Ala_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",235,265193,"Ala_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",236,44109,"Ala_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",237,3932,"Ala_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",245,58857,"Gly_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",246,10667346,"Gly_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",247,2312016,"Gly_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",248,968896,"Gly_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",249,137098,"Gly_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",250,24664,"Gly_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",217,50563,"Gly_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",218,13504358,"Gly_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",219,2778458,"Gly_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",220,1172245,"Gly_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",221,151897,"Gly_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",259,27689,"Val_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",260,7474321,"Val_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",261,1850710,"Val_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",262,717475,"Val_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",263,150429,"Val_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",264,27741,"Val_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",265,6758,"Val_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",266,1193,"Val_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",267,464,"Val_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",273,33370,"Leu_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",274,6470346,"Leu_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",275,1610987,"Leu_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",276,622846,"Leu_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",277,109973,"Leu_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",278,18478,"Leu_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",279,2738,"Leu_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",280,385,"Leu_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",281,2254,"Leu_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",282,681,"Leu_13C8"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",301,27748,"Iso_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",302,7503066,"Iso_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",303,1978466,"Iso_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",304,765330,"Iso_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",305,131695,"Iso_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",306,22937,"Iso_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",307,2501,"Iso_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",308,322,"Iso_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",309,135,"Iso_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",310,84,"Iso_13C8"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",285,17165,"Pro_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",286,2457951,"Pro_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",287,614901,"Pro_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",288,243214,"Pro_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",289,1837683,"Pro_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",290,472719,"Pro_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",291,181460,"Pro_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",292,33383,"Pro_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",293,6180,"Pro_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",294,851,"Pro_13C8"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",295,118,"Pro_13C9"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",257,18508,"Pro_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",258,3872405,"Pro_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",259,939869,"Pro_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",260,363541,"Pro_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",261,57889,"Pro_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",262,13600,"Pro_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",263,2540,"Pro_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",264,640,"Pro_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",286,1939,"Fum_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",287,541967,"Fum_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",288,128373,"Fum_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",289,53008,"Fum_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",290,13386,"Fum_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",291,3966,"Fum_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",292,680,"Fum_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",293,172,"Fum_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",294,83,"Fum_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",295,-30,"Fum_13C8"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",319,7091,"Met_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",320,457530,"Met_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",321,118392,"Met_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",322,65766,"Met_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",323,12731,"Met_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",324,4989,"Met_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",325,1468,"Met_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",326,776,"Met_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",327,3245,"Met_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",291,1649,"Met_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",292,593608,"Met_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",293,143267,"Met_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",294,81898,"Met_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",295,15120,"Met_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",296,6918,"Met_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",297,2471,"Met_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",298,6945,"Met_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",389,10588,"Ser_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",390,2276807,"Ser_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",391,779831,"Ser_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",392,360465,"Ser_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",393,81864,"Ser_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",394,19109,"Ser_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",395,3100,"Ser_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",361,4964,"Ser_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",362,1908426,"Ser_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",363,635685,"Ser_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",364,295090,"Ser_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",365,64582,"Ser_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",366,14311,"Ser_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",403,9585,"Thr_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",404,1912054,"Thr_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",405,678495,"Thr_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",406,311974,"Thr_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",407,71244,"Thr_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",408,16557,"Thr_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",409,2902,"Thr_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",410,417,"Thr_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",335,5405,"Phe_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",336,1181916,"Phe_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",337,347544,"Phe_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",338,130508,"Phe_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",339,24492,"Phe_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",340,4046,"Phe_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",341,909,"Phe_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",342,1295,"Phe_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",343,489,"Phe_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",344,2615,"Phe_13C8"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",345,786,"Phe_13C9"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",346,805,"Phe_13C10"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",347,180,"Phe_13C11"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",418,17873,"Mal_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",419,4987685,"Mal_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",420,1746036,"Mal_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",421,827118,"Mal_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",422,193993,"Mal_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",423,46200,"Mal_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",424,7673,"Mal_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Malate","chebi","C1C4","C18H39O5Si3","26.05",425,3570,"Mal_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",417,40203,"Asp_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",418,6302125,"Asp_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",419,2253654,"Asp_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",420,1058115,"Asp_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",421,249110,"Asp_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",422,59372,"Asp_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",423,9871,"Asp_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C1C4","chebi","C1C4","C18H40N1O4Si3","27.29",424,1534,"Asp_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",389,11560,"Asp_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",390,2716920,"Asp_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",391,939241,"Asp_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",392,434957,"Asp_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",393,99445,"Asp_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",394,22944,"Asp_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",395,3762,"Asp_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Aspartate_C2C4","chebi","C2C4","C17H40N1O3Si3","27.29",396,640,"Asp_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",405,966,"Cys_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",406,184971,"Cys_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",407,64132,"Cys_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",408,37075,"Cys_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",409,37163,"Cys_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",410,11044,"Cys_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Cysteine_C1C3","chebi","C1C3","C17H40N1O2S1Si3","28.8",411,4070,"Cys_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",377,504,"Cys_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",378,155144,"Cys_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",379,52095,"Cys_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",380,30204,"Cys_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",381,7300,"Cys_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","Cysteine_C2C3","chebi","C2C3","C16H40N1OS1Si3","28.8",382,2326,"Cys_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",432,633,"2-h_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",433,94545,"2-h_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",434,33904,"2-h_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",435,15734,"2-h_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",436,3744,"2-h_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",437,939,"2-h_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",438,182,"2-h_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",439,-115,"2-h_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",440,-16,"2-h_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",441,-13,"2-h_13C8"," "
"SW620_24h_cold_R1_PIM_SIM_01","SW620","","","","R1","01","24h","2-hydroxyglutarate","chebi","C1C5","C19H41O5Si3","29.3",442,4,"2-h_13C9"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",260,52713,"Lac_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",261,15164987,"Lac_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",262,3412644,"Lac_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",263,1457703,"Lac_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",264,218072,"Lac_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",265,41669,"Lac_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Lactate","chebi","C1C3","C11H25O3Si2","11.1",266,4799,"Lac_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",259,59955,"Ala_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",260,11899299,"Ala_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",261,2725100,"Ala_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",262,1127553,"Ala_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",263,169120,"Ala_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",264,29748,"Ala_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C1C3","chebi","C1C3","C11H26N1O2Si2","11.86",265,3006,"Ala_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",231,56366,"Ala_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",232,14196845,"Ala_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",233,3125587,"Ala_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",234,1280438,"Ala_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",235,182116,"Ala_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",236,30325,"Ala_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Alanine_C2C3","chebi","C2C3","C10H26N1OSi2","11.86",237,2615,"Ala_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",245,49502,"Gly_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",246,8793603,"Gly_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",247,1911032,"Gly_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",248,800167,"Gly_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",249,115470,"Gly_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Glycine_C1C2","chebi","C1C2","C10H24N1O2Si2","12.25",250,20438,"Gly_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",217,39433,"Gly_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",218,9982673,"Gly_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",219,2065287,"Gly_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",220,877796,"Gly_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Glycine_C2","chebi","C2C2","C9H24N1OSi2","12.25",221,111589,"Gly_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",259,20031,"Val_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",260,5318007,"Val_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",261,1314968,"Val_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",262,507634,"Val_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",263,106313,"Val_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",264,19755,"Val_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",265,4539,"Val_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",266,785,"Val_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Valine","chebi","C2C5","C12H30N1OSi2","14.07",267,208,"Val_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",273,23627,"Leu_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",274,4535956,"Leu_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",275,1133248,"Leu_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",276,438931,"Leu_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",277,72614,"Leu_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",278,12325,"Leu_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",279,1488,"Leu_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",280,162,"Leu_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",281,1148,"Leu_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Leucine","chebi","C2C5","C13H32N1OSi2","14.93",282,470,"Leu_13C8"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",301,19038,"Iso_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",302,5042955,"Iso_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",303,1331692,"Iso_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",304,517900,"Iso_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",305,88207,"Iso_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",306,15219,"Iso_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",307,1793,"Iso_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",308,180,"Iso_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",309,96,"Iso_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Isoleucine","chebi","C1C5","C14H32N1O2Si2","15.64",310,131,"Iso_13C8"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",285,12543,"Pro_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",286,1799625,"Pro_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",287,449226,"Pro_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",288,176773,"Pro_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",289,955143,"Pro_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",290,268313,"Pro_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",291,101530,"Pro_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",292,18873,"Pro_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",293,3566,"Pro_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",294,458,"Pro_13C8"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C1C5","chebi","C1C5","C13H28N1O2Si2","16.51",295,8,"Pro_13C9"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",257,13636,"Pro_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",258,2785811,"Pro_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",259,676320,"Pro_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",260,262232,"Pro_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",261,41332,"Pro_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",262,9237,"Pro_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",263,1900,"Pro_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Proline_C2C5","chebi","C2C5","C12H28N1OSi2","16.51",264,495,"Pro_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",286,1525,"Fum_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",287,427635,"Fum_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",288,102914,"Fum_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",289,43062,"Fum_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",290,9780,"Fum_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",291,2651,"Fum_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",292,565,"Fum_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",293,125,"Fum_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",294,34,"Fum_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Fumarate","chebi","C1C4","C12H23O4Si2","17.28",295,10,"Fum_13C8"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",319,2972,"Met_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",320,342646,"Met_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",321,88334,"Met_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",322,49557,"Met_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",323,9764,"Met_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",324,5102,"Met_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",325,1609,"Met_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",326,744,"Met_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C1C5","chebi","C1C5","C13H30N1O2S1Si2","21.83",327,2088,"Met_13C7"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",291,1159,"Met_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",292,446339,"Met_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",293,110007,"Met_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",294,61535,"Met_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",295,11692,"Met_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",296,4998,"Met_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",297,1606,"Met_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Methionine_C2C5","chebi","C2C5","C12H30N1OS1Si2","21.83",298,5664,"Met_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",389,7805,"Ser_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",390,1605984,"Ser_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",391,552739,"Ser_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",392,255624,"Ser_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",393,57846,"Ser_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",394,13423,"Ser_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Serine_C1C3","chebi","C1C3","C17H40N1O3Si3","22.41",395,2120,"Ser_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",361,3692,"Ser_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",362,1356393,"Ser_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",363,451736,"Ser_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",364,208952,"Ser_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",365,45848,"Ser_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Serine_C2C3","chebi","C2C3","C16H40N1O2Si3","22.41",366,10283,"Ser_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",403,8751,"Thr_13C-1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",404,1708746,"Thr_13C0"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",405,600983,"Thr_13C1"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",406,278231,"Thr_13C2"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",407,64381,"Thr_13C3"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",408,14836,"Thr_13C4"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",409,2311,"Thr_13C5"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Threonine","chebi","C1C4","C18H42N1O3Si3","23.28",410,372,"Thr_13C6"," "
"SW620_24h_cold_R1_PIM_SIM_02","SW620","","","","R1","02","24h","Phenylalanine","chebi","C1C9","C17H30N1O2Si2","25.35",335,4778,"Phe_13C-1"," "